/* ==========================================================================
   H. SHEIKH LONDON — Design System
   Palette: Primary Ivory / Champagne Gold / Black / Soft White / Warm Beige
   Type: Cormorant Garamond (serif display) + Manrope (body/UI)
   ========================================================================== */

:root {
  /* -- Core palette (client-specified) -- */
  --primary: #f7f3ec;
  --champagne: #c9a64b;
  --black: #111111;
  --soft-white: #fcfcfc;
  --warm-beige: #eae2d5;

  /* -- Derived tones -- */
  --champagne-light: #ddc27e;
  --champagne-deep: #a1813a;
  --ink: #111111;
  --ink-soft: #4a4742;
  --ink-faint: #8a867c;
  --hairline: rgba(17, 17, 17, 0.12);
  --hairline-light: rgba(252, 252, 252, 0.22);

  /* -- Aura assistant identity: glass + gold glow, no pink -- */
  --aura-glow: #f3e6c2;
  --aura-gold: #c9a64b;
  --aura-glass: rgba(255, 255, 255, 0.55);

  /* -- Type -- */
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Manrope", "Inter", Arial, sans-serif;

  /* -- Shape / Motion -- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --ease-lux: cubic-bezier(0.16, 0.8, 0.24, 1);
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.07);
  --shadow-strong: 0 20px 50px rgba(17, 17, 17, 0.16);
  --container: 1280px;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--primary);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, .brand-word { font-family: var(--font-serif); font-weight: 500; color: var(--ink); }

a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--champagne); color: var(--soft-white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 6vw; }

/* ==========================================================================
   Accessibility utilities
   ========================================================================== */

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--black); color: var(--soft-white);
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 13px; letter-spacing: 0.04em;
  transition: top 0.3s var(--ease-lux);
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

em { font-style: italic; color: var(--champagne); font-weight: 400; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background 0.4s var(--ease-lux), color 0.35s ease, border-color 0.35s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--soft-white);
  border: 1px solid var(--black);
}
.btn-primary:hover { background: var(--champagne); border-color: var(--champagne); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(201, 166, 75, 0.32); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--soft-white); }

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(252, 252, 252, 0.55);
  color: var(--soft-white);
}
.btn-outline-light:hover { background: var(--soft-white); color: var(--black); border-color: var(--soft-white); }

.btn-gold {
  background: var(--champagne);
  color: var(--soft-white);
  border: 1px solid var(--champagne);
}
.btn-gold:hover { background: var(--black); border-color: var(--black); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--hairline);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--champagne); background: var(--soft-white); }

.btn-text { background: none; border: none; padding: 8px 4px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.btn-text:hover { color: var(--ink); text-decoration: underline; }

.btn-sm { min-height: 42px; padding: 0 20px; font-size: 10.5px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Loader
   ========================================================================== */

.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease-lux), visibility 0.8s var(--ease-lux);
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-mark {
  width: 56px; height: 56px; object-fit: contain;
  opacity: 0;
  animation: loaderFade 1s var(--ease-lux) 0.15s forwards;
}
.loader-drop {
  width: 6px; height: 10px;
  border-radius: 50% 50% 50% 4%;
  background: linear-gradient(160deg, var(--champagne-light), var(--champagne));
  transform: rotate(45deg);
  animation: loaderDrop 1.6s ease-in-out infinite;
}
.loader-word {
  font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-soft);
  opacity: 0;
  animation: loaderFade 1s var(--ease-lux) 0.4s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderDrop {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.5; }
  50% { transform: translateY(6px) rotate(45deg); opacity: 1; }
}

/* ==========================================================================
   Header / Nav — transparent on hero, solid once scrolled
   ========================================================================== */

.announcement {
  height: 36px;
  background: var(--black);
  color: var(--warm-beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  text-align: center; padding: 0 20px;
}
.announcement-soldout { background: var(--champagne-deep); color: var(--black); }

.site-header {
  position: sticky; top: 0; z-index: 500;
  height: 84px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(252, 252, 252, 0.86);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux), color 0.4s var(--ease-lux);
  color: var(--ink);
}

/* Homepage hero variant: starts fully transparent + light text, floats over the hero,
   then crossfades to the standard solid header once the visitor scrolls past it. */
