@charset "UTF-8";

/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM TOKENS
   ========================================================================== */
:root {
  --ink: #14170F;
  --grove: #232F1D;
  --grove-deep: #171F13;
  --silverleaf: #A9B29A;
  --limewash: #F1EEE3;
  --limewash-dim: #E7E2D2;
  --press: #C3D34A;
  --press-deep: #9FB02E;
  --clay: #8C7355;
  --white: #FFFDF8;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 7rem;

  --container-max: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --ease-grove: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   2. GLOBAL RESETS & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--limewash);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

p { margin: 0 0 var(--sp-4); }

:focus-visible {
  outline: 2px solid var(--press-deep);
  outline-offset: 3px;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

::selection {
  background: var(--press);
  color: var(--ink);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--sp-5);
  }
}

/* ==========================================================================
   3. COMPONENTS & BUTTONS
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--press-deep);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

section.on-dark .eyebrow {
  color: var(--press);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9em 1.6em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-grove), background-color 0.25s var(--ease-grove), color 0.25s var(--ease-grove), border-color 0.25s var(--ease-grove);
}

.btn-primary {
  background: var(--press);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--press-deep);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--limewash);
}

section.on-dark .btn-outline {
  color: var(--limewash);
}

section.on-dark .btn-outline:hover {
  background: var(--limewash);
  color: var(--grove);
}

.btn-block { width: 100%; }
.btn-sm { padding: 0.5em 1.1em; font-size: 0.82rem; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.search-input {
  padding: 0.6em 1em;
  border: 1px solid rgba(20, 23, 15, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
}

.search-input:focus {
  border-color: var(--press-deep);
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}

.badge-stock-low { background: #F3DCD6; color: #6B2A1B; }
.badge-stock-ok { background: #E5EEC6; color: #3C4A1B; }

.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-5);
  font-size: 0.92rem;
}

.alert-success { background: #E5EEC6; color: #3C4A1B; border: 1px solid #C3D34A; }
.alert-error { background: #F3DCD6; color: #6B2A1B; border: 1px solid #C97557; }

/* ==========================================================================
   4. ANNOUNCEMENT BAR & HEADER NAVIGATION
   ========================================================================== */
.announcement-bar {
  background: var(--grove-deep);
  color: var(--silverleaf);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.announcement-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.55em var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.announcement-bar__items {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.announcement-bar__items::-webkit-scrollbar { display: none; }

.announcement-bar__items li {
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  position: relative;
  padding-left: var(--sp-5);
}

.announcement-bar__items li:first-child { padding-left: 0; }

.announcement-bar__items li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: calc(var(--sp-5) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.announcement-bar__icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.announcement-bar__tagline {
  display: flex;
  align-items: center;
  gap: 0.45em;
  white-space: nowrap;
  color: var(--press);
  font-family: var(--font-display);
  font-style: italic;
  flex-shrink: 0;
}

.announcement-bar__tagline svg { width: 13px; height: 13px; }

@media (max-width: 760px) {
  .announcement-bar__tagline { display: none; }
}

/* Header Container */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(241, 238, 227, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(20, 23, 15, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Add Breathing Room on Right Side of Header */
/* Fix Navbar Flex Layout & Prevent Wrapping */
.navbar-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  height: 84px;
  padding-right: 1.5rem !important;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem !important; /* Slightly tighter gap to preserve space */
  flex-shrink: 1;
}




.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  overflow: visible;
  padding-left: 0.5rem;
}

.logo__img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-right: -18px;
  transform: translateY(10px);
}

.logo__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--press-deep);
  flex-shrink: 0;
}

.nav-rule {
  flex: 1 1 auto;
  max-width: 90px;
  height: 1px;
  background: rgba(20, 23, 15, 0.18);
  margin: 0 var(--sp-5);
}

.navbar-spacer { flex: 1 1 auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-shrink: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) 0;
  position: relative;
  color: var(--ink);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--press-deep);
  transition: right 0.3s var(--ease-grove);
}

.nav-link:hover::after { right: 0; }
.nav-link.active, .nav-link:hover { color: var(--press-deep); }

.nav-link__caret {
  width: 11px;
  height: 11px;
  margin-left: 0.3em;
  vertical-align: -1px;
  transition: transform 0.25s var(--ease-grove);
}

.has-megamenu.is-open .nav-link__caret,
.has-megamenu:hover .nav-link__caret {
  transform: rotate(180deg);
}

.has-megamenu.is-open .nav-link,
.has-megamenu:hover .nav-link {
  color: var(--press-deep);
}

/* Nav Actions (Search, Account, Cart) */
.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-shrink: 0 !important; /* Stops Search/Account/Cart from dropping down */
  margin-left: auto;
  margin-right: 0.5rem;
}
.nav-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  position: relative;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.nav-actions__btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

.nav-actions__btn:hover { color: var(--press-deep); }

.nav-actions__label { display: inline; }

@media (max-width: 1180px) {
  .nav-actions__label { display: none; }
}

.cart-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: var(--ink);
  transition: color 0.2s ease;
}

.cart-icon-btn:hover { color: var(--press-deep); }

.cart-badge {
  position: absolute;
  top: -7px;
  left: 13px;
  right: auto;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--press-deep);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdowns & Search Panel */
