/* ==========================================================================
   URBAN MITTI — BRAND BRAND STYLE SYSTEM
   Luxurious Sage & Forest Green Theme (#197, #188, #175)
   Tactile Sandy Clay Neutral Accent (rgb(185, 168, 153))
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Luxury Earthy Green Brand Hues */
  --primary-sage: #1a9775;        /* Sage / Mint Accent (#197) */
  --primary-forest: #118888;      /* Deep Forest Teal (#188) */
  --primary-emerald: #117755;     /* Dark Earthy Emerald (#175) */
  --neutral-clay: rgb(185, 168, 153); /* Warm tactile sand clay taupe */
  
  /* Natural base background & neutral tones */
  --cream: #fbfaf7;
  --ivory: #faf8f5;
  --sand-light: #f3efe9;
  --sand-medium: #e8e1d7;
  --sand-dark: #d2c5b4;
  --charcoal: #1e2522;            /* Luxurious dark pine charcoal */
  --white: #ffffff;
  --black: #0f1311;
  
  /* Accent states */
  --success: #2e7d32;
  --error: #c62828;
  --info: #1565c0;
  
  /* Typography & Text */
  --text-primary: #1e2522;
  --text-secondary: #4a5450;
  --text-muted: #85918c;
  
  /* Borders, Shadows & Radii */
  --border-light: rgba(185, 168, 153, 0.25);
  --border-medium: rgba(185, 168, 153, 0.5);
  --shadow-sm: 0 4px 12px rgba(30, 37, 34, 0.03);
  --shadow-md: 0 12px 32px rgba(30, 37, 34, 0.06);
  --shadow-lg: 0 24px 64px rgba(30, 37, 34, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Premium Apple/Tesla inspired kinetic easing curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Transition speeds */
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-medium: 0.5s var(--ease-out-expo);
  --transition-slow: 0.85s var(--ease-out-expo);
  --transition-elastic: 0.6s var(--ease-out-back);

  --font-display: 'Cormorant Garamond', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: var(--transition-medium);
  --transition-slow-legacy: 0.65s cubic-bezier(0.25, 1, 0.5, 1); /* maintain compatibility */
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: var(--font-body); outline: none; }
button { cursor: pointer; background: none; border: none; }

/* Custom elegant scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--neutral-clay);
  border-radius: var(--radius-full);
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-sage);
}

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

/* ==========================================================================
   CINEMATIC BRAND LOGO LOADING SCREEN
   ========================================================================== */

#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.loader-logo-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}

/* Elegant spinning progress ring surrounding the circular image */
.loader-logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 236px;
  height: 236px;
  border-radius: 50%;
  border: 1.5px dashed var(--primary-sage);
  pointer-events: none;
  animation: spinProgress 10s linear infinite;
  box-sizing: border-box;
}

/* Premium high-resolution circular image loader styles */
.loader-logo-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: logoEntry 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards, logoGlow 4s ease-in-out infinite 1.6s;
  will-change: transform, opacity, filter;
  border: 3px solid rgba(251, 250, 247, 0.05); /* very soft cream border to contain the image nicely */
}

/* 1. Scale-in, Blur fade-in & Brightness reveal */
@keyframes logoEntry {
  0% {
    transform: scale(0.8);
    opacity: 0;
    filter: blur(15px) brightness(0.6);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}

/* 2. Organic breathing glow */
@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(26, 151, 117, 0.15);
    filter: drop-shadow(0 4px 16px rgba(185, 168, 153, 0.15));
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(26, 151, 117, 0.3);
    filter: drop-shadow(0 8px 32px rgba(185, 168, 153, 0.3));
  }
}

/* 3. Smooth continuous dash rotation */
@keyframes spinProgress {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive adjustment for clean, unclipped mobile viewports */
@media (max-width: 576px) {
  .loader-logo-container {
    width: 210px;
    height: 210px;
  }
  .loader-logo-img {
    width: 180px;
    height: 180px;
  }
  .loader-logo-ring {
    width: 194px;
    height: 194px;
  }
}


/* ==========================================================================
   ANNOUNCEMENT BAR & NAVIGATION
   ========================================================================== */

.announcement-bar {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 11px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  overflow: hidden;
}

.announcement-scroll {
  display: inline-flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition), background var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(251, 250, 247, 0.95);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-transform: uppercase;
  cursor: pointer;
}

