/* ==========================================================================
   ELAMORA TEA — Ultra-Refined Luxury Himalayan Single-Origin Bureau
   Master Design System & Fluid Motion Physics (Pinterest Reference Standard)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300;1,6..72,400;1,6..72,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --font-serif: 'Cormorant Garamond', 'Italiana', 'Newsreader', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', 'Newsreader', Georgia, serif;
  --font-display: 'Cinzel', 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-nepali: 'Karma', 'Mukta', sans-serif;
  --font-nepali-display: 'Rozha One', 'Yatra One', serif;

  /* Theme Dynamic Variables (Smoothly morphs with active tea swatch) */
  --theme-bg-gradient: linear-gradient(135deg, #132438 0%, #08111D 50%, #040810 100%);
  --theme-accent: #7BBBFF;
  --theme-accent-glow: rgba(123, 187, 255, 0.35);

  /* Monochrome & Himalayan Botanical Tokens */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F6F6F4;
  --bg-dark: #080A09;
  --bg-dark-secondary: #111412;
  --bg-dark-pine: #0B1710;

  --text-primary: #0A0C0B;
  --text-secondary: #5A6068;
  --text-muted: #9CA3AF;
  --text-light: #F6F6F4;
  --text-light-muted: #949B96;

  /* Champagne Heritage Gold */
  --color-gold: #D4AF37;
  --color-gold-deep: #C29B38;
  --color-gold-light: #E6C875;
  --color-gold-glow: rgba(212, 175, 55, 0.3);

  /* Hairlines & Borders */
  --border-light: rgba(10, 12, 11, 0.08);
  --border-subtle: rgba(10, 12, 11, 0.04);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-dark-subtle: rgba(255, 255, 255, 0.06);

  /* Ultra-Refined Apple/Awwwards Smooth Bezier Physics */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --transition-slow: 0.8s var(--ease-smooth);
  --transition-mid: 0.45s var(--ease-smooth);
  --transition-fast: 0.22s var(--ease-smooth);

  --header-height: 84px;
  --container-pad: 44px;
  --container-pad-mobile: 20px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: clip;
  position: relative;
}

::selection {
  background: var(--theme-accent);
  color: #0A0C0B;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

/* Custom Minimal Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #D1D1CF;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-primary);
}

/* --- Atmospheric Dynamic Cursor Light Spotlight --- */
.cursor-ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  margin-top: -325px;
  margin-left: -325px;
  pointer-events: none;
  z-index: 99990;
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  opacity: 0.92;
}

.cursor-light-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle closest-side,
    rgba(234, 179, 8, 0.22) 0%,
    rgba(212, 175, 55, 0.12) 30%,
    rgba(212, 175, 55, 0.03) 65%,
    transparent 100%
  );
  filter: blur(25px);
  animation: torch-breathe 4s ease-in-out infinite alternate;
}

.cursor-light-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  margin-top: -110px;
  margin-left: -110px;
  border-radius: 50%;
  background: radial-gradient(
    circle closest-side,
    rgba(255, 250, 220, 0.45) 0%,
    rgba(234, 179, 8, 0.22) 40%,
    transparent 80%
  );
  filter: blur(12px);
}

@keyframes torch-breathe {
  0% { transform: scale(0.92); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* Precision Cursor Dot & Light Follower Ring */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  background: #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100005;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #FFFFFF, 0 0 20px #EAB308, 0 0 35px rgba(234, 179, 8, 0.6);
  transition: opacity 0.2s ease, transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.custom-cursor-dot.clicking {
  transform: translate(-50%, -50%) scale(1.8);
  box-shadow: 0 0 20px #FFFFFF, 0 0 40px #FBBF24;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100004;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), 
              height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), 
              background 0.3s ease, 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  will-change: transform;
}

.custom-cursor-follower.hovering-link {
  width: 68px;
  height: 68px;
  background: rgba(234, 179, 8, 0.18);
  border-color: #FBBF24;
  box-shadow: 0 0 35px rgba(234, 179, 8, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Radiant Click Wave */
.cursor-click-wave {
  position: fixed;
  pointer-events: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 50%;
  border: 2px solid #EAB308;
  z-index: 100003;
  animation: cursor-wave-expand 0.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes cursor-wave-expand {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 20px #EAB308; }
  100% { transform: scale(3.8); opacity: 0; }
}

@media (pointer: coarse) {
  .cursor-ambient-light, .custom-cursor-dot, .custom-cursor-follower {
    display: none !important;
  }
}

/* --- Layout Grid & Containers --- */
.grd-15 {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 24px;
  width: 100%;
}

.ctr {
  width: 100%;
  max-width: 1440px;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  margin-left: auto;
  margin-right: auto;
}

.f-sf {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.f-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Typography Classes */
.fn-hero {
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #FFFFFF;
}

.fn-h1 {
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.035em;
}

.fn-h2-large {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.fn-h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.fn-h3 {
  font-family: var(--font-editorial);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.fn-b1 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.fn-b2 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Magnetic Link Underlines */
.link-underlined {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 2px;
  cursor: pointer;
}

.link-underlined::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-mid);
}

.link-underlined:hover::before, .link-underlined.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Reading Progress Bar */
.top-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  will-change: transform;
}

/* --- Luxury Preloader & 1-100 Radial Meter (All Dead-Center) --- */
.site-preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #24050D 0%, #0A0C0B 60%, #020303 100%);
  color: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  clip-path: inset(0 0 0 0);
  pointer-events: all;
}

.site-preloader.loaded {
  clip-path: inset(0 0 100% 0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: translateY(-100%) !important;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) !important;
}

.preloader-center-content-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 650px;
  width: 100%;
}

.preloader-center-top-tag {
  margin-bottom: 24px;
}

.preloader-emblem-meter-wrapper {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.preloader-meter-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.meter-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.meter-progress-circle {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 552.92;
  stroke-dashoffset: 552.92;
  transition: stroke-dashoffset 0.08s linear;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.85));
}

.preloader-orbit-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.35);
  animation: rotate-seal 35s linear infinite;
  pointer-events: none;
}

.preloader-logo-crest-box {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(10, 12, 11, 0.8) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.preloader-seal-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.65));
  animation: pulse-seal 3s ease-in-out infinite alternate;
}

@keyframes pulse-seal {
  0% { transform: scale(0.96); filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.45)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.85)); }
}

@keyframes rotate-seal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preloader-counter-huge {
  font-family: var(--font-sans);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #FFFFFF;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 6px 0;
}

.preloader-percent-symbol {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  color: var(--color-gold);
  margin-left: 8px;
}

.preloader-hook-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  margin-top: 6px;
  text-transform: uppercase;
}

.preloader-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.preloader-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  max-width: 480px;
  color: var(--text-light);
}

/* --- Clean Fixed Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9000;
  mix-blend-mode: difference;
  color: #FFFFFF;
  pointer-events: none;
  transition: transform var(--transition-mid);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 16px;
}

.header-brand {
  pointer-events: all;
}

.header-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s var(--ease-smooth);
}

.header-brand:hover .header-brand-logo {
  transform: scale(1.1) rotate(5deg);
}

.brand-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 6px 20px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  pointer-events: all;
}

/* ==========================================================================
   PINTEREST-INSPIRED ULTRA-CLEAN 3D HERO STAGE
   ========================================================================== */
