/*
 * ============================================
 * PAVAN FURNITURE - Premium Design System
 * ============================================
 */

/* ─────────────────────────────────────────────
   Google Fonts
   ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/vonca');

/* ─────────────────────────────────────────────
   Accessibility Styles
   ───────────────────────────────────────────── */

/* Visible focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Remove outline for mouse users only */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

/* ─────────────────────────────────────────────
   CSS Custom Properties
   ───────────────────────────────────────────── */
:root {
  /* Primary Colors */
  --color-ivory: #FFFFF0;
  --color-cream: #FAF8F5;
  --color-beige: #F5F0E8;
  --color-beige-dark: #E8E0D4;

  /* Brand Colors */
  --color-brand-red: #C53030;
  --color-brand-red-dark: #9B2C2C;
  --color-brand-orange: #F5A623;
  --color-brand-yellow: #F7C948;

  /* Accent Colors */
  --color-walnut: #5D4E37;
  --color-walnut-light: #7A6B54;
  --color-walnut-dark: #4A3E2C;
  --color-gold: #C9A962;
  --color-gold-light: #D4B978;

  /* Neutral Colors */
  --color-grey: #9B9B9B;
  --color-grey-light: #E5E5E5;
  --color-grey-dark: #666666;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Vonca', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(93, 78, 55, 0.05);
  --shadow-md: 0 4px 6px rgba(93, 78, 55, 0.07);
  --shadow-lg: 0 10px 25px rgba(93, 78, 55, 0.1);
  --shadow-xl: 0 20px 40px rgba(93, 78, 55, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
}

/* ─────────────────────────────────────────────
   CSS Reset & Base Styles
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ─────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-walnut);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.text-gold {
  color: var(--color-gold);
}

.text-walnut {
  color: var(--color-walnut);
}

/* ─────────────────────────────────────────────
   Container & Layout
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: var(--container-md);
}

.section {
  padding: var(--space-20) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* ─────────────────────────────────────────────
   Header & Navigation - Seamless Overlay
   ───────────────────────────────────────────── */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: all var(--transition-base);
}

/* Add subtle background on scroll */
.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 240, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(93, 78, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: var(--space-4);
  padding-bottom: var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: opacity var(--transition-base);
  /* Ensure logo sits above all overlays */
  position: relative;
  z-index: 100;
}

.logo-icon {
  height: 50px;
  width: auto;
  /* Preserve original brand colors - NO filters */
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transition: opacity var(--transition-base);
}

.logo-wordmark {
  height: 28px;
  width: auto;
  /* Preserve original brand colors - NO filters */
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transition: opacity var(--transition-base);
}

/* Hover State - Subtle opacity change only */
.logo:hover .logo-icon,
.logo:hover .logo-wordmark {
  opacity: 0.85;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-brand-red);
  letter-spacing: 0.02em;
}

.logo-accent {
  color: var(--color-brand-orange);
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) 0;
  position: relative;
  transition: all var(--transition-base);
}

.nav-link.nav-dark {
  color: var(--color-walnut);
}

.nav-link.nav-dark::after {
  background: var(--color-brand-red);
}

.nav-link.nav-dark:hover,
.nav-link.nav-dark.active {
  color: var(--color-brand-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link.active {
  color: var(--color-gold);
}

/* Light header variant for shop, contact, and product detail pages */
.shop-page .header,
.contact-page .header,
.product-detail-page .header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  position: fixed;
}

.shop-page .nav-link,
.contact-page .nav-link,
.product-detail-page .nav-link {
  color: var(--color-walnut);
}

.shop-page .nav-link:hover,
.shop-page .nav-link.active,
.contact-page .nav-link:hover,
.contact-page .nav-link.active,
.product-detail-page .nav-link:hover,
.product-detail-page .nav-link.active {
  color: var(--color-brand-red);
}

.shop-page .nav-link::after,
.contact-page .nav-link::after,
.product-detail-page .nav-link::after {
  background: var(--color-brand-red);
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  margin: 4px 0;
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: linear-gradient(135deg, rgba(93, 78, 55, 0.98) 0%, rgba(74, 62, 44, 0.98) 100%);
  backdrop-filter: blur(30px);
  padding: var(--space-8) var(--space-6);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-3);
  width: 100%;
}

.nav-mobile .nav-link {
  font-size: var(--text-xl);
  font-weight: 500;
  padding: var(--space-5) var(--space-4);
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  text-align: left;
}

.nav-mobile .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  transform: translateX(8px);
}

.nav-mobile .nav-link.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .header-inner {
    height: 96px;
    padding-top: var(--space-6);
  }

  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .nav-link {
    font-size: var(--text-base);
  }
}

/* ─────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  min-height: 52px;
}

.btn-primary {
  background: var(--color-walnut);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-walnut-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-walnut);
  border: 2px solid var(--color-walnut);
}

.btn-secondary:hover {
  background: var(--color-walnut);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
  min-height: 60px;
}

.btn-icon {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────
   Hero Section - Seamless with Header
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
  overflow: hidden;
}

/* Desktop: side-by-side hero layout */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 180px;
    padding-bottom: var(--space-20);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 650px;
    text-align: left;
    padding: 0;
  }
}

