/* =====================================================================
   BEST FURNITURE — Design System & Styles
   A premium, minimalist furniture website
   ===================================================================== */

/* -----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ----------------------------------------------------------------- */
:root {
  /* Colors — Calm Slate & Linen Palette */
  --color-bg: #F7F6F3;
  --color-surface: #EDEAE4;
  --color-text-primary: #252320;
  --color-text-secondary: #7C7870;
  --color-accent: #5C6B5A;
  --color-accent-light: #8A9E87;
  --color-accent-hover: #465445;
  --color-border: #DDD9D2;
  --color-white: #FFFFFF;
  --color-black: #1A1918;
  --color-error: #A0433A;
  --color-success: #4A7C55;
  --color-warning: #B07D3A;
  --color-info: #4A6E8A;
  --color-whatsapp: #25D366;
  --color-overlay: rgba(25, 22, 18, 0.50);
  --color-card-shadow: rgba(37, 35, 32, 0.05);
  --color-card-shadow-hover: rgba(37, 35, 32, 0.10);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  --text-6xl: 4.5rem;

  /* Spacing (8px grid) */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-hero: 1200ms ease-in-out;
}


/* -----------------------------------------------------------------
   2. RESET & BASE STYLES
   ----------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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


/* -----------------------------------------------------------------
   3. UTILITY CLASSES
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-20) 0;
}

.section--surface {
  background-color: var(--color-surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-4) auto 0;
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-md);
}

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

.text-accent {
  color: var(--color-accent);
}

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


/* -----------------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.5;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92, 107, 90, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-text-primary);
  border: 2px solid var(--color-white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border: 2px solid var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background-color: #1EBE5D;
  border-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

.btn--danger {
  background-color: var(--color-error);
  color: var(--color-white);
  border: 2px solid var(--color-error);
}

.btn--danger:hover {
  background-color: #A93226;
  border-color: #A93226;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}


/* -----------------------------------------------------------------
   5. HEADER & NAVIGATION
   ----------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header.header--hero:not(.scrolled) {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.scrolled {
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

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

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  height: 48px;
  width: auto;
  background-color: transparent;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  transition: opacity var(--transition-fast);
}

body.drawer-open .header-logo {
  opacity: 0;
  pointer-events: none;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.desktop-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  position: relative;
  padding: var(--space-2) 0;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a.active {
  color: var(--color-accent);
}

.desktop-nav .btn {
  padding: var(--space-2) var(--space-6);
}

.desktop-nav .btn::after {
  display: none;
}

/* Hero-mode header (for pages with dark hero) */
.site-header.header--hero:not(.scrolled) .desktop-nav a {
  color: var(--color-white);
}

/* Logo keeps original colors everywhere */

.site-header.header--hero:not(.scrolled) .desktop-nav .btn--outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.site-header.header--hero:not(.scrolled) .desktop-nav .btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-text-primary);
}

.site-header.header--hero:not(.scrolled) .hamburger-btn span {
  background-color: var(--color-white);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 9, 0.5);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: 1006;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-header img {
  height: 36px;
  width: auto;
  background-color: var(--color-white);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-full);
  transition: background var(--transition-fast);
  font-size: 1.5rem;
  color: var(--color-text-secondary);
}

.drawer-close-btn:hover {
  background-color: var(--color-surface);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  gap: var(--space-2);
  flex: 1;
}

.mobile-nav a {
  display: block;
  padding: var(--space-4) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateX(24px);
}

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

.mobile-nav a:nth-child(1) {
  transition-delay: 80ms;
}

.mobile-nav a:nth-child(2) {
  transition-delay: 140ms;
}

.mobile-nav a:nth-child(3) {
  transition-delay: 200ms;
}

.mobile-nav a:nth-child(4) {
  transition-delay: 260ms;
}

.mobile-nav a:nth-child(5) {
  transition-delay: 320ms;
}