.site-header.transparent-hero {
  position: fixed; width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  color: var(--soft-white);
}
.site-header.transparent-hero .main-nav a { color: rgba(252, 252, 252, 0.88); }
.site-header.transparent-hero .main-nav a:hover { color: var(--soft-white); }
.site-header.transparent-hero .bag-button,
.site-header.transparent-hero .enquire-link,
.site-header.transparent-hero .cart-link { border-color: rgba(252, 252, 252, 0.5); color: var(--soft-white); }
.site-header.transparent-hero .menu-toggle span { background: var(--soft-white); }
.site-header.transparent-hero.is-scrolled {
  position: sticky;
  background: rgba(252, 252, 252, 0.9);
  border-bottom-color: var(--hairline);
  color: var(--ink);
}
.site-header.transparent-hero.is-scrolled .main-nav a { color: var(--ink-soft); }
.site-header.transparent-hero.is-scrolled .main-nav a:hover { color: var(--ink); }
.site-header.transparent-hero.is-scrolled .bag-button,
.site-header.transparent-hero.is-scrolled .enquire-link,
.site-header.transparent-hero.is-scrolled .cart-link { border-color: var(--hairline); color: var(--ink); }
.site-header.transparent-hero.is-scrolled .menu-toggle span { background: var(--ink); }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; flex-shrink: 0; }
.brand-word { font-size: 23px; letter-spacing: 0.03em; line-height: 1; display: flex; align-items: baseline; gap: 8px; white-space: nowrap; color: inherit; }
.brand-word small { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.32em; color: inherit; opacity: 0.65; font-weight: 400; white-space: nowrap; }

.main-nav { display: flex; gap: 34px; font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-soft); }
.main-nav a { position: relative; padding: 4px 0; transition: color 0.3s ease; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: currentColor; transition: width 0.35s var(--ease-lux);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.enquire-link, .bag-button {
  border: 1px solid var(--hairline); border-radius: var(--radius-pill);
  padding: 9px 18px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.enquire-link:hover, .bag-button:hover { border-color: var(--champagne); }
.bag-button .bag-count {
  background: var(--champagne); color: var(--soft-white);
  border-radius: 50%; min-width: 18px; height: 18px; padding: 0 3px;
  display: grid; place-items: center; font-size: 10px;
}

.cart-link {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline); color: inherit;
  transition: border-color 0.3s ease;
}
.cart-link:hover { border-color: var(--champagne); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 17px; height: 17px; padding: 0 3px;
  border-radius: 50%; background: var(--champagne); color: var(--soft-white);
  font-size: 10px; font-weight: 600; display: grid; place-items: center;
}
.cart-count:empty { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.menu-toggle span { width: 21px; height: 1px; background: var(--ink); transition: transform 0.35s var(--ease-lux), opacity 0.25s ease, background 0.3s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 84px 0 0 0; z-index: 400;
  background: rgba(247, 243, 236, 0.98);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-10px); opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux), visibility 0.4s;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav a { font-family: var(--font-serif); font-size: 26px; color: var(--ink); }
.mobile-nav .btn { margin-top: 10px; }

/* ==========================================================================
   Shared section rhythm
   ========================================================================== */

.section { padding: 96px 6vw; }
.section-tight { padding: 68px 6vw; }
.section-heading { max-width: 680px; margin: 0 0 44px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p:not(.eyebrow) { color: var(--ink-soft); line-height: 1.8; font-size: 16px; font-weight: 300; }
.section h2 {
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-alt { background: var(--warm-beige); }
.section-dark { background: var(--black); color: var(--soft-white); }
.section-dark .eyebrow { color: var(--champagne-light); }
.section-dark h2 { color: var(--soft-white); }
.section-dark p:not(.eyebrow) { color: rgba(252, 252, 252, 0.72); }

.page-hero {
  padding: 160px 6vw 90px;
  text-align: center;
  background: linear-gradient(160deg, var(--primary), var(--warm-beige));
}
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.05; margin-bottom: 18px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.8; }

/* ==========================================================================
   Forms (shared: enquiry / contact / checkout / newsletter)
   ========================================================================== */

.form-row { display: flex; flex-direction: column; }
.form-row label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.form-row .optional { text-transform: none; letter-spacing: 0; color: var(--ink-faint); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1px solid var(--hairline); background: var(--soft-white);
  border-radius: var(--radius-sm); padding: 12px 16px; font-family: var(--font-sans); font-size: 14px; color: var(--ink);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--champagne); }
.form-row-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-row-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--champagne); }
.form-row-checkbox label { font-size: 13.5px; text-transform: none; letter-spacing: 0; color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 13.5px; color: var(--ink-soft); min-height: 18px; }
.form-status[data-tone="success"] { color: #4b6b4f; }
.form-status[data-tone="error"] { color: #a04a3f; }

.modal-close { position: absolute; top: 20px; right: 20px; font-size: 20px; color: var(--ink-soft); width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; transition: background 0.3s ease; }
.modal-close:hover { background: rgba(17, 17, 17, 0.06); }

/* ==========================================================================
   Newsletter popup
   ========================================================================== */

.newsletter-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-lux), visibility 0.4s;
}
.newsletter-popup.is-open { opacity: 1; visibility: visible; }
.newsletter-popup-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 44px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-strong);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.4s var(--ease-lux);
  position: relative;
}
.newsletter-popup.is-open .newsletter-popup-card { transform: translateY(0) scale(1); }
.newsletter-popup-card h2 { font-size: 28px; margin: 6px 0 10px; }
.newsletter-popup-card > p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; font-weight: 300; }
.newsletter-popup-card input[type="email"] {
  width: 100%; border: 1px solid var(--hairline); background: var(--soft-white);
  border-radius: var(--radius-sm); padding: 13px 16px; font-family: var(--font-sans); font-size: 14px; margin-bottom: 14px;
}
.newsletter-popup-actions { display: flex; align-items: center; gap: 14px; }
.popup-consent { font-size: 12px; color: var(--ink-faint); line-height: 1.6; margin-top: 14px; font-weight: 300; }

