/** Shopify CDN: Minification failed

Line 1170:2 Unexpected "50%"
Line 1171:0 Unexpected "}"
Line 1367:2 Unexpected "50%"
Line 1368:0 Unexpected "}"
Line 1381:2 Unexpected "100%"
Line 1382:0 Unexpected "}"
Line 1666:2 Unexpected "50%"
Line 1667:0 Unexpected "}"
Line 5210:0 Unexpected "}"

**/
/* ==========================================================================
   Orbly V2 — Theme CSS
   Premium Pet Store · Shopify 2.0
   ========================================================================== */

/* ---------- Google Fonts ---------- */
/* Google Fonts removed — self-hosted WOFF2 in layout/theme.liquid for performance */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors – Light Mode (default) */
  --color-bg: #f8f8f8;
  --color-bg-elevated: #ffffff;
  --color-text: #222222;
  --color-text-muted: #666666;
  --color-gold: #bfa06b;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #9a8255;
  --color-gold-rgb: 191, 160, 107;
  --color-bg-rgb: 248, 248, 248;
  --color-text-rgb: 34, 34, 34;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-overlay: rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-scale: 1;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Layout */
  --max-width: 1280px;
  --header-height: calc(72px + env(safe-area-inset-top));
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(191, 160, 107, 0.2);
  --glass-blur: 20px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.8s;
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --color-bg: #0E0B08;
  --color-bg-elevated: #150F0A;
  --color-text: #F5EDE0;
  --color-text-muted: #A89880;
  --color-gold: #C9985A;
  --color-gold-light: #E8C896;
  --color-gold-dark: #8B5E2A;
  --color-gold-rgb: 201, 152, 90;
  --color-bg-rgb: 14, 11, 8;
  --color-text-rgb: 245, 237, 224;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-overlay: rgba(0, 0, 0, 0.6);

  --glass-bg: rgba(21, 15, 10, 0.7);
  --glass-border: rgba(201, 152, 90, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  font-size: calc(100% * var(--font-scale));
  /* SHO-200: html bg fills the iOS Safari safe-area (with viewport-fit=cover)
     so the top bar follows [data-theme] reliably — independent of iOS Safari's
     theme-color caching behavior. */
  background-color: var(--color-bg);
}

/* SHO-200: bulletproof iOS safe-area cover. Sits above page content (z-index 200),
   pointer-events: none, fully synchronized with [data-theme] via var(--color-bg).
   This guarantees the top bar follows the theme on PDP where the .pv5-wrapper
   section bg was previously bleeding through the safe-area on iOS. */
html::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background-color: var(--color-bg);
  z-index: 200;
  pointer-events: none;
  /* SHO-227 v4: NO transition on safe-area cover bg — iOS Safari was locking URL-bar tint to mid-transition state on PDP. Snap instant. */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--duration-slow) var(--ease-out),
              color var(--duration-slow) var(--ease-out);
}

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

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

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

/* ---------- Film Grain Overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  max-width: 65ch;
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
}

/* ---------- Gold Text Gradient ---------- */
.gold-gradient {
  background: linear-gradient(90deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 30%,
    #F5EDE0 50%,
    var(--color-gold-light) 70%,
    var(--color-gold) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 8s linear infinite;
}

@keyframes goldShimmer {
  to { background-position: 300% center; }
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}

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

/* ---------- Glass Morphism ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: var(--space-lg);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--color-gold-rgb), 0.12);
  border-color: rgba(var(--color-gold-rgb), 0.3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-gold-rgb), 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gold);
  padding: 0.5rem 0;
}

.btn-ghost::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Paw Stamp Button Effect ---------- */
.btn-paw-stamp {
  position: relative;
}

.btn-paw-stamp .paw-stamp {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  fill: rgba(var(--color-gold-rgb), 0.3);
  transform: scale(0) rotate(-20deg);
}

.btn-paw-stamp.stamped .paw-stamp {
  animation: pawStamp 0.6s var(--ease-out) forwards;
}

@keyframes pawStamp {
  0% { opacity: 0; transform: scale(0) rotate(-20deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(0deg); }
  100% { opacity: 0; transform: scale(1) rotate(5deg); }
}

/* ---------- Cards ---------- */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(var(--color-gold-rgb), 0.1);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: #fff;
}

.product-card__info {
  padding: var(--space-md);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.product-card__price {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 600;
}

.product-card__price--compare {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.product-card__quick-view {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all var(--duration-base) var(--ease-out);
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- 3D Tilt Card ---------- */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.tilt-card__inner {
  transform: translateZ(20px);
}

/* ---------- Star Rating ---------- */
.star-rating {
  display: inline-flex;
  gap: 2px;
}

.star-rating__star {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  opacity: 0.2;
  transition: opacity var(--duration-fast);
}

.star-rating__star--filled {
  opacity: 1;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--color-gold-rgb), 0.3);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-gold-rgb), 0.5);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(var(--color-gold-rgb), 0.2);
  color: var(--color-text);
}