.mobile-nav a:hover,
.mobile-nav a.active:not(.btn--primary) {
  background-color: var(--color-surface);
  color: var(--color-accent);
}

.mobile-nav a.btn--primary {
  margin-top: auto;
  text-align: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(92, 107, 90, 0.2);
}

.mobile-nav a.btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
}

.mobile-nav .btn {
  opacity: 0;
  transform: translateX(24px);
  transition-delay: 380ms;
}

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


/* -----------------------------------------------------------------
   6. FOOTER
   ----------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-4);
  background-color: var(--color-white);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}


/* -----------------------------------------------------------------
   7. HERO SECTION
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-hero);
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 9, 0.7) 0%,
      rgba(10, 10, 9, 0.4) 50%,
      rgba(10, 10, 9, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
  padding-top: var(--header-height);
}

.hero-logo-wrapper {
  background-color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  display: inline-block;
  margin-bottom: var(--space-4);
  max-width: 180px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.hero-logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-logo-wrapper {
    max-width: 140px;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-3);
  }
}

.hero-content h1 {
  color: var(--color-white);
  font-size: var(--text-6xl);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  max-width: 520px;
  line-height: 1.7;
}

.hero .btn-group {
  margin-bottom: var(--space-8);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* -----------------------------------------------------------------
   8. PAGE HERO (Non-homepage hero sections)
   ----------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 107, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
}

.page-hero p {
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}


/* -----------------------------------------------------------------
   9. PRODUCT CARDS
   ----------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-card-shadow-hover);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-surface);
}

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

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

.product-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
}

.product-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.product-card-body h3 {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-card-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}


/* -----------------------------------------------------------------
   10. COLLECTION (CATEGORY) CARDS
   ----------------------------------------------------------------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.collection-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  display: block;
  transition: all var(--transition-base);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 9, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  transition: background var(--transition-base);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 9, 0.8) 100%);
}

.collection-card-overlay h3 {
  color: var(--color-white);
  font-size: var(--text-lg);
  font-family: var(--font-display);
}


/* -----------------------------------------------------------------
   11. WHY CHOOSE US / VALUE CARDS
   ----------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.value-card {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  text-align: center;
}

.value-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-card-shadow);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.5rem;
  color: var(--color-white);
}

.value-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
}

.value-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.value-card .stat-number {
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-2);
}


/* -----------------------------------------------------------------
   12. CTA BANNER
   ----------------------------------------------------------------- */
.cta-banner {
  background: var(--color-surface);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 107, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 158, 135, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-text-primary);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-banner h2::after {
  background: var(--color-accent);
}

.cta-banner p {
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  max-width: 560px;
  margin: 0 auto var(--space-10);
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
}


/* -----------------------------------------------------------------
   13. PRODUCT FILTERS
   ----------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.filter-btn {
  padding: var(--space-2) var(--space-6);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-white);
  color: var(--color-text-secondary);
}

.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-btn.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.no-products-msg {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  grid-column: 1 / -1;
}


/* -----------------------------------------------------------------
   14. PRODUCT DETAIL PAGE
   ----------------------------------------------------------------- */
.product-detail {
  padding-top: calc(var(--header-height) + var(--space-10));
}

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

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

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--color-surface);
  margin-bottom: var(--space-4);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.gallery-main img.active {
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
}

.gallery-thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}