.hero-subtitle {
  display: inline-block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: var(--space-8);
  color: var(--color-walnut);
  font-weight: 600;
}

.hero-description {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--space-10);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--space-10);
  }

  .hero-description {
    font-size: var(--text-xl);
    max-width: 550px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
    width: auto;
    gap: var(--space-6);
  }

  .hero-buttons .btn {
    padding: var(--space-6) var(--space-12);
    font-size: var(--text-lg);
    min-height: 64px;
    border-radius: var(--radius-lg);
  }
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: var(--space-12);
  border-radius: var(--radius-lg);
  opacity: 1;
}

@media (min-width: 768px) {
  .hero-image {
    max-width: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 750px;
    margin-top: 0;
    border-radius: 0;
    opacity: 0.95;
  }
}

/* ─────────────────────────────────────────────
   Video Hero Section - Cinematic Full-Width
   ───────────────────────────────────────────── */

/* Main Hero Video Container */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: none;
}

.hero-carousel video.active {
  display: block;
}

/* Background Video Styling */
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay for Text Readability */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 6, 4, 0.78) 0%,
      rgba(10, 7, 5, 0.65) 35%,
      rgba(15, 11, 7, 0.4) 60%,
      rgba(20, 15, 10, 0.2) 85%,
      rgba(24, 18, 12, 0.05) 100%);
  z-index: 2;
}

.hero-video-secondary {
  min-height: 60vh;
  height: auto;
}

.hero-video-secondary .hero-video-content {
  display: none;
}

.hero-video-secondary .hero-video-bg {
  position: absolute;
}

/* Hero Content Container */
.hero-video-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--space-6);
  text-align: center;
}

.hero-left {
  display: flex;
  justify-content: flex-start;
}

.hero-left .hero-text-wrapper {
  text-align: left;
  margin-left: 0;
}

/* Text Wrapper with Animation */
.hero-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
  background: none;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}

/* Hero Label/Subtitle */
.hero-label {
  display: inline-block;
  font-size: 0.569rem;
  font-weight: 600;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Main Hero Heading */
.hero-heading {
  font-family: var(--font-heading);
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 1.2;
  color: #F9F6F1;
  margin-bottom: var(--space-8);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Hero Tagline/Description */
.hero-tagline {
  font-size: 0.731rem;
  line-height: 1.8;
  color: rgba(249, 246, 241, 0.85);
  margin-bottom: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* CTA Button Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Hero Buttons - Primary */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: calc(var(--space-1) * 1.3) calc(var(--space-3) * 1.3);
  font-size: 0.569rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  min-width: 91px;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.hero-btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 98, 0.5);
}

.hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

.scroll-indicator svg {
  opacity: 0.8;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Tablet Responsive */
@media (min-width: 768px) {
  .hero-heading {
    font-size: 1.625rem;
  }

  .hero-tagline {
    font-size: 0.8125rem;
  }

  .hero-cta-group {
    flex-direction: row;
    gap: var(--space-6);
  }

  .hero-btn {
    padding: calc(var(--space-2) * 1.3) calc(var(--space-4) * 1.3);
    font-size: 0.65rem;
  }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
  .hero-video {
    min-height: 700px;
  }

  .hero-heading {
    font-size: 2.08rem;
  }

  .hero-label {
    font-size: 0.65rem;
  }

  .hero-tagline {
    font-size: 0.975rem;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .hero-heading {
    font-size: 2.6rem;
  }
}

/* Mobile Optimization - Reduce Video Quality/Size */
@media (max-width: 767px) {
  .hero-video {
    min-height: 100vh;
  }

  .hero-heading {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 0.65rem;
  }

  .hero-btn {
    min-width: 100%;
    max-width: 195px;
  }

  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }
}

/* Ensure header stays on top of video */
.header {
  z-index: 1000;
}

/* Performance Optimization: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  .hero-text-wrapper,
  .hero-label,
  .hero-heading,
  .hero-tagline,
  .hero-cta-group,
  .scroll-indicator {
    animation: none;
    opacity: 1;
  }

  .hero-btn:hover {
    transform: none;
  }

  .scroll-indicator {
    animation: none;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
  }
}

/* ─────────────────────────────────────────────
   Category Cards
   ───────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.category-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* Offer gallery between hero and categories */
.promo-gallery {
  padding: var(--space-10) 0;
  background: var(--color-cream);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.promo-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(93, 78, 55, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.category-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  font-weight: 600;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .category-name {
    font-size: var(--text-2xl);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ─────────────────────────────────────────────
   Best Sellers Banner
   ───────────────────────────────────────────── */
.best-sellers-section {
  padding-bottom: 0;
}

.best-sellers-card {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  background: #d8d8d8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.best-sellers-copy {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.best-sellers-copy h2 {
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.best-sellers-copy p {
  font-size: var(--text-lg);
  color: var(--color-text);
}

.best-sellers-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: var(--text-xs);
  color: var(--color-grey-dark);
}

.best-sellers-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-3) var(--space-5);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.best-sellers-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.best-sellers-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .best-sellers-card {
    grid-template-columns: 1fr;
  }

  .best-sellers-image {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-video-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.05) 100%);
  }
  .best-sellers-copy {
    padding: var(--space-8);
  }
}

/* ─────────────────────────────────────────────
   Lookbook Section
   ───────────────────────────────────────────── */
.lookbook-section {
  background: var(--color-cream);
}

.lookbook-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.lookbook-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-12);
}

