/* ============================================
   MEHRAZ HOUSE — Premium Design System
   Moroccan-inspired, minimalist, highly elegant
   ============================================ */

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

:root {
  /* MEHRAZ HOUSE — Refined Premium Palette */
  --sand: #f8f6f0;
  --sand-dark: #e8e2d5;
  --cream: #fcfbf9;
  --gold: #dcb360;
  --gold-light: #ebd090;
  --gold-muted: #c29d46;
  --gold-faint: rgba(220, 179, 96, 0.12);
  --gold-subtle: rgba(220, 179, 96, 0.05);
  
  /* Richer dark tones for premium feel */
  --charcoal: #12100e; 
  --charcoal-mid: #1f1c19;
  --charcoal-light: #2c2824;
  --olive: #6b7a60;

  /* Text Colors */
  --text: #1a1714;
  --text-secondary: #6e6760;
  --text-light: #a39c94;
  --white: #ffffff;
  
  /* Gradients & Borders */
  --border: rgba(220, 179, 96, 0.2);
  --border-light: rgba(26, 23, 20, 0.06);
  --gold-gradient: linear-gradient(135deg, #ebd090 0%, #dcb360 40%, #c29d46 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding: clamp(5rem, 10vw, 10rem);
  --container-max: 1280px;
  --container-padding: clamp(1.5rem, 5vw, 3rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-muted);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

h1, h2, h3, h4, h5 {
  font-weight: 400;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  font-family: var(--font-accent);
}

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Section Tags & Titles --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
  position: relative;
}

.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-family: var(--font-accent);
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px; /* Pill shape for elegance */
  transition: all 0.5s var(--ease-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(220, 179, 96, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #c29d46 0%, #ebd090 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s var(--ease-slow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 179, 96, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(220, 179, 96, 0.05);
}

/* ============================================
   SCROLL BANNER
   ============================================ */
.scroll-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--gold-gradient);
  color: var(--charcoal);
  text-align: center;
  padding: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}

.scroll-banner.visible {
  transform: translateY(0);
}

.nav.banner-active {
  top: 36px;
}

@media (max-width: 768px) {
  .nav.banner-active + .mobile-menu {
    top: 106px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(18, 16, 14, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  background: rgba(18, 16, 14, 0.95);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-radius: 2px;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.nav-cart {
  position: relative;
  color: rgba(255,255,255,0.7) !important;
}

.nav-cart:hover {
  color: var(--gold) !important;
}

.nav-cart::after {
  display: none !important;
}

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

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(212, 158, 53, 0.2);
  padding: 1.5rem var(--container-padding);
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu .nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  border: none;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ============================================
   STORE HERO (Homepage)
   ============================================ */
.store-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--charcoal);
}

/* Elegant ambient glow */
.store-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle closest-side, rgba(220, 179, 96, 0.08), transparent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.store-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold-light) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold-light) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* --- Parallax Leaves --- */
.parallax-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  color: var(--gold-muted);
  display: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.parallax-leaf svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  will-change: transform;
}

.leaf-1 {
  top: 15%;
  left: 2%;
  width: 60px;
  transform: rotate(15deg);
}

.leaf-2 {
  top: 65%;
  left: 8%;
  width: 45px;
  transform: rotate(-25deg);
}

.leaf-3 {
  top: 10%;
  right: 5%;
  width: 50px;
  transform: rotate(-15deg);
}

.leaf-4 {
  bottom: 25%;
  right: 12%;
  width: 65px;
  transform: rotate(35deg);
}

.leaf-5 {
  top: 45%;
  left: 45%;
  width: 45px;
  transform: rotate(80deg);
  opacity: 0.12;
}

.store-hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-tag::after {
  content: '';
  position: absolute;
  top: 50%; right: -40px;
  width: 25px; height: 1px;
  background: var(--gold-muted);
}

.store-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.store-hero-title em {
  font-family: var(--font-accent);
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.store-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.store-hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* Hero Arch Visual */
.store-hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.store-hero-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  z-index: 0;
}

.hero-arch {
  width: 360px;
  height: 480px;
  border-radius: 180px 180px 0 0;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 0 40px rgba(220, 179, 96, 0.05), 0 20px 50px rgba(0,0,0,0.4);
}

.hero-arch-inner {
  width: 280px;
  height: 360px;
  border-radius: 140px 140px 0 0;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-content {
  text-align: center;
}

.arch-mosaic {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border: 1px solid var(--gold);
  opacity: 0.3;
  transform: rotate(45deg);
  position: relative;
}

.arch-mosaic::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
}