.logo span {
  color: var(--primary-sage);
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: lowercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease-out-expo), 
              transform 0.3s var(--ease-out-expo);
  cursor: pointer;
  display: inline-block;
  will-change: transform;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary-sage);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--primary-sage);
}

.nav-link:active {
  transform: scale(0.95);
}

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

.nav-link.active {
  color: var(--charcoal);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: transform 0.4s var(--ease-out-expo), 
              background 0.4s var(--ease-out-expo), 
              color 0.4s var(--ease-out-expo);
  position: relative;
  will-change: transform;
}

.icon-btn:hover {
  background: var(--sand-light);
  color: var(--primary-sage);
  transform: scale(1.12);
}

.icon-btn:active {
  transform: scale(0.92);
  transition: transform 0.1s var(--ease-out-expo);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary-sage);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.5s var(--ease-out-back);
}

@keyframes badgeBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.cart-badge.bump {
  animation: badgeBump 0.45s var(--ease-elastic);
}

.cart-badge.visible {
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.hamburger:hover {
  background: var(--sand-light);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  padding: 120px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav .nav-link {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(251, 250, 247, 0.08);
  width: 100%;
  display: block;
}

.mobile-nav .nav-link:hover {
  color: var(--primary-sage);
  padding-left: 12px;
}

.mobile-nav .nav-link::after {
  display: none;
}

@media (max-width: 768px) {
  header {
    display: none !important;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================================
   PAGE MANAGEMENT & LAYOUT SECTION RULES
   ========================================================================== */

.page {
  display: none;
  opacity: 0;
}

.page.active {
  display: block;
  animation: pageFadeIn 0.85s var(--ease-out-expo) forwards;
  will-change: transform, opacity, filter;
}

@keyframes pageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-sm {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .section-sm { padding: 40px 20px; }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-sage);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-sage);
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 32px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.975);
  filter: blur(8px);
  transition: opacity 1.2s var(--ease-out-expo), 
              transform 1.2s var(--ease-out-expo), 
              filter 1.2s var(--ease-out-expo);
  will-change: transform, opacity, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease-out-expo), 
              background 0.4s var(--ease-out-expo), 
              border-color 0.4s var(--ease-out-expo), 
              box-shadow 0.4s var(--ease-out-expo), 
              color 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn:hover {
  transform: translateY(-4px) scale(1.025);
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
  transition: transform 0.1s var(--ease-out-expo);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--primary-sage);
  border-color: var(--primary-sage);
  box-shadow: 0 12px 30px rgba(26, 151, 117, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(30, 37, 34, 0.15);
}

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

.btn-sage:hover {
  background: var(--primary-emerald);
  border-color: var(--primary-emerald);
  box-shadow: 0 12px 30px rgba(17, 119, 85, 0.35);
}

.btn-sm { padding: 11px 24px; font-size: 0.72rem; }
.btn-xs { padding: 8px 18px; font-size: 0.68rem; letter-spacing: 1.5px; }
.btn-wide { padding-left: 52px; padding-right: 52px; }
.btn-full { width: 100%; justify-content: center; }

/* ==========================================================================
   HERO CAROUSEL / SLIDER
   ========================================================================== */

.hero-carousel {
  height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.carousel-inner {
  height: 100%;
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 40px;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(26, 151, 117, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.carousel-slide:nth-child(2)::before {
  background: radial-gradient(circle at 75% 40%, rgba(17, 136, 136, 0.16), transparent 60%);
}

.carousel-slide:nth-child(3)::before {
  background: radial-gradient(circle at 75% 40%, rgba(17, 119, 85, 0.16), transparent 60%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.slide-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slide-content {
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 151, 117, 0.15);
  border: 1px solid rgba(26, 151, 117, 0.3);
  color: var(--neutral-clay);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.slide-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-sage);
  border-radius: 50%;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}

.slide-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-sage);
}

.slide-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(251, 250, 247, 0.7);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}

.carousel-slide.active .slide-visual {
  opacity: 1;
  transform: scale(1);
}

.hero-product-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-tag {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.hero-price {
  font-size: 1.15rem;
  color: var(--neutral-clay);
  font-weight: 400;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(251, 250, 247, 0.05);
  border: 1px solid rgba(251, 250, 247, 0.1);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  z-index: 10;
}

.carousel-control:hover {
  background: var(--primary-sage);
  border-color: var(--primary-sage);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 40px; }
.carousel-next { right: 40px; }

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: rgba(251, 250, 247, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  width: 24px;
  background: var(--primary-sage);
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .hero-carousel { height: auto; min-height: 600px; }
  .carousel-slide { padding: 80px 20px 60px; }
  .slide-grid { grid-template-columns: 1fr; gap: 40px; }
  .slide-visual { display: none; }
  .carousel-control { display: none; }
}

/* ==========================================================================
   FLOATING QUICK NAVIGATION CORNER BUTTON
   ========================================================================== */

#quick-nav-corner {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.quick-nav-trigger {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-emerald));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 32px rgba(17, 119, 85, 0.4);
  transition: transform 0.5s var(--ease-out-back), 
              background 0.4s var(--ease-out-expo), 
              box-shadow 0.4s var(--ease-out-expo);
  pointer-events: auto;
  will-change: transform;
}

.quick-nav-trigger:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 12px 40px rgba(17, 119, 85, 0.5);
}