.has-dropdown {
  padding-bottom: var(--sp-4);
  margin-bottom: calc(-1 * var(--sp-4));
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--sp-4));
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 200px;
  background: var(--grove-deep);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) 0;
  box-shadow: 0 24px 48px -16px rgba(20, 23, 15, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 50;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 0.6em var(--sp-5);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--silverleaf);
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown a.is-current { color: var(--press); }
.nav-dropdown a.is-current::before { content: "• "; }

/* ==========================================================================
   FULL-WIDTH TOP SEARCH OVERLAY
   ========================================================================== */
/* ==========================================================================
   FULL-WIDTH TOP SEARCH OVERLAY
   ========================================================================== */
.nav-search {
  position: static; /* Allows fixed panel to span whole viewport width */
}

/* Fixed Top Bar Overlay */
.nav-search__panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: 84px; /* Matches header height */
  background: var(--white);
  border-bottom: 1px solid rgba(20, 23, 15, 0.1);
  box-shadow: 0 10px 30px rgba(20, 23, 15, 0.08);
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease-grove), opacity 0.3s ease, visibility 0.3s;
}

/* Active State - Drops down smoothly */
.nav-search__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Form Container Inside Top Bar */
.nav-search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  border: none;
  padding: 0;
  background: transparent;
}

.nav-search__form svg {
  width: 20px;
  height: 20px;
  color: var(--clay);
  flex-shrink: 0;
}

.nav-search__form input {
  border: none;
  outline: none;
  flex: 1;
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: transparent;
  color: var(--ink);
  padding: 0.5rem 0;
}

.nav-search__form input::placeholder {
  color: var(--clay);
  opacity: 0.7;
}

/* Close Button (X) */
.nav-search__close {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.nav-search__close:hover {
  color: var(--press-deep);
}

/* Search Dropdown Live Results (Below Top Bar) */
.nav-search__results {
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(20, 23, 15, 0.1);
  box-shadow: 0 15px 30px rgba(20, 23, 15, 0.1);
  max-height: 400px;
  padding: var(--sp-4) var(--sp-6);
  overflow-y: auto;
}

.nav-search__result {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.5em;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.nav-search__result:hover { 
  background: var(--limewash); 
}

.nav-search__result img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--limewash-dim);
  flex-shrink: 0;
}

.nav-search__result-info { 
  flex: 1; 
  min-width: 0; 
}

.nav-search__result-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search__result-price {
  font-size: 0.78rem;
  color: var(--clay);
  font-family: var(--font-mono);
}

.nav-search__empty, 
.nav-search__hint {
  font-size: 0.82rem;
  color: var(--clay);
  padding: var(--sp-3) 0.5em;
  text-align: center;
}

.nav-search__viewall {
  display: block;
  text-align: center;
  margin-top: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(20, 23, 15, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--press-deep);
}
/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 32px 64px -20px rgba(20, 23, 15, 0.35);
  border-top: 1px solid rgba(20, 23, 15, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-grove), visibility 0.2s;
  z-index: 45;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-7);
  align-items: flex-start;
}

.mega-menu__columns { display: grid; gap: var(--sp-6); flex: 1; min-width: 0; }
.mega-menu__columns--4 { grid-template-columns: repeat(4, 1fr); }
.mega-menu__columns--3 { grid-template-columns: repeat(3, 1fr); }
.mega-menu__columns--2 { grid-template-columns: repeat(2, 1fr); }
.mega-menu__columns--1 { grid-template-columns: 1fr; }

.mega-menu__col-head {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(20, 23, 15, 0.08);
}

.mega-menu__col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--limewash-dim);
  color: var(--press-deep);
  flex-shrink: 0;
}

.mega-menu__col-icon svg { width: 15px; height: 15px; }

.mega-menu__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.mega-menu__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.mega-menu__col-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.5em 0.4em;
  font-size: 0.87rem;
  color: #4a4f3f;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease, padding-left 0.15s ease;
}

.mega-menu__col-list a:hover {
  color: var(--press-deep);
  background: var(--limewash);
  padding-left: 0.7em;
}

.mega-menu__chev {
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.mega-menu__col-list a:hover .mega-menu__chev {
  opacity: 0.55;
  transform: translateX(0);
}

.mega-menu__col-list li.is-view-all a {
  font-weight: 600;
  color: var(--press-deep);
  margin-top: 0.3em;
  padding-top: 0.7em;
  border-top: 1px dashed rgba(20, 23, 15, 0.12);
}

.mega-menu__col-list--tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--sp-3);
}

.mega-menu__col-list--tags a { justify-content: flex-start; }

.mega-menu__tag-icon { display: inline-flex; color: var(--press-deep); flex-shrink: 0; }
.mega-menu__tag-icon svg { width: 13px; height: 13px; }

.mega-menu__help {
  display: block;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--limewash);
  border-radius: var(--radius-md);
  text-align: center;
}

.mega-menu__help strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.2em;
}

.mega-menu__help span { display: block; font-size: 0.8rem; color: #6b7060; }

.mega-menu__help-cta {
  display: inline-block !important;
  margin-top: 0.6em;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--press-deep) !important;
}

.mega-menu__promo {
  display: block;
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background-color: var(--limewash-dim);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.mega-menu__promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 15, 0) 30%, rgba(20, 23, 15, 0.6) 100%);
}

.mega-menu__promo-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-2);
}

.mega-menu__promo-content h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.mega-menu__promo-content p {
  font-size: 0.85rem;
  color: var(--silverleaf);
  margin: 0 0 var(--sp-2);
}

.mega-menu__promo-content .btn {
  align-self: flex-start;
  padding: 0.7em 1.3em;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mega-menu__trust {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--limewash);
  border-top: 1px solid rgba(20, 23, 15, 0.08);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
}