.lookbook-header .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: var(--text-xs);
}

.lookbook-header .section-subtitle::before,
.lookbook-header .section-subtitle::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.lookbook-header .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-4);
}

.lookbook-header .section-description {
  font-size: var(--text-lg);
  color: var(--color-text);
}

.lookbook-stage {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
  min-height: min(90vh, 900px);
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.lookbook-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.lookbook-hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: var(--color-walnut);
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  z-index: 3;
}

.lookbook-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-white);
  position: relative;
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.25);
}

.lookbook-dot::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 98, 0.45);
  animation: hotspotPulse 2s ease-in-out infinite;
}

@keyframes hotspotPulse {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.lookbook-label {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  text-align: center;
  min-width: 170px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.lookbook-label strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.lookbook-hotspot:focus .lookbook-label,
.lookbook-hotspot:hover .lookbook-label,
.lookbook-hotspot:focus-visible .lookbook-label {
  opacity: 1;
  transform: translateY(-16px);
}


@media (max-width: 768px) {
  .lookbook-stage {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg);
  }

  .lookbook-stage img {
    height: auto;
    min-height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .lookbook-header {
    margin-bottom: var(--space-8);
  }

  .lookbook-header .section-subtitle {
    letter-spacing: 0.2em;
  }

  .lookbook-label {
    min-width: auto;
    font-size: var(--text-sm);
  }
}

/* ─────────────────────────────────────────────
   Product Detail Page
   ───────────────────────────────────────────── */
.product-page {
  background: var(--color-cream);
  padding: calc(90px + var(--space-8)) var(--space-6) var(--space-16);
}

.product-breadcrumb {
  max-width: 1400px;
  margin: 0 auto var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.product-detail-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: var(--space-6);
}

.product-gallery {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
  align-self: start;
}

.gallery-main {
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: var(--space-3);
}

.gallery-thumb {
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  background: var(--color-white);
  cursor: pointer;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-interactive {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.gallery-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-grey-light);
  background: var(--color-cream);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gallery-action-title {
  font-weight: 600;
  font-size: var(--text-base);
  display: block;
  margin-bottom: var(--space-1);
}

.gallery-action p {
  margin: 0;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.gallery-action-icon {
  font-size: var(--text-xl);
  color: var(--color-walnut);
}

.gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.gallery-thumb.active {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.2);
}

.product-info {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.product-info h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: var(--space-3);
}

.product-brand {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--text-xs);
  color: var(--color-grey);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.reviews-link {
  background: none;
  border: none;
  color: var(--color-brand-red);
  font-weight: 600;
  cursor: pointer;
}

.product-price-block {
  border-bottom: 1px solid var(--color-grey-light);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
}

.product-price-block .deal-price {
  font-size: var(--text-3xl);
  color: var(--color-walnut);
  font-weight: 600;
}

.product-price-block .mrp {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.product-price-block .savings {
  color: var(--color-brand-red);
  font-weight: 600;
}

.product-description {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.product-highlights {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.product-specs-wrapper h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
}

.product-specs tr {
  border-bottom: 1px solid var(--color-grey-light);
}

.product-specs td {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
}


.product-specs td:first-child {
  width: 35%;
  font-weight: 600;
  color: var(--color-text-light);
}

.product-order-info {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-grey-light);
}

.stock-status {
  color: #0f8f3d;
  font-weight: 600;
}

.delivery-info {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.product-order-info .emi-info {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.color-pill {
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.quantity-select {
  width: 180px;
  padding: var(--space-3);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-light);
}

.product-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.product-order-actions .btn {
  flex: 1;
  min-width: 160px;
}

.buy-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

@media (max-width: 1200px) {
  .product-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: calc(70px + var(--space-6)) var(--space-4) var(--space-12);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .product-gallery {
    background: transparent;
    padding: 0;
    box-shadow: none;
    position: static;
  }

  .gallery-main {
    border: none;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .gallery-main img {
    height: auto;
    max-height: 420px;
  }

  .gallery-interactive {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .product-info {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
  }

  .product-info h1 {
    font-size: var(--text-2xl);
  }

  .product-description {
    font-size: var(--text-base);
  }

  .product-order-actions {
    flex-direction: column;
  }

  .product-order-actions .btn {
    width: 100%;
  }
}

/* Related products */
.related-section {
  max-width: 1400px;
  margin: var(--space-16) auto 0;
  padding: var(--space-10);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.related-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.related-header h2 {
  font-size: var(--text-3xl);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.related-card {
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card-content {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.related-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
}

.related-card-price {
  font-weight: 600;
  color: var(--color-walnut);
}

.related-card-link {
  margin-top: auto;
  color: var(--color-brand-red);
  font-weight: 600;
  text-decoration: none;
}


/* ─────────────────────────────────────────────
   Features / Why Choose Us
   ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.feature-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige);
  border-radius: var(--radius-full);
  color: var(--color-gold);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.feature-description {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────────── */
.cta-section {
  background: var(--color-walnut);
  color: var(--color-white);
  text-align: center;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ─────────────────────────────────────────────
   Product Grid
   ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.product-content {
  padding: var(--space-6);
}

.product-category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.product-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.product-description {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-walnut);
  margin-top: var(--space-2);
}

.product-price .currency {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────
   Filters
   ───────────────────────────────────────────── */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.filter-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-select {
  padding: var(--space-3) var(--space-4);
  padding-right: var(--space-10);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  min-width: 160px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235D4E37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-left: auto;
}

.filter-tag {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--color-walnut);
  color: var(--color-white);
  border-color: var(--color-walnut);
}

/* ─────────────────────────────────────────────
   Page Header (Category Pages)
   ───────────────────────────────────────────── */
.page-header {
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
  text-align: center;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-grey);
  margin-bottom: var(--space-4);
}

.page-header .breadcrumb a:hover {
  color: var(--color-walnut);
}

.page-header .breadcrumb-separator {
  color: var(--color-grey-light);
}

.page-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.page-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .page-title {
    font-size: var(--text-5xl);
  }
}

/* ─────────────────────────────────────────────
   About Section
   ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-beige-dark);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-grey);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────
   Contact Form
   ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.contact-text p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-text a {
  color: var(--color-walnut);
}

.contact-text a:hover {
  color: var(--color-gold);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────────
   Map
   ───────────────────────────────────────────── */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-12);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.footer {
  background: var(--color-walnut-dark);
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  max-width: 300px;
}

.footer-title {
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* ─────────────────────────────────────────────
   WhatsApp Button
   ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: var(--radius-full);
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

/* ─────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   Utility Classes
   ───────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-12 {
  margin-top: var(--space-12);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─────────────────────────────────────────────
   MOBILE-FIRST RESPONSIVE FIXES
   Complete overhaul for premium mobile experience
   ───────────────────────────────────────────── */

/* ===== ALL MOBILE & TABLET DEVICES (up to 1023px) ===== */
@media (max-width: 1023px) {

  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* HERO - Convert to single column */
  .hero {
    min-height: auto;
    padding-bottom: var(--space-12);
  }

  .hero-content {
    max-width: 100%;
    padding: var(--space-6) 0;
    text-align: center;
  }

  .hero-image {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 400px;
    margin: var(--space-8) auto 0;
    opacity: 1 !important;
    border-radius: var(--radius-lg);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* BUTTONS - Full width and readable */
  .btn {
    min-height: 52px;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .btn-lg {
    min-height: 56px;
    padding: var(--space-5) var(--space-8);
  }

  /* Touch targets */
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Prevent iOS zoom on input */
  .form-input,
  .form-textarea,
  .filter-select {
    font-size: 16px;
  }

  /* Footer links spacing */
  .footer-link {
    padding: var(--space-2) 0;
    display: block;
  }

  /* Text wrapping */
  .page-description,
  .section-description,
  .cta-description,
  .hero-description,
  .product-description,
  .feature-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Remove hover transforms on touch */
  .product-card:hover,
  .feature-card:hover {
    transform: none;
  }

  .category-card:hover img {
    transform: none;
  }

  /* About Grid */
  .about-grid {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-content .hero-buttons {
    justify-content: center;
  }
}

/* ===== TABLETS (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-image {
    max-width: 500px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== LARGE PHONES (480px - 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    padding: 0 var(--space-6);
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 160px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-group {
    flex: 1;
    min-width: 140px;
  }
}

/* ===== SMALL PHONES (320px - 479px) ===== */
@media (max-width: 479px) {

  /* Base font scaling */
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  /* HEADER */
  .header-inner {
    height: 60px;
  }

  .logo-icon {
    height: 38px;
  }

  .logo-wordmark {
    height: 20px;
  }

  /* NAV MOBILE */
  .nav-mobile {
    top: 60px;
    height: calc(100vh - 60px);
    padding: var(--space-6) var(--space-4);
  }

  .nav-mobile .nav-link {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-3);
  }

  .nav-mobile .nav-list {
    gap: var(--space-2);
  }

  /* HERO */
  .hero {
    padding-top: 60px;
    padding-bottom: var(--space-10);
  }

  .hero-content {
    padding: var(--space-8) 0 var(--space-4);
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
  }

  .hero-title {
    font-size: var(--text-2xl);
    line-height: 1.25;
    margin-bottom: var(--space-4);
  }

  .hero-description {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    padding: 0 var(--space-2);
  }

  .hero-image {
    max-width: 100%;
    margin-top: var(--space-6);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    min-height: 54px;
  }

  /* TYPOGRAPHY */
  h1,
  .page-title {
    font-size: var(--text-2xl);
    line-height: 1.2;
  }

  h2,
  .section-title,
  .cta-title {
    font-size: var(--text-xl);
    line-height: 1.3;
  }

  h3 {
    font-size: var(--text-lg);
  }

  h4,
  .feature-title,
  .product-title {
    font-size: var(--text-base);
  }

  /* SECTIONS */
  .section {
    padding: var(--space-12) 0;
  }

  .section-lg {
    padding: var(--space-14) 0;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .section-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .section-description {
    font-size: var(--text-sm);
    padding: 0 var(--space-2);
  }

  /* PAGE HEADER */
  .page-header {
    padding: calc(60px + var(--space-10)) 0 var(--space-10);
  }

  .page-header .breadcrumb {
    font-size: var(--text-xs);
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-1);
  }

  .page-description {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  /* CATEGORIES */
  .categories-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .category-card {
    aspect-ratio: 16/10;
  }

  .category-overlay {
    padding: var(--space-5);
  }

  .category-name {
    font-size: var(--text-xl);
  }

  /* FEATURES */
  .features-grid {
    gap: var(--space-4);
  }

  .feature-card {
    padding: var(--space-6);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-4);
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .feature-title {
    margin-bottom: var(--space-2);
  }

  .feature-description {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  /* PRODUCTS */
  .products-grid {
    gap: var(--space-4);
  }

  .product-content {
    padding: var(--space-4);
  }

  .product-category {
    font-size: 0.65rem;
  }

  .product-title {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
  }

  .product-description {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .product-badge {
    padding: var(--space-1) var(--space-3);
    font-size: 0.6rem;
  }

  /* FILTERS */
  .filters-bar {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4);
    gap: var(--space-4);
  }

  .filter-group {
    width: 100%;
  }

  .filter-label {
    margin-bottom: var(--space-1);
  }

  .filter-select {
    width: 100%;
    min-width: auto;
    padding: var(--space-3) var(--space-4);
    padding-right: var(--space-10);
  }

  .filter-tags {
    margin-left: 0;
    margin-top: var(--space-2);
    justify-content: flex-start;
  }

  .filter-tag {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  /* CTA */
  .cta-section {
    padding: var(--space-12) 0;
  }

  .cta-title {
    padding: 0 var(--space-2);
  }

  .cta-description {
    font-size: var(--text-sm);
    padding: 0 var(--space-2);
    margin-bottom: var(--space-6);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
    padding: 0 var(--space-4);
  }

  .cta-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  /* ABOUT */
  .about-grid {
    gap: var(--space-8);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .stat-label {
    font-size: var(--text-xs);
  }

  /* CONTACT */
  .contact-grid {
    gap: var(--space-8);
  }

  .contact-form {
    padding: var(--space-5);
  }

  .form-group {
    margin-bottom: var(--space-4);
  }

  .contact-item {
    gap: var(--space-3);
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-text h4 {
    font-size: var(--text-base);
  }

  .contact-text p {
    font-size: var(--text-sm);
  }

  /* FOOTER */
  .footer {
    padding: var(--space-10) 0 var(--space-6);
  }

  .footer-grid {
    gap: var(--space-8);
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-title {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .social-links {
    margin-top: var(--space-4);
    justify-content: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .footer-copyright {
    font-size: var(--text-xs);
  }

  /* WHATSAPP */
  .whatsapp-float {
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  /* MAP */
  .map-container {
    height: 250px;
    margin-top: var(--space-8);
  }
}

/* ===== EXTRA SMALL PHONES (under 360px) ===== */
@media (max-width: 359px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-3);
  }

  .hero-title {
    font-size: var(--text-xl);
  }

  .logo-icon {
    height: 34px;
  }

  .logo-wordmark {
    height: 18px;
  }

  .btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
  }

  .category-name {
    font-size: var(--text-lg);
  }
}

/* Standard line-clamp for compatibility */
.product-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   SHOP PAGE - Amazon Style Layout
   ───────────────────────────────────────────── */

/* Main Shop Layout */
.shop-layout {
  display: flex;
  gap: var(--space-6);
  max-width: 1600px;
  margin: 0 auto;
  padding: 95px var(--space-6) var(--space-12);
  min-height: 100vh;
}

.floating-offer {
  position: fixed;
  bottom: calc(var(--space-6) + 80px);
  right: var(--space-6);
  width: 120px;
  z-index: 998;
  animation: bob 3s ease-in-out infinite;
}

.floating-offer img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.shop-page .header-inner,
.product-detail-page .header-inner {
  height: 64px;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.shop-page .nav-list {
  gap: var(--space-5);
}

/* Filter Sidebar */
.filter-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  height: fit-content;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  overscroll-behavior: contain;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-light);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-grey-light);
}

.filter-main-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-walnut);
  margin: 0;
}

.clear-all-btn {
  font-size: var(--text-sm);
  color: var(--color-brand-red);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.clear-all-btn:hover {
  background: rgba(197, 48, 48, 0.1);
}

.filter-close-btn {
  display: none;
  padding: var(--space-2);
  color: var(--color-grey-dark);
}

/* Filter Sections */
.filter-section {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-grey-light);
}

.filter-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-walnut);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Custom Checkboxes */
.filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: color var(--transition-fast);
  user-select: none;
  -webkit-user-select: none;
}

.filter-checkbox:hover {
  color: var(--color-walnut);
}

.filter-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 1;
}

.filter-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-grey);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.filter-checkbox .checkmark::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-walnut);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.filter-checkbox input:checked+.checkmark {
  border-color: var(--color-walnut);
  background: var(--color-beige);
}

.filter-checkbox input:checked+.checkmark::after {
  opacity: 1;
  transform: scale(1);
}

/* Price Range Section */
.price-range-section {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--color-grey-light);
}

.price-range-label {
  font-size: var(--text-xs);
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  display: block;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.price-inputs input {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  width: 100%;
}

.price-inputs input:focus {
  outline: none;
  border-color: var(--color-walnut);
}

.price-separator {
  font-size: var(--text-sm);
  color: var(--color-grey);
}

.apply-price-btn {
  width: 100%;
  padding: var(--space-2) var(--space-4);
  background: var(--color-walnut);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.apply-price-btn:hover {
  background: var(--color-walnut-dark);
}

/* Mobile Apply Button (hidden on desktop) */
.mobile-apply-btn {
  display: none;
}

/* Shop Content Area */
.shop-content {
  flex: 1;
  min-width: 0;
}

/* Sorting Bar */
.sorting-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-light);
  margin-top: var(--space-4);
}

.product-count {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.product-count strong {
  color: var(--color-walnut);
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sort-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.sort-select {
  padding: var(--space-2) var(--space-4);
  padding-right: var(--space-8);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-walnut);
}

/* Product Grid - Shop Page */
.product-grid-shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Product Card - Shop Page */
.product-card-shop {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-grey-light);
  transition: all var(--transition-base);
}

.product-card-shop:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(93, 78, 55, 0.12);
  border-color: var(--color-beige-dark);
}

.product-image-shop {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-beige);
}

.product-image-shop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card-shop:hover .product-image-shop img {
  transform: scale(1.05);
}

.product-badge-shop {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
}

.product-badge-shop.badge-new {
  background: #10B981;
}

.product-badge-shop.badge-premium {
  background: var(--color-walnut);
}

.product-content-shop {
  padding: var(--space-5);
}

.product-material-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}

.product-title-shop {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-walnut);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-price-shop {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-walnut);
  margin-bottom: var(--space-4);
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-beige);
  color: var(--color-walnut);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-view-details:hover {
  background: var(--color-walnut);
  color: var(--color-white);
}

/* No Results */
.no-results {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-grey-light);
}

.no-results svg {
  color: var(--color-grey);
  margin-bottom: var(--space-4);
}

.no-results h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.no-results p {
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

/* Mobile Filter Button */
.mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  background: var(--color-walnut);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(93, 78, 55, 0.3);
  gap: var(--space-2);
  align-items: center;
}

.mobile-filter-btn svg {
  width: 18px;
  height: 18px;
}

/* Filter Overlay */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.filter-overlay.active {
  display: block;
  opacity: 1;
}

/* ─────────────────────────────────────────────
   Shop Page Responsive Styles
   ───────────────────────────────────────────── */

@media (max-width: 1280px) {
  .product-grid-shop {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .filter-sidebar {
    width: 250px;
  }

  .product-grid-shop {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 900px) {
  .product-grid-shop {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Mobile Filter Drawer */
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    z-index: 1000;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: var(--space-6);
    padding-bottom: 120px;
    background: var(--color-white);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }

  .filter-sidebar.active {
    transform: translateX(0);
  }

  .filter-header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    padding: var(--space-4) 0 var(--space-5);
    margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) var(--space-4);
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    border-bottom: 2px solid var(--color-beige-dark);
    z-index: 10;
  }

  .filter-main-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-walnut);
  }

  .filter-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-beige);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-close-btn:hover {
    background: var(--color-walnut);
    color: var(--color-white);
  }

  .filter-section {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-grey-light);
  }

  .filter-section:last-of-type {
    border-bottom: none;
  }

  .filter-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-walnut);
  }

  .mobile-filter-btn {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(93, 78, 55, 0.3);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .mobile-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 78, 55, 0.4);
  }

  .mobile-apply-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: var(--space-5);
    background: var(--color-walnut);
    color: var(--color-white);
    border: none;
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-apply-btn:hover {
    background: var(--color-walnut-dark);
  }

  .shop-layout {
    padding-top: 90px;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .shop-content {
    width: 100%;
  }

  .sorting-bar {
    padding: var(--space-3) var(--space-4);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .sort-controls {
    justify-content: space-between;
  }

  .product-grid-shop {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .product-content-shop {
    padding: var(--space-4);
  }

  .product-title-shop {
    font-size: var(--text-base);
  }

  .product-price-shop {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
  }
}

@media (max-width: 480px) {
  .product-grid-shop {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .product-card-shop {
    display: block;
  }

  .product-image-shop {
    width: 100%;
    aspect-ratio: 1;
  }

  .product-content-shop {
    padding: var(--space-3);
  }

  .product-title-shop {
    font-size: var(--text-xs);
    line-height: 1.3;
    margin-bottom: var(--space-1);
  }

  .product-price-shop {
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
  }

  .btn-view-details {
    padding: var(--space-2);
    font-size: var(--text-xs);
  }

  .mobile-filter-btn {
    bottom: 80px;
  }
}

/* ─────────────────────────────────────────────
   About Page - Founder Hero Section
   ───────────────────────────────────────────── */
.about-hero {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-image-frame {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.founder-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold)) 1;
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 2;
}

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold), #c9a227);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.founder-badge .badge-year {
  display: block;
  font-size: var(--text-xs);
  color: rgba(26, 26, 46, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.founder-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-walnut);
}