/* ==========================================================================
   Aura — glowing orb assistant (glassmorphism, no robot, no pink)
   ========================================================================== */

.aura-orb { position: relative; width: 46px; height: 46px; filter: drop-shadow(0 10px 26px rgba(201, 166, 75, 0.28)); }
.aura-orb--small { width: 34px; height: 34px; }
.aura-orb__core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fffdf6 0%, var(--aura-glow) 42%, var(--champagne) 100%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.55),
    0 0 0 1px rgba(201, 166, 75, 0.35);
  animation: auraBreathe 4.5s ease-in-out infinite;
}
.aura-orb:hover .aura-orb__core { animation-duration: 2.2s; }
.aura-orb__ring {
  position: absolute; inset: -14%;
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 75, 0.35);
  animation: auraRing 6s linear infinite;
}
.aura-orb__glow {
  position: absolute; inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 75, 0.35), transparent 70%);
  filter: blur(6px);
  animation: auraPulseGlow 3.2s ease-in-out infinite;
  z-index: -1;
}
@keyframes auraBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes auraRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes auraPulseGlow { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ==========================================================================
   Aura widget (floating launcher + chat drawer)
   ========================================================================== */

.aura-widget { position: fixed; right: 26px; bottom: 26px; z-index: 900; }
.aura-speech {
  position: absolute; right: 88px; bottom: 12px;
  width: 210px; text-align: left;
  border: 1px solid var(--hairline);
  background: rgba(252, 252, 252, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  animation: speechFloat 5s ease-in-out infinite;
}
@keyframes speechFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.aura-speech strong { display: block; color: var(--ink); font-size: 13.5px; font-family: var(--font-serif); }
.aura-speech span { font-size: 11.5px; color: var(--ink-soft); }

.aura-bubble {
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(252, 252, 252, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 166, 75, 0.4);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-lux);
}
.aura-bubble:hover { transform: scale(1.06); }

.aura-chat {
  position: absolute; right: 0; bottom: 88px;
  width: 380px; max-width: calc(100vw - 40px);
  border-radius: var(--radius-lg);
  background: rgba(252, 252, 252, 0.92);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.94) translateY(10px);
  opacity: 0; visibility: hidden;
  transition: transform 0.4s var(--ease-lux), opacity 0.35s ease, visibility 0.4s;
}
.aura-chat.is-open { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
.aura-chat-header {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  background: linear-gradient(120deg, var(--black), var(--champagne-deep) 160%);
  color: var(--soft-white);
}
.aura-chat-header strong { font-family: var(--font-serif); font-size: 16px; display: block; }
.aura-chat-header p { font-size: 11.5px; color: rgba(252, 252, 252, 0.72); }
.aura-close { margin-left: auto; color: rgba(252, 252, 252, 0.7); font-size: 18px; }
.aura-close:hover { color: var(--soft-white); }

.aura-messages { padding: 18px 20px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.message {
  padding: 12px 15px; border-radius: 16px; line-height: 1.6; font-size: 13.5px; max-width: 88%;
  animation: msgIn 0.35s var(--ease-lux) both;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.message.bot { background: var(--warm-beige); color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.message.user { background: var(--black); color: var(--soft-white); border-bottom-right-radius: 4px; align-self: flex-end; }

.typing-indicator { display: inline-flex; gap: 4px; align-self: flex-start; padding: 12px 15px; background: var(--warm-beige); border-radius: 16px; border-bottom-left-radius: 4px; }
.typing-indicator span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); animation: typingDot 1.2s ease-in-out infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.aura-suggestions { padding: 0 20px 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.aura-suggestions button {
  border: 1px solid rgba(201, 166, 75, 0.35); border-radius: var(--radius-pill);
  background: rgba(252, 252, 252, 0.6); color: var(--ink);
  padding: 8px 14px; font-size: 11.5px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.aura-suggestions button:hover { background: var(--soft-white); border-color: var(--champagne); }

.aura-input { display: flex; border-top: 1px solid var(--hairline); }
.aura-input input { flex: 1; border: 0; padding: 16px 18px; background: transparent; font-family: var(--font-sans); font-size: 13.5px; }
.aura-input input:focus { outline: none; }
.aura-input button { border: 0; background: var(--black); color: var(--soft-white); padding: 0 20px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.aura-input button:hover { background: var(--champagne); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--black); color: rgba(252, 252, 252, 0.72); }
.footer-top {
  padding: 90px 6vw 60px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px;
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand .brand-word { color: var(--soft-white); }
.footer-brand .brand-word small { color: rgba(252, 252, 252, 0.55); }
.footer-top > p { max-width: 320px; color: rgba(252, 252, 252, 0.55); font-size: 14px; line-height: 1.75; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne-light); margin-bottom: 18px; font-weight: 500; }
.footer-col a, .footer-col span, .footer-col button { display: block; width: 100%; text-align: left; font-family: inherit; font-size: 13.5px; color: rgba(252, 252, 252, 0.6); margin-bottom: 12px; transition: color 0.3s ease; }
.footer-col a:hover, .footer-col button:hover { color: var(--soft-white); }
.footer-bottom { padding: 26px 6vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(252, 252, 252, 0.4); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(252, 252, 252, 0.6); transition: color 0.3s ease; }
.footer-social a:hover { color: var(--champagne-light); }

/* ==========================================================================
   Toast
   ========================================================================== */

.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(40px);
  opacity: 0; background: var(--black); color: var(--soft-white); padding: 14px 24px;
  border-radius: var(--radius-pill); z-index: 1200; font-size: 13.5px;
  transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   Shared type helpers
   ========================================================================== */

.lede { font-size: 17px; line-height: 1.8; color: var(--ink-soft); font-weight: 300; margin: 18px 0 26px; }
.tagline { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   Home — Hero
   ========================================================================== */

.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  padding: 120px 6vw 60px;
  background: linear-gradient(150deg, #1b1815 0%, #2a251f 45%, var(--champagne-deep) 150%);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; color: var(--soft-white); max-width: 560px; }
.hero-copy .eyebrow { color: var(--champagne-light); }
.hero-copy h1 { color: var(--soft-white); font-size: clamp(48px, 7vw, 98px); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 22px; }
.hero-copy h1 em { color: var(--champagne-light); }
.hero-text { color: rgba(252, 252, 252, 0.78); font-size: 17px; line-height: 1.85; font-weight: 300; max-width: 440px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 2; display: grid; place-items: center; height: 100%; }
.hero-visual-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 166, 75, 0.4), transparent 60%);
  filter: blur(30px);
  transition: background 0.4s ease;
  pointer-events: none;
}
.hero-visual-card {
  position: relative; width: min(360px, 70vw);
  animation: heroFloat 7s ease-in-out infinite, heroRotate 16s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease-out;
}
.hero-visual-card img { border-radius: var(--radius-lg); }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes heroRotate { 0%, 100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }

.scroll-indicator {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2; color: rgba(252, 252, 252, 0.65);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding-bottom: 22px;
}
.scroll-indicator::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 16px;
  background: rgba(252, 252, 252, 0.5); transform: translateX(-50%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { opacity: 0; transform: translate(-50%, -6px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* ==========================================================================
   Home — Formula section
   ========================================================================== */

.formula-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.formula-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); transform-style: preserve-3d; }
.formula-photo img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.formula-copy h2 { margin-bottom: 6px; }
.formula-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 30px 0 34px; }
.formula-fact { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.formula-fact svg { width: 18px; height: 18px; color: var(--champagne); flex-shrink: 0; }

/* ==========================================================================
   Home — Benefits
   ========================================================================== */

.benefits-layout { max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.benefits-heading { max-width: 560px; margin-bottom: 50px; }
.benefits-heading p { color: var(--ink-soft); font-size: 15.5px; margin-top: 12px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.benefit { padding: 34px 26px; background: var(--soft-white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.benefit-icon { width: 34px; height: 34px; color: var(--champagne); margin-bottom: 18px; }
.benefit h3 { font-size: 19px; margin-bottom: 10px; }
.benefit p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ==========================================================================
   Ingredients — teaser (home) + detail (/ingredients)
   ========================================================================== */

.ingredients-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; align-items: start; }
.ingredients-photo-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); position: sticky; top: 110px; }
.ingredients-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-list { display: flex; flex-direction: column; gap: 26px; }
.ingredient-card { background: var(--soft-white); border-radius: var(--radius-md); padding: 30px; position: relative; box-shadow: var(--shadow-soft); }
.card-number { font-family: var(--font-serif); font-size: 15px; color: var(--champagne); display: block; margin-bottom: 8px; }
.card-science { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 4px; }
.ingredient-card h3 { font-size: 24px; margin-bottom: 10px; }
.ingredient-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }

.ingredients-detail { max-width: var(--container); margin: 0 auto; padding: 20px 6vw 40px; display: flex; flex-direction: column; gap: 90px; }
.ingredient-detail-card { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 64px; align-items: center; }
.ingredient-detail-card.reverse { grid-template-columns: 1.25fr 0.75fr; }
.ingredient-detail-card.reverse .ingredient-detail-photo { order: 2; }
.ingredient-detail-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.ingredient-detail-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ingredient-detail-copy h2 { margin: 6px 0 4px; }
.ingredient-detail-fact { border-top: 1px solid var(--hairline); padding-top: 16px; margin-top: 18px; }
.ingredient-detail-fact h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne-deep); margin-bottom: 8px; }
.ingredient-detail-fact p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }

/* Silicone Explained */
.silicone-card { max-width: 920px; margin: 0 auto; text-align: center; }
.silicone-card .lede { max-width: 620px; margin-left: auto; margin-right: auto; }
.silicone-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; text-align: left; margin: 44px 0 36px; }
.silicone-col { background: var(--soft-white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-soft); }
.silicone-col h3 { font-size: 22px; margin-bottom: 12px; color: var(--champagne-deep); }
.silicone-col p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }
.silicone-divider { font-family: var(--font-serif); font-style: italic; color: var(--ink-faint); font-size: 15px; }
.silicone-distinction { max-width: 680px; margin: 0 auto; font-size: 15px; color: var(--ink-soft); line-height: 1.8; padding: 22px 28px; border: 1px solid var(--hairline); border-radius: var(--radius-md); background: var(--soft-white); }