/* ---------- Section Divider ---------- */
.section-divider {
  width: 100%;
  height: auto;
  display: block;
  color: var(--color-bg);
  margin-top: -1px;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  display: none;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.announcement-bar__track {
  display: flex;
  animation: marquee 30s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

.announcement-bar__item {
  flex-shrink: 0;
  padding: 0.5rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-height);
  padding-top: env(safe-area-inset-top); /* SHO-200: keep content clear of iOS notch */
  /* SHO-227 v4: exclude background-color from base transition — iOS Safari was sampling mid-transition site-header bg under safe area on PDP and locking URL-bar tint. */
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.site-header--scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .site-header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.site-header__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.site-footer__logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.loading-screen__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.loading-screen__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .site-header__logo-icon {
    width: 28px;
    height: 28px;
  }
  .site-header__logo {
    font-size: 1.25rem;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color var(--duration-fast);
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.site-header__nav-link:hover {
  color: var(--color-gold);
}

.site-header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  position: relative;
}

.site-header__icon-btn:hover {
  background: rgba(var(--color-gold-rgb), 0.1);
  color: var(--color-gold);
}

.site-header__icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-full);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle__line {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.menu-toggle.active .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide desktop nav on mobile, show toggle */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .site-header__nav--desktop { display: none; }
}

/* ===== Mobile Nav — Premium Slide-in ===== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.65);
  /* backdrop-filter: blur(20px) removed for perf */
  /* -webkit-backdrop-filter: blur(20px) removed for perf */
  border-left: 2px solid var(--color-gold, #bfa06b);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s;
  will-change: transform;
}

[data-theme="dark"] .mobile-nav {
  background: rgba(14, 11, 8, 0.85);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 5rem 2rem 2rem;
}

.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 160, 107, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-text, #222);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.mobile-nav__close:hover {
  color: var(--color-gold, #bfa06b);
  background: rgba(191, 160, 107, 0.2);
  transform: rotate(90deg);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-nav__link {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text, #222);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.75rem 0 0.75rem 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: color 0.2s ease;
  will-change: transform, opacity;
}

.mobile-nav.open .mobile-nav__link {
  animation: mobileNavLinkIn 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mobile-nav.open .mobile-nav__link:nth-child(1) { animation-delay: 0s; }
.mobile-nav.open .mobile-nav__link:nth-child(2) { animation-delay: 0.03s; }
.mobile-nav.open .mobile-nav__link:nth-child(3) { animation-delay: 0.06s; }
.mobile-nav.open .mobile-nav__link:nth-child(4) { animation-delay: 0.09s; }
.mobile-nav.open .mobile-nav__link:nth-child(5) { animation-delay: 0.12s; }
.mobile-nav.open .mobile-nav__link:nth-child(6) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav__link:nth-child(7) { animation-delay: 0.18s; }
.mobile-nav.open .mobile-nav__link:nth-child(8) { animation-delay: 0.21s; }

@keyframes mobileNavLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav:not(.open) .mobile-nav__link {
  opacity: 0;
  transform: translateY(12px);
  animation: none;
}

.mobile-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: 0;
  height: 2px;
  background: var(--color-gold, #bfa06b);
  transition: width 0.3s ease;
}
.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: var(--color-gold, #bfa06b);
}
.mobile-nav__link:hover::after {
  width: calc(100% - 1rem);
}

.mobile-nav__link--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold, #bfa06b);
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 1.5rem;
}
.mobile-nav__divider {
  height: 1px;
  background: var(--color-border, rgba(0,0,0,0.08));
  margin-bottom: 1rem;
}
.mobile-nav__tagline {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 0.875rem;
  color: var(--color-text-light, #6B6B6B);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.menu-toggle.active .menu-toggle__line {
  background: var(--color-gold, #bfa06b);
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}

@media (min-width: 769px) {
  .mobile-nav,
  .mobile-nav-backdrop { display: none; }
  .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
  /* Premium warm gradient background — not plain white */
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(var(--color-gold-rgb), 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(var(--color-gold-rgb), 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, #f5efe5 30%, #f0e8d8 50%, #f5efe5 70%, var(--color-bg) 100%);
}

[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(var(--color-gold-rgb), 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, #1a140d 30%, #1c160f 50%, #1a140d 70%, var(--color-bg) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Premium hero background — multi-layer ambient glow */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  /* filter: blur(80px) removed for perf */
  pointer-events: none;
}

.hero__orb--1 {
  width: clamp(400px, 55vw, 900px);
  height: clamp(400px, 55vw, 900px);
  right: -15%;
  top: 0%;
  background: radial-gradient(circle,
    rgba(var(--color-gold-rgb), 0.25) 0%,
    rgba(var(--color-gold-rgb), 0.12) 40%,
    transparent 65%
  );
  /* animation removed for perf */
}

.hero__orb--2 {
  width: clamp(300px, 35vw, 600px);
  height: clamp(300px, 35vw, 600px);
  left: 0%;
  bottom: 5%;
  background: radial-gradient(circle,
    rgba(var(--color-gold-rgb), 0.18) 0%,
    rgba(var(--color-gold-rgb), 0.08) 40%,
    transparent 65%
  );
  /* animation removed for perf */
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4%, 6%) scale(1.05); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, -5%) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: none;
  padding: 0;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero__title span {
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 550px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero split layout */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero media frame (video/image/visual) */
.hero__media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(var(--color-gold-rgb), 0.2) 0%, transparent 55%),
    linear-gradient(145deg,
      rgba(var(--color-gold-rgb), 0.12) 0%,
      rgba(var(--color-gold-rgb), 0.22) 35%,
      rgba(var(--color-gold-rgb), 0.16) 65%,
      rgba(var(--color-gold-rgb), 0.08) 100%
    );
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 24px 60px rgba(var(--color-gold-rgb), 0.15),
    0 48px 100px rgba(var(--color-gold-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(var(--color-gold-rgb), 0.15);
}


.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Hero brand image — dark/light mode switching */
.hero-img--dark {
  display: none;
}

[data-theme="dark"] .hero-img--light {
  display: none;
}

[data-theme="dark"] .hero-img--dark {
  display: block;
}




/* Hero visual renders directly inside media frame */

/* Scroll indicator */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.35;
}

.hero__scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  /* animation: scrollBounce removed for performance */
}

/* @keyframes scrollBounce — removed for performance */
  50% { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-block: var(--space-xl);
    gap: var(--space-lg);
  }
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center !important; }
  .hero__media-frame {
    max-width: 340px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-block: var(--space-lg) var(--space-md);
    min-height: auto;
  }

  .hero__content {
    display: contents;
  }

  .hero__title {
    order: 1;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    text-align: center;
    margin-bottom: 0;
  }

  .hero__subtitle {
    order: 2;
    font-size: 0.95rem;
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero__visual {
    order: 3;
  }

  .hero__media-frame {
    max-width: 65vw;
    margin-inline: auto;
  }

  .hero__actions {
    order: 4;
    justify-content: center !important;
  }

  .hero__scroll-hint {
    display: none;
  }
}

/* ---------- Hero Premium Visual — Floating Product Showcase ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated mesh gradient background */
.hero-visual__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-visual__mesh-blob {
  position: absolute;
  border-radius: 50%;
  /* filter: blur(50px) removed for perf */
  opacity: 0.7;
}

.hero-visual__mesh-blob--1 {
  width: 50%;
  height: 60%;
  top: -5%;
  left: -5%;
  background: radial-gradient(circle, #e8d5b0 0%, #d4b87a 40%, transparent 70%);
  /* animation removed for perf */
}

.hero-visual__mesh-blob--2 {
  width: 45%;
  height: 50%;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, #f0e0c0 0%, #c9a86b 50%, transparent 70%);
  /* animation removed for perf */
}

.hero-visual__mesh-blob--3 {
  width: 35%;
  height: 40%;
  top: 30%;
  right: 20%;
  background: radial-gradient(circle, #f5ebe0 0%, #dcc4a0 40%, transparent 70%);
  /* animation removed for perf */
}

.hero-visual__mesh-blob--4 {
  width: 40%;
  height: 35%;
  bottom: 15%;
  left: 20%;
  background: radial-gradient(circle, #e5d2b5 0%, #c8a870 50%, transparent 70%);
  /* animation removed for perf */
}

@keyframes meshFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 8%) scale(1.15); }
}
@keyframes meshFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12%, -8%) scale(1.1); }
}
@keyframes meshFloat3 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(-8%, 10%) scale(1.2); }
}
@keyframes meshFloat4 {
  0% { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(6%, -6%) scale(0.95); }
}

[data-theme="dark"] .hero-visual__mesh-blob--1 {
  background: radial-gradient(circle, rgba(201, 152, 90, 0.5) 0%, rgba(139, 94, 42, 0.3) 50%, transparent 70%);
}
[data-theme="dark"] .hero-visual__mesh-blob--2 {
  background: radial-gradient(circle, rgba(184, 140, 80, 0.4) 0%, rgba(120, 80, 30, 0.25) 50%, transparent 70%);
}
[data-theme="dark"] .hero-visual__mesh-blob--3 {
  background: radial-gradient(circle, rgba(220, 190, 140, 0.3) 0%, rgba(160, 120, 60, 0.2) 50%, transparent 70%);
}
[data-theme="dark"] .hero-visual__mesh-blob--4 {
  background: radial-gradient(circle, rgba(200, 168, 112, 0.35) 0%, rgba(140, 100, 50, 0.2) 50%, transparent 70%);
}

/* Subtle dot grid overlay */
.hero-visual__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

/* Main product showcase card */
.hero-visual__product-card {
  position: relative;
  z-index: 3;
  width: 58%;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.96);
  /* backdrop-filter: blur(24px) removed for perf */
  /* -webkit-backdrop-filter: blur(24px) removed for perf */
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 32px 80px rgba(var(--color-gold-rgb), 0.18);
  overflow: hidden;
  /* animation: productFloat removed for performance */
}

[data-theme="dark"] .hero-visual__product-card {
  background: linear-gradient(160deg, rgba(30, 24, 18, 0.95) 0%, rgba(21, 15, 10, 0.9) 100%);
  border-color: rgba(var(--color-gold-rgb), 0.2);
}

/* @keyframes productFloat — removed for performance */
  50% { transform: translateY(-10px); }
}

.hero-visual__product-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 250% 100%;
  /* animation: heroShimmer removed for performance */
  pointer-events: none;
  z-index: 1;
}

/* @keyframes heroShimmer — removed for performance */
  100% { background-position: -200% 0; }
}

.hero-visual__product-image {
  background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.08) 0%, rgba(var(--color-gold-rgb), 0.15) 100%);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
  aspect-ratio: 7/6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual__product-image svg {
  width: 85%;
  height: auto;
}

.hero-visual__product-info {
  position: relative;
  z-index: 2;
}