.pinterest-hero-stage {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: var(--theme-bg-gradient);
  background-color: var(--theme-base-color, #30060F);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px var(--container-pad) 36px var(--container-pad);
  overflow: hidden;
  transition: background 0.65s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Atmospheric Ambient Radial Glow */
.hero-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--theme-accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Giant Architectural Block Wordmark Behind The Product (Direct Product Name) */
.hero-backdrop-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: clamp(4.5rem, 12.5vw, 13.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.82;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 25px 90px rgba(0, 0, 0, 0.6);
  user-select: none;
  pointer-events: none;
  z-index: 2;
  text-align: center;
  transition: transform 0.6s var(--ease-smooth), opacity 0.6s ease;
}

/* 3-Column Floating Hero Interactive Layout */
.hero-main-stage-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  align-items: center;
  gap: 30px;
  margin: auto 0;
  width: 100%;
}

/* Left Hero Block: Clean Typographic Headline & Specs */
.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tagline-huge {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-desc-clean {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 360px;
}

.hero-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-hero-clean {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 14px 24px;
  border-radius: 99px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-hero-white {
  background: #FFFFFF;
  color: #0A0C0B;
}

.btn-hero-white:hover {
  background: var(--theme-accent);
  color: #0A0C0B;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
}

.btn-hero-disabled {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.price-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.price-original-strike {
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: 500;
  margin-right: 6px;
  font-size: 0.88em;
}

.out-of-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

/* Center Hero Block: 3D Angled Floating Pouch */
.hero-center-product-stage {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  cursor: grab;
}

.hero-3d-pouch-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg) translateY(0px);
  will-change: transform, opacity;
}

.hero-3d-pouch-img {
  max-height: 92%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65));
  transition: filter 0.4s ease;
  will-change: transform, opacity;
  animation: hero-midair-float 4.8s ease-in-out infinite alternate;
}

@keyframes hero-midair-float {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65));
  }
  50% {
    transform: translateY(-22px) rotate(2.5deg) scale(1.02);
    filter: drop-shadow(0 55px 70px rgba(0, 0, 0, 0.48));
  }
  100% {
    transform: translateY(12px) rotate(-1.8deg) scale(0.99);
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.78));
  }
}

/* Directional Pouch Motion Physics (Fly-Out and Swoop-In from side) */
.pouch-slide-exit-left {
  animation: pouchExitLeft 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pouch-slide-enter-right {
  animation: pouchEnterRight 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pouch-slide-exit-right {
  animation: pouchExitRight 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pouch-slide-enter-left {
  animation: pouchEnterLeft 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pouchExitLeft {
  0% {
    transform: translateX(0) rotate(-12deg) scale(1);
    opacity: 1;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65)) blur(0px);
  }
  100% {
    transform: translateX(-160%) rotate(-35deg) scale(0.68);
    opacity: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2)) blur(8px);
  }
}

@keyframes pouchEnterRight {
  0% {
    transform: translateX(160%) rotate(25deg) scale(0.68);
    opacity: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2)) blur(8px);
  }
  100% {
    transform: translateX(0) rotate(-12deg) scale(1);
    opacity: 1;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65)) blur(0px);
  }
}

@keyframes pouchExitRight {
  0% {
    transform: translateX(0) rotate(-12deg) scale(1);
    opacity: 1;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65)) blur(0px);
  }
  100% {
    transform: translateX(160%) rotate(25deg) scale(0.68);
    opacity: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2)) blur(8px);
  }
}

@keyframes pouchEnterLeft {
  0% {
    transform: translateX(-160%) rotate(-35deg) scale(0.68);
    opacity: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2)) blur(8px);
  }
  100% {
    transform: translateX(0) rotate(-12deg) scale(1);
    opacity: 1;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65)) blur(0px);
  }
}

/* Staggered Text Slide Transitions */
.text-slide-fade {
  animation: textSlideFade 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textSlideFade {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wordmark-slide-fade {
  animation: wordmarkSlideFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordmarkSlideFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.92);
  }
  100% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Right Hero Block: Interactive Color Swatches & Size/Weight Pills */
.hero-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.swatch-group-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.swatch-title-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Circular Color Selector Swatches (Screenshot Match) */
.tea-color-swatches {
  display: flex;
  gap: 12px;
}

.color-swatch-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
}

.color-swatch-dot:hover {
  transform: scale(1.15);
}

.color-swatch-dot.active {
  border-color: #FFFFFF;
  transform: scale(1.22);
  box-shadow: 0 0 18px currentColor;
}

/* Size / Weight Circular Pill Selectors */
.tea-weight-pills {
  display: flex;
  gap: 10px;
}

.weight-circle-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.weight-circle-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
}

.weight-circle-pill.active {
  background: #FFFFFF;
  color: #0A0C0B;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Bottom Hero Status Bar */
.hero-bottom-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 30px;
  width: 100%;
}

.hero-social-links {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.btn-see-all-products {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: border-color var(--transition-fast);
}

.btn-see-all-products:hover {
  border-color: #FFFFFF;
}

.hero-scroll-hook-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 22px;
  border-radius: 99px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.hero-scroll-hook-btn:hover {
  background: #FFFFFF;
  color: #0A0C0B;
  border-color: #FFFFFF;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-scroll-hook-arrow {
  display: inline-block;
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
  color: var(--color-gold);
  font-weight: 900;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ==========================================================================
   SECTION: PINNED STICKY SCROLL 3D PRODUCT SHOWCASE
   ========================================================================== */
.sticky-product-showcase-section {
  position: relative;
  height: 380vh;
  background: #0A0C0B;
}

.sticky-showcase-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 105px var(--container-pad) 28px var(--container-pad);
  overflow: hidden;
  background: var(--showcase-bg-gradient, linear-gradient(135deg, #600E22 0%, #380713 50%, #170106 100%));
  color: #FFFFFF;
  transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-ambient-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--showcase-accent-glow, rgba(239, 68, 68, 0.55)) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-backdrop-wordmark {
  position: absolute;
  top: 48%;
  left: 32%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.82;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  text-align: center;
  transition: transform 0.6s var(--ease-smooth), opacity 0.6s ease;
}

.showcase-inner-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-top-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.showcase-step-nav-pills {
  display: flex;
  gap: 8px;
}

.showcase-step-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.showcase-step-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.showcase-step-pill.active {
  background: #FFFFFF;
  color: #0A0C0B;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.showcase-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 16px 0;
}

.showcase-image-stage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.showcase-pouch-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.showcase-pouch-img {
  max-height: 92%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65));
  transition: filter 0.4s ease;
  will-change: transform, opacity;
  animation: showcase-midair-float 4.8s ease-in-out infinite alternate;
}

@keyframes showcase-midair-float {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.65));
  }
  50% {
    transform: translateY(-20px) rotate(2deg) scale(1.02);
    filter: drop-shadow(0 50px 65px rgba(0, 0, 0, 0.5));
  }
  100% {
    transform: translateY(10px) rotate(-1.5deg) scale(0.99);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.75));
  }
}

.showcase-details-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.showcase-product-title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.showcase-product-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.showcase-notes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.showcase-notes-row .pouch-note-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 99px;
}

.showcase-price-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0;
}

.showcase-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.showcase-bottom-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.showcase-progress-track {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.showcase-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--color-gold);
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
  box-shadow: 0 0 10px var(--color-gold);
}

.btn-show-details {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: transparent;
  color: var(--text-primary);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-show-details:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
}