.mega-menu__trust-item { display: flex; align-items: center; gap: 0.6em; flex: 1; }
.mega-menu__trust-icon { display: inline-flex; color: var(--press-deep); flex-shrink: 0; }
.mega-menu__trust-icon svg { width: 20px; height: 20px; }
.mega-menu__trust-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.mega-menu__trust-item span { display: block; font-size: 0.7rem; color: #6b7060; }

@media (max-width: 1100px) {
  .mega-menu__promo { display: none; }
}

/* Mobile Toggle & Mobile Drawer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: background-color 0.3s ease;
}

@media (max-width: 860px) {
  .main-nav, .nav-rule, .navbar-spacer { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-drawer-backdrop, .cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 15, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}

.mobile-drawer-backdrop.is-open, .cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--grove-deep);
  color: var(--limewash);
  z-index: 61;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-grove);
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5);
}

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

.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-7);
}

.mobile-drawer__head .logo { color: var(--white); }
.mobile-drawer__head .logo em { color: var(--press); }

.mobile-drawer__head button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-drawer__search {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer__search form {
  display: flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.7em 0.9em;
}

.mobile-drawer__search svg {
  width: 16px;
  height: 16px;
  color: var(--silverleaf);
  flex-shrink: 0;
}

.mobile-drawer__search input {
  border: none;
  background: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
  flex: 1;
}

.mobile-drawer__search input::placeholder { color: var(--silverleaf); }

.mobile-drawer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}

.mobile-drawer__links a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
}

.mobile-drawer__mega { margin-top: var(--sp-3); }

.mobile-drawer__group { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.mobile-drawer__group summary {
  cursor: pointer;
  list-style: none;
  padding: 0.7em 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silverleaf);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer__group summary::-webkit-details-marker { display: none; }
.mobile-drawer__group summary::marker { content: ""; }
.mobile-drawer__group summary::after { content: "+"; font-size: 1rem; }
.mobile-drawer__group[open] summary::after { content: "–"; }

.mobile-drawer__sublinks {
  list-style: none;
  margin: var(--sp-3) 0 0;
  padding: 0 0 0 var(--sp-4);
  display: grid;
  gap: var(--sp-3);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-drawer__sublinks a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--silverleaf);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-drawer__foot {
  margin-top: auto;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-drawer__foot a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   5. HEADER TRANSPARENT & SCROLL STATES
   ========================================================================== */
.site-header--transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background-color 0.4s var(--ease-grove), backdrop-filter 0.4s var(--ease-grove), border-color 0.4s var(--ease-grove);
}

.site-header--transparent .logo,
.site-header--transparent .nav-link,
.site-header--transparent .cart-icon-btn,
.site-header--transparent .nav-actions__btn {
  color: var(--white);
}

.site-header--transparent .nav-actions__btn svg {
  stroke: var(--white);
}

.site-header--transparent .logo__dot { background: var(--press); }
.site-header--transparent .nav-toggle span { background: var(--white); }

/* On Scroll (Light Beige Limewash Solidification) */
.site-header.is-scrolled,
.site-header--transparent.is-scrolled {
  position: sticky;
  background: rgba(241, 238, 227, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(20, 23, 15, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .cart-icon-btn,
.site-header.is-scrolled .nav-actions__btn,
.site-header--transparent.is-scrolled .logo,
.site-header--transparent.is-scrolled .nav-link,
.site-header--transparent.is-scrolled .cart-icon-btn,
.site-header--transparent.is-scrolled .nav-actions__btn {
  color: var(--ink) !important;
}

.site-header.is-scrolled .nav-actions__btn svg,
.site-header--transparent.is-scrolled .nav-actions__btn svg {
  stroke: var(--ink) !important;
}

.site-header.is-scrolled .nav-actions__btn:hover,
.site-header--transparent.is-scrolled .nav-actions__btn:hover {
  color: var(--press-deep) !important;
}

.site-header.is-scrolled .nav-actions__btn:hover svg,
.site-header--transparent.is-scrolled .nav-actions__btn:hover svg {
  stroke: var(--press-deep) !important;
}

.site-header.is-scrolled .nav-rule,
.site-header--transparent.is-scrolled .nav-rule {
  background: rgba(20, 23, 15, 0.18);
}

.site-header.is-scrolled .logo__dot,
.site-header--transparent.is-scrolled .logo__dot {
  background: var(--press-deep);
}

.site-header.is-scrolled .nav-toggle span,
.site-header--transparent.is-scrolled .nav-toggle span {
  background: var(--ink);
}

/* ==========================================================================
   6. PAGE SECTIONS, HERO & GRID LAYOUTS
   ========================================================================== */
.section { padding: var(--sp-9) 0; }
.section.tight { padding: var(--sp-7) 0; }

.section.on-dark {
  background: var(--grove);
  color: var(--limewash);
}

.section.on-dark h2, .section.on-dark h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: var(--sp-7); }

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: radial-gradient(120% 100% at 15% 0%, #3E4E30 0%, #232F1D 45%, #14170F 100%);
  color: var(--white);
  overflow: hidden;
  padding-bottom: var(--sp-9);
}

.hero__grove-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__eyebrow { color: var(--press); margin-bottom: var(--sp-5); }
.hero h1 { color: var(--white); margin-bottom: var(--sp-5); }
.hero h1 em { font-style: italic; color: var(--press); }

.hero p.lede {
  font-size: 1.15rem;
  color: var(--silverleaf);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}

.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silverleaf);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.scroll-cue span {
  width: 1px;
  height: 28px;
  background: var(--silverleaf);
  display: block;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-9);
}