.hero-visual__product-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.hero-visual__product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.hero-visual__product-price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.hero-visual__product-price-current {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.hero-visual__product-price-old {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero-visual__product-cta {
  width: 100%;
  padding: 0.55rem 0;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Floating notification cards */
.hero-visual__notif {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  /* backdrop-filter: blur(20px) removed for perf */
  /* -webkit-backdrop-filter: blur(20px) removed for perf */
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(var(--color-gold-rgb), 0.1);
  white-space: nowrap;
}

[data-theme="dark"] .hero-visual__notif {
  background: linear-gradient(135deg, rgba(30, 24, 18, 0.95) 0%, rgba(21, 15, 10, 0.9) 100%);
  border-color: rgba(var(--color-gold-rgb), 0.15);
}

.hero-visual__notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual__notif-icon--fire {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
  color: #fff;
}

.hero-visual__notif-icon--check {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #fff;
}

.hero-visual__notif-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero-visual__notif-sub {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

/* Positioning & animation for notification cards */
.hero-visual__notif--trending {
  top: 8%;
  right: 3%;
  /* animation: notifFloat1 removed for performance */
}

.hero-visual__notif--success {
  bottom: 12%;
  left: 2%;
  /* animation: notifFloat2 removed for performance */
}

.hero-visual__notif--review {
  top: 55%;
  right: 0%;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.6rem 0.9rem;
  /* animation: notifFloat3 removed for performance */
}

.hero-visual__review-stars {
  color: var(--color-gold);
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.hero-visual__review-author {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

@keyframes notifFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes notifFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes notifFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Brand watermark */
.hero-visual__brand {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* Sparkle accents */
.hero-visual__spark {
  display: none; /* 6 infinite animations — disabled for performance */
}

.hero-visual__spark--1 { width: 5px; height: 5px; top: 15%; left: 12%; animation: heroSpark 4s ease-in-out infinite; }
.hero-visual__spark--2 { width: 4px; height: 4px; top: 25%; right: 8%; animation: heroSpark 5s ease-in-out infinite 0.8s; }
.hero-visual__spark--3 { width: 3px; height: 4px; bottom: 22%; left: 8%; animation: heroSpark 3.5s ease-in-out infinite 0.3s; }
.hero-visual__spark--4 { width: 4px; height: 4px; bottom: 35%; right: 18%; animation: heroSpark 6s ease-in-out infinite 2s; }
.hero-visual__spark--5 { width: 3px; height: 4px; top: 45%; left: 4%; animation: heroSpark 4.5s ease-in-out infinite 1.2s; }
.hero-visual__spark--6 { width: 5px; height: 5px; top: 70%; right: 4%; animation: heroSpark 5.5s ease-in-out infinite 2.5s; }

@keyframes heroSpark {
  0%, 100% { opacity: 0.15; transform: scale(0.5); }
  50% { opacity: 0.9; transform: scale(1.6); box-shadow: 0 0 14px rgba(var(--color-gold-rgb), 0.6); }
}

/* ---------- Featured Collections ---------- */
.featured-collections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transform-style: preserve-3d;
}

.collection-card__image {
  position: absolute;
  inset: 0;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.08);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  color: #fff;
}

.collection-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.collection-card__count {
  font-size: 0.85rem;
  opacity: 0.7;
}

.collection-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  /* animation: floatBadge removed for performance */
}

/* @keyframes floatBadge — removed for performance */
  50% { transform: translateY(-8px); }
}

/* Collections — mobile premium swipe */
@media (max-width: 768px) {
  .featured-collections__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    margin-inline: calc(-1 * clamp(1rem, 4vw, 2rem));
    padding-inline: clamp(1rem, 4vw, 2rem);
  }
  .featured-collections__grid::-webkit-scrollbar { display: none; }
  .collection-card {
    flex: 0 0 calc(100% - 2rem);
    scroll-snap-align: center;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .collection-card__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }
  .collection-card__content {
    padding: var(--space-lg);
  }
  .collection-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  }
  .collection-card__badge {
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Collections — swipe indicator dots */
.collections__dots {
  display: none;
}

@media (max-width: 768px) {
  .collections__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
  }
  .collections__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(var(--color-gold-rgb), 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .collections__dot.active {
    width: 24px;
    border-radius: 3px;
    background: var(--color-gold);
  }
}

/* ---------- Brand Story ---------- */
.brand-story__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.brand-story__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-story__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.brand-story__text {
  padding: var(--space-md) 0;
}

@media (max-width: 768px) {
  .brand-story__text {
    padding: var(--space-xs) 0 0 0;
  }
}

.brand-story__text-inner {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.brand-story__text-inner p + p {
  margin-top: var(--space-md);
}

/* Placeholder visual (when no image uploaded) */
.brand-story__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(155deg,
    rgba(var(--color-gold-rgb), 0.14) 0%,
    rgba(var(--color-gold-rgb), 0.22) 35%,
    rgba(var(--color-gold-rgb), 0.16) 65%,
    rgba(var(--color-gold-rgb), 0.08) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(var(--color-gold-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(var(--color-gold-rgb), 0.08),
    0 24px 60px rgba(var(--color-gold-rgb), 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Animated mesh gradient blobs */
.brand-story__placeholder-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.brand-story__mesh-orb {
  display: none; /* blur(45px) on 3 elements = 3 extra GPU layers — disabled for performance */
}

.brand-story__mesh-orb--1 {
  width: 50%;
  height: 55%;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, #e8d5b0 0%, #d4b87a 40%, transparent 70%);
  opacity: 0.6;
  /* animation removed for performance */
}

.brand-story__mesh-orb--2 {
  width: 40%;
  height: 45%;
  bottom: -5%;
  left: -5%;
  background: radial-gradient(circle, #f0e0c0 0%, #c9a86b 50%, transparent 70%);
  opacity: 0.5;
  /* animation removed for performance */
}

.brand-story__mesh-orb--3 {
  width: 35%;
  height: 35%;
  top: 35%;
  left: 30%;
  background: radial-gradient(circle, #f5ebe0 0%, #dcc4a0 40%, transparent 70%);
  opacity: 0.45;
  /* animation removed for performance */
}

/* @keyframes bsMesh1/2/3 — removed for performance */

[data-theme="dark"] .brand-story__mesh-orb--1 {
  background: radial-gradient(circle, rgba(201, 152, 90, 0.4) 0%, rgba(139, 94, 42, 0.25) 50%, transparent 70%);
}
[data-theme="dark"] .brand-story__mesh-orb--2 {
  background: radial-gradient(circle, rgba(184, 140, 80, 0.35) 0%, rgba(120, 80, 30, 0.2) 50%, transparent 70%);
}
[data-theme="dark"] .brand-story__mesh-orb--3 {
  background: radial-gradient(circle, rgba(220, 190, 140, 0.25) 0%, rgba(160, 120, 60, 0.15) 50%, transparent 70%);
}

/* Elegant diagonal line pattern (replaces dot grid) */
.brand-story__placeholder-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(var(--color-gold-rgb), 0.5) 0px,
      rgba(var(--color-gold-rgb), 0.5) 1px,
      transparent 1px,
      transparent 40px
    );
}

/* Bento glass card layout */
.brand-story__bento {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 360px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-story__bento-card {
  position: absolute;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  /* backdrop-filter: blur(16px) removed for perf */
  /* -webkit-backdrop-filter: blur(16px) removed for perf */
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 40px rgba(var(--color-gold-rgb), 0.08);
  text-align: center;
}

[data-theme="dark"] .brand-story__bento-card {
  background: linear-gradient(135deg, rgba(30,24,18,0.9) 0%, rgba(21,15,10,0.85) 100%);
  border-color: rgba(var(--color-gold-rgb), 0.15);
}

.brand-story__bento-card--main {
  top: 12%;
  left: 8%;
  /* animation: bentoFloat1 removed for performance */
}

.brand-story__bento-card--rating {
  top: 8%;
  right: 10%;
  /* animation: bentoFloat2 removed for performance */
}

.brand-story__bento-card--badge {
  bottom: 28%;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* animation: bentoFloat3 removed for performance */
}

.brand-story__bento-card--shipping {
  bottom: 12%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* animation: bentoFloat1 removed for performance */
}

.brand-story__bento-paw {
  position: relative;
  z-index: 2;
  /* animation: bentoPawPulse removed for performance */
}

/* @keyframes bentoFloat1/2/3 + bentoPawPulse — removed for performance */

.brand-story__placeholder-art {
  width: 80%;
  max-width: 380px;
  height: auto;
  position: relative;
  z-index: 2;
}

.brand-story__placeholder-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  /* backdrop-filter: blur(16px) removed for perf */
  /* -webkit-backdrop-filter: blur(16px) removed for perf */
  border: 1px solid rgba(var(--color-gold-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .brand-story__placeholder-label {
  background: linear-gradient(135deg, rgba(30, 24, 18, 0.9) 0%, rgba(21, 15, 10, 0.85) 100%);
  border-color: rgba(var(--color-gold-rgb), 0.15);
}

/* Stats row — horizontal, full width under content */
.brand-story__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.08);
}

.brand-story__stat {
  text-align: center;
  position: relative;
}

.brand-story__stat + .brand-story__stat::before {
  content: "";
  position: absolute;
  left: calc(var(--space-xl) / -2);
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(var(--color-gold-rgb), 0.15), transparent);
}

.brand-story__stat-divider {
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  margin: 0.5rem auto;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .brand-story__row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  .brand-story__visual {
    display: none;
  }
  .brand-story__stats {
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
  }
  .brand-story__stat + .brand-story__stat::before {
    display: none;
  }
}

/* Mobile brand values — simple readable 2x2 grid */
.brand-story__mobile-values {
  display: none;
}

@media (max-width: 768px) {
  .brand-story__mobile-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  .brand-story__value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    text-align: center;
  }
  .brand-story__value-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

/* ---------- Iteration 1: Product-led Hero + Editorial Story ---------- */
.hero {
  min-height: 0;
  padding-top: var(--header-height);
  background: var(--color-bg);
}

[data-theme="dark"] .hero {
  background: var(--color-bg);
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__split {
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 7vh, 5rem);
}

.hero__content {
  max-width: 600px;
}

.hero__content .eyebrow {
  margin-bottom: var(--space-sm);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 var(--space-md);
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  max-width: 46ch;
  margin: 0 0 var(--space-lg);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
}

.hero__actions {
  margin-bottom: var(--space-md);
}

.hero .btn-primary {
  border-radius: 8px;
  color: #211e1a;
}

.hero .btn-primary:hover {
  color: #211e1a;
  transform: none;
}

.hero .btn-primary:active {
  transform: scale(0.98);
}

.hero .btn-primary::after {
  display: none;
}

.hero__support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.84rem;
}

.hero__story-link,
.brand-story__link {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(var(--color-gold-rgb), 0.65);
  text-underline-offset: 0.28em;
}

.hero__story-link:hover,
.brand-story__link:hover {
  color: var(--color-gold-dark);
}

.hero__trust-note {
  color: var(--color-text-muted);
}

.hero__visual {
  min-width: 0;
}

.hero__product-composition {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 0.88;
  margin-inline: auto;
}

.hero__product-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-bg-elevated);
  box-shadow: 0 2px 6px rgba(33, 30, 26, 0.04), 0 8px 20px rgba(33, 30, 26, 0.07);
  transition: border-color 0.2s ease;
}

.hero__product-card:hover {
  border-color: rgba(var(--color-gold-rgb), 0.55);
}

.hero__product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__product-card--1 {
  inset: 2% 20% 2% 5%;
  z-index: 2;
}

.hero__product-card--2 {
  width: 34%;
  height: 39%;
  top: 5%;
  right: 0;
  z-index: 3;
  transform: rotate(2.5deg);
}

.hero__product-card--3 {
  width: 31%;
  height: 36%;
  right: 2%;
  bottom: 4%;
  z-index: 3;
  transform: rotate(-2deg);
}

.hero__product-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.65rem 0.75rem;
  background: rgba(20, 18, 15, 0.78);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.35;
}

.brand-story-section {
  background: var(--color-bg-elevated);
}

.brand-story__header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.brand-story__header h2 {
  max-width: 16ch;
  margin-top: var(--space-sm);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.brand-story__editorial {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.brand-story__figure {
  margin: 0;
}

.brand-story__figure a {
  display: block;
}

.brand-story__figure img,
.brand-story__image-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  background: var(--color-bg);
}

.brand-story__figure figcaption {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.brand-story__intro {
  max-width: 58ch;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.brand-story__criteria {
  margin: var(--space-lg) 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-border);
}

.brand-story__criteria li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.brand-story__criterion-index {
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-story__criteria h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.brand-story__criteria p {
  margin: 0;
  max-width: 52ch;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.brand-story__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 0;
  border-top: 1px solid var(--color-border);
}

.brand-story__stat {
  padding: 1.35rem clamp(0.75rem, 2vw, 1.5rem);
  text-align: left;
}

.brand-story__stat + .brand-story__stat {
  border-left: 1px solid var(--color-border);
}

.brand-story__stat + .brand-story__stat::before {
  display: none;
}

.brand-story__stat-num {
  margin-bottom: 0.3rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
}

.brand-story__stat-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    text-align: left;
  }

  .hero__content {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--header-height);
  }

  .hero__split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 1.75rem 2rem;
  }

  .hero__content {
    display: contents;
  }

  .hero__content .eyebrow {
    order: 0;
    justify-self: center;
    margin-bottom: 0;
  }

  .hero__title {
    order: 1;
    align-items: center;
    margin-bottom: 0;
    font-size: clamp(2.45rem, 10.5vw, 2.8rem);
    line-height: 1.03;
    text-align: center;
  }

  .hero__subtitle {
    order: 2;
    max-width: 35ch;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
  }

  .hero__visual {
    order: 3;
  }

  .hero__product-composition {
    width: min(100%, 390px);
    aspect-ratio: 1 / 0.72;
  }

  .hero__product-card--1 {
    inset: 0 22% 0 4%;
  }

  .hero__product-card--2 {
    width: 32%;
    height: 42%;
    top: 2%;
  }

  .hero__product-card--3 {
    width: 30%;
    height: 40%;
    bottom: 2%;
  }

  .hero__product-label {
    display: none;
  }

  .hero__actions {
    order: 4;
    justify-content: center !important;
    margin: 0;
  }

  .hero__actions .btn,
  .hero__actions a {
    width: min(100%, 350px);
  }

  .hero__support {
    order: 5;
    justify-content: center;
    text-align: center;
  }

  .brand-story-section {
    padding-block: 4rem;
  }

  .brand-story__header {
    margin-bottom: 2rem;
  }

  .brand-story__header h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .brand-story__editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-story__figure img,
  .brand-story__image-fallback {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }

  .brand-story__criteria {
    margin-block: 1.75rem;
  }

  .brand-story__stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
  }

  .brand-story__stat {
    padding: 1.25rem 0.75rem;
  }

  .brand-story__stat + .brand-story__stat {
    border-left: 1px solid var(--color-border);
  }

  .brand-story__stat:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__product-card {
    transition: none;
  }
}

/* ---------- Testimonials ---------- */
.testimonials__carousel {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: var(--space-md) var(--space-sm);
}

.testimonials__carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(85vw - 2rem);
  scroll-snap-align: center;
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.testimonial-card__quote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__pet {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Testimonials — navigation arrows */
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.testimonials__nav:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-50%);
}
.testimonials__nav:active {
  transform: translateY(-50%) scale(0.95);
}
.testimonials__nav--prev { left: -22px; }
.testimonials__nav--next { right: -22px; }

@media (max-width: 640px) {
  .testimonials__nav--prev { left: 4px; }
  .testimonials__nav--next { right: 4px; }
  .testimonials__nav {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
  }
}

/* Testimonials — desktop enhanced layout */
@media (min-width: 769px) {
  .testimonials__carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) var(--space-sm);
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-lg) * 2 / 3);
    scroll-snap-align: start;
    padding: var(--space-xl);
  }

  .testimonial-card .glass-card,
  .testimonial-card.glass-card {
    padding: var(--space-xl);
    border: 1px solid rgba(var(--color-gold-rgb), 0.12);
  }

  .testimonial-card__quote {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .testimonial-card__quote::before {
    font-size: 3.5rem;
    color: var(--color-gold);
    opacity: 0.6;
  }
}

