/* ========================================
   SVENTERIOR - Luxury Furniture CSS
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600&family=Cormorant+Garamond:wght@300;400;600&display=swap');

/* ========================================
   ROOT VARIABLES & COLOR PALETTE
   ======================================== */
:root {
  /* Primary Colors */
  --sand: #e8e0d5;
  --sand-light: #f2ede8;
  --brown: #8b5e3c;
  --brown-dark: #3d2b1f;
  --brown-mid: #6b4226;

  /* Text Colors */
  --text: #2c1f14;
  --text-light: #7a6555;
  --white: #faf8f5;

  /* Accents & Borders */
  --border: rgba(139, 94, 60, 0.12);
  --gold-accent: #d4a87a;
  --gold-muted: #c9a96e;

  /* Typography */
  --font-primary: 'Jost', sans-serif;
  --font-display: 'Cormorant Garamond', serif;

  /* Spacing - fluid with clamp */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: clamp(1.5rem, 3vw, 2rem);
  --spacing-xl: clamp(2rem, 4vw, 3rem);
  --spacing-xxl: clamp(3rem, 6vw, 5rem);
  --spacing-section: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 31, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 31, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 31, 20, 0.12);
  --shadow-xl: 0 24px 64px rgba(44, 31, 20, 0.16);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  cursor: none;
}

/* ========================================
   GRAIN/NOISE TEXTURE OVERLAY
   Adds organic, crafted feel to the entire page
   ======================================== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ========================================
   CUSTOM CURSOR
   Branded gold circle cursor
   ======================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-dot.visible {
  opacity: 1;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              opacity 0.4s ease;
  opacity: 0;
}

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

/* Cursor grows on interactive elements */
.cursor-dot.hover {
  width: 14px;
  height: 14px;
  background: var(--gold-accent);
}

.cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: var(--brown);
  opacity: 0.4;
}

/* Cursor grows even bigger on product cards */
.cursor-dot.product-hover {
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 122, 0.15);
  backdrop-filter: blur(2px);
}

.cursor-ring.product-hover {
  width: 70px;
  height: 70px;
  border-color: var(--gold-accent);
  opacity: 0.3;
}

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Restore default cursor on inputs and selects */
input, textarea, select, button, a {
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  input, textarea, select, button, a {
    cursor: auto;
  }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--gold-accent);
}

/* ========================================
   SELECTION STYLING
   ======================================== */
::selection {
  background-color: var(--brown);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--brown);
  color: var(--white);
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Scroll Down Indicator Animation */
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* Ticker/Marquee Animation */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Reveal Animation for Scroll Trigger */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Animation Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

/* Reveal Class for Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg.ken-burns {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Product Card Animations for Tab Filtering */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
    display: none;
  }
}

.product-card.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  display: block;
}

.product-card:not(.show) {
  display: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.btn-primary {
  background-color: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn-primary:hover {
  background-color: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 94, 60, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-secondary:hover {
  background-color: var(--brown);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 94, 60, 0.2);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* ========================================
   NAVIGATION
   ======================================== */
nav.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: transparent;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

nav.home-nav.nav-scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: width var(--transition-smooth);
}

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: var(--spacing-lg);
}

.lang-switcher button {
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-smooth);
  border-radius: 20px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-switcher button.active {
  background-color: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background-color: var(--brown);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.hamburger.active span {
  background-color: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Navigation Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  padding-top: 100px;
  padding-left: var(--spacing-lg);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.mobile-menu a {
  font-size: 1.25rem;
  color: var(--text);
  display: block;
  padding: var(--spacing-sm) 0;
}

/* Main Nav (sub-pages) */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brown-dark);
  font-family: var(--font-display);
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--brown);
  font-weight: 500;
  margin-top: -4px;
}

/* Nav CTA button */
.nav-cta {
  display: none;
  padding: 10px 24px;
  background: var(--brown);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
}