.gallery-thumb.active {
  border-color: var(--color-accent);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-info .product-card-category {
  margin-bottom: var(--space-3);
}

.product-info h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.product-info .product-card-price {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.product-info .description {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.product-info .btn-group {
  margin-bottom: var(--space-10);
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table td {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
  width: 140px;
}

.specs-table td:last-child {
  color: var(--color-text-secondary);
}


/* -----------------------------------------------------------------
   15. ABOUT PAGE
   ----------------------------------------------------------------- */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-vision-text h2 {
  margin-bottom: var(--space-6);
}

.about-vision-text h2::after {
  margin: var(--space-4) 0 0;
}

.about-vision-text p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.about-vision-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.about-value-card {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.about-value-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-card-shadow);
}

.about-value-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.about-value-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.about-value-card p {
  font-size: var(--text-sm);
}

.workshop-image {
  text-align: center;
  margin-bottom: var(--space-6);
}

.workshop-image img {
  border-radius: var(--border-radius-lg);
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
}

/* Team Placeholder */
.team-placeholder {
  border-radius: var(--border-radius-lg);
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-border) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-text-secondary);
}

.team-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.team-placeholder p {
  font-size: var(--text-sm);
  font-style: italic;
}


/* -----------------------------------------------------------------
   16. CONTACT PAGE
   ----------------------------------------------------------------- */
.contact-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.contact-ctas .btn {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-md);
}

.map-wrapper {
  position: relative;
  padding-bottom: 45%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  text-align: center;
  margin-bottom: var(--space-12);
}

.map-link a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.map-link a:hover {
  color: var(--color-accent-hover);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.contact-info-card {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.contact-info-card p {
  font-size: var(--text-sm);
}

.contact-info-card a {
  color: var(--color-accent);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--color-accent-hover);
}


/* -----------------------------------------------------------------
   17. WHATSAPP FAB
   ----------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
  transition: transform var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}


/* -----------------------------------------------------------------
   18. FLASH MESSAGES
   ----------------------------------------------------------------- */
.flash-messages {
  position: fixed;
  top: calc(var(--header-height) + var(--space-4));
  right: var(--space-6);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 420px;
}

.flash-msg {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  animation: flash-in 0.3s ease-out;
  cursor: pointer;
}

.flash-msg--success {
  background: #ECFDF5;
  color: #065F46;
  border-left: 4px solid var(--color-success);
}

.flash-msg--error {
  background: #FEF2F2;
  color: #991B1B;
  border-left: 4px solid var(--color-error);
}

.flash-msg--warning {
  background: #FFFBEB;
  color: #92400E;
  border-left: 4px solid var(--color-warning);
}

.flash-msg--info {
  background: #EFF6FF;
  color: #1E40AF;
  border-left: 4px solid var(--color-info);
}

@keyframes flash-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* -----------------------------------------------------------------
   19. ADMIN PANEL
   ----------------------------------------------------------------- */
/* Input with Symbol Wrapper */
.input-with-symbol {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-symbol .symbol {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-secondary);
  font-weight: 500;
  pointer-events: none;
}

.input-with-symbol input {
  padding-left: 2rem !important;
}

.admin-layout {
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-16);
  min-height: 100vh;
  background-color: var(--color-bg);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.admin-header h1 {
  font-size: var(--text-2xl);
}

/* Stat Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

/* Analytics Row */
.analytics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--space-4);
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.stat-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.stat-card .stat-value {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-display);
}

.stat-card p {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

/* Charts */
.admin-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.chart-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.chart-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.chart-card canvas {
  max-height: 280px;
}

/* Admin Actions */
.admin-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.admin-action-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.admin-action-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-card-shadow);
}

.admin-action-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.admin-action-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.admin-action-card p {
  font-size: var(--text-sm);
}

/* DB Tools */
.db-tools {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.db-tools h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
}

.db-tools-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.upload-db-form {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.upload-db-form input[type="file"] {
  font-size: var(--text-xs);
  max-width: 200px;
}

/* Admin Table */
.admin-table-wrapper {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  overflow-x: auto;
  margin-top: var(--space-8);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.admin-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background-color: var(--color-surface);
}

.admin-table .product-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
}

