/* Treatment product cards — overrides the old side image / caption. */

.v-treat__row {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	background: #fffaf3;
	border: 1px solid #eee4d4;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	appearance: none;
}

.v-treat__row:hover,
.v-treat__row:focus {
	border-color: #c4a574;
	outline: none;
}

.v-treat__row.is-active {
	background: var(--v-forest, #1b4332);
	border-color: var(--v-forest, #1b4332);
}

.v-treat__row.is-active .v-treat__row-name,
.v-treat__row.is-active .v-treat__row-sub,
.v-treat__row.is-active .v-treat__row-arrow {
	color: #fff;
}

.v-treat__visual {
	position: relative !important;
	top: auto !important;
	align-self: start;
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eee4d4;
	padding: 0.85rem;
	display: flex;
	flex-direction: column;
	min-height: 0;
	aspect-ratio: auto;
}

.v-treat__product[hidden] {
	display: none !important;
}

.v-treat__product {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	height: auto;
	flex: 1 1 auto;
}

.v-treat__product-media {
	flex: 1;
	min-height: 14rem;
	border-radius: 12px;
	overflow: hidden;
	background: #f6f1e8;
}

.v-treat__product-img,
.v-treat__visual img.v-treat__product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.v-treat__cart {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin: 0;
}

.v-treat__qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #d8ddd6;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.v-treat__qty-btn {
	width: 2.75rem;
	height: 2.6rem;
	border: 0;
	background: transparent;
	color: var(--v-forest, #1b4332);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.v-treat__qty-btn:hover,
.v-treat__qty-btn:focus {
	background: #f3eee4;
	outline: none;
}

.v-treat__qty-input {
	width: 3rem;
	border: 0;
	text-align: center;
	font: inherit;
	font-weight: 600;
	color: var(--v-forest, #1b4332);
	background: transparent;
	-moz-appearance: textfield;
}

.v-treat__qty-input::-webkit-outer-spin-button,
.v-treat__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.v-treat__atc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.8rem 1rem;
	border: 0;
	border-radius: 999px;
	background: var(--v-forest, #1b4332);
	color: #fff !important;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
}

.v-treat__atc:hover,
.v-treat__atc:focus {
	background: #163828;
	color: #fff !important;
}

.v-treat__product-note {
	margin: 0.75rem 0.5rem;
	text-align: center;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #7a6d5a;
}

.v-treat__product--empty {
	align-items: center;
	justify-content: center;
	min-height: 16rem;
	height: auto;
	background: #f6f1e8;
	border-radius: 12px;
}

.v-treat__script {
	display: none !important;
}

@media (min-width: 960px) {
	.v-treat__panel {
		align-items: start;
	}

	.v-treat__visual {
		min-height: 0;
		position: relative !important;
		top: auto !important;
		align-self: start;
	}
}

@media (min-width: 1100px) {
	.v-treat__visual {
		min-height: 0;
	}
}