/* Mobile Drawer (sub-pages) */
/* ========================================
   PREMIUM MOBILE DRAWER
   ======================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(165deg, #1a1410 0%, #2a2018 40%, #1a1410 100%);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 100px 28px 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
}

/* Language bar at top of drawer */
.drawer-lang-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-lang-bar .lang-btn {
  flex: 1;
  padding: 10px 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.drawer-lang-bar .lang-btn:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.drawer-lang-bar .lang-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

/* Drawer navigation links */
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.drawer-links li {
  border-bottom: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-drawer.active .drawer-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.active .drawer-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.active .drawer-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-drawer.active .drawer-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-drawer.active .drawer-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-drawer.active .drawer-links li:nth-child(5) { transition-delay: 0.3s; }

.drawer-links a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  letter-spacing: 0.5px;
}

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--brown);
  padding-left: 8px;
}

/* Drawer links with images */
.drawer-link-with-img {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 10px 0 !important;
}

.drawer-link-with-img img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.drawer-link-with-img:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.drawer-link-text {
  display: inline;
}

/* Drawer featured image (large hero image at bottom) */
.drawer-featured {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 140px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

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

.drawer-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.drawer-featured-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Drawer CTA button */
.drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  margin-top: 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--brown);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s, background 0.3s ease;
}

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

.drawer-cta:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
}

/* Drawer overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Legacy drawer-lang for subpages */
.drawer-lang {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-lang .lang-btn {
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drawer-lang .lang-btn:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.drawer-lang .lang-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

/* Desktop: show nav-links, hide mobile elements */
@media (min-width: 1024px) {
  .main-nav .nav-links {
    display: flex;
  }

  .main-nav .lang-switcher {
    display: flex;
  }

  .main-nav .nav-cta {
    display: inline-block;
  }

  .main-nav .hamburger {
    display: none;
  }

  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
}

/* Mobile: hide desktop nav elements for .main-nav */
@media (max-width: 1023px) {
  .main-nav .nav-links {
    display: none;
  }

  .main-nav .lang-switcher {
    display: none;
  }

  .main-nav .nav-cta {
    display: none;
  }

  .main-nav .hamburger {
    display: flex;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--brown-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

/* Hero Background Image with Ken Burns Zoom Animation */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg.ken-burns {
  animation: kenBurns 25s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, 1%);
  }
  100% {
    transform: scale(1.12) translate(1%, -0.5%);
  }
}

/* ========================================
   HERO SLIDER - 4 images crossfade
   ======================================== */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity, transform;
  transform-origin: center center;
}

/* 4-slide crossfade: each slide gets 25% of the cycle
   Total cycle: 24s (6s per slide × 4 slides)
   Each slide: fade-in 1.5s, hold 3s, fade-out 1.5s */
.hero-slide-1 {
  animation: heroSlide1 24s ease-in-out infinite, kenBurnsSlide1 24s ease-in-out infinite;
}
.hero-slide-2 {
  animation: heroSlide2 24s ease-in-out infinite, kenBurnsSlide2 24s ease-in-out infinite;
}
.hero-slide-3 {
  animation: heroSlide3 24s ease-in-out infinite, kenBurnsSlide3 24s ease-in-out infinite;
}
.hero-slide-4 {
  animation: heroSlide4 24s ease-in-out infinite, kenBurnsSlide4 24s ease-in-out infinite;
}

/* Crossfade keyframes — 4 slides */
@keyframes heroSlide1 {
  0%, 2% { opacity: 0; }
  6%, 22% { opacity: 1; }
  28%, 100% { opacity: 0; }
}

@keyframes heroSlide2 {
  0%, 22% { opacity: 0; }
  28%, 47% { opacity: 1; }
  53%, 100% { opacity: 0; }
}

@keyframes heroSlide3 {
  0%, 47% { opacity: 0; }
  53%, 72% { opacity: 1; }
  78%, 100% { opacity: 0; }
}

@keyframes heroSlide4 {
  0%, 72% { opacity: 0; }
  78%, 94% { opacity: 1; }
  100% { opacity: 0; }
}

/* Ken Burns per slide - each moves differently */
@keyframes kenBurnsSlide1 {
  0% { transform: scale(1); }
  25% { transform: scale(1.08) translate(-0.5%, 0.5%); }
  100% { transform: scale(1); }
}

@keyframes kenBurnsSlide2 {
  0% { transform: scale(1.05); }
  50% { transform: scale(1.1) translate(0.5%, -0.3%); }
  100% { transform: scale(1.05); }
}

@keyframes kenBurnsSlide3 {
  0% { transform: scale(1.02); }
  66% { transform: scale(1.1) translate(-0.3%, 0.5%); }
  100% { transform: scale(1.02); }
}

@keyframes kenBurnsSlide4 {
  0% { transform: scale(1); }
  75% { transform: scale(1.08) translate(0.3%, 0.3%); }
  100% { transform: scale(1); }
}

/* Hero Dark Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 43, 31, 0.35) 0%,
    rgba(61, 43, 31, 0.15) 40%,
    rgba(61, 43, 31, 0.4) 100%
  );
  z-index: 1;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--spacing-lg);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  margin-bottom: var(--spacing-md);
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  color: #fff;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-accent);
  font-size: 0.45em;
  display: block;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.hero h1 {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  color: #fff;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero-subtitle {
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 1px 10px rgba(0,0,0,0.15);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero p {
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero .btn {
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero .btn-primary {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--brown-dark);
  font-weight: 500;
}

.hero .btn-primary:hover {
  background: #e0b68e;
  border-color: #e0b68e;
  box-shadow: 0 12px 32px rgba(212, 168, 122, 0.4);
}

.hero .btn-secondary {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeUp 0.8s ease 1.2s both;
}

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

.scroll-dot {
  width: 100%;
  height: 12px;
  background: var(--gold-accent);
  border-radius: 1px;
  animation: scrollDown 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  animation: scrollDown 2s ease-in-out infinite;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.about-text h2 {
  animation: fadeUp 0.8s ease both;
  color: var(--brown-dark);
}

.about-text p {
  animation: fadeUp 0.8s ease 0.2s both;
}

.about-image {
  position: relative;
  animation: fadeUp 0.8s ease 0.3s both;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--sand);
}

/* ========================================
   PRODUCT TABS & GRID
   ======================================== */
.products {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--sand-light);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.products h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--brown-dark);
}

