/* Page Sections — Product spotlight (single bottle on a circle backdrop + copy) */

.ps-spot--cream { background: var(--cream); }
.ps-spot--sand  { background: var(--sand); }
.ps-spot--teal  { background: var(--teal); }

.ps-spot__inner {
	display: grid;
	grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

/* Image side swap */
.ps-spot--right .ps-spot__media { order: 2; }
.ps-spot--right .ps-spot__copy  { order: 1; }

/* ---------------------------------------------------------------------------
 * Media — bottle over a soft tinted circle
 * --------------------------------------------------------------------------- */

.ps-spot__media {
	position: relative;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 0;
}

.ps-spot__circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(380px, 82%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 42%, rgba(24, 60, 66, 0.1), rgba(24, 60, 66, 0.05) 62%, transparent 74%);
	pointer-events: none;
}

.ps-spot--sand .ps-spot__circle {
	background: radial-gradient(circle at 50% 42%, rgba(24, 60, 66, 0.13), rgba(24, 60, 66, 0.06) 62%, transparent 74%);
}

.ps-spot--teal .ps-spot__circle {
	background: radial-gradient(circle at 50% 42%, rgba(244, 240, 234, 0.14), rgba(244, 240, 234, 0.06) 62%, transparent 74%);
}

.ps-spot__media img,
.ps-spot__img {
	position: relative;
	z-index: 1;
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 440px;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(24, 60, 66, 0.18));
}

/* ---------------------------------------------------------------------------
 * Copy
 * --------------------------------------------------------------------------- */

.ps-spot__copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ps-spot__eyebrow {
	margin: 0;
	color: var(--red);
	font-family: var(--font);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ps-spot__heading {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.7rem, 2.8vw, 2.2rem);
	line-height: 1.12;
	color: var(--teal);
	overflow-wrap: break-word;
}

.ps-spot__text {
	color: var(--grey-700);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 52ch;
}

.ps-spot__text > :first-child { margin-top: 0; }
.ps-spot__text > :last-child  { margin-bottom: 0; }
.ps-spot__text p { margin: 0 0 0.9em; }

.ps-spot__price {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.55rem;
	color: var(--red);
}

.ps-spot__price del {
	color: var(--grey-500);
	font-size: 1.05rem;
	margin-right: 8px;
}

.ps-spot__price ins {
	text-decoration: none;
}

.ps-spot__cta { margin-top: 6px; }

/* ---------------------------------------------------------------------------
 * Teal variant — lighten everything
 * --------------------------------------------------------------------------- */

.ps-spot--teal .ps-spot__heading { color: var(--cream); }
.ps-spot--teal .ps-spot__text    { color: rgba(244, 240, 234, 0.85); }
.ps-spot--teal .ps-spot__eyebrow { color: var(--sand); }
.ps-spot--teal .ps-spot__price   { color: #e8938d; }
.ps-spot--teal .ps-spot__price del { color: rgba(244, 240, 234, 0.55); }

.ps-spot--teal .btn { background: var(--red); }
.ps-spot--teal .btn:hover { background: #c0524c; color: #fff; }

/* ---------------------------------------------------------------------------
 * Responsive
 * --------------------------------------------------------------------------- */

@media (max-width: 1023px) {
	.ps-spot__inner { gap: clamp(28px, 4vw, 44px); }
	.ps-spot__img,
	.ps-spot__media img { max-height: 400px; }
}

@media (max-width: 860px) {
	.ps-spot__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Bottle first, regardless of side setting. */
	.ps-spot__media,
	.ps-spot--right .ps-spot__media { order: 1; }
	.ps-spot__copy,
	.ps-spot--right .ps-spot__copy  { order: 2; }

	.ps-spot__media { padding: 12px 0; }
	.ps-spot__img,
	.ps-spot__media img { max-height: 340px; }

	.ps-spot__copy {
		text-align: center;
		align-items: center;
	}
}

@media (max-width: 479px) {
	.ps-spot__img,
	.ps-spot__media img { max-height: 280px; }
	.ps-spot__heading { font-size: clamp(1.45rem, 6.6vw, 1.7rem); }
	.ps-spot__price { font-size: 1.35rem; }
}