/* ---------- Newsletter CTA ---------- */
.newsletter-cta {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.newsletter-cta__form {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.newsletter-cta__input {
  flex: 1;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color var(--duration-fast);
  width: 100%;
  min-height: 44px;
  max-height: 44px;
  height: 44px;
  box-sizing: border-box;
}

.newsletter-cta__input:focus {
  outline: none;
  border-color: var(--color-gold);
}

@media (max-width: 480px) {
  .newsletter-cta__form {
    flex-direction: column;
  }
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold);
}

.comparison-table__check {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

/* Comparison — mobile responsive */
@media (max-width: 768px) {
  .comparison__header,
  .comparison__row {
    grid-template-columns: 1fr auto auto !important;
    padding: 0.85rem 1rem !important;
    gap: 0.5rem;
  }
  .comparison__header > div:first-child,
  .comparison__row > div:first-child {
    font-size: 0.8rem !important;
  }
  .comparison__stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .comparison .comparison__header + .comparison__row ~ .comparison__row:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 480px) {
  .comparison__header,
  .comparison__row {
    padding: 0.75rem 0.75rem !important;
  }
  .comparison__header > div:first-child,
  .comparison__row > div:first-child {
    font-size: 0.75rem !important;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--duration-fast);
}

.faq-item__question:hover {
  color: var(--color-gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
  color: var(--color-gold);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  overflow: hidden;
  height: 0;
}

.faq-item__answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Trust Badges / Logo Marquee ---------- */
.trust-badges__track {
  display: flex;
  animation: marquee 35s linear infinite;
  will-change: transform;
  gap: var(--space-xl);
}

.trust-badge {
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all var(--duration-base);
  height: 40px;
  width: auto;
}

.trust-badge:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.site-footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  transition: color var(--duration-fast);
}

.site-footer__link:hover {
  color: var(--color-gold);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all var(--duration-fast);
}

.site-footer__social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.site-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Back to top (cat tail) */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--color-gold-rgb), 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-out);
  z-index: 80;
  cursor: pointer;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(var(--color-gold-rgb), 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: var(--color-bg-elevated);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

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

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base);
}

.cart-drawer__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__header h3 {
  font-size: 1.25rem;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md) var(--space-lg);
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-drawer__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* ---------- Product Template ---------- */
/* ---------- Product Page ---------- */
.product-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .product-page__grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.product-page__gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

@media (max-width: 768px) {
  .product-page__gallery {
    position: static;
  }
}

.product-page__main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: var(--space-sm);
  background: var(--color-bg-elevated);
}