.hero__slide.is-active { opacity: 1; pointer-events: auto; }

.hero__dots {
  display: flex;
  gap: var(--sp-2);
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 3;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active { background: var(--press); }

/* Floating Banner Strip */
.floating-strip {
  position: relative;
  z-index: 5;
  margin-top: -80px;
  margin-bottom: var(--sp-8);
}

.floating-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(20, 23, 15, 0.25);
  padding: var(--sp-5);
}

@media (max-width: 760px) {
  .floating-strip { margin-top: -40px; }
  .floating-strip__grid { grid-template-columns: 1fr; }
}

.floating-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.floating-strip__item:hover { background: var(--limewash); }

.floating-strip__item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grove);
}

.floating-strip__item-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  display: block;
}

.floating-strip__item-price { font-size: 0.85rem; color: var(--clay); }

/* Product Cards & Grids */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7) var(--sp-6);
}

@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }

.product-grid > *:nth-child(3n+2) { margin-top: var(--sp-7); }

@media (max-width: 960px) {
  .product-grid > *:nth-child(3n+2) { margin-top: 0; }
  .product-grid > *:nth-child(2n) { margin-top: var(--sp-6); }
}

@media (max-width: 640px) {
  .product-grid > * { margin-top: 0 !important; }
}

.product-card {
  position: relative;
  display: block;
  background: var(--limewash-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-grove), box-shadow 0.4s var(--ease-grove);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(20, 23, 15, 0.35);
}

.product-card__media {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #3B4A2F 0%, #232F1D 60%, #171F13 100%);
  position: relative;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35em 0.7em;
  border-radius: 999px;
}

.product-card__badge--sale { background: #C97557; color: var(--white); }
.product-card__badge--new { background: var(--press); color: var(--ink); }

.product-card__lot {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--press);
  background: rgba(20, 23, 15, 0.55);
  padding: 0.3em 0.6em;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
}

.product-card__body { padding: var(--sp-5); }

.product-card__cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay);
}

.product-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin: var(--sp-2) 0 var(--sp-2);
}

.product-card__desc {
  font-size: 0.9rem;
  color: #4a4f3f;
  margin-bottom: var(--sp-4);
}

.product-card__price { font-weight: 700; font-size: 1.05rem; }

.product-card__price .from {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.3em;
}

.quick-add-form { margin-top: var(--sp-3); }

.quick-add-btn {
  width: 100%;
  padding: 0.6em;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--limewash);
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}

.product-card:hover .quick-add-btn { opacity: 1; transform: none; }
.quick-add-btn:hover { background: var(--press-deep); color: var(--ink); }

/* Category Cards */
.category-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 760px) { .category-strip { grid-template-columns: 1fr; } }

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, #4A5A3A, #232F1D);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 15, 0) 40%, rgba(20, 23, 15, 0.75) 100%);
}

.category-card__label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
}

/* Process Section */
.process { position: relative; }
.process__rail { display: grid; grid-template-columns: 1fr; position: relative; }

.process__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  z-index: 0;
}

.process__svg path { fill: none; stroke: var(--press); stroke-width: 2; }
.process__steps { position: relative; z-index: 1; display: grid; gap: var(--sp-9); }

.process__step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: var(--sp-6);
}

.process__step:nth-child(even) .process__copy { grid-column: 3; text-align: left; }
.process__step:nth-child(odd) .process__copy { grid-column: 1; text-align: right; }

.process__marker {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grove);
  border: 2px solid var(--press);
  justify-self: center;
  opacity: 0;
  transform: scale(0.4);
}

.process__num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--press); letter-spacing: 0.1em; }

.process__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  margin: var(--sp-2) 0;
  color: var(--white);
}

.process__text { color: var(--silverleaf); font-size: 0.95rem; max-width: 34ch; }
.process__step:nth-child(odd) .process__text { margin-left: auto; }

@media (max-width: 760px) {
  .process__step, .process__step:nth-child(even) .process__copy, .process__step:nth-child(odd) .process__copy {
    grid-template-columns: 48px 1fr;
    grid-column: auto;
    text-align: left !important;
  }
  .process__marker { grid-column: 1; }
  .process__copy { grid-column: 2; }
  .process__text { margin-left: 0 !important; }
  .process__svg { left: 24px; transform: none; }
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 760px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .icon-grid { grid-template-columns: 1fr; } }

.icon-grid__item { text-align: center; padding: var(--sp-5); }

.icon-grid__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: rgba(195, 211, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--press-deep);
}

.icon-grid__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.icon-grid__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: var(--sp-2);
}

.icon-grid__text { font-size: 0.88rem; color: #4a4f3f; }

/* Parallax Banner */
.parallax-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.parallax-banner__bg {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  bottom: -15%;
  background: linear-gradient(155deg, #3B4A2F 0%, #232F1D 55%, #14170F 100%);
  will-change: transform;
}

.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 10, 0.45);
}

.parallax-banner__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.parallax-banner__content p { color: var(--silverleaf); }

/* Gallery Strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
}

@media (max-width: 860px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }

.gallery-strip__item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(155deg, #4A5A3A, #232F1D);
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-grove);
}

.gallery-strip__item:hover img { transform: scale(1.06); }

/* Newsletter Band */
.newsletter-band {
  background: var(--limewash-dim);
  padding: var(--sp-8) 0;
  text-align: center;
}