/* Formulated Without */
.without-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.without-card { display: flex; align-items: center; gap: 12px; padding: 22px 20px; background: var(--soft-white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); font-size: 14px; font-weight: 500; }
.without-card svg { width: 20px; height: 20px; color: var(--champagne); flex-shrink: 0; }

/* ==========================================================================
   Experience / story split (home)
   ========================================================================== */

.experience-section { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 440px; }
.experience-panel { display: flex; flex-direction: column; align-items: stretch; justify-content: center; }
.experience-image { overflow: hidden; padding: 0; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.experience-copy { background: var(--black); color: var(--soft-white); padding: 80px 6vw; }
.experience-copy .eyebrow { color: var(--champagne-light); }
.experience-copy h2 { color: var(--soft-white); margin-bottom: 18px; }
.experience-copy p { color: rgba(252, 252, 252, 0.75); font-size: 16px; line-height: 1.85; max-width: 440px; margin-bottom: 30px; font-weight: 300; }

/* ==========================================================================
   Product feature (home)
   ========================================================================== */

.product-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.product-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-copy h2 { margin-bottom: 10px; }
.product-copy ul { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.product-copy li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-soft); }
.product-copy li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); }
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 22px 0; }
.price-line span { font-size: 12px; color: var(--ink-faint); }
.price-line strong { font-family: var(--font-serif); font-size: 34px; }
.price-line small { font-size: 12px; color: var(--ink-faint); }
.product-actions { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.shipping-note { font-size: 13px; color: var(--ink-faint); line-height: 1.7; max-width: 480px; }

/* ==========================================================================
   Results — concerns + concept slider
   ========================================================================== */

.concerns-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.concern-card { background: var(--soft-white); border-radius: var(--radius-md); padding: 32px 26px; box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease-lux); }
.concern-card:hover { transform: translateY(-6px); }
.concern-card h3 { font-size: 21px; margin: 10px 0 12px; }
.concern-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