.founder-intro {
  color: white;
}

.hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.founder-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-quote {
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-gold);
}

.founder-name {
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-8);
  padding-left: var(--space-6);
}

.legacy-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-stat {
  text-align: center;
}

.legacy-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
}

.legacy-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

/* ─────────────────────────────────────────────
   Mission Statement Section
   ───────────────────────────────────────────── */
.mission-statement {
  background: var(--color-walnut);
  padding: var(--space-12) 0;
}

.mission-content {
  text-align: center;
}

.mission-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: white;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   Timeline Section
   ───────────────────────────────────────────── */
.timeline-section {
  background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-cream) 100%);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-walnut), var(--color-gold));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 140px;
  padding-bottom: var(--space-12);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-4);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-walnut), #5a4636);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(74, 54, 40, 0.3);
}

.timeline-today .timeline-year {
  background: linear-gradient(135deg, var(--color-gold), #c9a227);
  color: var(--color-walnut);
}

.timeline-content {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-walnut);
  margin-bottom: var(--space-3);
}

.timeline-description {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
}

.timeline-description strong {
  color: var(--color-text);
  font-weight: 600;
}

.timeline-highlight {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-gold);
}

.timeline-highlight span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.timeline-highlight p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

/* ─────────────────────────────────────────────
   Story Grid (Condensed Journey)
   ───────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.story-block {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-gold);
}

.story-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.story-icon svg {
  width: 32px;
  height: 32px;
}

.story-block h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-walnut);
  margin-bottom: var(--space-3);
}

.story-block p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────
   Quote Section
   ───────────────────────────────────────────── */