/* Tab Navigation */
.product-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.product-tabs .main-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--sand-light);
  padding: 4px;
  border-radius: 40px;
  flex-wrap: wrap;
  width: auto;
}

.product-tabs .sub-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  width: 100%;
}

.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  border-radius: 40px;
  min-height: 44px;
}

.tab-btn.active {
  color: var(--white);
  background: var(--brown);
  box-shadow: 0 2px 8px rgba(139, 94, 60, 0.25);
}

.tab-btn:hover:not(.active) {
  color: var(--brown);
  background: rgba(139, 94, 60, 0.08);
}

.sub-tab-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
  min-height: 40px;
}

.sub-tab-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  box-shadow: 0 2px 8px rgba(139, 94, 60, 0.2);
}

.sub-tab-btn:hover:not(.active) {
  border-color: var(--brown);
  color: var(--brown);
}

/* Loading State */
.loading-products {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xxl);
  font-size: 1.1rem;
  color: var(--text-light);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: var(--spacing-xxl);
}

/* ---- PRODUCT CARD — Premium Design ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.45s ease;
  position: relative;
  will-change: transform;
  border: 1px solid transparent;
  contain: layout style;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 168, 122, 0.2);
}

@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Image Container */
.product-image-container,
.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--sand);
}

/* Image with smooth zoom */
.product-image img,
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

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

/* Overlay — subtle gradient always visible, intensifies on hover */
.product-overlay,
.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(44, 31, 20, 0.06) 65%,
    rgba(44, 31, 20, 0.55) 100%
  );
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 24px);
}

.product-card:hover .product-overlay {
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(44, 31, 20, 0.12) 55%,
    rgba(44, 31, 20, 0.7) 100%
  );
}

/* Category badge on overlay */
.product-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  background: rgba(139, 94, 60, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  position: absolute;
  top: clamp(12px, 1.5vw, 16px);
  left: clamp(12px, 1.5vw, 16px);
  z-index: 3;
  transition: all 0.35s ease;
}