.concept-slider { max-width: 640px; margin: 0 auto; }
.concept-slider-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-strong); }
.concept-before, .concept-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.concept-after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.concept-after-wrap img { width: var(--frame-w, 640px); max-width: none; height: 100%; }
.concept-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--soft-white); box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.concept-handle::after { content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: var(--soft-white); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.concept-range { width: 100%; margin-top: 20px; accent-color: var(--champagne); }
.concept-labels { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px; }

/* ==========================================================================
   About page
   ========================================================================== */

.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.about-split-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.about-split-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-split-copy h2 { margin-bottom: 6px; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.timeline-item { background: var(--soft-white); border-radius: var(--radius-md); padding: 30px 24px; box-shadow: var(--shadow-soft); }
.timeline-item h3 { font-size: 19px; margin: 10px 0 10px; }
.timeline-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.value-card { padding: 6px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--champagne-deep); }
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

.about-cta { text-align: center; padding: 90px 6vw; }
.about-cta h2 { margin-bottom: 6px; }
.about-cta p { max-width: 460px; margin: 0 auto; }

/* ==========================================================================
   Meet Aura feature (home)
   ========================================================================== */

.aura-feature { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 96px 6vw; }
.aura-feature-copy h2 { margin: 10px 0 16px; }
.aura-feature-copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.85; max-width: 460px; margin-bottom: 28px; }
.aura-feature-visual { display: grid; place-items: center; }
.aura-orb--large { width: 220px; height: 220px; }