.newsletter-form {
  max-width: 460px;
  margin: var(--sp-6) auto 0;
  display: flex;
  gap: var(--sp-3);
}

.newsletter-form input[type=email] {
  flex: 1;
  padding: 0.9em 1.1em;
  border: 1px solid rgba(20, 23, 15, 0.2);
  border-radius: var(--radius-sm);
}

.newsletter-form__message {
  max-width: 460px;
  margin: var(--sp-3) auto 0;
  font-size: 0.85rem;
}

.newsletter-form__message.is-success { color: #3C4A1B; }
.newsletter-form__message.is-error { color: #6B2A1B; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(24px); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-grove), transform 0.8s var(--ease-grove);
}

/* ==========================================================================
   7. SHOP, PRODUCT DETAILS & ACCOUNT PAGES
   ========================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-8);
  align-items: start;
}

@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-sidebar { display: grid; gap: var(--sp-6); }

.sidebar-block {
  background: var(--limewash-dim);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.sidebar-block h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  margin: 0 0 var(--sp-4);
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}

.sidebar-list a {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.3em 0;
}

.sidebar-list a.active { color: var(--press-deep); font-weight: 600; }
.sidebar-list a span { color: var(--clay); font-size: 0.8rem; }

.sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

.sidebar-recent a { display: flex; gap: var(--sp-3); align-items: center; }

.sidebar-recent img, .sidebar-recent__placeholder {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grove);
  flex-shrink: 0;
}

.sidebar-recent span { font-size: 0.85rem; line-height: 1.3; }

.sidebar-recent small {
  display: block;
  color: var(--clay);
  font-size: 0.72rem;
  margin-top: 2px;
}

.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--clay);
}

.result-bar select {
  padding: 0.5em 0.9em;
  border: 1px solid rgba(20, 23, 15, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--clay);
  margin-bottom: var(--sp-5);
}

.breadcrumb a:hover { color: var(--press-deep); }

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

@media (max-width: 860px) { .product-detail { grid-template-columns: 1fr; } }

.product-detail__gallery-main {
  aspect-ratio: 1/1;
  background: linear-gradient(155deg, #3B4A2F, #171F13);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.product-detail__thumbs {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.product-detail__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-detail__thumb.is-active, .product-detail__thumb:hover {
  opacity: 1;
  border-color: var(--press-deep);
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__meta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--clay);
  margin: var(--sp-4) 0 var(--sp-6);
  border-top: 1px solid rgba(20, 23, 15, 0.1);
  border-bottom: 1px solid rgba(20, 23, 15, 0.1);
  padding: var(--sp-4) 0;
}

.product-detail__meta div span {
  display: block;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2px;
}

.tier-select { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-6); }

.tier-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4);
  border: 1px solid rgba(20, 23, 15, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tier-option:has(input:checked) {
  border-color: var(--press-deep);
  background: rgba(195, 211, 74, 0.12);
}

.tier-option input { accent-color: var(--press-deep); }

.tier-option__label { display: flex; align-items: center; gap: var(--sp-3); }
.tier-option__price { font-weight: 700; }

.tier-option__compare {
  text-decoration: line-through;
  color: var(--clay);
  font-weight: 400;
  font-size: 0.85rem;
  margin-right: 0.4em;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
}

.qty-stepper button {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.1rem;
}

.qty-stepper input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(20, 23, 15, 0.15);
  border-right: 1px solid rgba(20, 23, 15, 0.15);
  height: 40px;
}

.product-tabs { margin-top: var(--sp-8); }

.product-tabs__nav {
  display: flex;
  gap: var(--sp-6);
  border-bottom: 1px solid rgba(20, 23, 15, 0.12);
  margin-bottom: var(--sp-6);
}

.product-tabs__tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-3) 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clay);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.product-tabs__tab.is-active {
  color: var(--ink);
  border-color: var(--press-deep);
}

.product-tabs__panel { display: none; max-width: 760px; }
.product-tabs__panel.is-active { display: block; }

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

.spec-table td {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(20, 23, 15, 0.08);
  font-size: 0.92rem;
}

.spec-table td:first-child { color: var(--clay); width: 40%; }

/* Cart Table & Orders */
.cart-table { width: 100%; border-collapse: collapse; }

.cart-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(20, 23, 15, 0.15);
}

.cart-table td {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(20, 23, 15, 0.08);
  vertical-align: middle;
}

.cart-line { display: flex; gap: var(--sp-4); align-items: center; }

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grove);
}

.cart-line__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

.cart-line__tier { font-size: 0.82rem; color: var(--clay); }

.order-summary {
  background: var(--limewash-dim);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  position: sticky;
  top: 104px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  font-size: 0.95rem;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.15rem;
  border-top: 1px solid rgba(20, 23, 15, 0.15);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
}

.empty-state {
  text-align: center;
  padding: var(--sp-9) 0;
  color: var(--clay);
}

.empty-state h3 { color: var(--ink); }

.message-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Slide-out Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 90vw);
  background: var(--white);
  z-index: 61;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-grove);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(20, 23, 15, 0.2);
}

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

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  border-bottom: 1px solid rgba(20, 23, 15, 0.08);
}

.cart-drawer__head h3 { margin: 0; font-size: 1.3rem; }

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--clay);
}

.cart-drawer__empty {
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  color: var(--clay);
}