.product-card:hover .product-category {
  background: rgba(139, 94, 60, 0.9);
}

/* Product Badge (Nieuw, Populair etc) */
.product-badge {
  position: absolute;
  top: clamp(12px, 1.5vw, 16px);
  right: clamp(12px, 1.5vw, 16px);
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--gold-accent);
  padding: 5px 12px;
  border-radius: 20px;
}

.product-overlay h3 {
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.product-card:hover .product-overlay h3 {
  opacity: 1;
  transform: translateY(0);
}

.product-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.product-card:hover .product-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Product Info — below image */
.product-info {
  padding: clamp(14px, 2vw, 20px);
}

.product-info h3 {
  color: var(--brown-dark);
  margin-bottom: 6px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.3;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* View Product button */
.btn-view-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  color: var(--brown);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, gap 0.3s ease;
}

.btn-view-product::after {
  content: '→';
  transition: transform 0.3s ease;
}

.product-card:hover .btn-view-product {
  color: var(--brown-dark);
  gap: 10px;
}

.product-card:hover .btn-view-product::after {
  transform: translateX(3px);
}

/* Product price tag */
.product-price {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

/* ========================================
   STATS / USP BAR
   ======================================== */
.stats {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--brown-dark);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.stat-item h3 {
  color: var(--gold-accent);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.stat-item p {
  color: var(--sand-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  position: relative;
  padding: var(--spacing-xxl) var(--spacing-lg);
  background: linear-gradient(135deg, #8b5e3c 0%, #6b4226 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.4) 0%, rgba(61, 43, 31, 0.6) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.cta p {
  color: var(--sand-light);
  margin-bottom: var(--spacing-xl);
  font-size: 1.1rem;
}

.cta .btn {
  background-color: var(--gold-accent);
  color: var(--brown-dark);
  border-color: var(--gold-accent);
}

.cta .btn:hover {
  background-color: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
}

/* ========================================
   DEALERS PAGE
   ======================================== */
.dealers {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--white);
}

.dealers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dealers h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  color: var(--brown-dark);
}

.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.dealer-card {
  background: var(--sand-light);
  padding: var(--spacing-lg);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
  position: relative;
}

.dealer-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.dealer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--gold-accent);
  color: var(--brown-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dealer-card h3 {
  color: var(--brown-dark);
  margin-bottom: var(--spacing-sm);
  padding-right: 100px;
}

.dealer-info {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.dealer-info p {
  margin-bottom: var(--spacing-sm);
}

.dealer-link {
  color: var(--brown);
  font-weight: 400;
  transition: color var(--transition-smooth);
}

.dealer-link:hover {
  color: var(--gold-accent);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--white);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--brown-dark);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text);
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: none;
  border-bottom: 2px solid var(--border);
  background-color: transparent;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-smooth);
  min-height: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--brown);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background-color: var(--brown-dark);
  color: var(--sand-light);
  padding: var(--spacing-xxl) var(--spacing-lg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: var(--sand-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  display: block;
  transition: color var(--transition-smooth);
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand-light);
  border-radius: 50%;
  transition: all var(--transition-smooth);
  margin-bottom: 0;
}