.quote-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.big-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}

.quote-highlight {
  color: var(--color-gold);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   About Page Responsive
   ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .about-hero {
    padding: var(--space-16) 0;
    min-height: auto;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }

  .founder-image-frame {
    width: 280px;
    height: 350px;
  }

  .founder-badge {
    right: 20px;
  }

  .founder-quote,
  .founder-name {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .founder-quote {
    border-top: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    padding: var(--space-4) 0;
  }

  .legacy-stats {
    justify-content: center;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 80px;
  }

  .timeline-marker {
    width: 60px;
  }

  .timeline-year {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
  }

  .quote-mark {
    font-size: 6rem;
    top: -30px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: var(--space-12) 0;
  }

  .founder-image-frame {
    width: 220px;
    height: 280px;
  }

  .founder-badge {
    bottom: -10px;
    right: -10px;
    padding: var(--space-2) var(--space-4);
  }

  .founder-badge .badge-number {
    font-size: 1.5rem;
  }

  .founder-title {
    font-size: 1.75rem;
  }

  .legacy-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .legacy-stat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .legacy-number {
    font-size: var(--text-2xl);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 40px;
  }

  .timeline-year {
    font-size: 10px;
    padding: 4px 8px;
  }

  .timeline-content {
    padding: var(--space-5);
  }

  .timeline-content::before {
    left: -8px;
    width: 16px;
    height: 16px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon svg {
    width: 20px;
    height: 20px;
  }

  .timeline-title {
    font-size: var(--text-lg);
  }

  .quote-mark {
    font-size: 4rem;
    top: -20px;
  }

  .mission-text {
    font-size: 1.1rem;
  }
}
.shop-mega-nav {
  position: sticky;
  top: 64px;
  z-index: 950;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-grey-light);
  box-shadow: var(--shadow-sm);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shop-mega-nav::-webkit-scrollbar {
  height: 4px;
}

.shop-mega-nav::-webkit-scrollbar-track {
  background: var(--color-beige);
}

.shop-mega-nav::-webkit-scrollbar-thumb {
  background: var(--color-walnut);
  border-radius: 2px;
}

.mega-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-1);
  white-space: nowrap;
  padding: var(--space-2) var(--space-4);
  min-width: max-content;
}