.cart-drawer__empty p { margin-bottom: var(--sp-5); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4) var(--sp-6);
}

.cart-drawer__line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(20, 23, 15, 0.06);
}

.cart-drawer__line img, .cart-drawer__line-placeholder {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grove);
}

.cart-drawer__line-body { display: flex; flex-direction: column; gap: 2px; }

.cart-drawer__line-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}

.cart-drawer__line-tier { font-size: 0.78rem; color: var(--clay); }

.cart-drawer__line-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}

.cart-drawer__line-price { font-weight: 600; font-size: 0.9rem; }

.cart-drawer__remove {
  background: none;
  border: none;
  color: var(--clay);
  font-size: 0.72rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.cart-drawer__footer {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  border-top: 1px solid rgba(20, 23, 15, 0.08);
  display: grid;
  gap: var(--sp-3);
}

.cart-drawer__footer .summary-row {
  margin-bottom: var(--sp-2);
  font-weight: 600;
}

/* Forms & Customer Account Blocks */
.field { margin-bottom: var(--sp-5); }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clay);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid rgba(20, 23, 15, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--press-deep);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field-hint {
  font-size: 0.78rem;
  color: var(--clay);
  margin-top: var(--sp-1);
}

.account-block {
  margin: var(--sp-7) 0;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(20, 23, 15, 0.08);
}

.account-block:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: var(--sp-6);
}

.account-block h3 { font-size: 1.3rem; margin-bottom: var(--sp-4); }

.field-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.88rem;
  margin-bottom: var(--sp-5);
  cursor: pointer;
}

.field-checkbox input { width: auto; margin: 0; }

.order-card {
  border: 1px solid rgba(20, 23, 15, 0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.order-card__head strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.order-card__status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  background: var(--limewash);
  color: var(--clay);
  white-space: nowrap;
}

.order-card__status--paid,
.order-card__status--completed,
.order-card__status--shipped {
  background: rgba(159, 176, 46, 0.15);
  color: var(--press-deep);
}

.order-card__status--cancelled,
.order-card__status--refunded {
  background: rgba(180, 60, 60, 0.1);
  color: #a94442;
}

.order-card__items {
  list-style: none;
  margin: 0 0 var(--sp-3);
  padding: 0;
  font-size: 0.88rem;
  color: #4a4f3f;
}

.order-card__items li { padding: 0.2em 0; }

.order-card__total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px dashed rgba(20, 23, 15, 0.12);
  font-weight: 600;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.address-card {
  position: relative;
  border: 1px solid rgba(20, 23, 15, 0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  font-size: 0.88rem;
}

.address-card strong { display: block; margin-bottom: 0.4em; }

.address-card p {
  margin: 0 0 var(--sp-3);
  color: #4a4f3f;
  line-height: 1.5;
}

.address-card__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--press-deep);
  background: rgba(159, 176, 46, 0.15);
  padding: 0.25em 0.6em;
  border-radius: 999px;
}

.address-card__remove {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.78rem;
  color: var(--clay);
  cursor: pointer;
  text-decoration: underline;
}

.address-card__remove:hover { color: #a94442; }

.add-address-toggle summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
}

.add-address-toggle summary::-webkit-details-marker { display: none; }
.add-address-toggle summary::marker { content: ""; }

/* Blog Section */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}

@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

.blog-sidebar { display: grid; gap: var(--sp-6); }

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

@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: block;
  background: var(--limewash-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease-grove), box-shadow 0.35s var(--ease-grove);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(20, 23, 15, 0.3);
}

.blog-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(155deg, #3B4A2F, #171F13);
  position: relative;
  overflow: hidden;
}

.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }

.blog-card__date {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: rgba(20, 23, 15, 0.65);
  color: var(--press);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3em 0.6em;
  border-radius: var(--radius-sm);
}

.blog-card__body { padding: var(--sp-5); }

.blog-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  margin: var(--sp-2) 0;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: #4a4f3f;
  margin-bottom: var(--sp-3);
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--clay);
}

.pagination {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
  justify-content: center;
}

.pagination__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 23, 15, 0.15);
  font-size: 0.85rem;
}

.pagination__link.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.blog-post__meta {
  display: flex;
  gap: var(--sp-4);
  font-size: 0.82rem;
  color: var(--clay);
  margin: var(--sp-4) 0 var(--sp-6);
  font-family: var(--font-mono);
}

.blog-post__hero {
  aspect-ratio: 21/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  background: var(--grove);
}

.blog-post__hero img { width: 100%; height: 100%; object-fit: cover; }

.blog-post__content { font-size: 1.05rem; line-height: 1.75; }
.blog-post__content p { margin-bottom: var(--sp-5); }
.blog-post__content h2, .blog-post__content h3 { margin-top: var(--sp-7); }
.blog-post__content img { border-radius: var(--radius-sm); margin: var(--sp-5) 0; }

.blog-post__content blockquote {
  border-left: 3px solid var(--press-deep);
  padding-left: var(--sp-5);
  font-style: italic;
  color: #4a4f3f;
  margin: var(--sp-6) 0;
}

.blog-post__comments {
  margin-top: var(--sp-8);
  padding-top: var(--sp-7);
  border-top: 1px solid rgba(20, 23, 15, 0.1);
}

.comment {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(20, 23, 15, 0.06);
}

.comment__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
  font-size: 0.9rem;
}

.comment__head span { color: var(--clay); font-size: 0.78rem; }
.comment-form { margin-top: var(--sp-7); max-width: 560px; }