.social-links a:hover {
  background-color: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--brown-dark);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 168, 122, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1200px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  /* Global mobile spacing */
  .container {
    padding: 0 16px;
  }

  /* Navigation */
  nav.home-nav,
  .main-nav {
    padding: 0 var(--spacing-md);
  }

  .nav-links {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    margin-top: 72px;
    height: calc(100vh - 72px);
    min-height: 550px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-section .about-image {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  /* Product Tabs - horizontal scroll on mobile */
  .product-tabs {
    align-items: stretch;
    width: 100%;
  }

  .product-tabs .main-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    padding: 4px;
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
  }

  .product-tabs .main-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tabs .sub-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }

  .product-tabs .sub-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn,
  .sub-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.78rem;
    min-width: max-content;
  }

  /* Product grid — 2 columns on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 0.9rem;
  }

  .product-info p {
    font-size: 0.78rem;
    -webkit-line-clamp: 1;
  }

  .btn-view-product {
    font-size: 0.72rem;
    margin-top: 8px;
  }

  /* Stats — 2 columns */
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  /* CTA */
  .cta-section {
    min-height: 380px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.82rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 0 var(--spacing-md);
  }

  .about-image {
    aspect-ratio: 1;
  }

  .dealer-card {
    padding: var(--spacing-md);
  }

  .dealer-card h3 {
    padding-right: 0;
    margin-bottom: var(--spacing-md);
  }

  .dealer-badge {
    position: static;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
  }

  /* Mobile touch targets */
  .lang-switcher button {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.65rem;
  }

  .form-group input {
    padding: 0.75rem var(--spacing-sm);
    min-height: 48px;
  }

  .form-group textarea {
    padding: 0.75rem var(--spacing-sm);
    min-height: 140px;
  }

  .product-grid {
    gap: var(--spacing-sm);
  }

  .social-links a {
    width: 48px;
    height: 48px;
  }

  /* Ken Burns animation reduced on mobile for performance */
  .hero-bg.ken-burns {
    animation-duration: 30s;
  }

  /* Stats grid — single column on very small screens */
  .stats-section .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .stat-item {
    padding: var(--spacing-md);
  }

  /* Product card refinements for small screens */
  .product-grid {
    gap: 8px;
  }

  .product-info {
    padding: 10px;
  }

  .product-info h3 {
    font-size: 0.82rem;
  }

  .product-info p {
    display: none;
  }

  .btn-view-product {
    font-size: 0.7rem;
    margin-top: 6px;
  }

  .category-badge {
    font-size: 0.6rem;
    padding: 4px 8px;
  }

  /* Cookie banner stacked on small screens */
  .cookie-banner {
    padding: 14px;
  }

  .cookie-text h3 {
    font-size: 14px;
  }

  .cookie-text p {
    font-size: 12px;
  }

  /* Footer adjustments */
  .footer-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  /* Hero content tighter on small phones */
  .hero-content {
    padding: 0 var(--spacing-sm);
  }

  .hero-label {
    font-size: 0.65rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  /* Section spacing reduced */
  .section-label {
    font-size: 0.65rem;
  }

  /* CTA section reduced height */
  .cta-section {
    min-height: 300px;
  }

  /* Safe area insets for notched phones */
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .cookie-banner {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Image Loading Placeholder */
img {
  background-color: var(--sand);
}

/* Glass Morphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* ========================================
   SECTION LABELS & TITLES (Homepage)
   ======================================== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  color: var(--brown-dark);
  margin-bottom: var(--spacing-lg);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.75;
}

.about-section .about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.about-section .about-image:hover img {
  transform: scale(1.04) !important;
}

/* Decorative corner accent on about image */
.about-section .about-image::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  border-right: 2px solid var(--gold-accent);
  border-bottom: 2px solid var(--gold-accent);
  border-radius: 0 0 var(--radius-lg) 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

/* ========================================
   STATS SECTION (Homepage)
   ======================================== */
.stats-section {
  padding: var(--spacing-xxl) 0;
  background: var(--brown-dark);
}

.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-accent);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-accent);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(242, 237, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   COLLECTION SECTION (Homepage)
   ======================================== */
.collection-section {
  padding: var(--spacing-section) 0;
  background: var(--sand-light);
  text-align: center;
  position: relative;
}

/* Subtle gradient fade at top of collection section */
.collection-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--white), var(--sand-light));
  pointer-events: none;
}

.collection-section .section-title {
  margin-bottom: var(--spacing-lg);
}

/* ========================================
   CTA SECTION (Homepage)
   ======================================== */
.cta-section {
  position: relative;
  padding: var(--spacing-section) 0;
  overflow: hidden;
  text-align: center;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Decorative line above CTA section */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  z-index: 3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 43, 31, 0.75) 0%,
    rgba(61, 43, 31, 0.6) 50%,
    rgba(61, 43, 31, 0.8) 100%
  );
  z-index: 1;
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--brown-dark);
  font-weight: 500;
}