.product-page__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-page__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 2;
}

.product-page__main-image:hover .product-page__nav {
  opacity: 1;
}

.product-page__nav:hover {
  background: var(--color-bg);
  border-color: var(--color-gold);
}

.product-page__nav--prev { left: 12px; }
.product-page__nav--next { right: 12px; }

/* Thumbnails */
.product-page__thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.25rem;
}

.product-page__thumbnails::-webkit-scrollbar { display: none; }

.product-page__thumbnail {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast);
}

.product-page__thumbnail.active,
.product-page__thumbnail:hover {
  border-color: var(--color-gold);
}

.product-page__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots */
.product-page__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-sm);
}

.product-page__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.3s;
  cursor: pointer;
}

.product-page__dot.active {
  background: var(--color-text);
  width: 24px;
  border-radius: 4px;
}

/* Product Info */
.product-page__info {
  padding: var(--space-md) 0;
}

.product-page__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecc98b;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.product-page__rating-stars {
  letter-spacing: 1px;
}

.product-page__vendor {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.product-page__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.product-page__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

/* Feature Pills */
.product-page__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.product-page__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

/* Divider */
.product-page__divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) 0;
}

/* Variants */
.product-page__variants {
  margin-bottom: var(--space-md);
}

.variant-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.variant-picker__option {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.variant-picker__option:hover,
.variant-picker__option.selected {
  border-color: var(--color-gold);
  background: rgba(var(--color-gold-rgb), 0.1);
  color: var(--color-gold);
}

/* Quantity row */
.product-page__qty-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
}

.product-page__low-stock {
  color: #e67e22;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-page__qty-cart {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.quantity-selector__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--duration-fast);
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
}

.quantity-selector__btn:hover {
  background: rgba(var(--color-gold-rgb), 0.1);
}

.quantity-selector__value {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: none;
  color: var(--color-text);
}

/* Trust row */
.product-page__trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-page__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.product-page__trust-item:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.product-page__trust-item svg {
  flex-shrink: 0;
}

/* Payment icons */
.product-page__payments {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.product-page__payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-width: 42px;
}

/* Collapsible Tabs */
.product-page__tabs {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.product-page__tab-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  transition: color 0.2s;
}

.product-page__tab-header:hover {
  color: var(--color-gold);
}

.product-page__tab-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-page__tab.open .product-page__tab-icon {
  transform: rotate(45deg);
}

.product-page__tab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.product-page__tab.open .product-page__tab-content {
  max-height: 3000px;
}

.product-page__tab-inner {
  padding: 0 0 var(--space-md);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.product-page__tab-inner img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-sm) 0;
}

/* Bottom trust items */
.product-page__bottom-trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.product-page__bottom-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .product-page__pills {
    grid-template-columns: 1fr 1fr;
  }

  .product-page__trust-row {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.7rem;
  }

  .product-page__trust-item {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem 0.25rem;
    font-size: 0.7rem;
  }
}

/* ---------- Collection Template ---------- */
.collection-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
}

.collection-page__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.collection-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .collection-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-bottom: var(--space-md);
  }
  .product-card__title {
    font-size: 0.85rem;
  }
  .product-card__price {
    font-size: 0.9rem;
  }
  .product-card__info {
    padding: 0.75rem;
  }
  .collection-page__filters {
    gap: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .collection-page__filters > div:first-child {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }
  .collection-page__filters > div:first-child::-webkit-scrollbar { display: none; }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.collection-page__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--duration-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-gold);
  background: rgba(var(--color-gold-rgb), 0.1);
  color: var(--color-gold);
}

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.loading-screen__brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.loading-screen__bar {
  width: 120px;
  height: 2px;
  border-radius: 2px;
  background: rgba(var(--color-gold-rgb), 0.15);
  overflow: hidden;
  position: relative;
}

.loading-screen__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: loadingShimmer 1.5s ease-in-out infinite;
}

@keyframes loadingShimmer {
  0% { left: -60%; }
  100% { left: 100%; }
}

/* ---------- Paw Cursor ---------- */
.paw-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  fill: var(--color-gold);
  mix-blend-mode: multiply;
}

[data-theme="dark"] .paw-cursor {
  mix-blend-mode: screen;
}

.paw-cursor.visible {
  opacity: 0.6;
}

/* ---------- Scroll Trail ---------- */
.scroll-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

.scroll-trail__paw {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  opacity: 0;
  transition: opacity 0.3s;
}

/* ---------- Page Transition ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.enter {
  animation: pageTransitionEnter 0.5s var(--ease-out) forwards;
}

.page-transition.exit {
  animation: pageTransitionExit 0.5s var(--ease-out) forwards;
}

@keyframes pageTransitionEnter {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pageTransitionExit {
  from { transform: scaleY(1); transform-origin: top; }
  to   { transform: scaleY(0); transform-origin: top; }
}

/* ---------- Dark Mode Toggle ---------- */
.dark-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.dark-toggle:hover {
  background: rgba(var(--color-gold-rgb), 0.1);
}

.dark-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-base) var(--ease-out);
}

.dark-toggle:hover svg {
  transform: rotate(30deg);
}

.dark-toggle__sun,
.dark-toggle__moon {
  display: none;
}

[data-theme="light"] .dark-toggle__moon,
:root:not([data-theme]) .dark-toggle__moon {
  display: block;
}

[data-theme="dark"] .dark-toggle__sun {
  display: block;
}

/* Smooth theme transition — only applied during toggle, not page load */
.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, fill 0.4s ease, stroke 0.4s ease !important;
}

/* ---------- Masonry Grid ---------- */
.masonry-grid {
  columns: 4;
  column-gap: var(--space-md);
}

.masonry-grid > * {
  break-inside: avoid;
  margin-bottom: var(--space-md);
}

@media (max-width: 1024px) {
  .masonry-grid { columns: 3; }
}

@media (max-width: 768px) {
  .masonry-grid { columns: 2; }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
}

/* ---------- Animations ---------- */
/* Reveal requires GSAP — only hide if animations enabled AND GSAP loaded */
[data-animations="true"][data-gsap-ready] .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}

[data-animations="true"][data-gsap-ready] .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  [data-animations="true"][data-gsap-ready] .reveal,
  [data-animations="true"][data-gsap-ready] .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Product V5 override — prevent GSAP blur rules from affecting pv5 reveals */
.pv5-wrapper .reveal {
  opacity: 0 !important;
  transform: translateY(16px) scale(0.98) !important;
}
.pv5-wrapper .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.1); }
  50% { box-shadow: 0 0 40px rgba(var(--color-gold-rgb), 0.25); }
}

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

  .hero-aurora,
  .hero-shape,
  .paw-cursor,
  .scroll-trail,
  .announcement-bar__track,
  .trust-badges__track {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Trust Marquee Bar ---------- */
.trust-marquee {
  background: var(--color-bg-elevated);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

/* Gold accent line at top */
.trust-marquee__accent {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-gold-dark) 15%,
    var(--color-gold) 35%,
    var(--color-gold-light) 50%,
    var(--color-gold) 65%,
    var(--color-gold-dark) 85%,
    transparent 100%
  );
  opacity: 0.6;
}

/* Edge fade masks */
.trust-marquee__inner {
  overflow: hidden;
  position: relative;
}

.trust-marquee__inner::before,
.trust-marquee__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee__inner::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-elevated) 10%, transparent);
}

.trust-marquee__inner::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-elevated) 10%, transparent);
}

.trust-marquee__track {
  display: flex;
  animation: marquee 35s linear infinite;
  will-change: transform;
  width: max-content;
}

.trust-marquee__track:hover {
  animation-play-state: paused;
}

