form.cart:has(.colmetics-packages) .quantity {
	display: none;
}

.colmetics-packages {
	margin: 0;
	padding-top: 22px;
	border-top: 1px solid #ece2d6;
}

.colmetics-packages__label {
	font-size: 12px;
	font-weight: 700;
	color: #a9754a;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.colmetics-packages__grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.colmetics-packages__option {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 14px;
	border: 1.5px solid #ece2d6;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
	width: 100%;
}

.colmetics-packages__option:hover {
	border-color: #a9754a;
}

.colmetics-packages__option.is-active {
	border-color: #a9754a;
	box-shadow: 0 0 0 1px #a9754a;
	background: #fbf7f2;
}

.colmetics-packages__qty {
	font-size: 14px;
	font-weight: 700;
	color: #2e2620;
	min-width: 60px;
	text-align: left;
}

.colmetics-packages__unit {
	font-size: 12px;
	color: #8a7d72;
	flex: 1;
	text-align: left;
}

.colmetics-packages__total {
	font-size: 14px;
	font-weight: 700;
	color: #a9754a;
	min-width: 70px;
	text-align: right;
}

/* Once relocated into the configurator's controls column, style the native
   WooCommerce "Add to cart" button to be the clear final call to action. */
.colmetics-configurator__layout-controls .single_add_to_cart_button {
	display: block;
	width: 100%;
	margin-top: 18px;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 26px;
	border: none;
	background: #a9754a;
	color: #fff;
	cursor: pointer;
	transition: background 0.15s;
}

.colmetics-configurator__layout-controls .single_add_to_cart_button:hover {
	background: #8f5f39;
}