.cta-section .btn-primary:hover {
  background: #e0b68e;
  border-color: #e0b68e;
  box-shadow: 0 12px 32px rgba(212, 168, 122, 0.4);
}

/* ========================================
   FOOTER (Homepage)
   ======================================== */
.main-footer {
  background: var(--brown-dark);
  padding: var(--spacing-section) 0 var(--spacing-lg);
  color: rgba(242, 237, 232, 0.7);
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  display: block;
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold-accent);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.main-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

.main-footer .b2b-notice {
  font-size: 0.8rem;
  margin-top: 12px;
  color: rgba(242, 237, 232, 0.5);
}

.footer-nav {
  position: static;
  display: block;
  height: auto;
  z-index: auto;
  background: none;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(242, 237, 232, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

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

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

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

.footer-contact a {
  color: var(--gold-accent);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(242, 237, 232, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: var(--gold-accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(242, 237, 232, 0.4);
}

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

/* Margin Utilities */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Padding Utilities */
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Display Utilities */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

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

.grid {
  display: grid;
}

/* Opacity Utilities */
.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 43, 31, 0.65);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: var(--spacing-xl);
}

.page-header-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

.page-header-content p {
  color: var(--sand-light);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--brown-dark);
  margin-bottom: var(--spacing-lg);
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature {
  display: flex;
  gap: var(--spacing-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sand-light);
  border-radius: 4px;
  color: var(--brown);
}

.feature h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--spacing-xs);
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* CONTACT FORM */
.contact-form-wrapper {
  background-color: var(--sand-light);
  padding: var(--spacing-xl);
  border-radius: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--spacing-sm);
  border: none;
  border-bottom: 2px solid var(--border);
  background-color: transparent;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--brown);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5e3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px;
  padding-right: 32px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--spacing-xl);
  background-color: rgba(139, 94, 60, 0.1);
  border-radius: 4px;
}

.form-success svg {
  color: var(--brown);
  margin-bottom: var(--spacing-md);
}

.form-success p {
  color: var(--brown);
  font-weight: 400;
  margin: 0;
}

.form-success.show {
  display: block;
}

/* ========================================
   DEALERS PAGE STYLES
   ======================================== */
.dealers-section {
  padding: var(--spacing-xxl) var(--spacing-lg);
  background-color: var(--white);
}

.dealers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* DEALER CARD */
.dealer-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
  transition: all var(--transition-smooth);
}

.dealer-card:hover {
  box-shadow: 0 16px 32px rgba(139, 94, 60, 0.12);
  border-color: var(--gold-muted);
}

.dealer-card.premium {
  border: 2px solid var(--gold-accent);
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, var(--sand-light) 100%);
}

.dealer-badge {
  position: absolute;
  top: -12px;
  left: var(--spacing-xl);
  background-color: var(--gold-accent);
  color: var(--brown-dark);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

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

.dealer-image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.dealer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.dealer-card:hover .dealer-image img {
  transform: scale(1.05);
}

.dealer-info h2 {
  font-size: 2rem;
  color: var(--brown-dark);
  margin-bottom: var(--spacing-md);
}

.dealer-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.dealer-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--border);
}

.dealer-location,
.dealer-website {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text);
  font-size: 0.95rem;
}

.dealer-location svg,
.dealer-website svg {
  flex-shrink: 0;
  color: var(--brown);
}

.dealer-website a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.dealer-website a:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

/* BECOME A DEALER */
.become-dealer {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  color: var(--white);
  padding: var(--spacing-xxl);
  border-radius: 4px;
  margin-top: var(--spacing-xxl);
}

.become-dealer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.become-dealer h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
}

.become-dealer p {
  color: var(--sand-light);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.become-dealer-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--sand-light);
}

.benefit svg {
  color: var(--gold-accent);
  width: 24px;
  height: 24px;
}

.benefit span {
  font-size: 0.95rem;
  text-transform: capitalize;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  nav,
  .scroll-indicator {
    display: none;
  }

  body {
    background-color: var(--white);
  }
}