/* ==========================================================================
   Newsletter / launch section (home)
   ========================================================================== */

.launch-section { text-align: center; padding: 100px 6vw; background: var(--warm-beige); }
.launch-section h2 { margin: 10px 0 14px; }
.launch-section p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 36px; }
.email-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-form input { flex: 1; min-width: 220px; border: 1px solid var(--hairline); background: var(--soft-white); border-radius: var(--radius-pill); padding: 0 22px; height: 52px; font-family: var(--font-sans); font-size: 14px; }
.email-form .form-status { width: 100%; margin-top: 4px; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.enquire-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 60px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; align-items: start; }
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.enquire-card { background: var(--soft-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); position: sticky; top: 110px; }
.enquire-card h2 { font-size: 22px; margin-bottom: 10px; }
.enquire-card > p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; }
.enquire-card-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.contact-facts { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--hairline); padding-top: 24px; }
.contact-facts h4 { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne-deep); margin-bottom: 4px; }
.contact-facts p { font-size: 14px; color: var(--ink-soft); }
.contact-map { margin-top: 24px; height: 120px; border-radius: var(--radius-md); background: linear-gradient(140deg, var(--warm-beige), var(--primary)); display: grid; place-items: center; color: var(--ink-faint); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--hairline); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 4px; text-align: left; font-family: var(--font-serif); font-size: 18px; color: var(--ink); }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease-lux); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-lux); }
.faq-answer-inner { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.8; max-width: 640px; }

/* ==========================================================================
   Shop / product detail page
   ========================================================================== */

.shop-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; max-width: var(--container); margin: 0 auto; padding: 140px 6vw 40px; align-items: start; }
.shop-gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-strong); cursor: zoom-in; }
.shop-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.15s ease; }
.shop-gallery-main img.is-zoomed { transform: scale(1.7); }
.shop-gallery-main img.is-fading { opacity: 0; }