.mega-item {
  position: relative;
  flex-shrink: 0;
}

.mega-trigger {
  background: none;
  border: none;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-walnut);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: var(--space-3) var(--space-3);
  white-space: nowrap;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
}

.mega-trigger:hover {
  background: var(--color-beige);
  color: var(--color-brand-red);
}

.mega-trigger.active {
  background: var(--color-walnut);
  color: var(--color-white);
}

.mega-trigger::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--color-brand-red);
  transition: width var(--transition-base);
}

.mega-item:hover .mega-trigger::after,
.mega-trigger.active::after {
  width: 80%;
}

.mega-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1050;
  border: 1px solid var(--color-grey-light);
}

.mega-item:hover .mega-panel,
.mega-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 5px);
}

.mega-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-walnut);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-gold);
}

.mega-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.mega-panel li {
  position: relative;
  padding-left: var(--space-3);
}

.mega-panel li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mega-panel li:hover::before {
  opacity: 1;
}

.mega-panel a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  display: block;
  padding: var(--space-1) 0;
}

.mega-panel a:hover {
  color: var(--color-brand-red);
  padding-left: var(--space-2);
}

/* Mega Navigation Overlay */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1099;
  backdrop-filter: blur(4px);
}

.mega-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Improvements */
@media (max-width: 768px) {
  .shop-mega-nav {
    top: 60px;
    background: linear-gradient(135deg, rgba(93, 78, 55, 0.98), rgba(74, 62, 44, 0.98));
    border-bottom: 2px solid var(--color-gold);
  }

  .mega-container {
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    justify-content: flex-start;
  }

  .mega-trigger {
    font-size: 0.7rem;
    padding: var(--space-2) var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
  }

  .mega-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
  }

  .mega-trigger.active {
    background: var(--color-gold);
    color: var(--color-walnut);
    border-color: var(--color-gold);
  }

  .mega-trigger::after {
    display: none;
  }

  .mega-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    z-index: 1100;
  }

  .mega-panel.active {
    top: 50%;
    z-index: 1100;
  }

  .filter-sidebar {
    z-index: 1000;
  }

  .filter-overlay {
    z-index: 999;
  }

  .mobile-filter-btn {
    z-index: 950;
  }
}
.hero-video-secondary {
  display: none;
}