.trust-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.trust-marquee__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(var(--color-gold-rgb), 0.08);
  border: 1px solid rgba(var(--color-gold-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: all 0.3s ease;
}

.trust-marquee__item:hover .trust-marquee__icon {
  background: rgba(var(--color-gold-rgb), 0.15);
  border-color: rgba(var(--color-gold-rgb), 0.3);
  transform: scale(1.1);
}

.trust-marquee__icon svg {
  width: 15px;
  height: 15px;
}

.trust-marquee__text {
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.trust-marquee__item:hover .trust-marquee__text {
  color: var(--color-gold);
}

/* Dot separator between items */
.trust-marquee__dot {
  display: inline-block;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.3;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

/* ---------- Transformations / Before-After ---------- */
.transformations__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.transformations__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.transformations__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
}

.transformations__stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.transformations__slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.transformations__before,
.transformations__after {
  position: absolute;
  inset: 0;
}

.transformations__before {
  z-index: 2;
}

.transformations__after {
  z-index: 1;
}

.transformations__before img,
.transformations__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.transformations__label {
  position: absolute;
  bottom: var(--space-sm);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.transformations__label--before {
  left: var(--space-sm);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.transformations__label--after {
  right: var(--space-sm);
  background: rgba(var(--color-gold-rgb), 0.85);
  color: #fff;
}

.transformations__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 4;
  transform: translateX(-50%);
}

.transformations__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.transformations__handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .transformations__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ Split Layout ---------- */
.faq__split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
  align-items: start;
}

.faq__info {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.faq-item .faq-item__icon {
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq__split {
    grid-template-columns: 1fr;
  }
  .faq__info {
    position: static;
  }
}

/* ---------- Comparison Row Hover ---------- */
.comparison__row:hover {
  background: rgba(var(--color-gold-rgb), 0.03);
}

/* ---------- Team Section ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.team__card {
  text-align: center;
  position: relative;
}

.team__avatar {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  position: relative;
}

.team__avatar-ring {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.team__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team__role {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team__quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.team__companion {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 32px;
  height: 32px;
}

/* Team — Desktop: 2 big cards centered */
.team__grid--desktop {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content: center;
  gap: var(--space-xl);
}

.team__grid--desktop .team__card {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.team__grid--desktop .team__avatar {
  width: 220px;
  height: 220px;
}

/* Mobile flip card */
.team__flip-wrapper {
  display: none;
  max-width: 380px;
  margin-inline: auto;
  perspective: 1000px;
  cursor: pointer;
}

.team__flip-card {
  position: relative;
  width: 100%;
  min-height: 480px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.team__flip-card.flipped {
  transform: rotateY(180deg);
}

.team__flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team__flip-face--back {
  transform: rotateY(180deg);
}

.team__flip-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .team__grid--desktop {
    display: none !important;
  }
  .team__flip-wrapper {
    display: block;
  }
}

@media (min-width: 769px) {
  .team__flip-wrapper {
    display: none !important;
  }
}

/* ==========================================================================
   PREMIUM POLISH — Enhanced visual refinements
   ========================================================================== */

/* ---------- Enhanced Animations ---------- */

/* ---------- Enhanced Comparison Row ---------- */
.comparison__row {
  transition: background 0.3s ease, transform 0.2s ease;
}

.comparison__row:hover {
  background: rgba(var(--color-gold-rgb), 0.04);
}

/* ---------- Enhanced Team Cards ---------- */
.team__card .glass-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.team__card .glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(var(--color-gold-rgb), 0.15);
}

.team__avatar {
  transition: transform 0.4s var(--ease-out);
}

.team__card:hover .team__avatar {
  transform: scale(1.05);
}

/* ---------- Enhanced Newsletter ---------- */
.newsletter-cta__input {
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.newsletter-cta__input:focus {
  box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.1);
}

/* ---------- Enhanced FAQ ---------- */
.faq-item {
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(var(--color-gold-rgb), 0.15);
}

.faq-item.active {
  border-color: rgba(var(--color-gold-rgb), 0.2);
}

/* ---------- Premium Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--color-gold-rgb), 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-gold-rgb), 0.4);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--color-gold-rgb), 0.25) var(--color-bg);
}

/* ---------- Text Selection ---------- */
::selection {
  background: rgba(var(--color-gold-rgb), 0.2);
  color: var(--color-text);
}

/* ---------- Enhanced Glass Card Variants ---------- */
.glass-card--gold {
  border-color: rgba(var(--color-gold-rgb), 0.2);
  background: linear-gradient(135deg,
    rgba(var(--color-gold-rgb), 0.05),
    rgba(var(--color-gold-rgb), 0.02)
  );
}

/* ---------- Testimonial Card Hover ---------- */
.testimonial-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ---------- Section Background Variants ---------- */
#comparison {
  background: linear-gradient(180deg,
    var(--color-bg-elevated) 0%,
    rgba(var(--color-gold-rgb), 0.03) 50%,
    var(--color-bg) 100%
  );
}

#brand-story {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(var(--color-gold-rgb), 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, rgba(var(--color-gold-rgb), 0.03) 50%, var(--color-bg) 100%);
}

/* Transformations section — dramatic split */
#transformations {
  background: linear-gradient(135deg,
    var(--color-bg) 0%,
    rgba(var(--color-gold-rgb), 0.04) 40%,
    rgba(var(--color-gold-rgb), 0.06) 60%,
    var(--color-bg) 100%
  );
}

/* Team section */
#team {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(var(--color-gold-rgb), 0.04) 0%, transparent 70%),
    var(--color-bg-elevated);
}

/* ---------- Premium Ambient Background — DISABLED for performance ---------- */
/* Static blur(80px) pseudo-elements on every section caused massive GPU overhead */
/* ~18 elements × blur(80px) × 55% viewport width = catastrophic GPU memory usage */
.section {
  position: relative;
}

.section::before,
.section::after {
  content: none;
}

/* Hero doesn't need ambient section orbs — it has its own visuals */
.hero.section::before {
  display: none;
}

/* Hero ::after is used for its own gradient mesh — override the ambient one */
.hero.section::after {
  /* Reset ambient background styling — hero has its own ::after in the hero section */
  bottom: auto;
  right: auto;
  width: auto;
  height: auto;
  filter: none;
  border-radius: 0;
  animation: none;
  /* Hero-specific gradient mesh */
  content: "";
  inset: 0;
  position: absolute;
  background:
    radial-gradient(ellipse 50% 50% at 75% 30%, rgba(var(--color-gold-rgb), 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 25% 70%, rgba(var(--color-gold-rgb), 0.04) 0%, transparent 70%),
    linear-gradient(180deg,
      rgba(var(--color-gold-rgb), 0.02) 0%,
      transparent 30%,
      transparent 70%,
      rgba(var(--color-gold-rgb), 0.03) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* ---------- Section-Specific Premium Backgrounds ---------- */

/* Featured Collections — warm golden gradient wash */
#collections.section {
  background: linear-gradient(180deg,
    var(--color-bg) 0%,
    rgba(var(--color-gold-rgb), 0.04) 30%,
    rgba(var(--color-gold-rgb), 0.06) 50%,
    rgba(var(--color-gold-rgb), 0.04) 70%,
    var(--color-bg) 100%
  );
}

/* Product Showcase — soft diagonal gradient with mesh feel */
#products.section {
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(var(--color-gold-rgb), 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(var(--color-gold-rgb), 0.03) 0%, transparent 70%),
    var(--color-bg);
}

/* Testimonials — elevated warm band */
#testimonials.section {
  background: linear-gradient(180deg,
    var(--color-bg) 0%,
    var(--color-bg-elevated) 15%,
    var(--color-bg-elevated) 85%,
    var(--color-bg) 100%
  );
}

/* Newsletter CTA — rich golden glow center */
#newsletter.section {
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(var(--color-gold-rgb), 0.06) 0%, transparent 70%),
    var(--color-bg);
}

/* FAQ — clean elevated panel */
#faq.section {
  background: linear-gradient(180deg,
    var(--color-bg) 0%,
    rgba(var(--color-gold-rgb), 0.02) 20%,
    rgba(var(--color-gold-rgb), 0.03) 50%,
    rgba(var(--color-gold-rgb), 0.02) 80%,
    var(--color-bg) 100%
  );
}

/* ---------- Section Divider Gradients ---------- */
/* Smooth gradient transitions between sections instead of hard lines */
.section + .section {
  border-top: none;
}

/* Gold thread separator line */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--color-gold-rgb), 0.06) 15%,
    rgba(var(--color-gold-rgb), 0.15) 50%,
    rgba(var(--color-gold-rgb), 0.06) 85%,
    transparent 100%
  );
  z-index: 2;
}

/* Hero shouldn't have the top border */
.hero.section + .section::before {
  display: none;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .brand-story__ambient-orb,
  .brand-story__float,
  .trust-marquee__track,
  .animate-float,
  .hero__orb,
  .hero-visual__gradient,
  .hero-visual__aurora,
  .hero-visual__ring,
  .hero-visual__card,
  .hero-visual__card-shimmer,
  .hero-visual__badge,
  .hero-visual__spark {
    animation: none !important;
  }

  /* Disable ambient background orbs animation for reduced motion */
  .section::before,
  .section::after {
    animation: none !important;
  }
}

/* ---------- Premium Dot Grid Texture ---------- */
/* Subtle background pattern for sections that need extra richness */
.section--textured {
  background-image: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- Enhanced Glass Card Interactions ---------- */
.glass-card {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 8px 24px rgba(var(--color-gold-rgb), 0.08),
    0 16px 56px rgba(var(--color-gold-rgb), 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(var(--color-gold-rgb), 0.35);
}

/* ---------- Section Entrance Shimmer Line ---------- */
/* A decorative gold shimmer line that appears between sections */
.section-shimmer {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.section-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--color-gold-rgb), 0.4) 50%,
    transparent 100%
  );
  animation: shimmerSlide 4s ease-in-out infinite;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---------- Collection Card Enhanced Hover ---------- */
