@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
	--black: #111111;
	--soft-black: #181818;
	--blue: #0066ff;
	--blue-light: #2f80ff;
	--white: #f8f8f5;
	--paper: #f1f0ec;
	--silver: #d8d8d3;
	--line: rgba(17, 17, 17, .14);
	--muted: #6d6d68;
	--display: "Manrope", "Segoe UI", sans-serif;
	--body: "DM Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--black);
	font-family: var(--body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--blue); color: white; }

.skip-link {
	position: fixed;
	top: -100px;
	left: 1rem;
	z-index: 1000;
	background: white;
	padding: .8rem 1.1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
	height: 84px;
	padding: 0 clamp(1.25rem, 4vw, 5rem);
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	color: white;
	background: rgba(17, 17, 17, .5);
	border-bottom: 1px solid rgba(255,255,255,.16);
	transition: background .35s ease, color .35s ease, height .35s ease, border-color .35s ease;
}
.site-header.scrolled {
	height: 70px;
	background: rgba(248,248,245,.94);
	backdrop-filter: blur(16px);
	color: var(--black);
	border-bottom-color: var(--line);
}
.brand {
	width: max-content;
	display: flex;
	align-items: center;
	gap: .65rem;
}
.brand-mark {
	font: 400 2.5rem/1 var(--display);
	letter-spacing: -.16em;
}
.brand-mark > span {
	color: var(--blue);
	font-size: .46em;
	vertical-align: top;
	margin-left: .13em;
}
.brand-name {
	font: 600 1rem/1 var(--display);
	letter-spacing: .25em;
}
.brand-name b {
	display: block;
	font-size: .63em;
	letter-spacing: .38em;
	margin-top: .34rem;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.25rem); }
.desktop-nav a {
	font-size: 1rem;
	letter-spacing: .05em;
	position: relative;
}
.desktop-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: -.5rem;
	height: 1px;
	background: currentColor;
	transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta {
	justify-self: end;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	display: flex;
	gap: .75rem;
	align-items: center;
}
.header-cta span { color: var(--blue-light); font-size: 1rem; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
	min-height: 100vh;
	margin: 0;
	background: var(--black);
	color: white;
}
.hero-copy {
	min-height: 100vh;
	padding: clamp(8rem, 15vh, 10rem) clamp(2rem, 7vw, 8rem) 3rem clamp(1.5rem, 6vw, 7rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.eyebrow {
	margin: 0 0 2rem;
	text-transform: uppercase;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .21em;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.eyebrow > span { width: 28px; height: 1px; background: var(--blue); }
.eyebrow.light { color: rgba(255,255,255,.62); }
.hero h1 {
	margin: 0;
	font: 300 clamp(3.7rem, 7.25vw, 8.3rem)/.9 var(--display);
	letter-spacing: -.07em;
	max-width: 10ch;
}
h1 em, h2 em, h3 em {
	color: var(--blue-light);
	font-style: normal;
	font-weight: inherit;
}
.hero-intro {
	margin: 2.2rem 0 0;
	max-width: 34rem;
	color: rgba(255,255,255,.62);
	font-size: clamp(.92rem, 1vw, 1.08rem);
	line-height: 1.75;
	font-weight: 300;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 2.3rem;
	margin-top: 2.7rem;
}
.button {
	min-height: 55px;
	padding: 0 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .11em;
	transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-blue { background: var(--blue); color: white; }
.button-blue:hover { background: #1472ff; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: .9rem;
	width: max-content;
	padding-bottom: .45rem;
	border-bottom: 1px solid currentColor;
	font-size: .76rem;
	text-transform: uppercase;
	letter-spacing: .09em;
}
.text-link span { color: var(--blue); }
.text-link.light { color: rgba(255,255,255,.74); }
.hero-stats {
	position: absolute;
	left: clamp(1.5rem, 6vw, 7rem);
	right: clamp(2rem, 7vw, 8rem);
	bottom: 2.5rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255,255,255,.15);
	padding-top: 1.25rem;
}
.hero-stats div + div { border-left: 1px solid rgba(255,255,255,.15); padding-left: 1.5rem; }
.hero-stats strong { display: block; font: 400 1.35rem/1 var(--display); }
.hero-stats strong span { font-size: .58em; color: var(--blue-light); margin-left: .08em; }
.hero-stats small { display: block; color: rgba(255,255,255,.43); margin-top: .5rem; font-size: .68rem; }

.hero-visual {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	background: #c8c0b5;
	isolation: isolate;
}
.hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17,17,17,.22), transparent 25%), linear-gradient(0deg, rgba(17,17,17,.28), transparent 40%);
	z-index: 1;
}
.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
	animation: heroReveal 1.2s cubic-bezier(.2,.75,.2,1) both;
}
@keyframes heroReveal {
	from { opacity: 0; transform: scale(1.06); }
	to { opacity: 1; transform: scale(1); }
}
.hero-word {
	position: absolute;
	z-index: -1;
	top: 15%;
	left: -3%;
	font: 300 clamp(7rem, 14vw, 15rem)/1 var(--display);
	letter-spacing: -.08em;
	color: rgba(255,255,255,.3);
}
.hero-caption {
	position: absolute;
	z-index: 3;
	left: 2.5rem;
	bottom: 2.3rem;
	color: white;
	display: flex;
	align-items: flex-end;
	gap: 1.2rem;
}
.hero-caption span { color: var(--blue-light); font: 600 .62rem/1 var(--display); letter-spacing: .15em; }
.hero-caption p { margin: 0; font-size: .74rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .1em; }
.degree-orbit {
	position: absolute;
	z-index: 2;
	width: 76px; height: 76px;
	right: 2.5rem; bottom: 2.5rem;
	border: 1px solid rgba(255,255,255,.62);
	border-radius: 50%;
	animation: orbit 9s linear infinite;
}
.degree-orbit span {
	position: absolute;
	width: 8px; height: 8px;
	background: var(--blue);
	border-radius: 50%;
	top: -4px; left: calc(50% - 4px);
}
@keyframes orbit { to { transform: rotate(360deg); } }

.promise-strip {
	background: var(--white);
	padding: 2.15rem clamp(1.5rem, 6vw, 7rem);
	border-bottom: 1px solid var(--line);
	margin: 0;
}
.promise-strip > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	border-right: 1px solid var(--line);
}
.promise-strip > div:last-child { border: 0; }
.promise-icon { font: 300 1.6rem/1 var(--display); color: var(--blue); }
.promise-strip p { margin: 0; font-size: .7rem; color: var(--muted); line-height: 1.5; }
.promise-strip strong { display: block; color: var(--black); text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; }