/* ============================================
   AR (Augmented Reality) Features Styling
   ============================================ */

/* AR Badge on Product Cards */
.ar-badge-shop {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.ar-badge-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.ar-badge-shop svg {
  width: 16px;
  height: 16px;
}

/* AR Modal */
.ar-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ar-modal.active {
  opacity: 1;
  visibility: visible;
}

.ar-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.ar-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10001;
}

.ar-modal.active .ar-modal-content {
  transform: scale(1);
}

.ar-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.ar-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.ar-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.ar-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.ar-modal-body {
  padding: 0;
}

.ar-viewer-container {
  width: 100%;
  height: 500px;
  background: #f8f6f2;
  position: relative;
}

.ar-model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
}

/* AR Loading State */
.ar-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.ar-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: arSpin 1s linear infinite;
}

@keyframes arSpin {
  to {
    transform: rotate(360deg);
  }
}

.ar-loading p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

/* AR Instructions */
.ar-instructions {
  padding: 20px 24px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.ar-instruction-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
}

.ar-instruction-item:last-child {
  margin-bottom: 0;
}

.ar-instruction-item svg {
  flex-shrink: 0;
  color: #667eea;
}

/* Product Detail Page AR Viewer */
.product-ar-viewer {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-model-viewer {
  width: 100%;
  height: 500px;
  background: #f8f6f2;
}

.ar-viewer-controls {
  padding: 16px;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.ar-viewer-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.ar-viewer-hint svg {
  flex-shrink: 0;
  color: #667eea;
}

/* AR View Button (inside model-viewer) */
.ar-view-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  z-index: 100;
}

.ar-view-button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* AR Error Message */
.ar-error-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ef4444;
  z-index: 200;
}