.collection-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 16px 48px rgba(var(--color-gold-rgb), 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ---------- Product Card Premium Hover ---------- */
.product-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 12px 40px rgba(var(--color-gold-rgb), 0.12),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ---------- Button Glow on Hover ---------- */
.btn-primary:hover {
  box-shadow:
    0 4px 16px rgba(var(--color-gold-rgb), 0.3),
    0 8px 32px rgba(var(--color-gold-rgb), 0.2),
    0 0 0 1px rgba(var(--color-gold-rgb), 0.1);
}

/* ---------- Testimonial Card Premium ---------- */
.testimonial-card .glass-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card .glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
  border-radius: 0 2px 2px 0;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover .glass-card::before {
  height: 100%;
}

/* ---------- Mobile Responsive Fixes ---------- */
@media (max-width: 640px) {
  /* Comparison table: stack on small screens */
  .comparison__header,
  .comparison__row {
    grid-template-columns: 1fr 1fr 1fr !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Comparison stats: 2 cols on mobile */
  .comparison__stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Hero buttons: stack on small screens */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
  }

  /* Testimonial cards: centered carousel on mobile */
  .testimonial-card {
    flex: 0 0 calc(100vw - 6rem);
    min-width: unset;
    scroll-snap-align: center;
  }
  .testimonial-card.glass-card {
    padding: var(--space-lg);
  }
  .testimonials__carousel {
    padding-inline: 1rem;
  }
  [data-testimonial-prev],
  [data-testimonial-next] {
    width: 36px !important;
    height: 36px !important;
    z-index: 2;
  }
  [data-testimonial-prev] {
    left: -8px !important;
  }
  [data-testimonial-next] {
    right: -8px !important;
  }
  [data-testimonial-prev]:hover,
  [data-testimonial-next]:hover,
  [data-testimonial-prev]:active,
  [data-testimonial-next]:active {
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 480px) {
  /* Comparison table: hide "Feature" label, make grid tighter */
  .comparison__header,
  .comparison__row {
    grid-template-columns: 1.5fr 1fr 1fr !important;
    font-size: 0.8rem;
  }

  /* Team grid: single column */
  .team__grid {
    grid-template-columns: 1fr;
  }

  /* Section padding: reduce on mobile */
  .section {
    padding-block: var(--space-xl);
  }
}

/* ---------- Print ---------- */
@media (max-width: 768px) {
  .back-to-top { display: none !important; }
}
@media print {
  .site-header,
  .announcement-bar,
  .back-to-top,
  .cart-drawer,
  .loading-screen,
  .paw-cursor,
  body::before {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}


/* ---------- Collection Page Mobile Improvements (Built-in Sections) ---------- */
@media (max-width: 768px) {
  /* Ensure built-in product grid is 2 columns */
  .collection .grid--2-col-tablet-down {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* Better filter/sort spacing */
  .collection .facets-container {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .collection .active-facets {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .collection .active-facets::-webkit-scrollbar { display: none; }

  .collection .active-facets__button {
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: var(--radius-full, 9999px);
    font-size: 0.78rem;
  }

  /* Tighter product card on mobile */
  .collection .card__content {
    padding: 0.6rem;
  }

  .collection .card__heading {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .collection .price {
    font-size: 0.9rem;
  }
}

/* Override body::before film grain to NOT block mobile nav */
body.mobile-nav-open::before {
  z-index: 0 !important;
}


/* === Contact page overhaul + announcement bar hide (2026-02-28) === */
.announcement-bar { display: none !important; }

#shopify-section-section_header_PDT7dN .title,
#shopify-section-section_header_PDT7dN h1,
#shopify-section-section_header_PDT7dN h2 { text-align:center !important; }
#shopify-section-section_header_PDT7dN .rte,
#shopify-section-section_header_PDT7dN p { text-align:center !important; max-width:760px; margin-left:auto; margin-right:auto; }

#shopify-section-feature_icons_QYEdGX .multicolumn-card { text-align:center !important; padding:12px 10px !important; border-radius:12px; }
#shopify-section-feature_icons_QYEdGX .multicolumn-card__image-wrapper,
#shopify-section-feature_icons_QYEdGX .multicolumn-list__item .media { margin-left:auto !important; margin-right:auto !important; }
#shopify-section-feature_icons_QYEdGX svg circle[fill=white] { fill:transparent !important; }
#shopify-section-feature_icons_QYEdGX .multicolumn-card__info p { text-align:center !important; margin:8px 0 0 !important; }

#shopify-section-contact_form_6h4eXE .contact.page-width { max-width:760px !important; margin:0 auto !important; }
#shopify-section-contact_form_6h4eXE .contact__fields { display:grid !important; grid-template-columns:1fr 1fr; gap:16px; }
#shopify-section-contact_form_6h4eXE .contact__fields > .field:nth-child(n+2) { grid-column:1 / -1; }
#shopify-section-contact_form_6h4eXE .field { margin-bottom:0 !important; }
#shopify-section-contact_form_6h4eXE .field__input,
#shopify-section-contact_form_6h4eXE .text-area { border-radius:10px !important; padding:14px 16px !important; transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
#shopify-section-contact_form_6h4eXE .field__input:focus,
#shopify-section-contact_form_6h4eXE .text-area:focus { border-color:rgba(var(--color-gold-rgb), .6) !important; box-shadow:0 0 0 2px rgba(var(--color-gold-rgb), .15) !important; }
#shopify-section-contact_form_6h4eXE .contact__button { margin-top:18px; }
#shopify-section-contact_form_6h4eXE .contact__button .button { width:100%; min-height:50px; border-radius:10px !important; background:var(--color-gold) !important; color:#1c1714 !important; }

[data-theme=dark] #shopify-section-contact_form_6h4eXE .field__input,
[data-theme=dark] #shopify-section-contact_form_6h4eXE .text-area { background:rgba(255,255,255,.06) !important; color:#e8e0d8 !important; }
[data-theme=dark] #shopify-section-contact_form_6h4eXE .field__label { color:rgba(232,224,216,.72) !important; }
[data-theme=dark] #shopify-section-contact_form_6h4eXE .field:before,
[data-theme=dark] #shopify-section-contact_form_6h4eXE .field:after { border-color:rgba(var(--color-gold-rgb), .25) !important; }

@media (max-width: 749px) {
  #shopify-section-feature_icons_QYEdGX .multicolumn-list { row-gap:10px !important; }
  #shopify-section-contact_form_6h4eXE .contact__fields { grid-template-columns:1fr !important; gap:12px !important; }
  #shopify-section-contact_form_6h4eXE .contact__fields > .field { grid-column:1 / -1 !important; }
}


/* === Contact page quick layout tune (2026-02-28-1705) === */
/* tighten top spacing below fixed header */
#shopify-section-section_header_PDT7dN {
  margin-top: 10px !important;
}
#shopify-section-section_header_PDT7dN #section-section_header_PDT7dN,
#shopify-section-section_header_PDT7dN .section-header,
#shopify-section-section_header_PDT7dN .page-width {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* desktop: icon guarantees in one row */
@media (min-width: 990px) {
  #shopify-section-feature_icons_QYEdGX #Slider-feature_icons_QYEdGX,
  #shopify-section-feature_icons_QYEdGX .feature-icons-container {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start;
  }
  #shopify-section-feature_icons_QYEdGX .feature-icon-card {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}

/* mobile: one-line swipeable icons */
@media (max-width: 989px) {
  #shopify-section-feature_icons_QYEdGX .slider-mobile-gutter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #shopify-section-feature_icons_QYEdGX .slider-mobile-gutter::-webkit-scrollbar {
    display: none;
  }
  #shopify-section-feature_icons_QYEdGX #Slider-feature_icons_QYEdGX,
  #shopify-section-feature_icons_QYEdGX .feature-icons-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: max-content;
  }
  #shopify-section-feature_icons_QYEdGX .feature-icon-card {
    min-width: 160px;
    flex: 0 0 160px;
    padding: 8px 6px !important;
  }
  #shopify-section-feature_icons_QYEdGX .feature-icon-card__icon--medium svg {
    width: 64px !important;
    height: 64px !important;
  }
}


/* === Contact page id-safe fixes (2026-02-28-1710) === */
/* add breathing room below fixed header */
[id*=shopify-section-template][id*=section_header_PDT7dN],
[id*=shopify-section-][id*=section_header_PDT7dN] {
  margin-top: 18px !important;
}
[id*=shopify-section-][id*=section_header_PDT7dN] .section-header {
  padding-top: 24px !important;
  padding-bottom: 12px !important;
}

/* desktop: guarantees in one row */
@media (min-width: 990px) {
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-container {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card {
    width: 100% !important;
    max-width: none !important;
  }
}

/* mobile: horizontal swipe line */
@media (max-width: 989px) {
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .slider-mobile-gutter {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .slider-mobile-gutter::-webkit-scrollbar { display: none; }

  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    gap: 10px !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card {
    flex: 0 0 170px !important;
    min-width: 170px !important;
  }
}


/* === Contact page spacing + real swipe fix (2026-02-28-1712) === */
/* More space below fixed header */
[id*=shopify-section-][id*=section_header_PDT7dN] {
  margin-top: calc(var(--header-height, 72px) + 18px) !important;
}
[id*=shopify-section-][id*=section_header_PDT7dN] .section-header {
  padding-top: 0 !important;
}

/* Desktop: keep icons compact and truly in one clean row */
@media (min-width: 990px) {
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-padding {
    max-width: 1100px !important;
    margin: 0 auto !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-container {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: start !important;
    justify-items: center !important;
    width: 100% !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card {
    width: 100% !important;
    max-width: 230px !important;
    margin: 0 auto !important;
  }
}

/* Mobile: horizontal swipe row */
@media (max-width: 989px) {
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-padding {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
    touch-action: pan-x !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-padding::-webkit-scrollbar {
    display: none;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icons-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: max-content !important;
    min-width: max-content !important;
  }
  [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card {
    flex: 0 0 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
  }
}


/* === Contact page dark readability fix (2026-02-28-1724) === */
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] h1,
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] h2,
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] .title,
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] .banner__heading {
  color: #f2e7d7 !important;
  text-shadow: 0 1px 18px rgba(0,0,0,.35);
}

[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] .body,
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] p,
[data-theme=dark] [id*=shopify-section-][id*=section_header_PDT7dN] .rte {
  color: rgba(242,231,215,.86) !important;
}

[data-theme=dark] [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card__text,
[data-theme=dark] [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card__text p {
  color: rgba(242,231,215,.82) !important;
}

[data-theme=dark] [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card__icon svg,
[data-theme=dark] [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card__icon path,
[data-theme=dark] [id*=shopify-section-][id*=feature_icons_QYEdGX] .feature-icon-card__icon circle {
  stroke: #d9b98b !important;
}


/* === Header line removal (2026-02-28-1727) === */
/* remove any top yellow strip / announcement remnants */
.announcement-bar,
.announcement-bar__track,
.announcement-bar__item,
[id*=shopify-section-][id*=announcement],
section[id*=shopify-section-][id*=announcement] {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

/* remove white divider line on header (default + scrolled states) */
.site-header,
.site-header--scrolled,
.header-wrapper,
.header-wrapper--border-bottom,
.header,
.shopify-section-header-sticky,
.shopify-section-header-hidden,
#shopify-section-header,
#shopify-section-header-group {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.site-header::before,
.site-header::after,
.header-wrapper::before,
.header-wrapper::after {
  display: none !important;
}


/* === Remove gold thread separators globally (2026-02-28-1730) === */
.section + .section::before,
.hero.section + .section::before {
  display: none !important;
  content: none !important;
  background: transparent !important;
  height: 0 !important;
}


/* === Hard mask top line (2026-02-28-1734) === */
/* Fallback: mask any residual 1-2px line at viewport top */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-bg) !important;
  z-index: 2147483647;
  pointer-events: none;
}


/* === Hide rogue top progress line on homepage (2026-02-28-1738) === */
.template-index .swiper-pagination-progressbar,
.template-index .swiper-pagination-progressbar-fill,
.template-index .orbly-reviews__progress,
.template-index [class*=progressbar] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
}


.cart-drawer__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
}

.cart-drawer__item-title {
  font-size: .98rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.35;
}

.cart-drawer__item-variant {
  font-size: .86rem;
  color: var(--color-text-muted);
}

.cart-drawer__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: .25rem;
}

.cart-drawer__qty {
  transform: none !important;
}

.cart-drawer__item-price {
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.cart-drawer__remove {
  align-self: flex-start;
  margin-top: .1rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-text-muted);
  font-size: .78rem;
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer__empty-state {
  text-align: center;
  padding: var(--space-2xl) 0;
  color: var(--color-text-muted);
}

.cart-free-shipping--custom .cart-free-shipping__label {
  font-size: 1.15rem;
}

.cart-free-shipping--custom .cart-free-shipping__truck {
  color: #8d6448;
  top: -1.25rem;
}

@media (max-width: 640px) {
  .cart-drawer__header h3 {
    font-size: 1.75rem;
  }
  .cart-drawer__items {
    padding: 1.6rem;
  }
  .cart-drawer__footer {
    padding: 1.4rem 1.6rem;
  }
}


.cart-free-shipping--top {
  margin-bottom: 1.2rem;
  padding: 1rem 1rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(168,130,101,.22);
  background: linear-gradient(180deg, #fffdfa 0%, #faf6ef 100%);
}

.cart-free-shipping--top .cart-free-shipping__head {
  margin-bottom: .65rem;
}

.cart-free-shipping--top .cart-free-shipping__label {
  font-size: .96rem;
  font-weight: 600;
}

.cart-free-shipping--top .cart-free-shipping__track {
  height: 8px;
  background: rgba(168,130,101,.18);
  border-radius: 999px;
}

.cart-free-shipping--top .cart-free-shipping__fill {
  background: linear-gradient(90deg, #c69a67 0%, #b8864b 100%);
}

.cart-free-shipping--top .cart-free-shipping__truck {
  top: -1.15rem;
  color: #8b633e;
}

.cart-free-shipping--top .cart-free-shipping__text {
  margin-top: .7rem;
  font-size: .95rem;
  line-height: 1.35;
}

.cart-drawer__item {
  align-items: start;
}

.cart-drawer__remove {
  font-size: .8rem;
  line-height: 1.2;
}

.cart-drawer__footer { gap: .65rem; display: grid; }

}

/* === Header Dropdown Menu === */
.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  background: rgba(20, 20, 20, 0.95);
  /* backdrop-filter: blur(20px) removed for perf */
  /* -webkit-backdrop-filter: blur(20px) removed for perf */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.site-header__dropdown:hover .site-header__dropdown-menu {
  display: block;
}

.site-header__dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.site-header__dropdown-link:hover {
  color: var(--color-gold, #c9a96e);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile nav label for sub-menu groups */
.mobile-nav__label {
  display: block;
  padding: 0.75rem 1.5rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}


/* === Performance: content-visibility für Below-Fold Sections === */
.section:not(.hero):not(#trustbar) {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section {
  contain: layout style paint;
}

/* Hero und Header immer sofort rendern */
.hero,
#shopify-section-header {
  content-visibility: visible;
  contain: none;
}
/* SHO-227 v4: Override .theme-transitioning for safe-area-affecting elements.
   iOS Safari samples the page background under safe-area-inset-top to tint
   the system status-bar. While these elements transition (default 0.4s), iOS
   Safari latches onto the mid-transition color and never re-evaluates — the
   status bar stays cream/gray after toggling to dark on PDP. The fix: snap
   these specific elements instantly so iOS reads the final dark color on
   first paint after the toggle.

   Why PDP and not landing/cart: PDP-mobile-dark gives .site-header a SOLID
   bg from product-v5.css (rgba(14,11,8,0.88)). Landing/cart leave it
   transparent so iOS reads through to the page bg (gradient/solid that
   either snaps instantly or never gets sampled). PDP is the only template
   where a fixed solid bg under safe-area transitions over 0.4s. */
html.theme-transitioning::before,
html.theme-transitioning .site-header,
.theme-transitioning .site-header,
.theme-transitioning > body::before {
  transition: none !important;
}

/* ---------- Shopify policy pages (/policies/*) ----------
   Shopify rendert diese Seiten mit eigenem .shopify-policy__*-Wrapper (kein
   Theme-Template) — sie müssen den fixed Header genauso freistellen wie jede
   andere Seite (Muster: page-hero padding-top). */
.shopify-policy__container {
  max-width: 76rem;
  margin-inline: auto;
  padding: calc(var(--header-height) + var(--space-xl)) clamp(1rem, 4vw, 2rem) var(--space-xl);
}
.shopify-policy__title {
  margin-bottom: var(--space-lg);
}
.shopify-policy__title h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
}
.shopify-policy__body {
  line-height: 1.7;
}
.shopify-policy__body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 2.25rem 0 0.75rem;
}
.shopify-policy__body p,
.shopify-policy__body ul {
  margin-bottom: 1rem;
}
.shopify-policy__body ul {
  padding-left: 1.25rem;
}