.quick-nav-trigger:active {
  transform: scale(0.92) rotate(10deg);
}

.quick-nav-trigger.active {
  transform: rotate(135deg);
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
}

.quick-nav-trigger.active:hover {
  transform: scale(1.1) rotate(150deg);
}

.quick-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.85);
  transition: opacity 0.45s var(--ease-out-expo), 
              transform 0.45s var(--ease-out-back),
              visibility 0.45s var(--ease-out-expo);
  will-change: transform, opacity;
}

.quick-nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quick-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: transform 0.4s var(--ease-out-expo), 
              background 0.4s var(--ease-out-expo), 
              color 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  cursor: pointer;
  will-change: transform;
}

.quick-nav-item:hover {
  background: var(--primary-sage);
  color: var(--white);
  transform: translateX(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.quick-nav-item:active {
  transform: translateX(-2px) scale(0.97);
  transition: transform 0.1s var(--ease-out-expo);
}

.quick-nav-item i {
  font-size: 0.85rem;
  width: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  #quick-nav-corner { bottom: 24px; right: 24px; }
  .quick-nav-trigger { width: 52px; height: 52px; font-size: 1.15rem; }
}

/* ==========================================================================
   MARQUEE STRIP
   ========================================================================== */

.marquee-strip {
  background: var(--charcoal);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-sage);
  border-radius: 50%;
}

/* ==========================================================================
   PRODUCT CARDS & GRIDS
   ========================================================================== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out-expo), 
              box-shadow 0.5s var(--ease-out-expo);
  cursor: pointer;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(30, 37, 34, 0.12);
}

.product-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out-expo);
  will-change: transform;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 37, 34, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-quick-view {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius-full);
  padding: 11px 24px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transform: translateY(16px) scale(0.9);
  transition: transform 0.5s var(--ease-out-back), 
              background 0.3s var(--ease-out-expo), 
              color 0.3s var(--ease-out-expo);
}

.product-card:hover .product-quick-view {
  transform: translateY(0) scale(1);
}

.product-quick-view:hover {
  background: var(--primary-sage);
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-sage);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 3;
}

.product-badge.featured {
  background: var(--charcoal);
}

.product-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 3;
}

.product-wishlist:hover,
.product-wishlist.active {
  color: var(--error);
  background: var(--white);
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

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

.product-stars {
  font-size: 0.7rem;
  color: var(--neutral-clay);
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.product-add-btn {
  width: 38px;
  height: 38px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.product-add-btn:hover {
  background: var(--primary-sage);
  transform: scale(1.05);
}

/* ==========================================================================
   ABOUT / HERITAGE
   ========================================================================== */

.about-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #151a18 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 151, 117, 0.12), transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sand-medium), var(--sand-light));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-content {
  color: var(--cream);
}

.about-content .section-label {
  color: var(--neutral-clay);
}

.about-content .section-title {
  color: var(--cream);
}

.about-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(251, 250, 247, 0.75);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(251, 250, 247, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 250, 247, 0.05);
  transition: all var(--transition);
}