.ar-error-message svg {
  margin-bottom: 12px;
}

.ar-error-message p {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.ar-error-detail {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #6b7280 !important;
}

/* Gallery Action Button for AR (Product Page) */
.gallery-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  text-align: left;
}

.gallery-action:last-child {
  margin-bottom: 0;
}

.gallery-action:hover {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: translateX(4px);
}

.gallery-action-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.gallery-action p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.gallery-action-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

.gallery-action-icon svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive AR Styles */
@media (max-width: 768px) {
  .ar-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .ar-viewer-container {
    height: 400px;
  }

  .product-model-viewer {
    height: 400px;
  }

  .ar-modal-header {
    padding: 16px;
  }

  .ar-modal-header h3 {
    font-size: 18px;
  }

  .ar-instructions {
    padding: 16px;
  }

  .ar-instruction-item {
    font-size: 13px;
  }

  .ar-badge-shop {
    bottom: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .ar-badge-shop svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .ar-viewer-container {
    height: 320px;
  }

  .product-model-viewer {
    height: 320px;
  }

  .ar-modal-header h3 {
    font-size: 16px;
  }

  .gallery-action {
    padding: 12px;
  }

  .gallery-action-title {
    font-size: 14px;
  }

  .gallery-action p {
    font-size: 12px;
  }
}