.section { padding: clamp(6rem, 11vw, 10rem) clamp(1.5rem, 6vw, 7rem); }
.section-heading {
	margin-bottom: clamp(4rem, 8vw, 7rem);
}
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .details-heading h2, .performance-top h2 {
	margin: 0;
	font: 300 clamp(3rem, 5.7vw, 6.4rem)/.98 var(--display);
	letter-spacing: -.065em;
}
.section-heading > p:last-child {
	color: var(--muted);
	line-height: 1.75;
	margin: 0;
	max-width: 26rem;
	font-size: .9rem;
}
.product {
	min-height: 690px;
	margin-bottom: clamp(4rem, 8vw, 8rem);
	margin-left: 0;
	margin-right: 0;
	background: var(--white);
}
.product-steel { margin-bottom: 0; }
.product-image {
	position: relative;
	overflow: hidden;
	min-height: 650px;
}
.product-image img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .9s cubic-bezier(.2,.75,.2,1);
}
.product:hover .product-image img { transform: scale(1.025); }
.color-image img { object-position: center; }
.steel-image img { object-position: center 63%; }
.product-index {
	position: absolute;
	top: 1.8rem; left: 1.8rem;
	z-index: 2;
	width: 44px; height: 44px;
	background: var(--black);
	color: white;
	border-radius: 50%;
	display: grid; place-items: center;
	font-size: .64rem; letter-spacing: .09em;
}
.image-label {
	position: absolute;
	bottom: 1.8rem; left: 1.8rem;
	z-index: 2;
	padding: .7rem .9rem;
	background: rgba(248,248,245,.88);
	backdrop-filter: blur(9px);
	font-size: .65rem;
	text-transform: uppercase;
	letter-spacing: .11em;
}
.product-copy {
	padding: clamp(2.5rem, 5vw, 5.7rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.product-kicker {
	color: var(--blue);
	text-transform: uppercase;
	font-size: .67rem;
	font-weight: 600;
	letter-spacing: .19em;
	margin: 0 0 1.5rem;
}
.product-copy h3 {
	font: 300 clamp(2.2rem, 3.7vw, 4.2rem)/1.04 var(--display);
	letter-spacing: -.06em;
	margin: 0 0 1.75rem;
}
.product-copy > p:not(.product-kicker) {
	color: var(--muted);
	line-height: 1.75;
	margin: 0;
	font-size: .9rem;
}
.swatches { display: flex; align-items: center; gap: .75rem; margin: 2rem 0; }
.swatch {
	width: 20px; height: 20px; border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(17,17,17,.12);
	position: relative;
}
.swatch.active::after {
	content: ""; position: absolute; inset: -5px;
	border: 1px solid var(--blue); border-radius: 50%;
}
.swatch.blue { background: #1679d1; }
.swatch.rose { background: #cf9b96; }
.swatch.silver { background: #c8c9c8; }
.swatch.gold { background: #b68541; }
.swatch.black { background: #171717; }
.swatches small { margin-left: .5rem; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.steel-chip { margin: 2rem 0; display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.steel-chip span { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(120deg,#aaa,#f7f7f5 45%,#969696); border: 1px solid #aaa; }
.product-specs { list-style: none; padding: 0; margin: 0 0 2.25rem; border-top: 1px solid var(--line); }
.product-specs li { padding: .9rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-size: .72rem; }
.product-specs span { color: var(--muted); }
.product-specs strong { font-weight: 500; }

.section-dark { background: var(--black); color: white; padding: clamp(6rem, 11vw, 10rem) clamp(1.5rem, 6vw, 7rem); }
.performance-top p:last-child { color: rgba(255,255,255,.52); margin: 0; line-height: 1.75; font-weight: 300; font-size: .9rem; }
.temperature-grid {
	margin-top: clamp(5rem, 9vw, 9rem);
	--bs-gutter-x: 5vw;
}
.temp-card { padding-top: 2rem; padding-bottom: 2rem; }
.temp-number { font: 300 clamp(5rem, 9vw, 10rem)/.8 var(--display); letter-spacing: -.08em; }
.temp-number sup { font-size: .13em; color: var(--blue-light); letter-spacing: 0; vertical-align: top; margin-left: .2em; }
.temp-card h3 { margin: 2rem 0 .8rem; font: 400 1.2rem/1.2 var(--display); }
.temp-card p { margin: 0; color: rgba(255,255,255,.47); font-size: .82rem; line-height: 1.7; max-width: 21rem; }
.temp-line { height: 2px; margin-top: 2rem; background: rgba(255,255,255,.15); }
.temp-line span { display: block; width: 70%; height: 100%; background: var(--blue); }
.hot .temp-line span { width: 48%; background: linear-gradient(90deg,#ff6f3d,#ffbd5b); }
.bottle-silhouette { min-height: 500px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.silhouette-cap { width: 94px; height: 72px; border-radius: 28px 28px 10px 10px; background: linear-gradient(90deg,#393939,#f4f4f0 47%,#555); position: relative; z-index: 2; }
.silhouette-body { width: 180px; height: 390px; margin-top: -4px; clip-path: polygon(28% 0,72% 0,87% 13%,100% 28%,100% 94%,92% 100%,8% 100%,0 94%,0 28%,13% 13%); background: linear-gradient(90deg,#777 0,#f2f2ec 35%,#aaa 65%,#606060 100%); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 3rem; box-shadow: inset -15px 0 30px rgba(0,0,0,.15); }
.mini-mark { color: #444; font: 400 2.2rem/1 var(--display); }
.thermal-ring { position: absolute; border: 1px solid rgba(0,102,255,.65); border-radius: 50%; }
.ring-one { width: 310px; height: 310px; animation: thermal 3s ease-in-out infinite; }
.ring-two { width: 420px; height: 420px; animation: thermal 3s 1.2s ease-in-out infinite; }
@keyframes thermal { 0%,100% { opacity: .15; transform: scale(.94); } 50% { opacity: .7; transform: scale(1.03); } }

.detail-grid { margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.detail-grid article { min-height: 320px; padding: 1.5rem 2rem 1.5rem 0; border-right: 1px solid var(--line); position: relative; }
.detail-grid article + article { padding-left: 2rem; }
.detail-grid article:last-child { border-right: 0; }
.detail-number { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
.detail-symbol {
	width: clamp(5rem, 6vw, 6.5rem);
	aspect-ratio: 1;
	margin: 1.5rem 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	font: 300 clamp(5rem, 5vw, 5rem)/1 var(--display);
}
.detail-grid h3 { font: 400 1.05rem/1.2 var(--display); margin: 0 0 .85rem; }
.detail-grid p { color: var(--muted); font-size: .78rem; line-height: 1.7; margin: 0; max-width: 16rem; }

.philosophy { min-height: 760px; margin: 0; background: var(--soft-black); color: white; }
.philosophy-copy { padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.philosophy blockquote { font: 300 clamp(3rem, 5vw, 5.7rem)/1 var(--display); letter-spacing: -.06em; margin: 0 0 2.5rem; }
.philosophy-copy > p:not(.eyebrow) { color: rgba(255,255,255,.5); line-height: 1.8; max-width: 34rem; font-size: .9rem; margin: 0 0 3rem; }
.philosophy-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--blue); }
.philosophy-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 65% 30%, rgba(255,255,255,.15), transparent 35%), linear-gradient(140deg, transparent, rgba(0,0,0,.18)); }
.giant-mark { font: 300 clamp(15rem, 34vw, 39rem)/.8 var(--display); letter-spacing: -.16em; color: var(--black); z-index: 1; }
.giant-mark span { font-size: .18em; vertical-align: top; margin-left: .15em; color: white; }
.philosophy-visual p { position: absolute; z-index: 2; margin: 0; color: white; font: 500 1.35rem/1.15 var(--display); letter-spacing: .28em; text-align: center; }
.philosophy-visual p span { font-size: .45em; letter-spacing: .6em; }

footer { background: #0a0a0a; color: white; padding: 5rem clamp(1.5rem, 6vw, 7rem) 1.8rem; }
.footer-brand { display: flex; align-items: center; gap: 2rem; }
.footer-brand .brand-mark { font-size: 5.5rem; }
.footer-brand p { color: rgba(255,255,255,.48); line-height: 1.6; font-size: .85rem; }
.footer-links { width: 40%; margin: 4rem 0 5rem auto; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.footer-links small { color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; margin-bottom: .4rem; }
.footer-links a { font: 300 1.4rem/1.2 var(--display); }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; display: flex; justify-content: space-between; color: rgba(255,255,255,.32); font-size: .65rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

/* Layout Footer */
.footer-content {
	padding: 3rem clamp(1.5rem, 6vw, 7rem) 2rem;
	border-bottom: 1px solid var(--line);
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.footer-brand p {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.5;
}
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.18);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,.5);
	transition: all .2s;
	text-decoration: none;
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-links-col small {
	display: block;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .68rem;
	color: var(--muted);
	margin-bottom: .5rem;
}
.footer-links-col a {
	display: block;
	color: inherit;
	text-decoration: none;
	font-size: .82rem;
	padding: .3rem 0;
	transition: color .2s;
}
.footer-links-col a:hover { color: var(--blue); }
.footer-links-col p {
	margin: .3rem 0 0;
	font-size: .82rem;
	color: var(--muted);
}
.footer-bottom {
	padding: 1.5rem clamp(1.5rem, 6vw, 7rem);
	text-align: center;
	font-size: .75rem;
	color: var(--muted);
}

/* Shop */
.desktop-nav a.active::after { right: 0; background: var(--blue); }
.mobile-nav a.active { color: var(--blue); }
.shop-hero {
	min-height: 780px;
	height: min(92vh, 980px);
	background: var(--black);
	color: white;
	overflow: hidden;
}
.shop-hero-copy {
	padding: clamp(8rem, 14vh, 10rem) clamp(2rem, 7vw, 8rem) clamp(4rem, 8vh, 6rem) clamp(1.5rem, 6vw, 7rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.shop-hero-copy h1 {
	margin: 0;
	font: 300 clamp(4rem, min(7vw, 11vh), 7.7rem)/.9 var(--display);
	letter-spacing: -.07em;
}
.shop-hero-copy > p:not(.eyebrow) {
	max-width: 33rem;
	margin: 2rem 0 2.6rem;
	color: rgba(255,255,255,.58);
	font-size: .94rem;
	font-weight: 300;
	line-height: 1.75;
}
.shop-hero-copy .button { width: max-content; }
.shop-hero-gallery {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 1px;
	background: rgba(255,255,255,.2);
}
.shop-hero-gallery > div { position: relative; min-width: 0; overflow: hidden; background: #d9d5cf; }
.shop-hero-gallery img { width: 100%; height: 100%; object-fit: cover; }
.shop-gallery-color img { object-position: 50% center; }
.shop-gallery-steel img { object-position: 53% 60%; }
.shop-hero-gallery span {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	padding: .7rem .9rem;
	background: rgba(248,248,245,.9);
	color: var(--black);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}
.shop-catalogue { background: var(--paper); }
.shop-toolbar { margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.shop-toolbar h2 {
	margin: 0;
	font: 300 clamp(3rem, 5.5vw, 6.2rem)/.98 var(--display);
	letter-spacing: -.065em;
}
.shop-filters {
	display: flex;
	justify-content: flex-end;
	gap: .5rem;
	padding-bottom: .5rem;
}
.shop-filters button {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	padding: .75rem 1.15rem;
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .09em;
	text-transform: uppercase;
	transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.shop-filters button sup { color: var(--blue); font-size: .65em; margin-left: .25rem; }
.shop-filters button:hover,
.shop-filters button.active { background: var(--black); border-color: var(--black); color: white; }
.shop-card { height: 100%; background: var(--white); }
.shop-card-image { min-height: 590px; position: relative; overflow: hidden; }
.shop-card-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.2,.75,.2,1);
}
.shop-card:hover .shop-card-image img { transform: scale(1.025); }
.shop-card-color img { object-position: center; }
.shop-card-original img { object-position: center 61%; }
.shop-badge {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	padding: .65rem .85rem;
	background: rgba(248,248,245,.9);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}
.shop-card-number {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--black);
	color: white;
	display: grid;
	place-items: center;
	font-size: .63rem;
	letter-spacing: .1em;
}
.shop-card-body { padding: clamp(1.8rem, 3vw, 3rem); }
.shop-card-title { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.shop-card-title p { margin: 0 0 .55rem; color: var(--blue); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.shop-card-title h3 { margin: 0; font: 300 clamp(1.75rem, 2.5vw, 2.7rem)/1.05 var(--display); letter-spacing: -.045em; }
.shop-card-title > span { flex: 0 0 auto; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding-top: .3rem; }
.shop-card-copy { max-width: 38rem; margin: 1.4rem 0 2rem; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.shop-card-footer { min-height: 47px; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.shop-card-footer .swatches,
.shop-card-footer .steel-chip { margin: 0; }
.shop-card-footer .text-link { flex: 0 0 auto; }
.shop-item[hidden] { display: none !important; }
.shop-assurance { padding: 0 clamp(1.5rem, 6vw, 7rem); background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shop-assurance .row > div { padding: 2.2rem 1rem; display: flex; align-items: baseline; justify-content: center; gap: .75rem; border-right: 1px solid var(--line); }
.shop-assurance .row > div:last-child { border-right: 0; }
.shop-assurance strong { font: 400 1.4rem/1 var(--display); }
.shop-assurance p { margin: 0; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.shop-closing { min-height: 670px; margin: 0; background: var(--black); color: white; overflow: hidden; }
.shop-closing-copy { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.shop-closing-copy h2 { margin: 0 0 3rem; font: 300 clamp(3.2rem, 5.7vw, 6.4rem)/.96 var(--display); letter-spacing: -.065em; }
.shop-closing-mark { background: var(--blue); color: var(--black); display: flex; align-items: center; justify-content: center; font: 300 clamp(14rem, 30vw, 34rem)/.75 var(--display); letter-spacing: -.16em; }
.shop-closing-mark span { color: white; font-size: .18em; align-self: flex-start; margin-top: 24%; margin-left: .15em; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1250px) {
	.hero {
		height: 100vh;
		height: 100svh;
		min-height: 650px;
		overflow: hidden;
	}
	.hero-copy,
	.hero-visual {
		height: 100%;
		min-height: 0;
	}
	.hero-copy {
		padding-top: clamp(6.5rem, 12vh, 8.5rem);
		padding-bottom: clamp(7.5rem, 15vh, 9rem);
	}
	.hero h1 {
		font-size: clamp(3.7rem, min(7.25vw, 12.5vh), 8.3rem);
	}
	.hero-intro {
		margin-top: clamp(1.4rem, 3vh, 2.2rem);
		line-height: 1.65;
	}
	.hero-actions {
		margin-top: clamp(1.5rem, 3.5vh, 2.7rem);
	}
	.hero-stats {
		bottom: clamp(1.5rem, 3vh, 2.5rem);
	}
}

@media (max-width: 1080px) {
	.hero-copy { padding-left: 3rem; padding-right: 3rem; }
	.hero-stats { left: 3rem; right: 3rem; }
	.product-copy { padding: 3.2rem; }
	.detail-grid article:nth-child(2) { border-right: 0; }
	.detail-grid article:nth-child(3), .detail-grid article:nth-child(4) { border-top: 1px solid var(--line); }
	.shop-card-image { min-height: 480px; }
	.shop-card-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
	.site-header { height: 68px; grid-template-columns: 1fr auto auto; padding: 0 1.25rem; }
	.desktop-nav, .header-cta { display: none; }
	.menu-toggle {
		display: flex; width: 42px; height: 42px; border: 0; background: transparent; padding: 0;
		flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px; color: currentColor;
	}
	.menu-toggle span { width: 23px; height: 1px; background: currentColor; transition: transform .25s ease; }
	.menu-toggle span:last-child { width: 16px; }
	.menu-toggle.active span:first-child { transform: translateY(3px) rotate(45deg); }
	.menu-toggle.active span:last-child { width: 23px; transform: translateY(-4px) rotate(-45deg); }
	.mobile-nav {
		display: flex; position: fixed; inset: 68px 0 auto; background: var(--white); color: var(--black);
		flex-direction: column; padding: 1.5rem; gap: 0; transform: translateY(-130%); transition: transform .35s ease; z-index: -1;
		border-bottom: 1px solid var(--line);
	}
	.mobile-nav.open { transform: translateY(0); }
	.mobile-nav a { padding: 1rem 0; font: 300 1.55rem/1 var(--display); border-bottom: 1px solid var(--line); }
	.hero-copy { min-height: 710px; padding: 7.8rem 1.4rem 8.8rem; }
	.hero h1 { font-size: clamp(3.55rem, 17vw, 5.5rem); }
	.hero-intro { font-size: .88rem; }
	.hero-actions { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
	.hero-stats { left: 1.4rem; right: 1.4rem; bottom: 2rem; }
	.hero-stats div + div { padding-left: .8rem; }
	.hero-visual { min-height: 80vh; }
	.hero-caption { left: 1.4rem; bottom: 1.5rem; }
	.degree-orbit { right: 1.4rem; bottom: 1.4rem; width: 58px; height: 58px; }
	.promise-strip { padding: 0 1.4rem; }
	.promise-strip > div { padding: 1.3rem .5rem; justify-content: flex-start; }
	.promise-strip > div:nth-child(2) { border-right: 0; }
	.promise-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.section, .section-dark { padding: 5.5rem 1.4rem; }
	.section-heading h2, .details-heading h2, .performance-top h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
	.section-heading > p:last-child, .performance-top > p:last-child { margin-top: 1.8rem; }
	.product, .product-steel { min-height: 0; }
	.product-image { min-height: 430px; }
	.product-copy { padding: 2.5rem 1.4rem 3rem; }
	.product-copy h3 { font-size: 2.65rem; }
	.product-steel .product-copy { order: 2; }
	.product-steel .product-image { order: 1; }
	.temperature-grid { margin-top: 3rem; }
	.bottle-silhouette { order: -1; min-height: 440px; transform: scale(.82); margin: -2rem 0; }
	.temp-number { font-size: 7rem; }
	.details-heading h2 { margin-top: 2rem; }
	.detail-grid article, .detail-grid article + article { padding: 1.5rem 0 2.5rem; border-right: 0; border-top: 1px solid var(--line); min-height: 260px; }
	.detail-symbol {
		width: 5.25rem;
		margin: 2.75rem 0 2rem;
		font-size: 4.4rem;
	}
	.philosophy { min-height: 0; }
	.philosophy-copy { padding: 5.5rem 1.4rem; }
	.philosophy-visual { min-height: 520px; }
	.giant-mark { font-size: 20rem; }
	footer { padding: 4rem 1.4rem 1.5rem; }
	.footer-links { width: 100%; margin: 4rem 0; }
	.footer-bottom { flex-direction: column; gap: .6rem; }
	.shop-hero { height: auto; min-height: 0; }
	.shop-hero-copy { min-height: 680px; padding: 8rem 1.4rem 4rem; }
	.shop-hero-copy h1 { font-size: clamp(3.8rem, 17vw, 5.5rem); }
	.shop-hero-gallery { height: 72vh; min-height: 520px; grid-template-columns: 1fr 1fr; }
	.shop-gallery-color img { object-position: center; }
	.shop-filters { justify-content: flex-start; margin-top: 1rem; overflow-x: auto; padding-bottom: .75rem; }
	.shop-filters button { flex: 0 0 auto; }
	.shop-card-image { min-height: 410px; }
	.shop-card-body { padding: 2rem 1.3rem 2.4rem; }
	.shop-card-title h3 { font-size: 2rem; }
	.shop-card-footer { flex-direction: column; align-items: flex-start; }
	.shop-assurance { padding: 0 1.4rem; }
	.shop-assurance .row > div { padding: 1.4rem .25rem; flex-direction: column; align-items: center; gap: .35rem; }
	.shop-assurance .row > div:nth-child(2) { border-right: 0; }
	.shop-assurance .row > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.shop-closing { min-height: 0; }
	.shop-closing-copy { min-height: 540px; padding: 5.5rem 1.4rem; }
	.shop-closing-mark { min-height: 500px; font-size: 19rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   HEADER: Cart icon + Account link
   ============================================ */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	justify-self: end;
}
.cart-icon-wrap { position: relative; justify-self: end; }
.cart-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	color: inherit;
}
.cart-badge {
	position: absolute;
	top: -2px; right: -4px;
	background: var(--blue);
	color: white;
	font: 600 .55rem/1 var(--display);
	width: 18px; height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-account {
	font-size: .72rem;
	letter-spacing: .05em;
	text-transform: uppercase;
}
@media (max-width: 760px) {
	.header-actions > a { display: none; }
	.mobile-nav .cart-link { display: inline; }
}

/* ============================================
   AUTH PAGES: Login / Register
   ============================================ */
.auth-page {
	background: var(--paper);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.auth-main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 1.5rem 3rem;
}
.auth-card {
	width: 100%;
	max-width: 480px;
	background: white;
	padding: clamp(2rem, 4vw, 3rem);
	border-radius: 16px;
	box-shadow: 0 4px 40px rgba(0,0,0,.06);
}
.auth-header {
	text-align: center;
	margin-bottom: 2rem;
}
.auth-header .brand-mark { font-size: 2.5rem; display: inline-block; margin-bottom: .5rem; }
.auth-header h1 { margin: .5rem 0 .3rem; font: 300 clamp(1.6rem, 3vw, 2rem)/1.1 var(--display); letter-spacing: -.04em; }
.auth-header p { color: var(--muted); font-size: .85rem; margin: 0; }
.auth-errors { background: #fff0f0; border-radius: 8px; padding: .8rem 1rem; margin-bottom: 1.2rem; }
.auth-error-item { color: #c0392b; font-size: .8rem; margin: .15rem 0; }
.auth-success { background: #f0fff4; border-radius: 8px; padding: .8rem 1rem; margin-bottom: 1.2rem; color: #27ae60; font-size: .85rem; }
.auth-form .form-group { margin-bottom: 1rem; }
.auth-form label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
	width: 100%;
	padding: .75rem 1rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	font: 400 .88rem/1.4 var(--body);
	background: var(--paper);
	transition: border-color .2s;
}
.auth-form input:focus { outline: none; border-color: var(--blue); background: white; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.auth-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: .82rem; color: var(--muted); }
.auth-footer a { color: var(--blue); font-weight: 500; }

/* ============================================
   CART PAGE
   ============================================ */
.account-page { background: var(--paper); min-height: 100vh; }
.account-main { padding: 7rem 0 4rem; }
.page-title { font: 300 clamp(1.8rem, 3vw, 2.4rem)/1.1 var(--display); letter-spacing: -.04em; margin: 0 0 2rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
	display: grid;
	grid-template-columns: 100px 1fr auto;
	gap: 1.2rem;
	background: white;
	padding: 1.2rem;
	border-radius: 12px;
	align-items: center;
}
.cart-item-image img { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; }
.cart-item-details h3 { margin: 0 0 .2rem; font: 500 .92rem/1.2 var(--display); }
.cart-variant-label { margin: 0 0 .4rem; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.cart-item-price { margin: 0; font-weight: 500; color: var(--blue); }
.cart-item-qty { display: flex; align-items: center; gap: .6rem; margin-top: .5rem; }
.qty-btn {
	width: 30px; height: 30px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: white;
	font-size: .9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s;
}
.qty-btn:hover { border-color: var(--black); }
.qty-value { font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-total { text-align: right; }
.cart-item-total p { margin: 0 0 .5rem; font-weight: 500; }
.cart-remove-btn {
	background: none;
	border: none;
	color: var(--muted);
	font-size: .72rem;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
}
.cart-remove-btn:hover { color: #c0392b; }
.cart-summary {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	position: sticky;
	top: 100px;
}
.cart-summary h2 { margin: 0 0 1rem; font: 500 1.1rem/1 var(--display); }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 1rem; }
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h2 { margin: 0 0 .5rem; font: 400 1.3rem/1 var(--display); }
.empty-state p { color: var(--muted); margin: 0 0 1.5rem; }
@media (max-width: 760px) {
	.cart-layout { grid-template-columns: 1fr; }
	.cart-item { grid-template-columns: 80px 1fr; }
	.cart-item-total { grid-column: 1/-1; text-align: left; display: flex; justify-content: space-between; }
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-steps {
	display: flex;
	gap: 0;
	margin-bottom: 2rem;
	background: white;
	border-radius: 12px;
	overflow: hidden;
}
.step {
	flex: 1;
	padding: .9rem 1rem;
	text-align: center;
	font-size: .76rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: var(--paper);
	color: var(--muted);
}
.step.active { background: var(--black); color: white; }
.step.completed { background: var(--blue); color: white; }
.checkout-form-card { background: white; padding: 2rem; border-radius: 12px; margin-top: 1rem; }
.checkout-form-card h2 { margin: 0 0 1.2rem; font: 500 1.1rem/1 var(--display); }
.checkout-form .form-group { margin-bottom: 1rem; }
.checkout-form label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
	width: 100%;
	padding: .75rem 1rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	font: 400 .88rem/1.4 var(--body);
	background: white;
}
.checkout-form input:focus,
.checkout-form select:focus { outline: none; border-color: var(--blue); }
.checkout-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.address-list { margin-bottom: 1.5rem; }
.address-card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border: 2px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	margin-bottom: .5rem;
	transition: border-color .2s;
}
.address-card:has(input:checked),
.address-card.selected { border-color: var(--blue); }
.address-card input[type="radio"] { margin-top: .3rem; }
.address-card-content { font-size: .82rem; line-height: 1.6; }
.address-card-content strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); }
.divider-or { text-align: center; margin: 1rem 0; position: relative; }
.divider-or::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--line); }
.divider-or span { background: var(--paper); padding: 0 .8rem; position: relative; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.pincode-status { margin-top: .3rem; }
.payment-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; }
.payment-section { background: white; padding: 1.5rem; border-radius: 12px; margin-bottom: 1rem; }
.payment-section h3 { margin: 0 0 1rem; font: 500 .95rem/1 var(--display); }
.payment-address { font-size: .85rem; line-height: 1.7; }
.payment-address p { margin: 0; }
.payment-methods { display: flex; flex-direction: column; gap: .5rem; }
.payment-method {
	display: flex;
	gap: .8rem;
	padding: 1rem;
	border: 2px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color .2s;
}
.payment-method:has(input:checked),
.payment-method.active { border-color: var(--blue); }
.payment-method input { margin-top: .2rem; }
.payment-method-info strong { font-size: .85rem; display: block; margin-bottom: .2rem; }
.payment-method-info p { margin: 0; font-size: .75rem; color: var(--muted); }
.qr-section { text-align: center; }
.qr-code-img {
	display: block;
	margin: 0 auto 1rem;
	border-radius: 12px;
	border: 1px solid var(--line);
}
.qr-payment-id {
	font: 500 .82rem/1 var(--display);
	color: var(--blue);
	margin: .5rem 0 .2rem;
	letter-spacing: .04em;
}
.qr-amount { font: 600 1.5rem/1 var(--display); margin: 0 0 .3rem; color: var(--blue); }
.qr-upi { font-size: .72rem; color: var(--muted); margin: 0 0 .3rem; word-break: break-all; }
.qr-link-wrap { margin: .5rem 0; text-align: center; }
.qr-link-label { font-size: .72rem; color: var(--muted); margin: 0 0 .2rem; text-transform: uppercase; letter-spacing: .06em; }
.qr-link-text { font-size: .78rem; color: var(--blue); word-break: break-all; text-decoration: underline; }
.qr-link-text:hover { color: var(--blue-light); }
.qr-instruction { font-size: .7rem; color: var(--muted); margin: 0; }
.qr-note { margin-top: .8rem; font-size: .75rem; color: var(--muted); }
.qr-wait {
	text-align: center;
	padding: 1rem;
}
.qr-wait p {
	color: var(--muted);
	margin-bottom: .5rem;
	font-size: .88rem;
}
.qr-placeholder-box {
	width: 250px;
	height: 250px;
	border: 2px solid var(--black);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem auto;
	background: white;
}
.qr-result {
	text-align: center;
}
.upi-pay-btn {
	display: inline-flex;
	margin-top: 1rem;
	justify-content: center;
	width: 100%;
}
.cod-note { font-size: .85rem; color: var(--muted); }
.order-summary-card { background: white; padding: 1.5rem; border-radius: 12px; position: sticky; top: 100px; }
.order-summary-card h3 { margin: 0 0 1rem; font: 500 .95rem/1 var(--display); }
.summary-items { max-height: 300px; overflow-y: auto; }
.summary-item { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.summary-item-name { margin: 0; font-weight: 500; }
.summary-item-variant { margin: 0; font-size: .72rem; color: var(--muted); }
.summary-item-qty { margin: 0; font-size: .72rem; color: var(--muted); }
.summary-item-price { margin: 0; font-weight: 500; white-space: nowrap; }
.summary-divider { height: 1px; background: var(--line); margin: .8rem 0; }
.summary-row { display: flex; justify-content: space-between; font-size: .82rem; padding: .3rem 0; }
.summary-row span:first-child { color: var(--muted); }
.summary-discount span:last-child { color: #27ae60; }
.summary-total { font-weight: 600; font-size: .95rem; border-top: 1px solid var(--line); padding-top: .6rem; margin-top: .3rem; }
.payment-submit-btn { width: 100%; justify-content: center; margin-top: 1rem; }
@media (max-width: 760px) {
	.payment-layout { grid-template-columns: 1fr; }
	.checkout-form .form-row-2 { grid-template-columns: 1fr; }
}

/* ============================================
   CONFIRMATION
   ============================================ */
.confirmation-card { max-width: 640px; margin: 0 auto; text-align: center; }
.confirmation-icon {
	width: 64px; height: 64px;
	margin: 0 auto 1rem;
	background: var(--blue);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}
.confirmation-card h1 { margin: 0 0 .3rem; font: 400 1.5rem/1 var(--display); }
.confirmation-order-number { color: var(--blue); font-weight: 500; margin: 0 0 .5rem; }
.confirmation-message { color: var(--muted); margin: 0 0 2rem; font-size: .88rem; }
.confirmation-details { background: white; padding: 1.5rem; border-radius: 12px; text-align: left; margin-bottom: 1.5rem; }
.confirmation-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.confirmation-row:last-child { border: none; }
.confirmation-items { background: white; padding: 1.5rem; border-radius: 12px; text-align: left; margin-bottom: 1.5rem; }
.confirmation-items h3 { margin: 0 0 .8rem; font: 500 .95rem/1 var(--display); }
.confirmation-item { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .82rem; }
.confirmation-total { font-weight: 600; border-top: 1px solid var(--line); padding-top: .5rem; margin-top: .3rem; }
.confirmation-discount p:last-child { color: #27ae60; }
.confirmation-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; margin-top: 1rem; }

/* ============================================
   ACCOUNT PAGES
   ============================================ */
.account-welcome { margin-bottom: 2rem; }
.account-welcome p { margin: 0; font-size: .9rem; }
.account-welcome .text-muted { color: var(--muted); font-size: .82rem; margin-top: .2rem; }
.account-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.account-card {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}
.account-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); transform: translateY(-2px); }
.account-card h3 { margin: 0 0 .3rem; font: 500 .95rem/1 var(--display); }
.account-card p { margin: 0; font-size: .78rem; color: var(--muted); }
.section-subtitle { font: 500 1rem/1 var(--display); margin: 2rem 0 1rem; letter-spacing: -.02em; }
.account-footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.alert { padding: .8rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: .85rem; }
.alert-success { background: #f0fff4; color: #27ae60; }
.alert-danger { background: #fff0f0; color: #c0392b; }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 999px; font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.badge-pending { background: #fff8e1; color: #f57f17; }
.badge-processing { background: #e3f2fd; color: #1565c0; }
.badge-shipped { background: #e8f5e9; color: #2e7d32; }
.badge-delivered { background: #e8f5e9; color: #2e7d32; }
.badge-cancelled { background: #fce4ec; color: #c62828; }
.orders-table-wrap { overflow-x: auto; background: white; border-radius: 12px; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { text-align: left; padding: .8rem 1rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 1px solid var(--line); }
.orders-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .85rem; }
.orders-table td a { color: var(--blue); text-decoration: none; }
.orders-list { display: flex; flex-direction: column; gap: .8rem; }
.order-card {
	display: block;
	background: white;
	padding: 1.2rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s;
}
.order-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; }
.order-card-header strong { font-size: .9rem; }
.order-card-header small { display: block; font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.order-card-body { display: flex; gap: 2rem; font-size: .82rem; color: var(--muted); }
.order-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.order-info-card, .order-items-card { background: white; padding: 1.5rem; border-radius: 12px; }
.order-info-card h3, .order-items-card h3 { margin: 0 0 1rem; font: 500 .95rem/1 var(--display); }
.info-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .82rem; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: none; }
.info-row span:first-child { color: var(--muted); }
.order-item-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.order-item-row:last-of-type { border: none; }
.order-item-name { margin: 0; font-weight: 500; font-size: .85rem; }
.order-item-variant { margin: 0; font-size: .72rem; color: var(--muted); }
.order-item-qty { margin: 0; font-size: .72rem; color: var(--muted); }
.order-item-price { margin: 0; font-weight: 500; }
.order-totals { margin-top: 1rem; padding-top: .5rem; border-top: 1px solid var(--line); }
.checkbox-label { display: flex; align-items: center; gap: .5rem; font-size: .82rem; margin: 1rem 0; }
.text-muted { color: var(--muted); }
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.address-card-display { background: white; padding: 1.2rem; border-radius: 12px; }
.address-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.address-card-display p { margin: .2rem 0; font-size: .82rem; line-height: 1.5; }
.address-card-actions { display: flex; gap: .5rem; margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.address-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	font-size: .9rem;
	text-decoration: none;
	transition: background .2s;
}
.edit-btn { background: var(--paper); color: var(--blue); }
.edit-btn:hover { background: var(--blue); color: white; }
.delete-btn { background: var(--paper); color: #c0392b; }
.delete-btn:hover { background: #c0392b; color: white; }
@media (max-width: 760px) {
	.order-detail-layout { grid-template-columns: 1fr; }
	.account-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body { margin: 0; background: #f5f5f5; font-family: var(--body); }
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
	background: var(--black);
	color: white;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
	height: 100vh;
}
.admin-brand {
	font: 600 1rem/1 var(--display);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.admin-brand .brand-mark { font-size: 1.6rem; }
.admin-nav { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.admin-nav a {
	padding: .65rem 1rem;
	border-radius: 8px;
	font-size: .82rem;
	text-decoration: none;
	color: rgba(255,255,255,.6);
	transition: all .15s;
}
.admin-nav a:hover { background: rgba(255,255,255,.08); color: white; }
.admin-nav a.active { background: var(--blue); color: white; }
.admin-nav-group { margin: .15rem 0; }
.admin-nav-toggle {
	padding: .65rem 1rem;
	border-radius: 8px;
	font-size: .82rem;
	color: rgba(255,255,255,.6);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all .15s;
}
.admin-nav-toggle::-webkit-details-marker { display: none; }
.admin-nav-toggle::after { content: '\25B8'; font-size: 1.5em; transition: transform .2s; }
.admin-nav-group[open] > .admin-nav-toggle::after { transform: rotate(90deg); }
.admin-nav-toggle:hover { background: rgba(255,255,255,.08); color: white; }
.admin-nav-sub { display: flex; flex-direction: column; gap: .1rem; padding-left: .8rem; }
.admin-nav-sub a {
	padding: .5rem .8rem;
	border-radius: 6px;
	font-size: .78rem;
	text-decoration: none;
	color: rgba(255,255,255,.5);
	transition: all .15s;
}
.admin-nav-sub a:hover { background: rgba(255,255,255,.08); color: white; }
.admin-nav-sub a.active { background: var(--blue); color: white; }
.admin-sidebar-footer {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .78rem;
}
.admin-sidebar-footer a { color: rgba(255,255,255,.5); text-decoration: none; }
.admin-sidebar-footer a:hover { color: white; }
.admin-content { padding: 1.5rem 2rem; overflow-x: auto; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.admin-topbar h1 { margin: 0; font: 500 1.4rem/1 var(--display); letter-spacing: -.03em; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: white; padding: 1.2rem; border-radius: 12px; }
.stat-card h3 { margin: 0 0 .2rem; font: 600 1.4rem/1 var(--display); color: var(--blue); }
.stat-card p { margin: 0; font-size: .75rem; color: var(--muted); }
.admin-section { background: white; padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; }
.admin-section h2 { margin: 0 0 1rem; font: 500 1.05rem/1 var(--display); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: .6rem .8rem; font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 2px solid var(--line); white-space: nowrap; }
.admin-table td { padding: .6rem .8rem; border-bottom: 1px solid var(--line); font-size: .82rem; vertical-align: middle; }
.admin-table td a { text-decoration: none; }
.admin-search { display: flex; gap: .5rem; margin-bottom: 1rem; }
.admin-search input, .admin-search select {
	padding: .5rem .8rem;
	border: 1px solid var(--line);
	border-radius: 6px;
	font-size: .82rem;
}
.admin-filters { margin-bottom: 1rem; }
.admin-form-card { background: white; padding: 2rem; border-radius: 12px; max-width: 700px; }
.admin-form-card .form-group { margin-bottom: 1rem; }
.admin-form-card label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
.admin-form-card .form-control,
.admin-form-card input,
.admin-form-card select,
.admin-form-card textarea {
	width: 100%;
	padding: .65rem .8rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: .85rem;
}
.admin-form-card .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-form-card input[type="checkbox"] { width: auto; }
.admin-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-card { background: white; padding: 1.5rem; border-radius: 12px; }
.admin-card h3 { margin: 0 0 .8rem; font: 500 .95rem/1 var(--display); }
.inline-form { display: flex; gap: .5rem; align-items: center; }
.inline-form select { padding: .4rem .6rem; border: 1px solid var(--line); border-radius: 6px; font-size: .82rem; }
.btn { padding: .4rem .8rem; border-radius: 6px; font-size: .78rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; display: inline-flex; align-items: center; gap: .3rem; transition: all .15s; }
.btn-sm { padding: .3rem .6rem; font-size: .72rem; }
.btn-primary { background: var(--blue); color: white; }
.btn-success { background: #27ae60; color: white; }
.btn-outline-primary { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline-primary:hover { background: var(--blue); color: white; }
.btn-outline-secondary { border-color: var(--line); color: var(--muted); background: transparent; }
.btn-outline-danger { border-color: #c0392b; color: #c0392b; background: transparent; }
.btn-outline-danger:hover { background: #c0392b; color: white; }
@media (max-width: 900px) {
	.admin-layout { grid-template-columns: 1fr; }
	.admin-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; padding: 1rem; }
	.admin-nav { flex-direction: row; flex-wrap: wrap; }
	.admin-nav a { padding: .4rem .7rem; }
	.admin-nav-group { display: contents; }
	.admin-nav-group > .admin-nav-toggle { padding: .4rem .7rem; font-size: .82rem; }
	.admin-nav-group > .admin-nav-toggle::after { display: none; }
	.admin-nav-sub { flex-direction: row; flex-wrap: wrap; padding-left: 0; gap: .1rem; }
	.admin-nav-sub a { padding: .3rem .6rem; font-size: .72rem; }
	.admin-sidebar-footer { border-top: none; padding-top: 0; }
	.admin-detail-grid { grid-template-columns: 1fr; }
	.admin-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CART TOAST
   ============================================ */
.cart-toast {
	display: none;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	padding: .8rem 1.5rem;
	border-radius: 8px;
	font-size: .82rem;
	font-weight: 500;
	z-index: 10000;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.toast-success { background: var(--black); color: white; }
.toast-error { background: #c0392b; color: white; }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(17, 17, 17, .7);
	backdrop-filter: blur(4px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: exitFadeIn .3s ease;
}
.exit-popup-card {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 16px;
	text-align: center;
	max-width: 420px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,.3);
	animation: exitSlideUp .4s cubic-bezier(.2,.75,.2,1);
}
.exit-popup-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--muted);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background .2s;
}
.exit-popup-close:hover { background: var(--paper); }
.exit-popup-badge {
	display: inline-block;
	background: var(--blue);
	color: white;
	font: 600 .6rem/1 var(--display);
	padding: .4rem .8rem;
	border-radius: 999px;
	letter-spacing: .15em;
	margin-bottom: 1rem;
}
.exit-popup-card h2 {
	margin: 0;
	font: 300 clamp(2.5rem, 5vw, 3.5rem)/1 var(--display);
	letter-spacing: -.06em;
}
.exit-popup-card > p {
	margin: .3rem 0 0;
	color: var(--muted);
	font-size: .9rem;
}
.exit-popup-code {
	margin: 1.2rem 0 1.5rem !important;
	font-size: .85rem !important;
	color: var(--black) !important;
}
.exit-popup-code strong {
	background: var(--paper);
	padding: .3rem .6rem;
	border-radius: 4px;
	font-family: monospace;
	letter-spacing: .1em;
}
.copy-coupon-btn {
	background: none;
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: .2rem .4rem;
	cursor: pointer;
	font-size: .8rem;
	margin-left: .5rem;
	vertical-align: middle;
	transition: background .2s;
}
.copy-coupon-btn:hover {
	background: var(--paper);
}
@keyframes exitFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   COUPON SECTION (Cart)
   ============================================ */
.coupon-input-wrap { display: flex; gap: .5rem; margin: .8rem 0; }
.coupon-input-wrap input {
	flex: 1;
	padding: .6rem .8rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: .82rem;
	font-family: var(--body);
}
.coupon-input-wrap input:focus { outline: none; border-color: var(--blue); }
.coupon-apply-btn {
	padding: .6rem 1rem;
	background: var(--black);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: .72rem;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: .06em;
	cursor: pointer;
	transition: background .2s;
	white-space: nowrap;
}
.coupon-apply-btn:hover { background: var(--blue); }
.coupon-message { margin: .3rem 0; min-height: 1.2em; }
.coupon-applied {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem .8rem;
	background: var(--paper);
	border-radius: 8px;
	margin: .8rem 0;
	font-size: .82rem;
}
.coupon-applied span { color: var(--muted); }
.coupon-applied strong { color: var(--black); text-transform: uppercase; letter-spacing: .08em; }
.coupon-remove-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--muted);
	font-size: .9rem;
	padding: .2rem .4rem;
	border-radius: 4px;
	transition: all .15s;
}
.coupon-remove-btn:hover { color: #c0392b; background: rgba(192,57,43,.08); }
.summary-discount span:last-child { color: #27ae60; }

/* ============================================
   LANDING PAGE STYLES
   ============================================ */
.landing-hero {
	min-height: 100vh;
	display: flex;
	align-items: stretch;
	background: var(--black);
	color: white;
}
.landing-hero .hero-visual {
	position: relative;
	overflow: hidden;
	background: #c8c0b5;
}
.landing-hero .hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.landing-hero .hero-word {
	position: absolute;
	z-index: 0;
	top: 15%;
	left: -3%;
	font: 300 clamp(5rem, 12vw, 12rem)/1 var(--display);
	letter-spacing: -.08em;
	color: rgba(255,255,255,.25);
}
.landing-hero .hero-copy {
	padding: clamp(6rem, 12vh, 9rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.landing-hero .hero-actions { margin-top: 2rem; }
.landing-section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 7rem); }
.landing-section h2 { margin: 0 0 2rem; font: 300 clamp(2.2rem, 5vw, 4rem)/1 var(--display); letter-spacing: -.05em; }

/* Colour Selector */
.colour-selector { text-align: center; background: var(--paper); }
.colour-options { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }
.colour-option {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 3px solid transparent;
	cursor: pointer;
	transition: all .3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.colour-option.active { border-color: var(--blue); transform: scale(1.15); box-shadow: 0 4px 16px rgba(0,102,255,.3); }
.colour-option:hover { transform: scale(1.08); }
.colour-product-display { margin: 2rem auto; max-width: 500px; }
.colour-product-display img { width: 100%; height: auto; border-radius: 12px; }
.colour-details { max-width: 600px; margin: 2rem auto 0; text-align: center; }
.colour-details h3 { margin: 0 0 .5rem; font: 500 1.3rem/1 var(--display); text-transform: capitalize; }
.colour-desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.colour-selectors { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.selector-group { text-align: center; }
.selector-group label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .3rem; }
.selector-group select { padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 8px; font-size: .85rem; background: white; min-width: 120px; }
.landing-price { font: 600 1.5rem/1 var(--display); color: var(--blue); margin: 0; }
.landing-stock { font-size: .82rem; color: var(--muted); margin: 0; }
.landing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.landing-actions .button { min-width: 180px; justify-content: center; }

/* Mini-Cart */
.mini-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; }
.mini-cart {
	position: fixed;
	top: 0;
	right: 0;
	width: 380px;
	max-width: 90vw;
	height: 100vh;
	background: white;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 20px rgba(0,0,0,.2);
	animation: slideInRight .3s ease;
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mini-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line); }
.mini-cart-header h3 { margin: 0; font: 500 1rem/1 var(--display); }
.mini-cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); }
.mini-cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.mini-cart-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--line); }
.mini-cart-summary { padding: 1rem 1.5rem; border-top: 1px solid var(--line); background: var(--paper); }
.mini-coupon-section { margin: .5rem 0; }

/* Lead Magnet */
.lead-magnet { background: var(--black); color: white; text-align: center; }
.lead-magnet h2 { color: white; }
.lead-magnet-sub { color: rgba(255,255,255,.6); margin-bottom: 1.5rem; font-size: .92rem; }
.lead-magnet-form { display: flex; gap: .5rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.lead-magnet-input {
	flex: 1;
	min-width: 200px;
	padding: .8rem 1.2rem;
	border: 2px solid rgba(255,255,255,.2);
	border-radius: 8px;
	font-size: .92rem;
	background: rgba(255,255,255,.08);
	color: white;
}
.lead-magnet-input::placeholder { color: rgba(255,255,255,.4); }
.lead-magnet-input:focus { outline: none; border-color: var(--blue); }
.lead-magnet-btn {
	padding: .8rem 2rem;
	background: var(--blue);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: .88rem;
	cursor: pointer;
	transition: background .2s;
}
.lead-magnet-btn:hover { background: var(--blue-light); }
.lead-magnet-result { max-width: 500px; margin: 1.5rem auto 0; }
.lead-magnet-success { display: flex; align-items: center; justify-content: center; gap: .8rem; background: rgba(39,174,96,.15); border: 1px solid #27ae60; border-radius: 8px; padding: 1rem; }
.lead-magnet-check { font-size: 1.5rem; color: #27ae60; }
.lead-magnet-success p { margin: 0; color: #27ae60; font-weight: 500; }

/* Hero Coupon */
.hero-coupon-wrap {
	margin-top: 2rem;
	text-align: center;
}
.hero-coupon-tag {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--blue-light);
	margin-bottom: .3rem;
}
.hero-coupon-headline {
	font: 500 1rem/1.3 var(--display);
	color: white;
	margin: 0 0 .8rem;
}
.hero-coupon-hint {
	font-size: .72rem;
	color: rgba(255,255,255,.5);
	margin-top: .8rem;
}

/* Coupon Reveal */
.coupon-reveal-wrap { margin-top: 1.5rem; text-align: center; }
.coupon-reveal-box {
	margin-top: 1rem;
	position: relative;
	display: inline-block;
	min-width: 280px;
}
.coupon-blur {
	display: block;
	width: 100%;
	padding: .8rem 1.5rem;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 8px;
	filter: blur(6px);
	transition: filter .5s ease;
	box-sizing: border-box;
}
.coupon-blur span {
	font-family: monospace;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: .15em;
	color: white;
}
.coupon-reveal-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	padding: .6rem 1.5rem;
	background: var(--blue);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: .88rem;
	cursor: pointer;
	transition: background .2s;
	white-space: nowrap;
}
.coupon-reveal-btn:hover { background: var(--blue-light); }
.coupon-visible {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	padding: .8rem 1rem;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 8px;
	animation: fadeIn .3s ease;
}
.coupon-code-text {
	font-family: monospace;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: .15em;
	color: white;
}
.copy-coupon-btn {
	background: none;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 4px;
	padding: .3rem .5rem;
	cursor: pointer;
	font-size: .9rem;
	color: white;
	transition: background .2s;
}
.copy-coupon-btn:hover { background: rgba(255,255,255,.1); }

/* Trust Section */
.trust-section { background: var(--paper); }
.trust-card {
	background: white;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	text-align: center;
	height: 100%;
	transition: transform .3s, box-shadow .3s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.trust-icon { font: 300 2.5rem/1 var(--display); color: var(--blue); margin-bottom: 1rem; }
.trust-card h3 { font: 500 1rem/1.2 var(--display); margin: 0 0 .6rem; }
.trust-card p { color: var(--muted); font-size: .82rem; line-height: 1.6; margin: 0; }

/* Final CTA */
.final-cta { background: var(--black); color: white; text-align: center; }
.final-cta h2 { color: white; }
.final-cta h2 em { color: var(--blue-light); }
.final-landing-price { font: 600 1.8rem/1 var(--display); color: var(--blue); margin: 1rem 0 1.5rem; }
.landing-final-note { color: rgba(255,255,255,.5); font-size: .82rem; margin-top: 1rem; }

@media (max-width: 760px) {
	.landing-hero .hero-copy { padding: 6rem 1.4rem 4rem; }
	.colour-options { gap: .8rem; }
	.colour-option { width: 52px; height: 52px; }
	.mini-cart { width: 100vw; }
	.landing-actions .button { min-width: 140px; font-size: .78rem; }
}