.about-feature:hover {
  background: rgba(251, 250, 247, 0.06);
  transform: translateX(6px);
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(26, 151, 117, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-sage);
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 0.78rem;
  color: rgba(251, 250, 247, 0.5);
  font-weight: 300;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */

.reviews-section {
  background: var(--sand-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--primary-sage);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 600;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-verified {
  font-size: 0.65rem;
  color: var(--success);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   NEWSLETTER & FOOTER
   ========================================================================== */

.newsletter-section {
  background: var(--charcoal);
  text-align: center;
  padding: 100px 40px;
  position: relative;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.newsletter-sub {
  color: rgba(251, 250, 247, 0.6);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 24px;
  background: rgba(251, 250, 247, 0.05);
  border: 1px solid rgba(251, 250, 247, 0.15);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-size: 0.9rem;
  transition: border var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(251, 250, 247, 0.3);
}

.newsletter-form input:focus {
  border-color: var(--primary-sage);
  background: rgba(251, 250, 247, 0.08);
}

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

footer {
  background: var(--black);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(251, 250, 247, 0.5);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(251, 250, 247, 0.04);
  border: 1px solid rgba(251, 250, 247, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 247, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(251, 250, 247, 0.5);
  cursor: pointer;
}

.footer-col li a:hover {
  color: var(--primary-sage);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 250, 247, 0.05);
  padding: 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(251, 250, 247, 0.3);
  font-weight: 300;
}

.footer-payments {
  display: flex;
  gap: 8px;
}

.payment-badge {
  background: rgba(251, 250, 247, 0.03);
  border: 1px solid rgba(251, 250, 247, 0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.65rem;
  color: rgba(251, 250, 247, 0.45);
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 20px; }
}

@media (max-width: 500px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 24px 20px; }
}

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

.detail-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 110px;
}

.detail-main-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbs {
  display: flex;
  gap: 12px;
}

.detail-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
}

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

.detail-thumb.active,
.detail-thumb:hover {
  border-color: var(--primary-sage);
}

.detail-info {
  padding-top: 8px;
}

.detail-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-breadcrumb span:hover {
  color: var(--primary-sage);
  cursor: pointer;
}

.detail-badge {
  display: inline-block;
  background: var(--primary-sage);
  color: white;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.detail-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.detail-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.detail-stars-rating {
  color: var(--primary-sage);
  letter-spacing: 2.5px;
}

.detail-stars-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.detail-desc {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.detail-divider {
  height: 1px;
  background: var(--border-light);
  margin: 28px 0;
}

.qty-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--sand-light);
}

.qty-num {
  width: 50px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  border-left: 1.5px solid var(--border-light);
  border-right: 1.5px solid var(--border-light);
  padding: 8px 0;
}

.detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-meta-item {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.detail-meta-item strong {
  color: var(--charcoal);
  min-width: 120px;
  font-weight: 600;
}

.related-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

@media (max-width: 900px) {
  .detail-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .detail-gallery { position: static; }
  .related-section { padding: 0 20px 80px; }
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 19, 17, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), 
              visibility 0.5s var(--ease-out-expo);
  will-change: opacity, visibility;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: var(--ivory);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 48px rgba(15, 19, 17, 0.18);
  will-change: transform;
}

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

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

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1rem;
  transition: all var(--transition);
}

.cart-close-btn:hover {
  background: var(--primary-sage);
  color: white;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-medium);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
}

.cart-qty-btn:hover {
  background: var(--sand-light);
}

.cart-item-qty span {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
  align-self: flex-start;
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-footer {
  padding: 28px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}

.cart-subtotal,
.cart-shipping {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.checkout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.checkout-form-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border var(--transition);
}

.form-control:focus {
  border-color: var(--primary-sage);
}

.form-section-title {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.payment-method {
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--white);
}

.payment-method.selected {
  border-color: var(--primary-sage);
  background: var(--cream);
}

.payment-method input[type="radio"] {
  accent-color: var(--primary-sage);
  width: 16px;
  height: 16px;
}

.payment-method label {
  font-size: 0.95rem;
  flex: 1;
  cursor: pointer;
  font-weight: 500;
  color: var(--charcoal);
}

.payment-method-icon {
  font-size: 1.35rem;
}

.order-summary-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-md);
}

.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-item-img {
  width: 60px;
  height: 60px;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.order-item-qty {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.order-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: auto;
  color: var(--charcoal);
}

.order-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.order-total-row.grand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .checkout-wrap { grid-template-columns: 1fr; padding: 40px 20px; }
  .order-summary-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   AUTHENTICATION & SECURITY
   ========================================================================== */

.auth-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--ivory) 100%);
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo .logo {
  font-size: 2rem;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 10px;
}