/* ==========================================================================
   8. FOOTER STYLES (DARK MINIMALIST THEME)
   ========================================================================== */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0 2rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer a:hover { opacity: 0.7; }

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 2fr;
  gap: 2rem;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: start;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #a1a1a1;
}

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

.footer-col ul li {
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-contact-details p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #e5e5e5;
}

/* Subscription Form Column */
.footer-col-subscribe {
  min-width: 480px;
}

.btn-subscribe {
  width: auto !important;
  min-width: 180px;
  margin: 0 auto;
  display: block;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.btn-subscribe:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

.btn-subscribe:active {
  transform: translateY(0);
}

/* Middle Follow Us Bar */
.footer-follow-middle-bar {
  border-top: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0 !important;
  margin-bottom: 0.75rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.follow-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a1a1a1;
  white-space: nowrap;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-icons-row a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons-row a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* Copyright Row */
.footer-copyright-row {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #a1a1a1;
  text-align: left;
  padding-bottom: 0.5rem;
}

/* Legacy Get In Touch block */
.footer-getintouch {
  text-align: center;
  padding-bottom: var(--sp-7);
  margin-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(169, 178, 154, 0.18);
}

.footer-getintouch h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silverleaf);
  margin-bottom: var(--sp-3);
}

.footer-getintouch__email {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--white);
}

.footer-getintouch__email:hover { color: var(--press); }

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col-subscribe {
    min-width: 100%;
  }
  .footer-follow-middle-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ==========================================================================
   9. FLOATING WHATSAPP WIDGET
   ========================================================================== */
.wa-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.floating-whatsapp {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  display: block;
}

.wa-chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-chat-box.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wa-chat-header {
  padding: 1rem;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.wa-chat-body {
  background-color: #ffffff;
  padding: 1.25rem 1rem;
  color: #333333;
}

.wa-greeting {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  font-weight: 400;
}

.wa-action-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  text-decoration: none !important;
  color: #1a202c !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
}

.wa-action-btn span {
  flex: 1 !important;
  margin-left: 0.75rem !important;
  color: #1a202c !important;
}

.wa-action-btn:hover {
  background-color: #f7fafc !important;
  border-color: #cbd5e0 !important;
  color: #000000 !important;
}

.wa-action-btn:hover span {
  color: #000000 !important;
}

.wa-arrow {
  color: #a0aec0;
}

@media (max-width: 576px) {
  .wa-widget-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
/* Hide Cart Text Label & Keep Icon Only */
.cart-icon-btn .nav-actions__label {
  display: none !important;
}

/* Ensure Icon and Badge Layout Remain Clean */
.cart-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
}

/* Adjust Badge Position directly on top of Icon */
.cart-icon-btn .cart-badge {
  top: -6px !important;
  right: -8px !important;
  left: auto !important;
}
/* --- CATEGORY CARD ANIMATIONS --- */

/* Smooth Hover Transition */
.category-card {
  transition: transform 0.4s var(--ease-grove), box-shadow 0.4s var(--ease-grove) !important;
  will-change: transform;
}

/* Subtle Card Lift & Shadow on Hover */
.category-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px -15px rgba(20, 23, 15, 0.3) !important;
}

/* Smooth Background Image Zoom on Hover */
.category-card img {
  transition: transform 0.7s var(--ease-grove) !important;
  will-change: transform;
}

.category-card:hover img {
  transform: scale(1.08) !important;
}

/* Label Fade & Upward Shift on Hover */
.category-card__label {
  transition: transform 0.4s var(--ease-grove), color 0.3s ease !important;
}

.category-card:hover .category-card__label {
  transform: translateY(-4px) !important;
  color: var(--press) !important; /* Gold accent highlight */
}
/* ==========================================================================
   SHOP LAYOUT & DUAL PRICE SLIDER FIXES
   ========================================================================== */

/* Layout Container Grid */
.shop-layout {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: var(--sp-7) !important;
  align-items: start !important;
}

.shop-sidebar {
  width: 100% !important;
  max-width: 260px !important;
}

.shop-main {
  width: 100% !important;
  min-width: 0 !important;
}

/* 4-Column Product Grid */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin-top: var(--sp-4) !important;
}

.product-grid > * {
  margin-top: 0 !important;
  width: 100% !important;
}

/* Sidebar Headings & Controls */
.sidebar-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}

.sidebar-block__head h4 {
  margin: 0;
}

.sidebar-clear-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--clay);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.sidebar-clear-btn:hover {
  color: var(--ink);
}

/* Checklist Filter Styles */
.filter-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.filter-checklist li label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.filter-checklist__child {
  padding-left: 1rem;
}