/* ========================================
   RESPONSIVE - PAGE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .contact-info {
    position: static;
  }

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

  .page-header-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 280px;
    margin-top: 80px;
  }

  .page-header-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .page-header-content p {
    font-size: 1rem;
  }

  .contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .become-dealer-benefits {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: var(--spacing-lg);
  }

  .dealer-card {
    padding: var(--spacing-lg);
  }

  .dealer-badge {
    position: static;
    display: inline-block;
    margin-bottom: var(--spacing-md);
  }

  .dealers-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .become-dealer {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

/* ========================================
   COOKIE BANNER & SHIPPING NOTICES
   ======================================== */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cookie-text {
  flex: 1;
  color: #f8f8f8;
}

.cookie-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-family: 'Cormorant Garamond', serif;
}

.cookie-text p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #f8f8f8;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-primary {
  background: #f8f8f8;
  color: var(--brown);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.cookie-banner .btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

/* Shipping Notice Top Bar */
.shipping-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--brown) 0%, var(--gold-accent) 100%);
  color: white;
  padding: 12px 20px;
  z-index: 998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shipping-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}

.shipping-content svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Shipping Badge in Form */
.shipping-badge {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--brown-mid) 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0;
  font-size: 13px;
}

.shipping-badge span {
  line-height: 1.4;
}

.shipping-badge span:first-child {
  font-weight: 600;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
}

.shipping-badge span:last-child {
  opacity: 0.9;
  font-size: 12px;
}

/* Shipping Highlight in About Section */
.shipping-highlight {
  margin-top: 40px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--brown-mid) 100%);
  color: white;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.highlight-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.highlight-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  font-family: 'Cormorant Garamond', serif;
}

.highlight-content p {
  font-size: 13px;
  margin: 0;
  opacity: 0.95;
}

/* Worldwide Shipping Box for Dealers */
.worldwide-shipping-box {
  margin: 24px 0;
}

.shipping-badge-alt {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--brown-mid) 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 6px;
}

.shipping-badge-alt .shipping-header {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.shipping-badge-alt p {
  font-size: 13px;
  margin: 0;
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
  }

  .cookie-text h3 {
    font-size: 15px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .highlight-box {
    max-width: 100%;
  }

  .shipping-badge {
    margin: 12px 0;
  }

  .shipping-notice {
    padding: 10px 16px;
  }

  .shipping-content {
    font-size: 12px;
  }

  .shipping-content svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */

.product-breadcrumb {
  margin-top: 80px;
  padding: 16px 0;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}

.product-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--brown);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--text-light);
}

.product-breadcrumb span:last-child {
  color: var(--text);
  font-weight: 500;
}

.product-detail {
  padding: 60px 0 80px;
}

.product-detail .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand);
}

.product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brown);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-detail-category {
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.product-detail-description {
  margin-bottom: 32px;
}

.product-detail-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.product-detail-specs {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--sand);
  border-radius: 8px;
}