.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(252, 252, 252, 0.85); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 16px; color: var(--ink);
  box-shadow: var(--shadow-soft); transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gallery-arrow:hover { background: var(--soft-white); transform: translateY(-50%) scale(1.06); }
.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }
.gallery-expand {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(252, 252, 252, 0.85); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-soft);
  transition: background 0.3s ease;
}
.gallery-expand svg { width: 18px; height: 18px; }
.gallery-expand:hover { background: var(--soft-white); }

.gallery-lightbox {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(17, 17, 17, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
  padding: 40px;
}
.gallery-lightbox.is-open { opacity: 1; visibility: visible; }
.gallery-lightbox-img { max-width: min(880px, 90vw); max-height: 86vh; object-fit: contain; border-radius: var(--radius-sm); }
.gallery-lightbox .gallery-arrow { background: rgba(252, 252, 252, 0.15); color: var(--soft-white); }
.gallery-lightbox .gallery-arrow:hover { background: rgba(252, 252, 252, 0.3); }
.gallery-lightbox .gallery-arrow-prev { left: 24px; }
.gallery-lightbox .gallery-arrow-next { right: 24px; }
.gallery-lightbox-close { position: absolute; top: 24px; right: 24px; color: var(--soft-white); font-size: 26px; }
.gallery-lightbox-close:hover { background: rgba(252, 252, 252, 0.15); }

.checkout-product-thumb, .order-confirmation-thumb {
  display: block; width: 90px; height: 90px; object-fit: cover;
  border-radius: var(--radius-md); margin: 0 auto 20px; box-shadow: var(--shadow-soft);
}

.contact-product-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 24px; box-shadow: var(--shadow-soft);
}
.shop-gallery-thumbs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-top: 14px; }
.gallery-thumb { border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; aspect-ratio: 1; opacity: 0.7; transition: opacity 0.3s ease, border-color 0.3s ease; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.is-active { opacity: 1; border-color: var(--champagne); }

.shop-details h1 { margin: 6px 0 4px; }
.shop-quantity { display: flex; align-items: center; gap: 16px; margin: 26px 0; }
.shop-quantity > span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: var(--radius-pill); overflow: hidden; }
.qty-stepper button { width: 40px; height: 40px; font-size: 16px; color: var(--ink-soft); }
.qty-stepper button:hover { background: var(--warm-beige); }
.qty-stepper input { width: 42px; text-align: center; border: none; background: none; font-size: 14px; }
.shop-actions { margin-bottom: 8px; }
.shop-benefits { display: flex; flex-direction: column; gap: 10px; margin: 30px 0; padding-top: 26px; border-top: 1px solid var(--hairline); }
.shop-benefits li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; padding-left: 20px; position: relative; }
.shop-benefits li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); }
.shop-accordion { border-top: 1px solid var(--hairline); }
.shop-accordion details { border-bottom: 1px solid var(--hairline); padding: 16px 0; }
.shop-accordion summary { cursor: pointer; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.shop-accordion p { color: var(--ink-soft); font-size: 14px; line-height: 1.75; margin-top: 12px; }
.shop-trust { padding-top: 44px; padding-bottom: 44px; }

.product-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.product-gallery-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-soft); cursor: zoom-in; transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux); }
.product-gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.product-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.about-gallery-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.about-gallery-strip-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* ==========================================================================
   Cart / Checkout / Order summary (shared)
   ========================================================================== */

.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 60px; max-width: var(--container); margin: 0 auto; padding: 0 6vw; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 18px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 20px; align-items: center; background: var(--soft-white); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-soft); }
.cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-info h3 { font-size: 18px; margin-bottom: 2px; }
.cart-item-info p { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 10px; }
.cart-item-price { font-family: var(--font-serif); font-size: 20px; }
.cart-empty { text-align: center; padding: 60px 0; max-width: var(--container); margin: 0 auto; }
.cart-empty h2 { margin: 10px 0 26px; }

.cart-summary { background: var(--soft-white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft); position: sticky; top: 110px; }
.cart-summary h2 { font-size: 20px; margin-bottom: 22px; }
.cart-summary .form-row { margin-bottom: 18px; }
.discount-input { display: flex; gap: 10px; }
.discount-input input { flex: 1; }