/* Dual Range Price Slider */
.price-slider__values {
  display: flex;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.price-slider__control {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.price-slider__track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(20, 23, 15, 0.15);
  border-radius: 2px;
}

.price-slider__range {
  position: absolute;
  height: 100%;
  background: var(--press-deep);
  border-radius: 2px;
}

.price-slider__control input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.price-slider__control input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-slider__control input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: auto;
  cursor: pointer;
  border: none;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-sidebar { max-width: 100% !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 550px) {
  .product-grid { grid-template-columns: 1fr !important; }
}
/* ==========================================================================
   LUXURY EDITORIAL SHOP UI/UX UPGRADE
   ========================================================================== */

/* Main Layout Grid */
.shop-layout {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 3.5rem !important;
  align-items: start !important;
  margin-top: var(--sp-6) !important;
}

.shop-sidebar {
  width: 100% !important;
  max-width: 240px !important;
}

.shop-main {
  width: 100% !important;
  min-width: 0 !important;
}

/* Remove Boxy Grey Backgrounds for Minimalist Look */
.sidebar-block {
  background: transparent !important;
  padding: 0 0 1.5rem 0 !important;
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(20, 23, 15, 0.1) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.sidebar-block:last-child {
  border-bottom: none !important;
}

.sidebar-block h4 {
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--clay) !important;
  margin-bottom: 1rem !important;
}

/* Minimalist Search Field */
.sidebar-block .search-input {
  background: var(--white) !important;
  border: 1px solid rgba(20, 23, 15, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.85rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.sidebar-block .search-input:focus {
  border-color: var(--grove) !important;
  box-shadow: 0 0 0 3px rgba(35, 47, 29, 0.08) !important;
}

/* Category Checkboxes */
.filter-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: 0.65rem !important;
}

.filter-checklist li label {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  font-size: 0.88rem !important;
  color: var(--ink) !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.filter-checklist li label:hover {
  color: var(--press-deep) !important;
}

.filter-checklist input[type="checkbox"] {
  accent-color: var(--grove) !important;
  width: 15px !important;
  height: 15px !important;
  cursor: pointer !important;
}

/* Custom Styled Select Dropdown */
.result-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-bottom: 1rem !important;
  margin-bottom: 2rem !important;
  border-bottom: 1px solid rgba(20, 23, 15, 0.1) !important;
  font-size: 0.82rem !important;
  color: var(--clay) !important;
}

.result-bar select {
  background: var(--white) !important;
  border: 1px solid rgba(20, 23, 15, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.82rem !important;
  color: var(--ink) !important;
  cursor: pointer !important;
  outline: none !important;
}

/* Premium 4-Column Product Grid */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.75rem !important;
}

/* Clean Product Cards */
.product-card {
  background: var(--white) !important;
  border: 1px solid rgba(20, 23, 15, 0.08) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  transition: transform 0.35s var(--ease-grove), box-shadow 0.35s var(--ease-grove), border-color 0.35s ease !important;
}

.product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px -12px rgba(20, 23, 15, 0.12) !important;
  border-color: rgba(20, 23, 15, 0.2) !important;
}

.product-card__media {
  aspect-ratio: 3/4 !important;
  background: #f4f2ea !important;
}

.product-card__body {
  padding: 1.25rem !important;
  background: var(--white) !important;
}

.product-card__cat {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  color: var(--clay) !important;
  text-transform: uppercase !important;
}

.product-card__name {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  margin: 0.3rem 0 !important;
}

.product-card__desc {
  font-size: 0.82rem !important;
  color: #6b7060 !important;
  margin-bottom: 0.75rem !important;
}

.product-card__price {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}

/* Badge Refinement */
.product-card__badge {
  font-size: 0.62rem !important;
  letter-spacing: 0.08em !important;
  padding: 0.3em 0.75em !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
/* ==========================================================================
   BUNDU KHAN-INSPIRED SLEEK SHOP LAYOUT
   ========================================================================== */

/* 1. Main Page Canvas & Layout */
.shop-layout {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 2.5rem !important;
  align-items: start !important;
}

/* 2. Left Filter Panel (Elevated Card Base) */
.shop-sidebar {
  background: var(--white) !important;
  border: 1px solid rgba(20, 23, 15, 0.12) !important;
  border-radius: var(--radius-md) !important;
  padding: 1.5rem !important;
  box-shadow: 0 4px 12px rgba(20, 23, 15, 0.03) !important;
}

/* Remove inner block borders inside unified panel */
.sidebar-block {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1.75rem !important;
}

.sidebar-block:last-child {
  margin-bottom: 0 !important;
}

/* Rounded Search Input with Inset Icon */
.sidebar-block .search-input {
  background: var(--limewash) !important;
  border: 1px solid rgba(20, 23, 15, 0.15) !important;
  border-radius: 6px !important;
  padding: 0.65rem 0.85rem !important;
  font-size: 0.85rem !important;
}

/* Clean Category Checklist with Right-Aligned Counts */
.filter-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.filter-checklist li label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; /* Forces checkbox/text left, count right */
  width: 100% !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  cursor: pointer !important;
}

.filter-checklist li label span {
  flex: 1 !important;
  margin-left: 0.6rem !important;
}

.filter-checklist li label .count {
  font-family: var(--font-mono) !important;
  font-size: 0.8rem !important;
  color: var(--clay) !important;
}

/* 3. Framed Product Card Design (Matching Image Style) */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* 3 framed cards per row for generous width */
  gap: 1.5rem !important;
}

.product-card {
  background: var(--white) !important;
  border: 1px solid rgba(20, 23, 15, 0.15) !important;
  border-radius: var(--radius-md) !important;
  padding: 12px !important; /* Creates inner picture-frame margin */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.product-card:hover {
  border-color: var(--press-deep) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(20, 23, 15, 0.08) !important;
}

/* Card Inner Image Box */
.product-card__media {
  aspect-ratio: 1/1 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: var(--limewash) !important;
}

.product-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Card Title & Typography Centered Below Frame */
.product-card__body {
  padding: 1rem 0.5rem 0.5rem !important;
  text-align: center !important;
  background: transparent !important;
}

.product-card__name {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin: 0 0 0.4rem 0 !important;
}

.product-card__price {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--clay) !important;
}