.product-detail-specs h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.product-detail-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.detail-feature svg {
  color: var(--brown);
  flex-shrink: 0;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.product-detail-actions .btn {
  flex: 1;
  text-align: center;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Related Products */
.related-products {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.related-products h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-card h4 {
  padding: 16px 16px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 400;
}

.related-card p {
  padding: 0 16px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Product detail responsive */
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-title {
    font-size: 1.6rem;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .product-detail {
    padding: 20px 0 50px;
  }

  .product-detail-title {
    font-size: 1.4rem;
  }

  .product-thumbs {
    gap: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   CATEGORY PAGE
   ======================================== */

.category-header {
  padding: 60px 0 30px;
  text-align: center;
}

.category-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.category-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Subcategory tabs */
.category-tabs-wrapper {
  padding: 0 0 20px;
}

.category-tabs-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.cat-tab:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.cat-tab.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Category product grid */
.category-products {
  padding: 20px 0 60px;
}

.category-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-product-card {
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.5s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cat-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.cat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-product-card:hover .cat-card-image img {
  transform: scale(1.06);
}

.cat-card-image .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brown);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}

.cat-card-sub {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-dark);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 3px;
}

.cat-card-info {
  padding: 20px;
}

.cat-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-dark);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cat-card-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Category CTA */
.category-cta {
  padding: 60px 0;
  background: var(--sand);
}

.category-cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.category-empty {
  text-align: center;
  padding: 60px 20px;
}

.category-empty p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-title {
    font-size: 1.8rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 4px;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .cat-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .category-header {
    padding: 40px 0 20px;
  }

  .category-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story,
.about-boomstam {
  padding: 80px 0;
}

.about-story .container,
.about-boomstam .container,
.about-materials .container,
.about-craftsmen .container,
.about-custom-legs .container,
.about-faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.about-story-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
  direction: rtl;
}

.about-story-grid.reverse > * {
  direction: ltr;
}

.about-story-text .section-label {
  display: block;
  margin-bottom: 12px;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-story-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}

.about-story-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Materials */
.about-materials {
  padding: 80px 0;
  background: var(--sand);
}

.about-materials .section-label,
.about-materials .section-title {
  text-align: center;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.material-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
}

.material-icon {
  color: var(--brown);
  margin-bottom: 20px;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.material-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.material-specs {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mat-spec {
  font-size: 0.85rem;
  color: var(--text-light);
}

.mat-spec strong {
  display: block;
  color: var(--brown-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* Craftsmen Section */
.about-craftsmen {
  padding: 80px 0;
  background: var(--sand-light);
}

.about-craftsmen .section-label,
.about-craftsmen .section-title {
  text-align: center;
}

.about-craftsmen .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  color: var(--text-secondary);
}

.craftsmen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.craftsmen-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(61, 43, 31, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.craftsmen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.12);
}

.craftsmen-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.craftsmen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craftsmen-card:hover .craftsmen-image img {
  transform: scale(1.05);
}

.craftsmen-caption {
  padding: 24px;
}

.craftsmen-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.craftsmen-caption p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Custom Legs */
.about-custom-legs {
  padding: 80px 0;
}

.about-custom-legs .section-label,
.about-custom-legs .section-title {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.legs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.legs-feature {
  background: var(--sand);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.legs-feature:hover {
  transform: translateY(-4px);
}

.legs-icon {
  color: var(--brown);
  margin-bottom: 16px;
}

.legs-feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.legs-feature p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

/* FAQ */
.about-faq {
  padding: 80px 0;
  background: var(--sand);
}

.about-faq .section-label,
.about-faq .section-title {
  text-align: center;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-dark);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--sand);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--brown);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

/* About responsive */
@media (max-width: 768px) {
  .about-story-grid,
  .about-story-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .about-story-text h2 {
    font-size: 1.5rem;
  }

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

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

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

  .material-specs {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-boomstam,
  .about-materials,
  .about-craftsmen,
  .about-custom-legs,
  .about-faq {
    padding: 50px 0;
  }
}

/* ========================================
   DESIGN UPGRADE: OVERSIZED SECTION HEADERS
   Large background text behind section titles
   ======================================== */
.section-bg-text {
  position: relative;
}

.section-bg-text::before {
  content: attr(data-bg-text);
  position: absolute;
  top: -0.25em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(139, 94, 60, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.04em;
  line-height: 1;
  user-select: none;
}

.section-bg-text > *:not(.vertical-accent) {
  position: relative;
  z-index: 1;
}

/* Left-aligned variant for about section */
.section-bg-text.bg-left::before {
  left: 0;
  transform: none;
}

/* ========================================
   DESIGN UPGRADE: VERTICAL TEXT ACCENTS
   Rotated text on section edges
   ======================================== */
.vertical-accent {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(139, 94, 60, 0.25);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.vertical-accent.left {
  left: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}

.vertical-accent.right {
  right: clamp(24px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

/* Hide vertical accents on small screens */
@media (max-width: 768px) {
  .vertical-accent { display: none; }
  .section-bg-text::before {
    font-size: clamp(2.5rem, 15vw, 5rem);
  }
}