.admin-table .badge {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--featured {
  background: #EBEBE6;
  color: #5C6B5A;
}

.badge--category {
  background: var(--color-surface);
  color: var(--color-text-secondary);
}

.admin-table .actions {
  display: flex;
  gap: var(--space-2);
}


/* -----------------------------------------------------------------
   20. ADMIN FORMS
   ----------------------------------------------------------------- */
.admin-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.form-group .hint {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(92, 107, 90, 0.12);
}

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

.form-select {
  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 12 12'%3E%3Cpath fill='%236B6B62' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-check label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Image Upload Area */
.image-upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-surface);
}

.image-upload-area:hover {
  border-color: var(--color-accent-light);
  background: var(--color-white);
}

.image-upload-area svg {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  color: var(--color-text-secondary);
}

.image-upload-area p {
  font-size: var(--text-sm);
}

.image-upload-area .browse-link {
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
}

.image-previews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.image-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview .remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(192, 57, 43, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.image-preview .remove-btn:hover {
  background: var(--color-error);
}


/* -----------------------------------------------------------------
   21. LOGIN PAGE
   ----------------------------------------------------------------- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
}

.login-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-10);
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.login-card img {
  height: 48px;
  margin: 0 auto var(--space-8);
}

.login-card h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.login-card .subtitle {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}

.login-card .form-group {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  margin-top: var(--space-4);
}


/* -----------------------------------------------------------------
   22. MODAL
   ----------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 9, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  max-width: 520px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.modal p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.modal-list {
  margin-bottom: var(--space-6);
}

.modal-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  transition: background var(--transition-fast);
}

.modal-list-item:hover {
  background: var(--color-surface);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}


/* -----------------------------------------------------------------
   23. ERROR PAGE
   ----------------------------------------------------------------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6);
}

.error-page h1 {
  font-size: 8rem;
  color: var(--color-accent-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-page h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.error-page p {
  margin-bottom: var(--space-8);
}


/* -----------------------------------------------------------------
   24. RESPONSIVE — TABLET (≤1024px)
   ----------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3.5rem;
    --text-5xl: 3rem;
    --text-4xl: 2.5rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .product-detail-grid {
    gap: var(--space-8);
  }
}


/* -----------------------------------------------------------------
   25. RESPONSIVE — MOBILE (≤768px)
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2.25rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --header-height: 64px;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 var(--space-2);
  }

  .hero-content h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
  }

  .hero-content p {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 100%;
  }

  .hero .btn-group {
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
  }

  .hero .btn-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    font-size: var(--text-sm);
  }

  .scroll-indicator {
    display: none;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .value-card {
    padding: var(--space-6);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .gallery {
    position: static;
  }

  .about-vision {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-vision-image {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .contact-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .analytics-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    width: 100%;
  }

  .chart-card {
    padding: var(--space-4);
    width: 100%;
    overflow: hidden;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .admin-charts {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    grid-template-columns: 1fr;
  }

  .admin-table {
    font-size: var(--text-xs);
  }

  .admin-table th,
  .admin-table td {
    padding: var(--space-3);
  }

  .page-hero {
    padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
  }

  .page-hero h1 {
    font-size: var(--text-3xl);
  }

  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .db-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .db-tools-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .upload-db-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .upload-db-form input[type="file"] {
    max-width: none;
  }

  .image-previews {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-wrapper {
    padding-bottom: 70%;
  }

  .login-card {
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
  }
}


/* -----------------------------------------------------------------
   26. RESPONSIVE — SMALL MOBILE (≤480px)
   ----------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --text-6xl: 2rem;
    --text-5xl: 1.875rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .hero-content h1 {
    font-size: var(--text-3xl);
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

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

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

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: var(--space-2);
  }

  .filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

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

  .gallery-thumbs {
    gap: var(--space-2);
  }

  .gallery-thumb {
    width: 56px;
    height: 42px;
  }
}


/* -----------------------------------------------------------------
   27. PRINT STYLES
   ----------------------------------------------------------------- */
@media print {

  .site-header,
  .site-footer,
  .whatsapp-fab,
  .hamburger-btn,
  .mobile-drawer,
  .mobile-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
  }
}