.order-summary { border-top: 1px solid var(--hairline); padding-top: 18px; margin: 8px 0 24px; }
.order-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-soft); border-top: 1px solid var(--hairline); }
.order-summary-row:first-child { border-top: none; }
.order-summary-total { font-size: 17px; color: var(--ink); font-weight: 500; border-top: 1px solid var(--hairline); margin-top: 6px; padding-top: 14px; }

.checkout-form { display: flex; flex-direction: column; gap: 18px; }
.checkout-form h2 { font-size: 20px; margin: 4px 0 6px; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-section { max-width: 760px; margin: 0 auto; padding-left: 6vw; padding-right: 6vw; }
.legal-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.legal-body .btn { margin-top: 20px; }
.legal-body h2 { font-size: 24px; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 17px; margin: 24px 0 10px; }
.legal-body ol, .legal-body ul { color: var(--ink-soft); font-size: 15px; line-height: 1.85; margin: 0 0 18px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body .legal-updated { color: var(--ink-faint); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 30px; }
.legal-body .legal-note { background: var(--ivory, #f7f3ec); border-left: 3px solid var(--hairline); padding: 16px 20px; font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 34px; }
.legal-body .legal-placeholder { color: #a04a3f; font-style: italic; }

/* ==========================================================================
   Admin
   ========================================================================== */

.admin-login { min-height: 100vh; display: grid; place-items: center; background: var(--primary); padding: 24px; }
.admin-login-card { width: 100%; max-width: 380px; background: var(--soft-white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-strong); text-align: center; }
.admin-login-card h1 { margin: 6px 0 26px; }
.admin-login-card .form-row { text-align: left; margin-bottom: 22px; }

.admin-dashboard { max-width: 1200px; margin: 0 auto; padding: 50px 6vw 100px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); }
.admin-notice { background: var(--warm-beige); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 30px; }
.admin-section { margin-bottom: 50px; }
.admin-section h2 { font-size: 20px; margin-bottom: 18px; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--soft-white); font-size: 13.5px; }
.admin-table th, .admin-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.admin-table th { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.admin-muted { color: var(--ink-faint); font-size: 12px; }
.admin-message { max-width: 320px; }
.admin-empty { text-align: center; color: var(--ink-faint); padding: 30px; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-status { display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill); font-size: 11px; text-transform: capitalize; background: var(--warm-beige); }
.admin-status-paid { background: #e3efe1; color: #3d6b3f; }
.admin-status-shipped { background: #e1e8f0; color: #33517a; }
.admin-status-refunded, .admin-status-cancelled { background: #f3e1de; color: #a04a3f; }
.admin-status-pending { background: var(--warm-beige); color: var(--ink-soft); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive — shared nav/footer/widget rules
   ========================================================================== */

@media (max-width: 960px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .enquire-link { display: none; }
  .nav-actions { gap: 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aura-speech { display: none; }
  .section { padding: 64px 6vw; }
  .section-tight { padding: 48px 6vw; }
  .announcement { font-size: 9px; letter-spacing: 0.16em; }
  .brand-word { font-size: 18px; }
  .page-hero { padding: 140px 6vw 60px; }

  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-copy { max-width: 100%; margin: 0 auto 50px; }
  .hero-actions { justify-content: center; }
  .hero-text { margin-left: auto; margin-right: auto; }

  .formula-layout, .about-split, .ingredients-layout, .product-layout,
  .experience-section, .aura-feature, .enquire-layout, .cart-layout, .checkout-layout,
  .ingredient-detail-card, .ingredient-detail-card.reverse, .shop-layout {
    grid-template-columns: 1fr;
  }
  .ingredient-detail-card.reverse .ingredient-detail-photo { order: 0; }
  .ingredients-photo-card, .enquire-card, .cart-summary { position: static; }
  .experience-section { min-height: auto; }
  .experience-image img { height: 360px; }

  .benefit-grid, .concerns-grid, .timeline, .values-grid, .without-grid { grid-template-columns: 1fr 1fr; }
  .product-gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery-strip-grid { grid-template-columns: 1fr; }
  .silicone-grid { grid-template-columns: 1fr; }
  .silicone-divider { display: none; }
  .shop-gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
  .shop-layout { padding-top: 120px; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .aura-chat { right: -14px; }

  .benefit-grid, .concerns-grid, .timeline, .values-grid, .without-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-price { grid-column: 2; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