.auth-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.otp-inputs-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 32px;
}

.otp-input-box {
  width: 52px;
  height: 56px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
}

.otp-input-box:focus {
  border-color: var(--primary-sage);
  background: var(--white);
}

.auth-toggle {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.auth-toggle a {
  color: var(--primary-sage);
  font-weight: 600;
  cursor: pointer;
}

/* ==========================================================================
   USER DASHBOARD
   ========================================================================== */

.dashboard-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}

.dashboard-sidebar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.dash-user {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.dash-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 16px;
  color: white;
  box-shadow: var(--shadow-md);
}

.dash-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.dash-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.dash-nav-item:hover,
.dash-nav-item.active {
  background: var(--sand-light);
  color: var(--charcoal);
}

.dash-nav-item.active {
  font-weight: 600;
  background: var(--sand-medium);
}

.dashboard-main h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.dash-stat {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.dash-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 4px;
}

.dash-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.orders-table {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.orders-table th {
  background: var(--sand-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding: 16px 24px;
  text-align: left;
}

.orders-table td {
  padding: 18px 24px;
  font-size: 0.88rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.order-status {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}

.order-status.delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.order-status.shipped {
  background: #e3f2fd;
  color: #1565c0;
}

.order-status.processing {
  background: #fff8e1;
  color: #f57f17;
}

@media (max-width: 900px) {
  .dashboard-wrap { grid-template-columns: 1fr; padding: 40px 20px; }
  .dash-stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CATEGORY CHIPS & OFFER BANNER
   ========================================================================== */

.categories-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: -16px;
  scrollbar-width: none;
}

.categories-row::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.category-chip:hover {
  background: var(--sand-light);
  border-color: var(--primary-sage);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-chip-icon {
  font-size: 2.25rem;
}

.category-chip-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}

.offer-banner {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-emerald) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--cream);
}

.offer-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.offer-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.offer-text p {
  color: rgba(251, 250, 247, 0.8);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .offer-banner { flex-direction: column; text-align: center; padding: 40px; }
  .offer-text p { margin: 0 auto; }
}

/* ==========================================================================
   TOAST NOTIFICATION STYLES
   ========================================================================== */

#toast-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.toast {
  background: var(--charcoal);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--primary-sage);
  max-width: 380px;
  pointer-events: auto;
}

.toast.removing {
  animation: toastOut 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes toastIn {
  from { transform: translateX(100%) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toastOut {
  to { transform: translateX(120%) scale(0.9); opacity: 0; }
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

#backToTop {
  position: fixed;
  bottom: 36px;
  left: 36px;
  width: 50px;
  height: 50px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition);
  z-index: 998;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--primary-sage);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  #backToTop { display: none; }
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag {
  background: var(--cream);
  border: 1px solid var(--border-light);
  color: var(--primary-sage);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.mt-16 { margin-top: 16px; }

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

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION STYLES
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-light);
  display: none; /* Hidden by default, shown only on mobile query */
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(30, 37, 34, 0.05);
}

.mobile-bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 20%;
  height: 100%;
  gap: 4px;
  transition: color var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
}

.mobile-bottom-link i {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.mobile-bottom-link:hover,
.mobile-bottom-link.active {
  color: var(--primary-sage);
}

.mobile-bottom-link.active i {
  transform: scale(1.1) translateY(-1px);
}

/* Badge pops inside bottom navigation */
.mobile-bottom-link .cart-badge {
  position: absolute;
  top: -4px;
  right: -10px;
  transform: scale(0);
}

.mobile-bottom-link .cart-badge.visible {
  transform: scale(1);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

/* ==========================================================================
   BADGE POP ANIMATIONS
   ========================================================================== */
.pop-badge {
  animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   ADMIN PORTAL STYLES
   ========================================================================== */
.admin-header {
  background: var(--sand-light);
  padding: 60px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.admin-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 40px;
  min-height: 700px;
}

/* Sidebar navigation */
.admin-sidebar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.admin-sidebar-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.admin-avatar {
  width: 64px;
  height: 64px;
  background: var(--sand-light);
  color: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  border: 1px solid var(--border-medium);
}

.admin-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

.admin-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
}

.admin-nav-item:hover {
  background: var(--sand-light);
  color: var(--primary-sage);
  padding-left: 22px;
}

.admin-nav-item.active {
  background: var(--primary-sage);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(26, 151, 117, 0.2);
}

/* Content Area */
.admin-main {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  min-height: 600px;
}

.admin-tab-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-weight: 400;
  border-bottom: 1.5px solid var(--border-light);
  padding-bottom: 12px;
}

/* Statistics Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: var(--sand-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-sage);
}

.admin-stat-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary-sage);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.admin-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Interactive Growth Chart Visuals */
.admin-chart-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.chart-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
}