.btn-purchase-now {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-purchase-now:hover {
  background: #333333;
}

/* --- Section: Index Table --- */
.section-project-index {
  padding: 130px 0;
  position: relative;
  background: #FFFFFF;
}

.editorial-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.table-row {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 80px 2.5fr 1.5fr 1fr 1fr 60px;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.table-row:last-child {
  border-bottom: 1px solid var(--border-light);
}

.table-row:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding-left: 20px;
  padding-right: 20px;
}

.table-row:hover .table-col-muted {
  color: #A4A4A4;
}

.table-col-num { font-family: var(--font-mono); font-size: 0.8rem; }
.table-col-title { font-family: var(--font-editorial); font-size: 1.75rem; line-height: 1.1; letter-spacing: -0.02em; }
.table-col-terroir { font-size: 0.88rem; }
.table-col-altitude { font-family: var(--font-mono); font-size: 0.8rem; }
.table-col-price { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700; }

.floating-cursor-preview {
  position: fixed;
  width: 200px;
  height: 270px;
  background: radial-gradient(circle, #FFFFFF 0%, #E8EAE5 100%);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  pointer-events: none;
  overflow: hidden;
  z-index: 9998;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 10px;
}

.floating-cursor-preview.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.floating-cursor-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Section: Terroir Radial Dial --- */
.section-terroir-mechanism {
  padding: 150px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.terroir-dial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.radial-dial-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-svg-track {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  animation: rotate-slow 50s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.altitude-display-num {
  font-family: var(--font-editorial);
  font-size: clamp(3.8rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.85;
}

.altitude-display-unit {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.stage-nav-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.stage-nav-item.active {
  border-bottom-color: var(--text-primary);
}

.stage-nav-title {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

/* --- Section: Dark Inversion Vault --- */
.section-dark-vault {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: 160px 0 140px 0;
  position: relative;
}

.vault-headline {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.85;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 70px;
}

.vault-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}

.vault-item-card {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  background: var(--bg-dark-secondary);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.vault-item-card:hover {
  border-color: #FFFFFF;
  transform: translateY(-6px);
}

.vault-item-title {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  line-height: 1.05;
  margin: 1.5rem 0 0.8rem 0;
}

/* --- Section: Sommelier & Steeping Lab --- */
.section-sommelier {
  padding: 140px 0;
  background: var(--bg-secondary);
  position: relative;
}

.sommelier-box {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 50px;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quiz-option-pill {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-secondary);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quiz-option-pill:hover, .quiz-option-pill.active {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.quiz-option-title {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
}

.steeping-timer-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-secondary);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timer-num-large {
  font-family: var(--font-editorial);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 1.2rem 0;
}

/* --- Architectural Buttons --- */
.btn-architectural {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: 1px solid var(--text-primary);
  border-radius: 99px;
  background: transparent;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-architectural:hover {
  background: var(--text-primary);
  color: #FFFFFF;
}

.btn-architectural-dark {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-architectural-dark:hover {
  background: #FFFFFF;
  color: var(--text-primary);
}

.btn-architectural-solid {
  background: var(--text-primary);
  color: #FFFFFF;
}

.btn-architectural-solid:hover {
  background: #333333;
}

/* --- Slide-Out Cart Drawer --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-mid);
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: #FFFFFF;
  color: #000000;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-mid);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
}

.cart-drawer-backdrop.open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px var(--container-pad);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item-block {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.cart-item-thumb {
  width: 75px;
  height: 90px;
  background: radial-gradient(circle, #FFFFFF 0%, #E8EAE5 100%);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-thumb img {
  max-height: 85%;
  object-fit: contain;
}

.cart-item-name {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  line-height: 1.15;
}

/* --- Modals --- */
.site-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 5, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s ease;
  overscroll-behavior: contain;
}

.site-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-modal-box {
  background: #FFFFFF;
  color: #0A0C0B;
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  position: relative;
  padding: 38px 42px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.65), 0 0 1px rgba(0,0,0,0.15);
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.site-modal-backdrop.open .site-modal-box {
  transform: translateY(0px) scale(1.0);
  opacity: 1;
}

/* Luxury Smooth Scrollbar for Modals & Drawers */
.site-modal-box::-webkit-scrollbar,
.cart-drawer-body::-webkit-scrollbar,
.cart-items-list::-webkit-scrollbar {
  width: 6px;
}

.site-modal-box::-webkit-scrollbar-track,
.cart-drawer-body::-webkit-scrollbar-track,
.cart-items-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 99px;
}

.site-modal-box::-webkit-scrollbar-thumb,
.cart-drawer-body::-webkit-scrollbar-thumb,
.cart-items-list::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 99px;
}

.site-modal-box::-webkit-scrollbar-thumb:hover,
.cart-drawer-body::-webkit-scrollbar-thumb:hover,
.cart-items-list::-webkit-scrollbar-thumb:hover {
  background: #B38F24;
}

.modal-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-icon:hover {
  background: var(--text-primary);
  color: #FFFFFF;
}

.arch-input {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  background: var(--bg-secondary);
  margin-top: 6px;
  margin-bottom: 14px;
}

.arch-input:focus {
  border-color: var(--text-primary);
  background: #FFFFFF;
}

/* --- Monolith Footer --- */
.site-footer {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: 130px 0 40px 0;
  position: relative;
}

.footer-giant-wordmark {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.82;
  color: #FFFFFF;
}

.footer-giant-wordmark span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.footer-columns-grid {
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
  margin-bottom: 60px;
  margin-top: 60px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
}

/* Floating Quick Order Hotline Pill */
.floating-hotline-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #0A0C0B;
  color: #FFFFFF;
  border: 1px solid var(--color-gold);
  padding: 12px 22px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-hotline-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: var(--color-gold);
  color: #0A0C0B;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
}

.floating-hotline-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* --- Responsive Queries --- */
@media (max-width: 1100px) {
  .hero-main-stage-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-left-col, .hero-right-col {
    align-items: center;
  }
  .hero-desc-clean {
    max-width: 100%;
  }
  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .terroir-dial-container, .sommelier-box, .vault-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: var(--container-pad-mobile);
  }
  .header-nav {
    display: none;
  }
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
  .table-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 16px 0;
  }
  .table-col-num, .table-col-altitude, .table-col-terroir {
    display: none;
  }
  .site-modal-box {
    padding: 24px;
  }
}


/* ==========================================================================
   3D ADD-TO-CART & LUXURY APPLE-STYLE CHECKOUT SYSTEM
   ========================================================================== */

/* 3D Flying Pouch Element */
.flying-pouch-3d {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.75s ease-out;
  transform-origin: center center;
}

/* Cart Icon Pop & 3D Haptic Ripple */
.cart-pop-bounce {
  animation: cart-bounce-3d 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes cart-bounce-3d {
  0% { transform: scale(1); }
  35% { transform: scale(1.38) rotate(-8deg); box-shadow: 0 0 30px rgba(234, 179, 8, 0.8); }
  65% { transform: scale(0.92) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Cart Drawer 3D Card Hover Depth */
.cart-item-block {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
  transform: perspective(600px) translateZ(0);
}

.cart-item-block:hover {
  transform: perspective(600px) translateY(-3px) translateZ(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cart-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.cart-item-thumb img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cart-item-block:hover .cart-item-thumb img {
  transform: scale(1.1) rotate(2deg);
}

/* --- Luxury Khalti QR & Checkout Styles --- */
.checkout-method-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.payment-tab-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.payment-tab-btn:hover {
  border-color: var(--color-gold);
  color: var(--text-primary);
}

.payment-tab-btn.active {
  background: #0A0C0B;
  color: #FFFFFF;
  border-color: #0A0C0B;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.payment-tab-btn.active.khalti-active {
  background: #5C2D91;
  color: #FFFFFF;
  border-color: #5C2D91;
  box-shadow: 0 4px 18px rgba(92, 45, 145, 0.35);
}

/* QR Code Display Container */
.checkout-qr-showcase {
  background: linear-gradient(145deg, #1A1325 0%, #0F0A17 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 16px;
  padding: 22px;
  color: #FFFFFF;
  margin: 16px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(92, 45, 145, 0.2);
}

.qr-flex-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
}

.qr-image-wrapper {
  background: #FFFFFF;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.qr-image-wrapper:hover {
  transform: scale(1.03) rotate(-1deg);
}

.qr-image-wrapper img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

.qr-info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qr-khalti-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(92, 45, 145, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #E9D5FF;
  width: fit-content;
}

.qr-merchant-name {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-top: 2px;
}

.qr-copy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  width: fit-content;
}

.btn-copy-number {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-copy-number:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Screenshot Drop Box */
.screenshot-dropzone {
  border: 2px dashed rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.04);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  margin-top: 14px;
}

.screenshot-dropzone:hover, .screenshot-dropzone.dragover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.09);
  transform: translateY(-2px);
}

.dropzone-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}

.dropzone-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dropzone-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.screenshot-preview-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #10B981;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.screenshot-preview-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.screenshot-preview-meta {
  flex-grow: 1;
  text-align: left;
  font-size: 0.75rem;
}

.screenshot-preview-name {
  font-weight: 700;
  color: var(--text-primary);
  word-break: break-all;
}

.btn-remove-screenshot {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

/* --- Apple-Like Verified Animation Overlay --- */
.apple-verified-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s ease;
}

.apple-verified-overlay.active {
  opacity: 1;
  visibility: visible;
}

.apple-verified-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

/* Apple Pulse Rings */
.apple-ring-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.6);
  opacity: 0;
  pointer-events: none;
}

.apple-verified-overlay.active .apple-ring-wave-1 {
  animation: apple-ring-pulse 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.apple-verified-overlay.active .apple-ring-wave-2 {
  animation: apple-ring-pulse 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite 0.4s;
}

@keyframes apple-ring-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Main Glowing Circle */
.apple-verified-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #34D399 0%, #059669 60%, #047857 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: scale(0.4) rotate(-30deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

.apple-verified-overlay.active .apple-verified-circle {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Animated Checkmark SVG */
.apple-svg-checkmark {
  width: 56px;
  height: 56px;
  stroke: #FFFFFF;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.apple-verified-overlay.active .apple-svg-checkmark {
  animation: apple-draw-check 0.65s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.3s;
}

@keyframes apple-draw-check {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

.apple-verified-title {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease 0.4s;
}

.apple-verified-overlay.active .apple-verified-title {
  opacity: 1;
  transform: translateY(0);
}

.apple-verified-sub {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #A7F3D0;
  margin-top: 8px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease 0.5s;
}

.apple-verified-overlay.active .apple-verified-sub {
  opacity: 1;
  transform: translateY(0);
}

/* --- Founder Review Modal Card --- */
.founder-review-modal-box {
  background: #0D110F;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 680px;
  width: 90%;
  color: #FFFFFF;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-beacon-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.founder-radar-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EAB308;
  box-shadow: 0 0 10px #EAB308;
  animation: pulse-dot 1.5s infinite;
}

.founder-review-main-title {
  font-family: var(--font-editorial);
  font-size: 2.1rem;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.founder-review-notice-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.founder-receipt-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-bottom: 24px;
}

.receipt-meta-item span:first-child {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.receipt-meta-item span:last-child {
  color: #FFFFFF;
  font-weight: 700;
}

.founder-action-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 600px) {
  .qr-flex-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-image-wrapper {
    margin: 0 auto;
  }
  .founder-receipt-meta-grid {
    grid-template-columns: 1fr;
  }
  .founder-action-btns {
    flex-direction: column;
  }
}


/* ==========================================================================
   FOUNDER & ADMIN COMMAND PANEL STYLES
   ========================================================================== */

.admin-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 90000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 20px;
}

.admin-panel-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.admin-panel-container {
  background: #0E1210;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.1);
  color: #FFFFFF;
  position: relative;
}

.admin-panel-header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.admin-panel-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex-grow: 1;
}

/* Metric Cards */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.admin-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.admin-metric-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 4px;
}

.admin-metric-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* Filter Bar */
.admin-filter-bar {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.admin-filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-filter-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.admin-filter-pill.active {
  background: var(--color-gold);
  color: #0A0C0B;
  font-weight: 700;
  border-color: var(--color-gold);
}

/* Order Cards */
.admin-orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-order-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.25s ease;
}

.admin-order-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.admin-order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.admin-order-details-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.status-pending {
  background: rgba(234, 179, 8, 0.15);
  color: #FDE047;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

.status-verified {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-dispatched {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.status-delivered {
  background: rgba(168, 85, 247, 0.15);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.admin-action-bar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  align-items: center;
}

.btn-admin-action {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-verify-payment {
  background: #10B981;
  color: #FFFFFF;
}

.btn-verify-payment:hover {
  background: #059669;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-dispatch-order {
  background: #0284C7;
  color: #FFFFFF;
}

.btn-dispatch-order:hover {
  background: #0369A1;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.4);
}

.btn-deliver-order {
  background: #8B5CF6;
  color: #FFFFFF;
}

.btn-deliver-order:hover {
  background: #7C3AED;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.btn-whatsapp-notify {
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-whatsapp-notify:hover {
  background: #1EBE5D;
}

.admin-receipt-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: #E2E8F0;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  margin-top: 6px;
  transition: background 0.2s ease;
}

.admin-receipt-preview-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
}

/* Passcode Gate */
.admin-auth-box {
  max-width: 440px;
  background: #111613;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .admin-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-order-details-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   ULTRA-REFINED EXPERIENCES: TOASTS, TRACKER, CLIPBOARD PASTE & PARTICLES
   ========================================================================== */

/* Apple Dynamic Island-Style Floating Toast */
.apple-toast-banner {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px) scale(0.9);
  background: rgba(14, 18, 16, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 99px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000000;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.apple-toast-banner.show {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #0A0C0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

/* 3D Golden Particle Spark */
.cart-particle-spark {
  position: fixed;
  pointer-events: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EAB308;
  box-shadow: 0 0 10px #FBBF24;
  z-index: 999999;
  animation: spark-burst 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes spark-burst {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* Clipboard Paste Badge */
.paste-shortcut-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* Admin Search & Toolbar */
.admin-toolbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.admin-search-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 8px 14px 8px 34px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  outline: none;
  width: 260px;
  transition: all 0.2s ease;
  position: relative;
}

.admin-search-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
  width: 320px;
}

.admin-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-search-icon {
  position: absolute;
  left: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* Order Tracker Modal */
.tracker-modal-box {
  background: #0E1210;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 600px;
  width: 90%;
  color: #FFFFFF;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
}

.tracking-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 32px 0 24px 0;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.tracking-timeline-progress {
  position: absolute;
  top: 18px;
  left: 30px;
  height: 3px;
  background: #10B981;
  z-index: 2;
  transition: width 0.5s ease;
}

.tracking-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18201C;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.tracking-step.active .step-circle {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.tracking-step.pending .step-circle {
  background: #EAB308;
  border-color: #EAB308;
  color: #0A0C0B;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.2;
}

.tracking-step.active .step-label {
  color: #FFFFFF;
  font-weight: 700;
}


/* ==========================================================================
   ULTRA-SMOOTH 3D PRODUCT SHOWCASE TRANSITIONS & PARALLAX
   ========================================================================== */

.sticky-product-showcase-section {
  position: relative;
  height: 400vh;
  background: #0A0C0B;
}

.sticky-showcase-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 95px var(--container-pad) 24px var(--container-pad);
  overflow: hidden;
  background: linear-gradient(135deg, #600E22 0%, #380713 50%, #170106 100%);
  color: #FFFFFF;
  transition: background 0.85s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background;
}

.showcase-ambient-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s ease-out;
  will-change: background, transform;
}

.showcase-backdrop-wordmark {
  position: absolute;
  top: 48%;
  left: 30%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: clamp(4.5rem, 13vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.82;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  text-align: center;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
  will-change: transform, opacity;
}

.wordmark-slide-fade {
  animation: wordmark-fade-swoop 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordmark-fade-swoop {
  0% { transform: translate(-50%, -42%) scale(0.92); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.showcase-image-stage {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.showcase-pouch-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.showcase-pouch-img {
  max-height: 94%;
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.65));
  will-change: transform, filter;
  animation: showcase-gentle-hover 5s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes showcase-gentle-hover {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
  }
  50% {
    transform: translateY(-16px) rotate(1.5deg) scale(1.02);
    filter: drop-shadow(0 45px 55px rgba(0, 0, 0, 0.45));
  }
  100% {
    transform: translateY(8px) rotate(-1deg) scale(0.99);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  }
}

/* 3D Directional Pouch Transitions */
.pouch-swoop-exit-up {
  transform: translateY(-120px) rotateX(25deg) scale(0.82) !important;
  opacity: 0 !important;
}

.pouch-swoop-enter-down {
  animation: pouch-enter-from-bottom 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pouch-enter-from-bottom {
  0% { transform: translateY(120px) rotateX(-25deg) scale(0.82); opacity: 0; }
  100% { transform: translateY(0) rotateX(0deg) scale(1); opacity: 1; }
}

.pouch-swoop-exit-down {
  transform: translateY(120px) rotateX(-25deg) scale(0.82) !important;
  opacity: 0 !important;
}

.pouch-swoop-enter-up {
  animation: pouch-enter-from-top 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pouch-enter-from-top {
  0% { transform: translateY(-120px) rotateX(25deg) scale(0.82); opacity: 0; }
  100% { transform: translateY(0) rotateX(0deg) scale(1); opacity: 1; }
}

/* Staggered Smooth Text Animations */
.text-slide-fade {
  animation: text-slide-fade-anim 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes text-slide-fade-anim {
  0% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.showcase-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--color-gold);
  border-radius: 99px;
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px var(--color-gold);
}


/* ==========================================================================
   ARCHITECTURAL MONOLITH FOOTER - ALL-CAPITAL ELAMORA TEA & LUXURY LEDGER
   ========================================================================== */

.site-footer {
  background-color: #080A09;
  color: #FFFFFF;
  padding: 110px 0 45px 0;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-brand-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.footer-top-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-giant-wordmark {
  font-family: var(--font-sans);
  font-size: clamp(3.8rem, 13.5vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.8;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 10px 0;
  user-select: none;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 70%, rgba(212, 175, 55, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.footer-tagline-sub {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.footer-columns-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 45px;
  margin-bottom: 60px;
  margin-top: 20px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::before {
  content: '✦';
  font-size: 0.65rem;
  color: var(--color-gold);
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-link-list a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}


/* ==========================================================================
   CINEMATIC SCROLL TEXT MOTION & KINETIC TYPOGRAPHY ENGINE
   ========================================================================== */

/* Universal Scroll Text Reveal Base */
.scroll-reveal-text,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px) rotateX(12deg);
  filter: blur(6px);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
  transform-origin: bottom center;
}

.scroll-reveal-text.is-revealed,
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  filter: blur(0px);
}

/* Subtle Specular Metallic Shimmer Sweep */
.text-shimmer-active {
  background: linear-gradient(115deg, #FFFFFF 20%, #FBBF24 48%, #FFFFFF 75%) !important;
  background-size: 250% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: text-shimmer-sweep 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes text-shimmer-sweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Staggered Child Element Cascade */
.scroll-stagger-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-stagger-group.is-revealed > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.scroll-stagger-group.is-revealed > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.scroll-stagger-group.is-revealed > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.scroll-stagger-group.is-revealed > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.scroll-stagger-group.is-revealed > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.scroll-stagger-group.is-revealed > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

/* Line Horizon Clip Reveal */
.line-horizon-mask {
  overflow: hidden;
  display: block;
}

.line-horizon-mask > * {
  transform: translateY(115%);
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.line-horizon-mask.is-revealed > * {
  transform: translateY(0);
}

/* Parallax Depth Float for Giant Backdrops */
.parallax-wordmark {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ==========================================================================
   FOUNDER CIPHER VAULT GATEWAY & COMMAND SUITE STYLES
   ========================================================================== */

.founder-lock-card {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  background: #090D0A;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.founder-lock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.lock-emblem-halo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  animation: lock-halo-pulse 3s infinite alternate;
}

@keyframes lock-halo-pulse {
  0% { transform: scale(0.96); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  100% { transform: scale(1.04); box-shadow: 0 0 35px rgba(212, 175, 55, 0.4); }
}

.lock-card-title {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.passcode-input-wrap {
  position: relative;
  margin: 24px 0 16px 0;
  display: flex;
  align-items: center;
}

.passcode-input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 14px 44px 14px 16px;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.15em;
  outline: none;
  transition: all 0.25s ease;
}

.passcode-input-field:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.passcode-toggle-eye {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.btn-founder-unlock {
  width: 100%;
  background: var(--color-gold);
  color: #0A0C0B;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-founder-unlock:hover {
  background: #FBBF24;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}

.lock-card-error {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 12px;
  border-radius: 6px;
  display: none;
}

.lock-card-shake {
  animation: lock-shake-anim 0.45s ease-in-out;
}

@keyframes lock-shake-anim {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

/* Founder Profile Chip in Header */
.founder-profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-gold);
}

.btn-lock-desk {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-lock-desk:hover {
  background: #DC2626;
  color: #FFFFFF;
}


/* ==========================================================================
   CUSTOMER AUTHENTICATION (GOOGLE, APPLE, GMAIL) STYLES
   ========================================================================== */

.customer-auth-box {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  background: #0E1310;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.15);
  position: relative;
}

.oauth-btns-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 20px 0;
}

.btn-oauth {
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-oauth-google {
  background: #FFFFFF;
  color: #1F2937;
  border-color: #E5E7EB;
}

.btn-oauth-google:hover {
  background: #F3F4F6;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-oauth-apple {
  background: #000000;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-oauth-apple:hover {
  background: #18181B;
  border-color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.domain-pills-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: -6px;
  margin-bottom: 14px;
}

.domain-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.domain-pill:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* User Profile Chip in Header */
.user-auth-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  position: relative;
}

.user-auth-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-gold);
}

.user-avatar-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #0A0C0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.65rem;
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111613;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 100000;
  display: none;
  text-align: left;
}

.user-dropdown-menu.open {
  display: block;
}

.user-dropdown-item {
  padding: 8px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
}


/* ==========================================================================
   HIMALAYAN SPIRAL IMAGES VORTEX SECTION STYLES
   ========================================================================== */

.section-spiral-vortex {
  position: relative;
  min-height: 850px;
  height: 95vh;
  background: #080A09;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px var(--container-pad) 40px var(--container-pad);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.spiral-vortex-header {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  pointer-events: auto;
}

.spiral-vortex-canvas-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  cursor: grab;
}

.spiral-vortex-canvas-wrap:active {
  cursor: grabbing;
}

#spiralCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.spiral-vortex-controls {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  pointer-events: auto;
}

.btn-spiral-ctrl {
  background: rgba(14, 18, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-spiral-ctrl:hover {
  background: var(--color-gold);
  color: #0A0C0B;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-spiral-ctrl.active {
  background: var(--color-gold);
  color: #0A0C0B;
  font-weight: 700;
}

.spiral-ambient-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}


/* Minimal Luxury Footer Grid & Links */
.footer-minimal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .footer-minimal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-minimal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-minimal-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-minimal-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}


/* ==========================================================================
   PURE 3D ROTATING PRODUCT CYLINDER (PICTURES ONLY • NO TEXT)
   ========================================================================== */

.section-round-carousel {
  position: relative;
  min-height: 540px;
  height: 68vh;
  max-height: 700px;
  background: radial-gradient(circle at 50% 50%, #0D120F 0%, #060807 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.carousel-header-stage {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  pointer-events: auto;
}

.round-carousel-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 3000px;
  cursor: grab;
  touch-action: none;
  z-index: 1;
}

.round-carousel-stage:active {
  cursor: grabbing;
}

.round-carousel-tilt-wrapper {
  transform-style: preserve-3d;
  transform: rotateX(-7deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.round-carousel-ring {
  position: relative;
  width: 290px;
  height: 340px;
  transform-style: preserve-3d;
  will-change: transform;
}

.carousel-card-3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.carousel-face-front,
.carousel-face-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-face-front:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.4);
}

.carousel-face-back {
  transform: rotateY(180deg);
  filter: brightness(0.35);
}

.carousel-controls-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  pointer-events: auto;
}

.btn-carousel-ctrl {
  background: rgba(14, 18, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.btn-carousel-ctrl:hover {
  background: var(--color-gold);
  color: #0A0C0B;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}


/* ==========================================================================
   NEPALI / DEVANAGARI LUXURY TYPOGRAPHY STYLES
   ========================================================================== */

:root {
  --font-nepali-display: 'Rozha One', 'Yatra One', serif;
  --font-nepali: 'Karma', serif;
  --font-nepali-sans: 'Mukta', sans-serif;
}

.font-nepali {
  font-family: var(--font-nepali), serif;
  letter-spacing: 0.02em;
}

.font-nepali-display {
  font-family: var(--font-nepali-display), serif;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.font-nepali-sans {
  font-family: var(--font-nepali-sans), sans-serif;
}

.nepali-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 14px;
  border-radius: 99px;
  font-family: var(--font-nepali);
  font-size: 0.88rem;
  color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.nepali-quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--color-gold);
  padding: 16px 22px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-family: var(--font-nepali);
  font-size: 1.08rem;
  color: #FFFFFF;
  line-height: 1.65;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
   3D LIQUID GLASS ORB FOR 6,500 FT ELEVATION STYLES
   ========================================================================== */

.liquid-glass-orb-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  perspective: 1200px;
}

.orb-ambient-halo {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: orb-halo-breath 4s infinite alternate ease-in-out;
}

@keyframes orb-halo-breath {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.08); opacity: 1; }
}

.liquid-glass-sphere {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18) 0%, rgba(20, 32, 26, 0.65) 45%, rgba(6, 10, 8, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(220%);
  -webkit-backdrop-filter: blur(30px) saturate(220%);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(212, 175, 55, 0.3),
    inset 0 0 35px rgba(255, 255, 255, 0.4),
    inset 0 -25px 50px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.liquid-glass-sphere:hover {
  border-color: var(--color-gold);
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.9),
    0 0 70px rgba(212, 175, 55, 0.5),
    inset 0 0 45px rgba(255, 255, 255, 0.6),
    inset 0 -30px 60px rgba(212, 175, 55, 0.5);
}

.orb-specular-top {
  position: absolute;
  top: 14px;
  left: 45px;
  width: 140px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: rotate(-28deg);
  filter: blur(3px);
  pointer-events: none;
  z-index: 10;
}

.orb-specular-bottom {
  position: absolute;
  bottom: 16px;
  right: 50px;
  width: 110px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 80%);
  filter: blur(5px);
  pointer-events: none;
  z-index: 10;
}

/* Inner Liquid Chamber */
.orb-liquid-volume {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.4) 0%, rgba(180, 83, 9, 0.65) 50%, rgba(71, 8, 23, 0.9) 100%);
  border-radius: 0 0 165px 165px;
  overflow: hidden;
  z-index: 2;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease;
}

.liquid-wave {
  position: absolute;
  top: -16px;
  left: -50%;
  width: 200%;
  height: 32px;
  background-repeat: repeat-x;
  border-radius: 40%;
}

.liquid-wave-1 {
  background: rgba(255, 255, 255, 0.25);
  animation: wave-slosh-1 4.5s infinite linear;
}

.liquid-wave-2 {
  background: rgba(212, 175, 55, 0.35);
  animation: wave-slosh-2 3.2s infinite linear;
  top: -12px;
}

@keyframes wave-slosh-1 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wave-slosh-2 {
  0% { transform: rotate(0deg) scaleY(0.85); }
  100% { transform: rotate(-360deg) scaleY(0.85); }
}

/* Rising Micro-bubbles */
.liquid-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(212, 175, 55, 0.3) 100%);
  animation: bubble-rise-anim 3.5s infinite ease-in;
  bottom: -10px;
}

.b1 { width: 8px; height: 8px; left: 25%; animation-duration: 3.2s; animation-delay: 0.2s; }
.b2 { width: 5px; height: 5px; left: 55%; animation-duration: 4.1s; animation-delay: 1.1s; }
.b3 { width: 10px; height: 10px; left: 75%; animation-duration: 3.7s; animation-delay: 0.6s; }
.b4 { width: 6px; height: 6px; left: 40%; animation-duration: 4.8s; animation-delay: 1.8s; }

@keyframes bubble-rise-anim {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  30% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-160px) scale(1.2); opacity: 0; }
}

/* Floating Center 6,500 Content */
.orb-center-content {
  position: relative;
  z-index: 5;
  text-align: center;
  pointer-events: none;
  transform: translateZ(30px);
}

.orb-altitude-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.orb-num-glow {
  font-family: var(--font-editorial);
  font-size: clamp(3.8rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.88;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  text-shadow: 
    0 0 25px rgba(212, 175, 55, 0.7),
    0 0 60px rgba(212, 175, 55, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-microclimate-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #FFFFFF;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-block;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.orb-radial-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.orb-rotating-ring {
  animation: orb-ring-spin 25s infinite linear;
  transform-origin: center;
}

@keyframes orb-ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ==========================================================================
   LIQUID GLASS TYPOGRAPHY & ENHANCED ORB TEXT VISIBILITY
   ========================================================================== */

.liquid-glass-font {
  font-family: var(--font-editorial);
  color: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 40%, #FBBF24 75%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
  font-weight: 900;
  letter-spacing: -0.02em;
  display: inline-block;
}

.orb-center-content {
  position: relative;
  z-index: 15;
  text-align: center;
  pointer-events: none;
  transform: translateZ(40px);
  background: rgba(6, 10, 8, 0.58);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 26px;
  padding: 14px 24px;
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.orb-num-glow {
  font-family: var(--font-editorial);
  font-size: clamp(3.6rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 35%, #F59E0B 75%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 30px rgba(245, 158, 11, 0.85));
}


.btn-architectural-dark {
  background: #0F172A;
  color: #FFFFFF !important;
  border: 1.5px solid #0F172A;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  font-weight: 800;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.btn-architectural-dark:hover {
  background: #1E293B;
  color: var(--color-gold) !important;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25);
}


/* ==========================================================================
   SECTION: TEXT-ONLY KINETIC SCROLL FOUNDER MANIFESTO (CLEAN & MINIMAL)
   ========================================================================== */

.section-editorial-story {
  position: relative;
  padding: 140px 0 120px 0;
  background: radial-gradient(circle at 50% 30%, #151C18 0%, #0A0E0C 60%, #050807 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.manifesto-top-tag {
  margin-bottom: 38px;
  text-align: center;
}

.manifesto-lines-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: center;
  align-items: center;
}

.manifesto-scroll-line {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.18);
  filter: blur(6px);
  transform: translateY(24px) scale(0.97);
  opacity: 0.18;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: color, filter, transform, opacity;
  user-select: none;
}

/* In-Focus Active Reading Zone (Fades in tack sharp) */
.manifesto-scroll-line.line-active {
  color: #FFFFFF !important;
  filter: blur(0px) !important;
  transform: translateY(0px) scale(1.0) !important;
  opacity: 1.0 !important;
}

/* Scrolled Past State (Smoothly blurs out and fades away as you scroll past) */
.manifesto-scroll-line.line-past {
  color: rgba(255, 255, 255, 0.18) !important;
  filter: blur(6px) !important;
  transform: translateY(-24px) scale(0.97) !important;
  opacity: 0.18 !important;
}

.manifesto-highlight {
  color: var(--color-gold);
  font-weight: 800;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  transition: color 0.4s ease;
}

.manifesto-founder-footer {
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.story-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.story-image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-main-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  aspect-ratio: 4 / 3;
}

.story-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-main-img-card:hover .story-featured-img {
  transform: scale(1.05);
}

.story-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 16, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
}

.story-quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
}

.story-quote-text {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.story-founder-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.story-text-column {
  display: flex;
  flex-direction: column;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.editorial-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.editorial-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.story-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.story-pillar-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 16px;
  transition: all 0.25s ease;
}

.story-pillar-box:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.pillar-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

.story-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION: PINNED STICKY SCROLL PRODUCT SHOWCASE (CLEAN & MINIMAL)
   ========================================================================== */

main#main {
  position: relative;
  width: 100%;
  overflow: visible !important;
}

.sticky-product-showcase-section {
  position: relative;
  height: 400vh !important;
  width: 100%;
  overflow: visible !important;
  background: #140206;
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-showcase-viewport {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0;
  height: 100vh !important;
  max-height: 100vh !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 95px var(--container-pad) 24px var(--container-pad);
  overflow: hidden;
  background: radial-gradient(ellipse at 40% 50%, #5E0C1C 0%, #30060F 55%, #140206 100%);
  color: #FFFFFF;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  z-index: 20;
}

.showcase-ambient-glow {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-inner-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-top-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.showcase-section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker-gold {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 0.78rem;
}

.kicker-sep {
  color: rgba(255, 255, 255, 0.35);
}

.kicker-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.showcase-step-nav-pills {
  display: flex;
  gap: 8px;
}

.showcase-step-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.showcase-step-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.showcase-step-pill.active {
  background: #FFFFFF;
  color: #0A0C0B;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.showcase-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin: auto 0;
  width: 100%;
}

/* Clean Single Master Pouch Floating Stage */
/* ==========================================================================
   ULTRA-LUXURY 3D SPATIAL DEPTH & OPTICAL ELEVATION REVEAL SYSTEM
   ========================================================================== */

.showcase-image-stage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.showcase-pouch-halo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-pouch-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 5;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.showcase-pouch-frame:active {
  cursor: grabbing;
}

.showcase-master-pouch-img {
  max-height: 410px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.88));
  will-change: opacity, transform;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.28s ease;
}

.showcase-floor-shadow {
  width: 250px;
  height: 26px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 14px;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out, opacity 0.15s ease-out;
}

/* Pure Silky Smooth Crossfade & Refined Micro-Glide */
.pouch-smooth-fade {
  opacity: 0.12 !important;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4)) blur(2px) !important;
  transition: opacity 0.12s ease-out, filter 0.12s ease-out !important;
}

.showcase-details-card {
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.details-card-fade {
  opacity: 0.25 !important;
  transform: translateY(6px) !important;
  transition: opacity 0.14s ease-out, transform 0.14s ease-out !important;
}

/* Details Card Micro-Cascade Side-to-Side Fade Animations */
.details-content-fade {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.details-content-fade.exiting {
  opacity: 0;
  transform: translateX(-15px);
}

.details-content-fade.entering {
  opacity: 1;
  transform: translateX(0);
}

.showcase-floor-shadow {
  width: 240px;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 10px;
  pointer-events: none;
}

.showcase-flora-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.showcase-details-card {
  background: rgba(10, 16, 13, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 0 35px rgba(212, 175, 55, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-product-title {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.showcase-product-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.showcase-notes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-steep-params {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.steep-param-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.showcase-bottom-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.showcase-progress-bar-bg {
  flex: 1;
  max-width: 280px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  margin: 0 20px;
  overflow: hidden;
}

.showcase-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--color-gold);
  border-radius: 99px;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 10px var(--color-gold);
}

/* ==========================================================================
   ULTRA-RESPONSIVE MOBILE FIRST OPTIMIZATION ENGINE
   ========================================================================== */

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

html, body {
  overflow-x: clip !important;
  max-width: 100vw;
  position: relative;
}

.wellness-compendium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Mobile Breakpoint (Max-Width: 960px) --- */
@media (max-width: 960px) {
  .wellness-compendium-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .terroir-dial-container {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }

  .vault-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .sommelier-quiz-box {
    padding: 24px 16px !important;
  }

  .steeping-timer-card {
    padding: 24px 16px !important;
  }

  .story-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .story-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .showcase-split-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .showcase-image-stage {
    height: 340px !important;
  }

  .showcase-3d-orbit-system {
    width: 220px !important;
    height: 300px !important;
  }

  .orbit-card-0 { transform: rotateY(0deg) translateZ(190px) !important; }
  .orbit-card-1 { transform: rotateY(90deg) translateZ(190px) !important; }
  .orbit-card-2 { transform: rotateY(180deg) translateZ(190px) !important; }
  .orbit-card-3 { transform: rotateY(270deg) translateZ(190px) !important; }

  .orbit-pouch-img {
    max-height: 250px !important;
  }

  .showcase-details-card {
    padding: 20px 18px !important;
  }
}

/* --- Mobile Breakpoint (Max-Width: 768px) --- */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 14px !important;
  }

  .site-header .ctr {
    padding: 0 4px !important;
  }

  .header-logo-group img {
    width: 32px !important;
    height: 32px !important;
  }

  .header-logo-text {
    font-size: 1.1rem !important;
    letter-spacing: 0.12em !important;
  }

  .header-nav {
    display: none !important;
  }

  .header-actions {
    gap: 8px !important;
  }

  .header-actions button,
  .user-auth-chip {
    padding: 7px 11px !important;
    font-size: 0.7rem !important;
  }

  .pinterest-hero-stage {
    padding-top: 80px !important;
    min-height: auto !important;
    padding-bottom: 40px !important;
  }

  .hero-main-stage-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
  }

  .hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-tagline-huge {
    font-size: clamp(2.6rem, 11vw, 3.8rem) !important;
    line-height: 0.95 !important;
    margin: 12px 0 16px 0 !important;
  }

  .hero-desc-clean {
    font-size: 0.92rem !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }

  .hero-actions-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-actions-row button {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.85rem !important;
  }

  .hero-center-product-stage {
    height: 320px !important;
  }

  .hero-3d-pouch-img {
    max-height: 280px !important;
  }

  .hero-right-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .swatch-group-card {
    width: 100% !important;
    max-width: 320px !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .liquid-glass-orb-wrapper {
    width: 280px !important;
    height: 280px !important;
  }

  .orb-num-glow {
    font-size: 3rem !important;
  }

  .cart-drawer-content {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .site-modal-card {
    width: 95vw !important;
    max-width: 95vw !important;
    padding: 22px 16px !important;
    border-radius: 16px !important;
  }
}

/* ==========================================================================
   CINEMATIC COMMERCIAL VIDEO-STYLE PRODUCT REVEAL SYSTEM
   ========================================================================== */

.commercial-anamorphic-flare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 35%, #FFFFFF 50%, var(--color-gold) 65%, transparent 100%);
  box-shadow: 0 0 35px 8px rgba(212, 175, 55, 0.75), 0 0 65px 22px rgba(255, 255, 255, 0.45);
  pointer-events: none;
  opacity: 0;
  z-index: 12;
  mix-blend-mode: screen;
}

.commercial-specular-sheen {
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%, transparent 100%);
  background-size: 250% 250%;
  pointer-events: none;
  opacity: 0;
  z-index: 7;
  mix-blend-mode: overlay;
}

.cinematic-flare-pulse {
  animation: commercial-lens-flare-sweep 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes commercial-lens-flare-sweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.15) rotate(-18deg);
    filter: brightness(2.5);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1.4) rotate(0deg);
    filter: brightness(3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(2.2) rotate(18deg);
    filter: brightness(1);
  }
}

/* ==========================================================================
   macOS VENTURA / SONOMA FLUID SPRING MENU OPEN & CLOSE PHYSICS
   ========================================================================== */

/* macOS Close (Exit / Going State): Snappy inward scale-down & fade */
.macos-pouch-close {
  transform: scale(0.88) translateY(12px) !important;
  opacity: 0 !important;
  filter: blur(12px) !important;
  transition: transform 0.22s cubic-bezier(0.4, 0, 1, 1),
              opacity 0.2s ease,
              filter 0.22s ease !important;
}

/* macOS Open Prepared State (Instant zero-time placement) */
.macos-pouch-open-prepare {
  transform: scale(0.88) translateY(-14px) !important;
  opacity: 0 !important;
  filter: blur(14px) brightness(1.2) !important;
  transition: none !important;
}

/* macOS Open (Enter / Coming State): Fluid Spring Elastic Overshoot */
.macos-pouch-open-spring {
  transform: scale(1.0) translateY(0px) !important;
  opacity: 1 !important;
  filter: blur(0px) brightness(1.0) !important;
  transition: transform 0.48s cubic-bezier(0.175, 0.885, 0.32, 1.175),
              opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* macOS Details Card Sheet Spring Transition */
.macos-card-close {
  transform: scale(0.96) translateY(8px);
  opacity: 0;
  filter: blur(4px);
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.macos-card-open {
  transform: scale(1.0) translateY(0px);
  opacity: 1;
  filter: blur(0px);
  transition: transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.15),
              opacity 0.35s ease,
              filter 0.35s ease;
}

/* Cinematic Title Reveal Expansion */
.cinematic-title-reveal {
  animation: title-commercial-reveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes title-commercial-reveal {
  0% {
    opacity: 0;
    letter-spacing: 0.14em;
    transform: translateY(16px) scale(0.96);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    letter-spacing: -0.02em;
    transform: translateY(0) scale(1);
  }
}

/* Ultra-Luxury Global Typography Rendering Engine */
body, input, button, textarea, select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
}

h1, h2, h3, h4, .fn-h1, .fn-h2, .fn-h3, .fn-h4, .editorial-headline, .manifesto-scroll-line, .showcase-product-title, .hero-tagline-huge {
  font-family: var(--font-editorial);
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
}

.f-mono, .badge-mono, .hero-lot-tag, .kicker-gold, .swatch-title-label, .btn-hero-clean {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.hero-tagline-huge {
  font-family: var(--font-editorial) !important;
  font-style: normal;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}

.manifesto-scroll-line {
  font-family: var(--font-editorial) !important;
  font-weight: 500 !important;
  font-style: normal;
  line-height: 1.32 !important;
}

.showcase-product-title {
  font-family: var(--font-editorial) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

/* Dynamic Interactive Cursor Spotlight Beam */
.cursor-spotlight-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0%, rgba(212, 175, 55, 0.14) 35%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 8;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transition: opacity 0.35s ease;
}

.showcase-pouch-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 5;
  transform-style: preserve-3d;
  will-change: transform;
}

.showcase-master-pouch-img {
  max-height: 410px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.85));
  will-change: transform, opacity, filter;
  transform-style: preserve-3d;
}

/* Real Google OAuth 2.0 Identity Services Styling */
#googleSignInButton {
  overflow: hidden;
  border-radius: 8px;
}

#googleSignInButton iframe {
  margin: 0 auto !important;
}

.user-nav-avatar-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
}

/* ==========================================================================
   FLOATING BACK TO TOP BUTTON (From Uiverse.io by vinodjangid07)
   ========================================================================== */

.uiverse-back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(212, 175, 55, 0.28), 0 10px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.uiverse-back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.uiverse-back-to-top-btn .svgIcon {
  width: 13px;
  height: 13px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.uiverse-back-to-top-btn .svgIcon path {
  fill: #FFFFFF;
}

.uiverse-back-to-top-btn:hover {
  width: 140px;
  border-radius: 50px;
  background-color: var(--color-gold);
  box-shadow: 0px 0px 0px 4px rgba(212, 175, 55, 0.45), 0 12px 30px rgba(0, 0, 0, 0.6);
  align-items: center;
}

.uiverse-back-to-top-btn:hover .svgIcon {
  transform: translateY(-200%);
  opacity: 0;
}

.uiverse-back-to-top-btn::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: #0A0C0B;
  font-family: var(--font-mono);
  font-size: 0px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: font-size 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.uiverse-back-to-top-btn:hover::before {
  font-size: 12px;
  opacity: 1;
  bottom: unset;
}

/* ==========================================================================
   GEOMETRIC MORPHING LOADER (From Uiverse.io by bociKond)
   ========================================================================== */

.loader {
  width: 44.8px;
  height: 44.8px;
  color: var(--color-gold, #D4AF37);
  position: relative;
  background: radial-gradient(11.2px, currentColor 94%, #0000);
  margin: 18px auto;
  will-change: transform, inset;
}

.loader:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
              radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
              radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
              radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
  background-size: 22.4px 22.4px;
  background-repeat: no-repeat;
  animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
  will-change: transform, inset;
}

@keyframes loader {
  33% {
    inset: -11.2px;
    transform: rotate(0deg);
  }

  66% {
    inset: -11.2px;
    transform: rotate(90deg);
  }

  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

/* WhatsApp Header Badge & Supabase Auth Integration */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-header {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 8px 14px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}