.arch-mosaic::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--gold);
}

.arch-text {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* Scroll indicator */
.store-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.store-hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 1rem 0;
  background: var(--gold);
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PRODUCTS GRID (Homepage)
   ============================================ */
.collections {
  padding: var(--section-padding) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s var(--ease-slow);
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 179, 96, 0.08);
  border-color: rgba(220, 179, 96, 0.5);
}

/* --- Image area --- */
.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-slow);
}

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

/* --- Badge --- */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold-gradient);
  color: var(--charcoal);
  padding: 0.35rem 0.8rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(220, 179, 96, 0.3);
}

.product-badge-soon {
  background: var(--charcoal-mid);
  color: rgba(255,255,255,0.9);
  background-image: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Hover action overlay --- */
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-slow);
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.product-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s var(--ease);
}

.product-add-cart:hover {
  background: var(--gold-light);
}

.product-add-cart svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.product-quick-view {
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.product-quick-view:hover {
  background: var(--charcoal);
  color: var(--gold);
}

.product-quick-view svg {
  width: 15px;
  height: 15px;
}

/* --- Info below image --- */
.product-info {
  padding: 1rem 1.15rem 1.2rem;
  border-top: 1px solid var(--border-light);
}

.product-category {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.product-stars {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* --- Placeholder fallback --- */
.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-muted);
  position: absolute;
  inset: 0;
  justify-content: center;
}

.product-placeholder-icon {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.product-placeholder span {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* --- Coming soon state --- */
.product-coming-soon {
  opacity: 0.6;
}

.product-coming-soon .product-actions {
  display: none;
}

.product-coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-light);
  cursor: default;
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    var(--gold) 20px,
    var(--gold) 21px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    var(--gold) 20px,
    var(--gold) 21px
  );
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
}

.about-image-placeholder svg {
  width: 100%;
  height: auto;
}

.about-text .section-tag {
  display: block;
}

.about-lead {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-numbers {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-number {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.number-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.number-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: var(--section-padding) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.philosophy-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.philosophy-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.philosophy-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.philosophy-icon svg {
  width: 100%;
  height: 100%;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.philosophy-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   SOCIAL / INSTAGRAM
   ============================================ */
.social {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-tile {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.social-tile:hover {
  transform: scale(0.97);
}

.social-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sand-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--section-padding) 0;
}

.newsletter-inner {
  position: relative;
  background: var(--charcoal);
  border-radius: 6px;
  padding: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 24px 24px;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn-primary {
  white-space: nowrap;
}

.newsletter-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* ============================================
   STORY SECTION (Shared)
   ============================================ */
.product-story,
.story {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-image-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-placeholder {
  color: var(--gold-muted);
  width: 70%;
}

.story-image-placeholder svg {
  width: 100%;
  height: auto;
}

.story-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem 2rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.story-text .section-tag {
  display: block;
}

.story-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.detail-icon svg {
  width: 18px;
  height: 18px;
}

.story-detail div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.story-detail div span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: var(--section-padding) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.benefit-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.ingredients-info .section-tag {
  display: block;
}

.ingredients-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ingredient-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.ingredient-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ingredient-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.ingredient-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(122, 139, 111, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.ingredient-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.ingredient-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ingredient-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  max-width: 140px;
}

/* Ingredients Card */
.ingredients-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.card-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 100px auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}

.card-row span:first-child {
  color: var(--text-secondary);
}

.card-row span:last-child {
  font-weight: 500;
  text-align: right;
  font-size: 0.78rem;
}

.card-bar {
  width: 100%;
  height: 4px;
  background: var(--sand);
  border-radius: 2px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--olive);
  font-weight: 500;
}

/* ============================================
   RITUAL / HOW TO USE
   ============================================ */
.ritual {
  padding: var(--section-padding) 0;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ritual-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
}

.ritual-card-featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, var(--gold-subtle), var(--white));
}

.ritual-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sand-dark);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}

.ritual-card-featured .ritual-number {
  color: rgba(212, 158, 53, 0.2);
}

.ritual-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.ritual-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.ritual-time {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.ritual-content ol {
  list-style: none;
  counter-reset: steps;
  margin-bottom: 1.5rem;
}

.ritual-content ol li {
  counter-increment: steps;
  padding: 0.4rem 0 0.4rem 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.ritual-content ol li:last-child {
  border-bottom: none;
}

.ritual-content ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.6;
}

.ritual-best {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--olive);
  display: block;
}