.chart-legend {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-chart-visual {
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-bottom: 1.5px solid var(--border-medium);
  padding-bottom: 8px;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  max-width: 44px;
  background: var(--sand-medium);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all 0.6s var(--transition);
  cursor: pointer;
}

.chart-bar:hover,
.chart-bar.active {
  background: var(--primary-sage);
}

.chart-bar-wrap span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Split Form/List Grid */
.admin-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.admin-form-container {
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.admin-list-container {
  min-width: 0;
}

.admin-search-box {
  margin-bottom: 20px;
}

/* Form checkboxes */
.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-sage);
  width: 16px;
  height: 16px;
}

/* Tables styling */
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.admin-table-wrap th {
  background: var(--sand-light);
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.admin-table-wrap tbody tr:hover {
  background: rgba(26, 151, 117, 0.02);
}

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

/* Table image cell */
.admin-img-cell {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sand-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.admin-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Action button configurations */
.admin-btn-edit {
  color: var(--info);
  margin-right: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-btn-delete {
  color: var(--error);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-btn-status {
  padding: 6px 12px;
  font-size: 0.72rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* Order Details Modal Overlay */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 37, 34, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal-overlay.open {
  display: flex;
}

.admin-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: pageFadeIn 0.4s var(--transition) forwards;
}

.admin-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
}

.modal-close-btn {
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary-sage);
}

.admin-modal-body {
  padding: 32px;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.modal-meta-item p:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-meta-item p:last-child {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Responsive queries for Admin */
@media (max-width: 1024px) {
  .admin-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 20px auto;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .admin-main {
    padding: 24px;
  }
  .admin-split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .admin-header {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   SHOP CATALOGUE PAGE STYLES
   ========================================================================== */
.shop-header {
  background: var(--sand-light);
  padding: 60px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.shop-controls {
  max-width: 1400px;
  margin: 40px auto 20px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.shop-search-container {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.shop-search-wrap {
  position: relative;
  flex: 1;
}

.shop-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.shop-search {
  width: 100%;
  padding: 13px 20px 13px 46px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  border-radius: var(--radius-full);
  color: var(--charcoal);
  font-size: 0.85rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.shop-search:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 3px rgba(26, 151, 117, 0.1);
}

.shop-search-btn {
  padding: 12px 28px;
  font-size: 0.75rem;
  height: 44px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: all var(--transition);
}

/* Suggestions Dropdown List */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow-y: auto;
  z-index: 1000;
  padding: 8px 0;
}

/* Custom Scrollbar for suggestions */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}
.search-suggestions::-webkit-scrollbar-track {
  background: transparent;
}
.search-suggestions::-webkit-scrollbar-thumb {
  background: var(--sand-medium);
  border-radius: var(--radius-full);
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: var(--sand-light);
}

.suggestion-item-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  font-size: 1.15rem;
  flex-shrink: 0;
  overflow: hidden;
}

.suggestion-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-item-info {
  flex: 1;
  min-width: 0;
}

.suggestion-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-item-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.suggestion-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-sage);
  flex-shrink: 0;
}

.suggestion-no-results {
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 24px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.filter-pill:hover {
  border-color: var(--primary-sage);
  color: var(--primary-sage);
}

.filter-pill.active {
  background: var(--primary-sage);
  color: var(--white);
  border-color: var(--primary-sage);
  box-shadow: 0 4px 12px rgba(26, 151, 117, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px;
  max-width: 1400px;
  margin: 20px auto 80px;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .shop-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 18px;
  }
  .shop-search-container {
    max-width: 100%;
  }
  .filter-pills {
    justify-content: center;
  }
  .products-grid {
    padding: 0 20px;
    margin-bottom: 60px;
    gap: 24px;
  }
  .shop-header {
    padding: 40px 20px;
  }
}