/* ============================================
   RESULTS / BEFORE-AFTER
   ============================================ */
.results {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.result-card {
  text-align: center;
}

.result-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-before,
.result-after {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-before span,
.result-after span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.result-placeholder {
  aspect-ratio: 1;
  background: var(--sand-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-light);
}

.result-placeholder-after {
  background: linear-gradient(135deg, var(--sand-dark), rgba(196, 168, 130, 0.2));
}

.result-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-author strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s var(--ease);
}

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

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1d1910;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(212, 158, 53, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(600%) hue-rotate(10deg) brightness(100%);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s var(--ease);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.footer-links a {
  display: block;
  font-size: 0.83rem;
  padding: 0.35rem 0;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-payment {
  text-align: right;
}

.footer-payment h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.payment-methods-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOTER PAYMENT METHODS
   ============================================ */
.footer-payment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  text-align: right;
}

.footer-payment h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin: 0;
}

.payment-methods-img {
  height: 30px;
  width: auto;
  max-width: 280px;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease);
}

.payment-methods-img:hover {
  opacity: 1;
}

/* ============================================
   SHOP TRUST BADGES
   ============================================ */
.shop-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .store-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .store-hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .store-hero-actions {
    justify-content: center;
  }

  .hero-arch {
    width: 260px;
    height: 340px;
    border-radius: 130px 130px 0 0;
  }

  .hero-arch-inner {
    width: 210px;
    height: 280px;
    border-radius: 105px 105px 0 0;
  }

  .about-grid,
  .story-grid,
  .ingredients-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-payment {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .benefits-grid,
  .ritual-grid,
  .testimonials-grid,
  .products-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-numbers {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .ingredient-stats {
    gap: 1.5rem;
  }

  .card-row {
    grid-template-columns: 1fr 60px auto;
    font-size: 0.75rem;
  }

  .shop-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

}

/* ============================================
   REAL IMAGE STYLES
   ============================================ */

/* Hero arch image */
.hero-arch {
  position: relative;
  overflow: hidden;
}

.hero-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-arch-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* (product-img & card hover defined in product grid section above) */

/* About image */
.about-image-frame {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Social grid images */
.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Story image */
.story-image-card {
  overflow: hidden;
}

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

/* Result images */
.result-before img,
.result-after img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: block;
}

/* ============================================
   HERO TRUST ROW
   ============================================ */
.hero-trust-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

.hero-trust-item svg {
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ============================================
   RITUAL NICHES (Three Pillars)
   ============================================ */
.ritual-niches {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.niche-card {
  padding: 3rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.5s var(--ease-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-slow);
}

.niche-card:hover::before {
  transform: scaleX(1);
}

.niche-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(220, 179, 96, 0.08); /* Elegant shadow */
  border-color: rgba(220, 179, 96, 0.3);
}

.niche-card-featured {
  border-color: var(--gold-muted);
  background: linear-gradient(180deg, rgba(220, 179, 96, 0.08) 0%, var(--white) 100%);
  box-shadow: 0 10px 30px rgba(220, 179, 96, 0.05); /* Subtle glowing feature */
}

.niche-card-featured::before {
  transform: scaleX(1);
}

.niche-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.niche-icon svg {
  width: 100%;
  height: 100%;
}

.niche-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.niche-card h3 em {
  font-family: var(--font-display);
  color: var(--gold);
}

.niche-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.niche-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.niche-link:hover {
  gap: 0.7rem;
}

.niche-link svg {
  transition: transform 0.3s var(--ease);
}

.niche-link:hover svg {
  transform: translateX(3px);
}

.niche-link-soon {
  color: var(--text-light);
  cursor: default;
}

.niche-link-soon:hover {
  gap: 0.4rem;
}

.niche-link-soon:hover svg {
  transform: none;
}

/* ============================================
   PRODUCT BRIEF (short desc on card)
   ============================================ */
.product-brief {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

/* ============================================
   SHIPPING BANNER
   ============================================ */
.shipping-banner {
  padding: 2.5rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 158, 53, 0.15);
  border-bottom: 1px solid rgba(212, 158, 53, 0.15);
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.shipping-item svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

.shipping-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.shipping-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 968px) {
  .niches-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .shipping-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .shipping-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero-trust-row {
    justify-content: center;
  }
}

/* --- Animations on scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}