:root {
  --color-cream: #F3EAD8;
  --color-forest: #2C4A2E;
  --color-forest-dark: #1E3320;
  --color-tan: #DEC9A0;
  --color-leaf: #4C7A3D;
  --color-white: #FFFFFF;
  --color-charcoal: #2B2B26;
  --color-sale-red: #C0392B;
  --shadow-soft: 0 10px 30px rgba(44, 74, 46, 0.08);
  --radius: 14px;
  --font-display: "Nunito", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background:
    radial-gradient(circle at top left, rgba(76, 122, 61, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(222, 201, 160, 0.35), transparent 45%),
    var(--color-cream);
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: 2rem;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-forest);
}

.script-font {
  font-family: var(--font-script);
  color: var(--color-leaf);
  font-weight: 400;
}

a { color: var(--color-forest); text-decoration: none; }
a:hover { color: var(--color-leaf); }

.topbar {
  background: linear-gradient(90deg, #152318, var(--color-forest-dark) 45%, #1e3320);
  color: rgba(243, 234, 216, 0.88);
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.06);
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.85rem;
}
.topbar-link {
  color: rgba(243, 234, 216, 0.9);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}
button.topbar-link {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  line-height: inherit;
}
.topbar-link:hover { color: var(--color-tan); }
.topbar-chip {
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(76, 122, 61, 0.35);
  color: var(--color-tan);
  font-weight: 600;
}
.topbar-chip a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
}
.topbar-chip a:hover { color: #fff; }
.topbar-note {
  color: rgba(243, 234, 216, 0.55);
  padding-right: 0.65rem;
  margin-right: 0.15rem;
  border-right: 1px solid rgba(243, 234, 216, 0.18);
}

.site-header {
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 74, 46, 0.08);
  box-shadow: 0 8px 24px rgba(30, 51, 32, 0.04);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.site-navbar {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.navbar-brand {
  margin-right: 1rem;
}
.navbar-brand img {
  height: 72px;
  width: auto;
  display: block;
  background: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.header-icon-btn {
  position: relative;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 46, 0.06);
  border: 1px solid rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.header-icon-btn i { font-size: 1.15rem; }
.header-icon-btn:hover {
  background: rgba(44, 74, 46, 0.12);
  border-color: rgba(44, 74, 46, 0.16);
  color: var(--color-forest-dark);
  transform: translateY(-1px);
}
.header-toggler {
  border: 1px solid rgba(44, 74, 46, 0.15);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
}
.header-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(76, 122, 61, 0.15); }

.search-bar { min-width: 0; }
.search-bar-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(44, 74, 46, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.2rem 0.2rem 0.25rem;
  box-shadow: 0 2px 10px rgba(44, 74, 46, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

/* Header search suggestions */
.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(44, 74, 46, 0.16);
  overflow: hidden;
  display: none;
}
.search-suggest.is-open { display: block; }
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  color: var(--color-charcoal);
  text-decoration: none;
}
.search-suggest-item:hover { background: var(--color-cream); }
.search-suggest-item img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}
.search-suggest-meta { min-width: 0; }
.search-suggest-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 0.9rem;
}
.search-suggest-price { font-size: 0.8rem; color: var(--color-leaf-dark, #3c6b3c); }
.search-suggest-empty {
  padding: 0.8rem 0.85rem;
  color: #6c757d;
  font-size: 0.9rem;
}
.search-bar-inner:focus-within {
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.12);
}
.search-cat-dropdown {
  position: relative;
  flex: 0 1 auto;
  max-width: 200px;
  min-width: 0;
}
.search-cat-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--color-forest);
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.search-cat-trigger:hover,
.search-cat-dropdown.is-open .search-cat-trigger {
  background: rgba(76, 122, 61, 0.08);
}
.search-cat-trigger > .bi:first-child {
  font-size: 1rem;
  color: var(--color-leaf);
  flex-shrink: 0;
}
.search-cat-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.search-cat-caret {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.search-cat-dropdown.is-open .search-cat-caret {
  transform: rotate(180deg);
}

.search-cat-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 1080;
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(260px, 340px);
  width: min(92vw, 620px);
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(30, 51, 32, 0.16);
  overflow: hidden;
}
.search-cat-panel[hidden] { display: none !important; }
.search-cat-menu {
  background: linear-gradient(180deg, #f8f4ea, #fff);
  border-right: 1px solid rgba(44, 74, 46, 0.08);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 0.45rem;
}
.search-cat-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  color: var(--color-forest);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.search-cat-item > span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-cat-item > .bi:first-child {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 122, 61, 0.12);
  color: var(--color-leaf);
  flex-shrink: 0;
}
.search-cat-item-arrow {
  font-size: 0.75rem;
  opacity: 0.35;
  flex-shrink: 0;
}
.search-cat-item:hover,
.search-cat-item.is-highlighted,
.search-cat-item.is-active {
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest-dark);
}
.search-cat-item.is-highlighted > .bi:first-child,
.search-cat-item.is-active > .bi:first-child {
  background: var(--color-forest);
  color: #fff;
}
.search-cat-item.is-highlighted .search-cat-item-arrow,
.search-cat-item.is-active .search-cat-item-arrow {
  opacity: 0.8;
}

.search-cat-products {
  background: #fff;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 0.85rem;
}
.search-cat-products-pane[hidden] { display: none !important; }
.search-cat-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.08);
}
.search-cat-products-head strong {
  font-family: var(--font-display);
  color: var(--color-forest);
  margin-left: 0.25rem;
}
.search-cat-products-head a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-leaf);
  text-decoration: none;
}
.search-cat-products-head a:hover { text-decoration: underline; }
.search-cat-empty {
  color: #777;
  font-size: 0.9rem;
  margin: 1rem 0 0;
}
.search-cat-product-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.search-cat-product {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.search-cat-product:hover {
  background: rgba(243, 234, 216, 0.7);
  color: inherit;
}
.search-cat-product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--color-cream);
  flex-shrink: 0;
}
.search-cat-product-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.1rem;
}
.search-cat-product-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-cat-product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--color-forest);
}
.search-cat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.search-cat-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(44, 74, 46, 0.12);
  background: var(--color-cream);
  color: var(--color-forest);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.search-cat-quick-btn:hover {
  background: rgba(76, 122, 61, 0.12);
  border-color: rgba(76, 122, 61, 0.3);
}
.search-bar-divider {
  width: 1px;
  height: 1.4rem;
  background: rgba(44, 74, 46, 0.15);
  flex-shrink: 0;
  margin: 0 0.35rem;
}
.search-bar-icon {
  color: rgba(44, 74, 46, 0.45);
  margin-right: 0.35rem;
  flex-shrink: 0;
}
.search-bar-inner .form-control {
  border: 0;
  box-shadow: none !important;
  padding: 0.55rem 0.4rem;
  background: transparent;
  min-width: 0;
}
.search-bar-btn {
  border-radius: 999px !important;
  padding: 0.55rem 1.15rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav {
  align-items: center;
  gap: 0.15rem;
}
.site-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-forest) !important;
  padding: 0.45rem 0.8rem !important;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav .nav-link:hover {
  color: var(--color-forest-dark) !important;
  background: rgba(44, 74, 46, 0.06);
}
.site-nav .nav-link.active {
  color: var(--color-forest-dark) !important;
  background: rgba(76, 122, 61, 0.12);
}

.site-nav .nav-flash {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  overflow: visible;
  white-space: nowrap;
  color: var(--color-sale-red) !important;
  background: rgba(192, 57, 43, 0.07);
  animation: navFlashIdle 2.6s ease-in-out infinite;
}
.site-nav .nav-flash:hover,
.site-nav .nav-flash.active {
  background: rgba(192, 57, 43, 0.12);
  color: #9b2b20 !important;
}
.site-nav .nav-flash.is-live {
  background: linear-gradient(180deg, rgba(192, 57, 43, 0.16), rgba(192, 57, 43, 0.08));
  animation: navFlashAura 2.8s ease-in-out infinite;
}
.site-nav .nav-flash.is-live:hover,
.site-nav .nav-flash.is-live.active {
  background: rgba(192, 57, 43, 0.2);
  color: #9b2b20 !important;
}
.nav-flash-bolt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-sale-red);
  filter: drop-shadow(0 0 4px rgba(192, 57, 43, 0.45));
  animation: navFlashStrike 2.8s steps(1, end) infinite;
}
.nav-flash-spark {
  position: absolute;
  inset: -0.38rem;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 57, 43, 0.55);
  opacity: 0;
  transform: scale(0.55);
  pointer-events: none;
  animation: navFlashSpark 2.8s ease-out infinite;
}
.nav-flash-spark-delay {
  border-color: rgba(255, 232, 163, 0.7);
  animation-delay: 0.12s;
}
.nav-flash-label {
  position: relative;
  animation: navFlashLabel 2.8s ease-in-out infinite;
}
.nav-flash-live {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  background: var(--color-sale-red);
  color: #fff !important;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.45);
  animation: navFlashLiveBlink 2.8s steps(1, end) infinite;
}

/* Storm-blink: short double-strike, then a long rest — like real lightning */
@keyframes navFlashIdle {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(192, 57, 43, 0); }
  12% { box-shadow: inset 0 0 0 1px rgba(192, 57, 43, 0.18); }
  28%, 100% { box-shadow: inset 0 0 0 0 rgba(192, 57, 43, 0); }
}
@keyframes navFlashStrike {
  0%, 100% { color: var(--color-sale-red); opacity: 1; filter: brightness(1) drop-shadow(0 0 4px rgba(192, 57, 43, 0.45)); transform: scale(1) rotate(0deg); }
  6% { color: #fff; opacity: 1; filter: brightness(1.8) drop-shadow(0 0 10px #ffe8a3); transform: scale(1.28) rotate(-8deg); }
  10% { color: var(--color-sale-red); opacity: 0.35; filter: brightness(0.85) drop-shadow(0 0 2px rgba(192, 57, 43, 0.2)); transform: scale(0.92) rotate(4deg); }
  14% { color: #ffe8a3; opacity: 1; filter: brightness(1.9) drop-shadow(0 0 12px #fff4c4); transform: scale(1.34) rotate(-12deg); }
  20%, 100% { color: var(--color-sale-red); opacity: 1; filter: brightness(1) drop-shadow(0 0 4px rgba(192, 57, 43, 0.45)); transform: scale(1) rotate(0deg); }
}
@keyframes navFlashSpark {
  0%, 12% { opacity: 0; transform: scale(0.55); }
  14% { opacity: 0.85; transform: scale(0.85); }
  28% { opacity: 0; transform: scale(1.65); }
  100% { opacity: 0; transform: scale(1.65); }
}
@keyframes navFlashLabel {
  0%, 100% { opacity: 1; }
  6%, 14% { opacity: 0.55; }
  10% { opacity: 1; }
  18% { opacity: 1; }
}
@keyframes navFlashLiveBlink {
  0%, 100% { opacity: 1; background: var(--color-sale-red); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.35); }
  6% { opacity: 1; background: #e74c3c; box-shadow: 0 0 10px rgba(231, 76, 60, 0.7); }
  10% { opacity: 0.2; box-shadow: none; }
  14% { opacity: 1; background: #c0392b; box-shadow: 0 0 12px rgba(255, 232, 163, 0.55); }
  22%, 100% { opacity: 1; background: var(--color-sale-red); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.35); }
}
@keyframes navFlashAura {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
  14% { box-shadow: 0 0 0 5px rgba(192, 57, 43, 0.18), 0 0 18px rgba(192, 57, 43, 0.22); }
  28%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav .nav-flash,
  .site-nav .nav-flash.is-live,
  .nav-flash-bolt,
  .nav-flash-spark,
  .nav-flash-label,
  .nav-flash-live {
    animation: none !important;
  }
  .nav-flash-live {
    opacity: 1;
  }
}

.btn-forest {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
}
.btn-forest:hover {
  background: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
  color: #fff;
}
.btn-leaf {
  background: var(--color-leaf);
  border-color: var(--color-leaf);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
}
.btn-leaf:hover { background: #3d6630; color: #fff; }
.btn-outline-forest {
  border: 2px solid var(--color-forest);
  color: var(--color-forest);
  font-weight: 700;
  border-radius: 999px;
  background: transparent;
}
.btn-outline-forest:hover {
  background: var(--color-forest);
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
}
.btn-whatsapp:hover { background: #1ebe57; color: #fff; }

.hero-band {
  padding: 1.15rem 0 0.35rem;
}
.hero-shell {
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-layout.has-deals {
  grid-template-columns: minmax(0, 1.65fr) minmax(16.5rem, 0.9fr);
  gap: 1.15rem;
}
.hero-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(58vh, 520px);
  color: var(--color-cream);
  overflow: hidden;
  background: #152318;
  isolation: isolate;
  border-radius: calc(var(--radius) + 6px);
}
.hero-layout.has-deals .hero-slider {
  min-height: min(54vh, 480px);
}
.hero-track {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: inherit;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #152318;
}
.hero-slide-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 28, 28, 0.45);
  pointer-events: none;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2.25rem, 5.5vh, 3.75rem) clamp(1.15rem, 3vw, 2rem) clamp(3.25rem, 7vh, 4.5rem);
}
.hero-copy {
  position: relative;
  max-width: 34rem;
  padding-left: 1.05rem;
  text-shadow: 0 1px 2px rgba(15, 26, 18, 0.35), 0 8px 24px rgba(15, 26, 18, 0.28);
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-tan), var(--color-leaf));
  transform: scaleY(0);
  transform-origin: top;
}
.hero-slide.is-active .hero-copy::before {
  animation: heroAccent 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.hero-brand {
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.1rem;
  line-height: 0.95;
}
.hero-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #fff;
  text-wrap: balance;
}
.hero-layout.has-deals .hero-brand-name {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
}
.hero-script {
  display: block;
  color: var(--color-tan);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1;
  margin-top: -0.1rem;
}
.hero-title {
  color: rgba(243, 234, 216, 0.96);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.7rem;
  max-width: 22ch;
}
.hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.5;
  color: rgba(243, 234, 216, 0.82);
  max-width: 32rem;
  margin: 0 0 1.35rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-cta,
.hero-cta-secondary {
  border-radius: 12px;
  font-weight: 700;
  padding-inline: 1.2rem;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.hero-cta-secondary {
  border: 1.5px solid rgba(243, 234, 216, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(243, 234, 216, 0.85);
  color: #fff;
}

.hero-slide.is-active .hero-brand,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-lead,
.hero-slide.is-active .hero-actions {
  animation: heroRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-slide.is-active .hero-title { animation-delay: 0.1s; }
.hero-slide.is-active .hero-lead { animation-delay: 0.18s; }
.hero-slide.is-active .hero-actions { animation-delay: 0.26s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroAccent {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero-chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  z-index: 4;
  pointer-events: none;
  padding: 0 1rem;
}
.hero-chrome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  pointer-events: auto;
}
.hero-index {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(243, 234, 216, 0.9);
  min-width: 5rem;
}
.hero-index [data-hero-current] {
  color: #fff;
}
.hero-index-sep {
  width: 1.25rem;
  height: 1px;
  background: rgba(243, 234, 216, 0.45);
}
.hero-nav-group {
  display: inline-flex;
  gap: 0.4rem;
}
.hero-nav {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 234, 216, 0.28);
  background: rgba(15, 26, 18, 0.42);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-nav:hover,
.hero-nav:focus-visible {
  background: rgba(15, 26, 18, 0.72);
  border-color: rgba(243, 234, 216, 0.55);
  transform: translateY(-1px);
  outline: none;
}
.hero-nav:focus-visible {
  outline: 2px solid var(--color-tan);
  outline-offset: 2px;
}
.hero-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.hero-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(243, 234, 216, 0.35);
  transition: width 0.28s ease, background 0.28s ease;
}
.hero-dot.is-active {
  width: 1.4rem;
  background: var(--color-tan);
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(243, 234, 216, 0.12);
  z-index: 4;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-leaf), var(--color-tan));
}
.hero-slider.is-playing .hero-progress span {
  animation: heroProgress 6.5s linear forwards;
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-scroll {
  --hero-scroll-x: -50%;
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 5;
  transform: translateX(var(--hero-scroll-x));
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(243, 234, 216, 0.78);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.hero-slider.has-chrome .hero-scroll {
  bottom: 3.7rem;
}
.hero-scroll-mouse {
  position: relative;
  width: 1.2rem;
  height: 1.95rem;
  border: 1.5px solid rgba(243, 234, 216, 0.55);
  border-radius: 1rem;
  background: rgba(15, 26, 18, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hero-scroll-wheel {
  position: absolute;
  top: 0.34rem;
  left: 50%;
  width: 0.2rem;
  height: 0.38rem;
  margin-left: -0.1rem;
  border-radius: 999px;
  background: var(--color-tan);
  animation: heroScrollWheel 1.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.hero-scroll-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.88;
}
.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: #fff;
  transform: translateX(var(--hero-scroll-x)) translateY(-3px);
  outline: none;
}
.hero-scroll:hover .hero-scroll-mouse,
.hero-scroll:focus-visible .hero-scroll-mouse {
  border-color: rgba(243, 234, 216, 0.9);
  background: rgba(15, 26, 18, 0.4);
}
.hero-scroll:focus-visible .hero-scroll-mouse {
  outline: 2px solid var(--color-tan);
  outline-offset: 4px;
}
@keyframes heroScrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(0.65rem); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-deals {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.15rem 1.05rem 1.05rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(76, 122, 61, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(165deg, #1a2f1c 0%, #152318 48%, #203724 100%);
  border: 1px solid rgba(243, 234, 216, 0.12);
  box-shadow: 0 16px 36px rgba(21, 35, 24, 0.18);
}
.hero-deals::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 234, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 234, 216, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 75%);
  pointer-events: none;
}
.hero-deals-head,
.hero-deal-feature,
.hero-deals-list {
  position: relative;
  z-index: 1;
}
.hero-deals-head {
  display: grid;
  gap: 0.45rem;
}
.hero-deals-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.28rem 0.65rem 0.28rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.88);
}
.hero-deals-pulse {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #7dbe5d;
  box-shadow: 0 0 0 0 rgba(125, 190, 93, 0.55);
  animation: heroDealsPulse 1.8s ease-out infinite;
}
.hero-deals-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.hero-deals-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-deals-all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-tan);
  text-decoration: none;
  white-space: nowrap;
}
.hero-deals-all i {
  transition: transform 0.2s ease;
}
.hero-deals-all:hover,
.hero-deals-all:focus-visible {
  color: #fff;
  outline: none;
}
.hero-deals-all:hover i,
.hero-deals-all:focus-visible i {
  transform: translateX(3px);
}
.hero-deals-sub {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(243, 234, 216, 0.68);
  max-width: 22rem;
}

.hero-deal-feature {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  min-height: 11.5rem;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.hero-deal-feature-media {
  position: absolute;
  inset: 0;
}
.hero-deal-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-deal-feature-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 26, 18, 0.92) 0%, rgba(15, 26, 18, 0.35) 48%, rgba(15, 26, 18, 0.15) 100%);
}
.hero-deal-feature-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  align-content: end;
  min-height: 11.5rem;
  padding: 0.95rem;
}
.hero-deal-feature .hero-deal-name {
  font-size: 1.02rem;
  color: #fff;
  -webkit-line-clamp: 2;
}
.hero-deal-feature .hero-deal-prices strong {
  color: #fff;
  font-size: 1.05rem;
}
.hero-deal-feature .hero-deal-prices s {
  color: rgba(243, 234, 216, 0.55);
}
.hero-deal-feature .hero-deal-badge {
  justify-self: start;
  background: rgba(192, 57, 43, 0.92);
  color: #fff;
}
.hero-deal-feature:hover .hero-deal-feature-media img,
.hero-deal-feature:focus-visible .hero-deal-feature-media img {
  transform: scale(1.1);
}
.hero-deal-feature:focus-visible {
  outline: 2px solid var(--color-tan);
  outline-offset: 3px;
}

.hero-deals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.hero-deal {
  display: grid;
  grid-template-columns: 1.5rem 3.1rem minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.4rem 0.45rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(243, 234, 216, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-deal:hover,
.hero-deal:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(222, 201, 160, 0.28);
  transform: translateX(2px);
  color: inherit;
  outline: none;
}
.hero-deal-index {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(243, 234, 216, 0.4);
  text-align: center;
}
.hero-deal-media {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(243, 234, 216, 0.12);
  display: block;
}
.hero-deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-deal-body {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}
.hero-deal-name {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-deal-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.8rem;
}
.hero-deal-prices strong {
  color: var(--color-tan);
  font-weight: 800;
}
.hero-deal-prices s {
  color: rgba(243, 234, 216, 0.42);
  font-size: 0.74rem;
}
.hero-deal-badge {
  align-self: start;
  margin-top: 0.1rem;
  padding: 0.2rem 0.42rem;
  border-radius: 8px;
  background: rgba(192, 57, 43, 0.18);
  color: #f0a39a;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes heroDealsPulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 190, 93, 0.55); }
  70% { box-shadow: 0 0 0 0.45rem rgba(125, 190, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 190, 93, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-brand,
  .hero-slide.is-active .hero-title,
  .hero-slide.is-active .hero-lead,
  .hero-slide.is-active .hero-actions,
  .hero-slide.is-active .hero-copy::before,
  .hero-slider.is-playing .hero-progress span,
  .hero-scroll-wheel,
  .hero-deals-pulse {
    animation: none !important;
    transition: none !important;
  }
  .hero-slide.is-active .hero-copy::before { transform: scaleY(1); }
  .hero-scroll-wheel { top: 0.65rem; opacity: 0.85; }
  .hero-deal,
  .hero-deal-feature-media img,
  .hero-deals-all i { transition: none; }
  .hero-deal-feature-media img { transform: none; }
}

.section { padding: 3rem 0; }
.section-tan { background: rgba(222, 201, 160, 0.35); }
.section-title { margin-bottom: 0.35rem; }
.section-intro {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-leaf);
  margin-bottom: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(44, 74, 46, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 74, 46, 0.14);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-cream);
  overflow: hidden;
}
.wishlist-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  margin: 0;
}
.wishlist-btn {
  pointer-events: auto;
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-forest);
  box-shadow: 0 4px 14px rgba(44, 74, 46, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.wishlist-btn:hover {
  transform: scale(1.06);
  background: #fff;
  color: var(--color-sale-red);
}
.wishlist-btn.is-active {
  color: var(--color-sale-red);
}
.wishlist-btn i { font-size: 1.05rem; line-height: 1; }
.header-icon-btn.is-active {
  background: rgba(44, 74, 46, 0.12);
  border-color: rgba(44, 74, 46, 0.18);
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card .body { padding: 1rem; }
.product-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--color-forest);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.price-now { color: var(--color-forest); font-weight: 800; font-size: 1.05rem; }
.price-was {
  color: #888;
  text-decoration: line-through;
  margin-left: 0.4rem;
  font-size: 0.9rem;
}
.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-sale-red);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
}
.badge-flash {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-forest);
  color: var(--color-cream);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
}
.stars { color: #d4a017; letter-spacing: 1px; font-size: 0.9rem; }
.unit-text { color: #666; font-size: 0.85rem; }

.category-tile {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(44, 74, 46, 0.08);
  transition: all 0.25s ease;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.category-tile:hover {
  background: var(--color-forest);
  color: #fff;
  transform: translateY(-3px);
}
.category-tile i {
  font-size: 1.8rem;
  color: var(--color-leaf);
  display: block;
  margin-bottom: 0.6rem;
}
.category-tile:hover i { color: var(--color-tan); }
.category-tile span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: inherit;
}

.flash-card {
  background: linear-gradient(160deg, #fff, #f8f1e4);
  border: 2px solid var(--color-tan);
}

.flash-sales-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.15rem 1rem;
  margin: 0 -0.15rem;
}
.flash-sales-track::-webkit-scrollbar {
  height: 6px;
}
.flash-sales-track::-webkit-scrollbar-thumb {
  background: rgba(44, 74, 46, 0.28);
  border-radius: 999px;
}
.flash-sales-track::-webkit-scrollbar-track {
  background: rgba(44, 74, 46, 0.08);
  border-radius: 999px;
}
.flash-sales-item {
  flex: 0 0 min(72vw, 240px);
  scroll-snap-align: start;
  min-width: 0;
}
.flash-sales-item .product-card {
  height: 100%;
}
.flash-scroll-controls {
  display: none;
  gap: 0.4rem;
}
.flash-scroll-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-forest);
  background: #fff;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.flash-scroll-btn:hover {
  background: var(--color-forest);
  color: #fff;
}
@media (min-width: 768px) {
  .flash-scroll-controls { display: inline-flex; }
  .flash-sales-item { flex-basis: 220px; }
}
@media (min-width: 1200px) {
  .flash-sales-item { flex-basis: 240px; }
}
.countdown {
  display: inline-flex;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-sale-red);
  font-size: 0.9rem;
}
.countdown span {
  background: rgba(192, 57, 43, 0.1);
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  min-width: 2.2rem;
  text-align: center;
}

.why-eco {
  background: linear-gradient(135deg, var(--color-forest), var(--color-leaf));
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}
.why-eco h2, .why-eco .script-font { color: #fff; }
.why-eco .benefit {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(76, 122, 61, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 100%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(180deg, #243f26 0%, var(--color-forest-dark) 45%, #152318 100%);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-texture.svg');
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}

.footer-trust {
  position: relative;
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}
.footer-trust-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(var(--trust-cols, 4), minmax(0, 1fr));
  gap: 0.75rem;
}
.footer-trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-cream);
  white-space: nowrap;
}
.footer-trust-list i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 122, 61, 0.35);
  color: var(--color-tan);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-main {
  position: relative;
  padding: 3.25rem 0 2.5rem;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 0.35rem;
}
.footer-logo img {
  height: 72px;
  width: auto;
  border-radius: 12px;
  background: rgb(255, 252, 246);
}
.footer-tagline {
  font-size: 1.75rem;
  color: var(--color-tan) !important;
  margin: 0.15rem 0 0.65rem;
  line-height: 1;
}
.footer-blurb {
  max-width: 28rem;
  color: rgba(243, 234, 216, 0.78);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 234, 216, 0.08);
  border: 1px solid rgba(243, 234, 216, 0.16);
  color: var(--color-cream) !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(243, 234, 216, 0.16);
  border-color: rgba(243, 234, 216, 0.3);
  color: #fff !important;
}
.footer-social-btn.is-wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff !important;
}
.footer-social-btn.is-wa:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}
.footer-social-btn.is-ig:hover {
  background: #E1306C;
  border-color: #E1306C;
  color: #fff !important;
}
.footer-social-btn.is-tt:hover {
  background: #000;
  border-color: #000;
  color: #fff !important;
}
.footer-social-btn.is-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff !important;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li + li { margin-top: 0.65rem; }
.footer-links a {
  color: rgba(243, 234, 216, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact {
  font-style: normal;
  margin-bottom: 1.25rem;
}
.footer-contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: rgba(243, 234, 216, 0.85);
  line-height: 1.45;
}
.footer-contact-row i {
  margin-top: 0.15rem;
  color: var(--color-tan);
  font-size: 1.05rem;
}
.footer-contact-row a {
  display: block;
  color: rgba(243, 234, 216, 0.9);
  text-decoration: none;
}
.footer-contact-row a:hover { color: #fff; }

.footer-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-wa-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
}
.footer-wa-cta .bi-arrow-right {
  transition: transform 0.2s ease;
}
.footer-wa-cta:hover .bi-arrow-right {
  transform: translateX(3px);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  background: rgba(0, 0, 0, 0.22);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 0;
  font-size: 0.88rem;
  color: rgba(243, 234, 216, 0.65);
}
.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}
.footer-credit {
  color: rgba(243, 234, 216, 0.55);
}
.footer-credit a {
  color: rgba(243, 234, 216, 0.75);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--color-tan);
}
.footer-credit::before {
  content: "·";
  margin-right: 0.85rem;
  color: rgba(243, 234, 216, 0.35);
}
.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(76, 122, 61, 0.25);
  border: 1px solid rgba(222, 201, 160, 0.2);
  color: var(--color-tan);
  font-weight: 600;
  font-size: 0.8rem;
}
.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 234, 216, 0.18);
  background: rgba(243, 234, 216, 0.06);
  color: rgba(243, 234, 216, 0.72);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-admin-link:hover {
  color: var(--color-tan);
  background: rgba(243, 234, 216, 0.12);
  border-color: rgba(222, 201, 160, 0.3);
}

@media (max-width: 991.98px) {
  .footer-trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-trust-list li { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
  .footer-trust-list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .footer-main { padding: 2.5rem 0 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-sale-red);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  min-width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.cart-badge[hidden] { display: none !important; }

.eco-toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  width: min(20rem, calc(100vw - 1.5rem));
  pointer-events: none;
}
.eco-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(30, 51, 32, 0.94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 51, 32, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.eco-toast.is-in {
  transform: translateX(0);
  opacity: 1;
}
.eco-toast.is-out {
  transform: translateX(110%);
  opacity: 0;
}
.eco-toast-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}
.eco-toast-msg {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.eco-toast-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  line-height: 1;
  font-size: 1.05rem;
  cursor: pointer;
}
.eco-toast-close:hover { color: #fff; }
.eco-toast.is-success .eco-toast-icon { color: #b8e0a8; }
.eco-toast.is-danger {
  background: rgba(125, 36, 28, 0.95);
}
.eco-toast.is-warning {
  background: rgba(122, 78, 18, 0.95);
}
@media (max-width: 575.98px) {
  .eco-toast-stack {
    top: 0.75rem;
    right: 0.75rem;
    width: min(18rem, calc(100vw - 1.25rem));
  }
  .eco-toast {
    padding: 0.65rem 0.75rem;
  }
  .eco-toast-msg { font-size: 0.85rem; }
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0 0;
}
.form-control, .form-select {
  border-radius: 10px;
  border-color: rgba(44, 74, 46, 0.2);
  padding: 0.7rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.2rem rgba(76, 122, 61, 0.15);
}

.gallery-main {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(44, 74, 46, 0.08);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}
.gallery-thumbs img.active,
.gallery-thumbs img:hover { border-color: var(--color-forest); }

.stock-in { color: var(--color-leaf); font-weight: 700; }
.stock-out { color: var(--color-sale-red); font-weight: 700; }

.admin-sidebar {
  background: var(--color-forest-dark);
  min-height: 100vh;
  color: #fff;
}
.admin-sidebar a {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.2rem;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.admin-sidebar form { margin-bottom: 0.2rem; }
.admin-sidebar-logout {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-align: left;
  font-weight: 400;
}
.admin-sidebar-logout:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ============ Admin shell / sidebar ============ */
.admin-body {
  margin: 0;
  background: #f4efe4;
}
.admin-body.admin-nav-locked {
  overflow: hidden;
}
.admin-shell {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  min-height: 100vh;
  min-height: 100dvh;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 120% 60% at 0% 0%, rgba(76, 122, 61, 0.35), transparent 55%),
    linear-gradient(180deg, #243f26 0%, var(--color-forest-dark) 42%, #152318 100%);
  color: var(--color-cream);
  border-right: 1px solid rgba(222, 201, 160, 0.12);
  z-index: 1040;
}
.admin-sidebar-brand {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 1.15rem 1.1rem 1rem;
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
}
.admin-sidebar-logo {
  display: block;
  grid-column: 1 / -1;
}
.admin-sidebar-logo img {
  height: 64px;
  width: auto;
  border-radius: 12px;
  background: rgb(255, 252, 246);
  display: block;
}
.admin-sidebar-brand-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.admin-sidebar-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-tan);
}
.admin-sidebar-role {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(222, 201, 160, 0.16);
  color: var(--color-tan);
  border: 1px solid rgba(222, 201, 160, 0.28);
}
.admin-sidebar-close {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  border: 0;
  background: rgba(243, 234, 216, 0.08);
  color: var(--color-cream);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 0.7rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(222, 201, 160, 0.35) transparent;
}
.admin-nav-group + .admin-nav-group {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(243, 234, 216, 0.08);
}
.admin-nav-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(222, 201, 160, 0.72);
  padding: 0 0.7rem 0.4rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  margin: 0 0 0.15rem;
  border-radius: 0.65rem;
  color: rgba(243, 234, 216, 0.82);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.admin-nav-link i:first-child {
  width: 1.15rem;
  text-align: center;
  font-size: 1.05rem;
  color: rgba(222, 201, 160, 0.85);
  flex-shrink: 0;
}
.admin-nav-text {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}
.admin-nav-badge {
  flex-shrink: 0;
  min-width: 1.35rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: var(--color-sale-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}
.admin-nav-link:hover {
  background: rgba(243, 234, 216, 0.08);
  color: #fff;
}
.admin-nav-link:hover i:first-child {
  color: var(--color-tan);
}
.admin-nav-link.is-active {
  background: rgba(76, 122, 61, 0.42);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--color-tan);
}
.admin-nav-link.is-active i:first-child {
  color: var(--color-tan);
}
.admin-nav-external-icon {
  font-size: 0.78rem;
  opacity: 0.65;
}
.admin-sidebar-foot {
  padding: 0.65rem 0.7rem 0.9rem;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.admin-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.08);
}
.admin-sidebar-avatar {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--color-leaf), var(--color-forest));
  color: var(--color-cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.admin-sidebar-user-meta {
  min-width: 0;
  flex: 1;
}
.admin-sidebar-user-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidebar-user-email {
  font-size: 0.72rem;
  color: rgba(243, 234, 216, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidebar-logout-form {
  margin: 0;
}
.admin-sidebar-logout-btn {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: rgba(243, 234, 216, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-sidebar-logout-btn:hover {
  background: rgba(192, 57, 43, 0.22);
  color: #ffd7d2;
}
.admin-sidebar-backdrop {
  display: none;
}
.admin-main-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(222, 201, 160, 0.28), transparent 50%),
    #f4efe4;
}

/* ---- Admin header ---- */
.admin-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  gap: 0.85rem 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 74, 46, 0.1);
}
.admin-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 180px;
}
.admin-header-titles {
  min-width: 0;
}
.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(43, 43, 38, 0.55);
  margin-bottom: 0.1rem;
}
.admin-breadcrumb a {
  color: var(--color-leaf);
  text-decoration: none;
}
.admin-breadcrumb a:hover {
  color: var(--color-forest);
}
.admin-breadcrumb-sep {
  opacity: 0.5;
}
.admin-breadcrumb-current {
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 28ch;
}
.admin-header-title {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-header-sub {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(43, 43, 38, 0.62);
}
.admin-header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 220px;
  max-width: 420px;
  min-width: 180px;
  padding: 0.35rem 0.4rem 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.admin-header-search i {
  color: var(--color-leaf);
  font-size: 0.95rem;
}
.admin-header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}
.admin-header-search input::placeholder {
  color: rgba(43, 43, 38, 0.45);
}
.admin-header-search button {
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: var(--color-forest);
  color: var(--color-cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.admin-header-search button:hover {
  background: var(--color-forest-dark);
}
.admin-header-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.12);
  color: var(--color-forest-dark);
  flex-shrink: 0;
}
.admin-header-clock > i {
  color: var(--color-leaf);
  font-size: 1.05rem;
}
.admin-header-clock-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 7.5rem;
}
.admin-header-clock-date {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.58);
  letter-spacing: 0.02em;
}
.admin-header-clock-time {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-forest-dark);
}
.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.admin-header-queues {
  align-items: center;
  gap: 0.4rem;
}
.admin-queue-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(44, 74, 46, 0.05);
  border: 1px solid rgba(44, 74, 46, 0.1);
  color: var(--color-forest);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}
.admin-queue-chip i {
  color: var(--color-leaf);
}
.admin-queue-chip em {
  font-style: normal;
  min-width: 1.15rem;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: var(--color-sale-red);
  color: #fff;
  font-size: 0.68rem;
  text-align: center;
}
.admin-queue-chip:hover,
.admin-queue-chip.has-count {
  background: #fff;
  border-color: rgba(76, 122, 61, 0.35);
  color: var(--color-forest-dark);
}
.admin-header-cta {
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--color-forest);
  color: var(--color-cream) !important;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  border: 1px solid transparent;
}
.admin-header-cta:hover {
  background: var(--color-forest-dark);
  color: #fff !important;
}
.admin-header-icon-btn {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(44, 74, 46, 0.12);
  background: #fff;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
}
.admin-header-icon-btn:hover {
  border-color: rgba(76, 122, 61, 0.4);
  color: var(--color-forest-dark);
}
.admin-header-icon-btn.has-alert {
  border-color: rgba(192, 57, 43, 0.28);
}
.admin-header-dot {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--color-sale-red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.05rem;
  text-align: center;
}
.admin-header-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.45rem 0.2rem 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 74, 46, 0.12);
  background: #fff;
  color: var(--color-forest-dark);
}
.admin-header-user-btn:hover {
  border-color: rgba(76, 122, 61, 0.4);
}
.admin-header-user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--color-leaf), var(--color-forest));
  color: var(--color-cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.admin-header-user-copy {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  min-width: 0;
}
.admin-header-user-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  max-width: 12ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-header-user-role {
  font-size: 0.68rem;
  color: rgba(43, 43, 38, 0.55);
  font-weight: 600;
}
.admin-header-dropdown {
  min-width: 240px;
  padding: 0.45rem;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: 0.85rem;
  box-shadow: 0 12px 30px rgba(30, 51, 32, 0.12);
}
.admin-header-dropdown-title,
.admin-header-dropdown-user {
  padding: 0.45rem 0.65rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
}
.admin-header-dropdown-user {
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(44, 74, 46, 0.08);
  margin-bottom: 0.25rem;
}
.admin-header-dropdown-user strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-forest-dark);
}
.admin-header-dropdown-user span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(43, 43, 38, 0.55);
  text-transform: none;
}
.admin-header-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.55rem;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  color: var(--color-forest-dark);
}
.admin-header-dropdown .dropdown-item i {
  color: var(--color-leaf);
  width: 1rem;
  text-align: center;
}
.admin-header-dropdown .dropdown-item:hover {
  background: rgba(76, 122, 61, 0.1);
}
.admin-header-dropdown .dropdown-item.text-danger i {
  color: var(--color-sale-red);
}
.admin-menu-toggle {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(44, 74, 46, 0.15);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.admin-main {
  padding: 1.25rem 1.35rem 2rem;
  min-height: 0;
  flex: 1;
}
.admin-footer {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  padding: 0.55rem 1.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(43, 43, 38, 0.45);
  border-top: 1px solid rgba(44, 74, 46, 0.08);
  background: rgba(255, 255, 255, 0.35);
}
.admin-footer a {
  color: rgba(44, 74, 46, 0.55);
}
.admin-footer a:hover {
  color: var(--color-forest);
}
.admin-footer-sep {
  opacity: 0.5;
}

@media (max-width: 991.98px) {
  .admin-header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }
  .admin-header-clock {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .admin-header-clock {
    padding: 0.3rem 0.55rem;
  }
  .admin-header-clock-text {
    min-width: 0;
  }
  .admin-header-clock-date {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(300px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    box-shadow: none;
  }
  .admin-shell.is-nav-open .admin-sidebar {
    transform: translateX(0);
  }
  .admin-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(21, 35, 24, 0.48);
    z-index: 1035;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .admin-shell.is-nav-open .admin-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .admin-sidebar-logo {
    grid-column: 1;
  }
  .admin-header {
    padding: 0.7rem 0.9rem;
  }
  .admin-header-title {
    font-size: 1.05rem;
  }
  .admin-main {
    padding: 1rem 0.9rem 1.75rem;
  }
  .admin-footer {
    padding: 0.5rem 0.9rem 0.7rem;
  }
}

@media (min-width: 768px) {
  .admin-sidebar-close {
    display: none !important;
  }
}

/* Reduce duplicate page H1 noise under the sticky header title */
.admin-main > .h3:first-of-type,
.admin-main > h1.h3:first-of-type,
.admin-main > .d-flex:first-of-type > .h3.mb-0,
.admin-main > .d-flex:first-of-type > .h3.mb-3,
.admin-main > .d-flex:first-of-type > h1.h3 {
  font-size: 1.15rem;
  opacity: 0.92;
}

/* ============ Admin login / gate ============ */
.admin-gate {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  overflow-x: hidden;
}
.admin-gate-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(76, 122, 61, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(222, 201, 160, 0.18), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(44, 74, 46, 0.25), transparent 45%),
    linear-gradient(165deg, #101a12 0%, #1a2a1c 40%, #243f26 72%, #1e3320 100%);
}
.admin-gate-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-texture.svg');
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
}
.admin-gate-top,
.admin-gate-main {
  position: relative;
  z-index: 1;
}
.admin-gate-top {
  padding: 1.25rem 1.5rem 0;
}
.admin-gate-home {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(243, 234, 216, 0.78);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.admin-gate-home:hover { color: var(--color-tan); }
.admin-gate-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem 2.5rem;
}
.admin-gate-panel {
  width: min(100%, 440px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff 40%),
    #fff;
  border: 1px solid rgba(222, 201, 160, 0.45);
  border-radius: 4px;
  padding: 2.35rem 2.15rem 1.85rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.35);
  animation: admin-gate-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes admin-gate-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.admin-gate-mark {
  text-align: center;
  margin-bottom: 0.35rem;
}
.admin-gate-mark img {
  height: 96px;
  width: auto;
  margin-bottom: 0.35rem;
  border-radius: 14px;
  background: rgb(255, 252, 246);
}
.admin-gate-script {
  margin: 0;
  font-size: 2rem;
  color: var(--color-leaf) !important;
  line-height: 1;
}
.admin-gate-rule {
  height: 1px;
  margin: 1.15rem auto 1.25rem;
  width: 4.5rem;
  background: linear-gradient(90deg, transparent, var(--color-tan), transparent);
}
.admin-gate-panel h1 {
  text-align: center;
  margin: 0 0 0.35rem;
  font-size: 1.7rem;
  color: var(--color-forest-dark);
}
.admin-gate-sub {
  text-align: center;
  margin: 0 0 1.35rem;
  color: rgba(43, 43, 38, 0.62);
  line-height: 1.5;
}
.admin-gate-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 2px;
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-left: 3px solid var(--color-sale-red);
  color: #8f2c22;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}
.admin-gate-alert i {
  margin-top: 0.1rem;
  color: var(--color-sale-red);
}
.admin-gate-field {
  margin-bottom: 1rem;
}
.admin-gate-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
}
.admin-gate-field input {
  width: 100%;
  border: 1px solid rgba(44, 74, 46, 0.18);
  border-radius: 2px;
  background: rgba(243, 234, 216, 0.28);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.admin-gate-field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.12);
}
.admin-gate-pass {
  position: relative;
}
.admin-gate-pass input {
  padding-right: 2.9rem;
}
.admin-gate-eye {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: rgba(44, 74, 46, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
}
.admin-gate-eye:hover {
  color: var(--color-forest);
  background: rgba(44, 74, 46, 0.06);
}
.admin-gate-submit {
  width: 100%;
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 2px;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(30, 51, 32, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.admin-gate-submit i {
  transition: transform 0.2s ease;
}
.admin-gate-submit:hover {
  background: linear-gradient(135deg, var(--color-leaf) 0%, var(--color-forest) 100%);
  box-shadow: 0 14px 28px rgba(30, 51, 32, 0.28);
  transform: translateY(-1px);
}
.admin-gate-submit:hover i {
  transform: translateX(3px);
}
.admin-gate-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(44, 74, 46, 0.1);
  color: rgba(43, 43, 38, 0.5);
  font-size: 0.84rem;
  font-weight: 600;
}
.admin-gate-foot i {
  color: var(--color-leaf);
  font-size: 0.8rem;
}
@media (max-width: 575.98px) {
  .admin-gate-panel {
    padding: 1.75rem 1.25rem 1.45rem;
  }
  .admin-gate-script { font-size: 1.7rem; }
  .admin-gate-panel h1 { font-size: 1.45rem; }
}
@media (prefers-reduced-motion: reduce) {
  .admin-gate-panel { animation: none; }
}

/* ============ Admin login (staff pass) ============ */
body.admin-login {
  display: block;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  background: #152318;
  color: var(--color-charcoal);
  overflow-x: hidden;
}
.admin-login-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}
.admin-login-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2.75rem 2.35rem;
  color: var(--color-cream);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(76, 122, 61, 0.45), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 90%, rgba(222, 201, 160, 0.16), transparent 50%),
    linear-gradient(165deg, #101a12 0%, #1a2a1c 42%, #243f26 78%, #152318 100%);
}
.admin-login-brand-wash {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-texture.svg');
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}
.admin-login-brand::before {
  content: "ECO";
  position: absolute;
  right: -0.4rem;
  top: 8%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 18vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(243, 234, 216, 0.05);
  pointer-events: none;
  user-select: none;
}
.admin-login-kicker,
.admin-login-mark,
.admin-login-script,
.admin-login-lead,
.admin-login-meta,
.admin-login-store {
  position: relative;
  z-index: 1;
}
.admin-login-kicker {
  margin: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-tan);
}
.admin-login-mark {
  width: 148px;
  height: auto;
  margin: 1.5rem 0 0.35rem;
  border-radius: 16px;
  background: rgb(255, 252, 246);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.admin-login-script {
  margin: 0.15rem 0 1.1rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-tan) !important;
}
.admin-login-lead {
  max-width: 22rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(243, 234, 216, 0.78);
}
.admin-login-meta {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  color: rgba(243, 234, 216, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
}
.admin-login-meta i {
  margin-right: 0.35rem;
  color: var(--color-tan);
}
.admin-login-store {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--color-cream);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(222, 201, 160, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.admin-login-store:hover {
  color: var(--color-tan);
  border-color: var(--color-tan);
}

.admin-login-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(222, 201, 160, 0.35), transparent 42%),
    linear-gradient(180deg, #f7f1e4 0%, var(--color-cream) 100%);
}
.admin-login-slip {
  position: relative;
  width: min(100%, 440px);
  padding: 2.4rem 2.15rem 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42) 28%, transparent 70%),
    #fffdf8;
  border: 1px dashed rgba(44, 74, 46, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 50px rgba(30, 51, 32, 0.1);
  animation: admin-login-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.admin-login-crop {
  position: absolute;
  inset: 10px;
  pointer-events: none;
}
.admin-login-crop::before,
.admin-login-crop::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(44, 74, 46, 0.28);
  border-style: solid;
}
.admin-login-crop::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}
.admin-login-crop::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0;
}
.admin-login-slip::before,
.admin-login-slip::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(44, 74, 46, 0.28);
  border-style: solid;
  pointer-events: none;
}
.admin-login-slip::before {
  top: 9px;
  right: 9px;
  border-width: 1.5px 1.5px 0 0;
}
.admin-login-slip::after {
  bottom: 9px;
  left: 9px;
  border-width: 0 0 1.5px 1.5px;
}
.admin-login-stamp {
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  padding: 0.28rem 0.55rem;
  border: 1.5px solid rgba(76, 122, 61, 0.45);
  border-radius: 3px;
  color: var(--color-leaf);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(8deg);
  opacity: 0.85;
}
.admin-login-head {
  margin-bottom: 1.45rem;
  padding-right: 4.5rem;
}
.admin-login-slip-no {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 74, 46, 0.45);
}
.admin-login-head h1 {
  margin: 0 0 0.35rem;
  font-size: 2.05rem;
  letter-spacing: -0.03em;
  color: var(--color-forest-dark);
}
.admin-login-sub {
  margin: 0;
  color: rgba(43, 43, 38, 0.62);
  line-height: 1.5;
}
.admin-login-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.8rem 0.9rem;
  background: rgba(192, 57, 43, 0.07);
  border: 1px dashed rgba(192, 57, 43, 0.35);
  color: #8f2c22;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}
.admin-login-alert i {
  margin-top: 0.12rem;
  color: var(--color-sale-red);
}
.admin-login-field {
  margin-bottom: 1.05rem;
}
.admin-login-field label {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
}
.admin-login-field label span {
  color: var(--color-leaf);
  font-variant-numeric: tabular-nums;
}
.admin-login-control {
  position: relative;
  display: flex;
  align-items: center;
}
.admin-login-control > i {
  position: absolute;
  left: 0.9rem;
  color: rgba(44, 74, 46, 0.4);
  pointer-events: none;
}
.admin-login-control input {
  width: 100%;
  border: 1px solid rgba(44, 74, 46, 0.16);
  border-radius: 0;
  background: rgba(243, 234, 216, 0.35);
  padding: 0.88rem 1rem 0.88rem 2.55rem;
  font: inherit;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.admin-login-control:has(.admin-login-eye) input {
  padding-right: 2.7rem;
}
.admin-login-control input::placeholder {
  color: rgba(43, 43, 38, 0.38);
}
.admin-login-control input:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.12);
}
.admin-login-eye {
  position: absolute;
  right: 0.3rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  background: transparent;
  color: rgba(44, 74, 46, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.admin-login-eye:hover {
  color: var(--color-forest);
}
.admin-login-submit {
  width: 100%;
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(30, 51, 32, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.admin-login-submit i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.admin-login-submit:hover {
  background: linear-gradient(135deg, var(--color-leaf) 0%, var(--color-forest) 100%);
  box-shadow: 0 16px 30px rgba(30, 51, 32, 0.26);
  transform: translateY(-1px);
}
.admin-login-submit:hover i {
  transform: translateX(4px);
}
.admin-login-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.35rem 0 0;
  padding-top: 1.05rem;
  border-top: 1px dashed rgba(44, 74, 46, 0.16);
  color: rgba(43, 43, 38, 0.48);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.admin-login-foot i {
  color: var(--color-leaf);
}
@keyframes admin-login-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 899.98px) {
  .admin-login-shell {
    grid-template-columns: 1fr;
  }
  .admin-login-brand {
    min-height: auto;
    padding: 1.35rem 1.35rem 1.5rem;
    justify-content: flex-start;
  }
  .admin-login-brand::before { display: none; }
  .admin-login-kicker { margin-bottom: 0.85rem; }
  .admin-login-mark {
    width: 88px;
    margin: 0 0 0.15rem;
  }
  .admin-login-script {
    font-size: 1.85rem;
    margin-bottom: 0.55rem;
  }
  .admin-login-lead,
  .admin-login-meta { display: none; }
  .admin-login-store { margin-top: 0.35rem; }
  .admin-login-stage { padding: 1.25rem 1rem 2rem; }
  .admin-login-slip { padding: 1.85rem 1.25rem 1.35rem; }
  .admin-login-head { padding-right: 0; }
  .admin-login-stamp { top: 1rem; right: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .admin-login-slip,
  .admin-login-submit,
  .admin-login-submit i {
    animation: none;
    transition: none;
  }
  .admin-login-submit:hover { transform: none; }
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-leaf);
}
.stat-card h3 { margin: 0; font-size: 1.6rem; }

.table thead { background: var(--color-tan); }
.alert { border-radius: 12px; }

@media (max-width: 991.98px) {
  .hero-layout.has-deals {
    grid-template-columns: 1fr;
  }
  .hero-layout.has-deals .hero-slider {
    min-height: min(48vh, 420px);
  }
  .hero-deals {
    min-height: auto;
  }
  .hero-deal-feature,
  .hero-deal-feature-content {
    min-height: 10.5rem;
  }
  .hero-deals-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }
  .hero-deal {
    grid-template-columns: 2.9rem minmax(0, 1fr) auto;
  }
  .hero-deal-index { display: none; }
}
@media (max-width: 991.98px) {
  .site-nav {
    padding: 0.5rem 0 0.75rem;
    gap: 0.25rem;
  }
  .site-nav .nav-link {
    padding: 0.65rem 0.85rem !important;
  }
  .search-bar-btn { padding-left: 0.9rem !important; padding-right: 0.9rem !important; }
}
@media (max-width: 767.98px) {
  .navbar-brand img { height: 58px; }
  .hero-band { padding-top: 0.85rem; }
  .hero-slider,
  .hero-layout.has-deals .hero-slider {
    min-height: min(46vh, 380px);
  }
  .hero-slide-content { padding: 2.25rem 1rem 3.5rem; }
  .hero-copy { padding-left: 0.9rem; max-width: none; }
  .hero-brand-name,
  .hero-layout.has-deals .hero-brand-name { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .hero-script { font-size: clamp(1.55rem, 6.5vw, 2.15rem); }
  .hero-title { max-width: none; font-size: clamp(1.05rem, 4.2vw, 1.3rem); }
  .hero-chrome { bottom: 0.85rem; padding: 0 0.75rem; }
  .hero-chrome-inner { gap: 0.55rem; }
  .hero-index { min-width: auto; font-size: 0.74rem; }
  .hero-dots { display: none; }
  .hero-nav { width: 2.3rem; height: 2.3rem; }
  .hero-scroll {
    bottom: 0.95rem;
    gap: 0.45rem;
  }
  .hero-slider.has-chrome .hero-scroll {
    bottom: 3.25rem;
  }
  .hero-scroll-mouse {
    width: 1.1rem;
    height: 1.8rem;
  }
  .hero-scroll-label { font-size: 0.58rem; letter-spacing: 0.16em; }
  .hero-deals-list {
    grid-template-columns: 1fr;
  }
  .hero-deal {
    grid-template-columns: 1.35rem 2.9rem minmax(0, 1fr) auto;
  }
  .hero-deal-index { display: block; }
  .hero-deal-feature,
  .hero-deal-feature-content {
    min-height: 9.75rem;
  }
  .hero-actions .btn { width: 100%; }
  .hero-cta,
  .hero-cta-secondary { min-height: 2.75rem; }
  .section { padding: 2rem 0; }
  .product-card .name { font-size: 0.95rem; }
  .search-bar-btn { font-size: 0.9rem; }
  .search-cat-dropdown { max-width: 148px; }
  .search-cat-trigger { font-size: 0.8rem; padding-left: 0.65rem; }
  .search-cat-panel {
    grid-template-columns: 1fr;
    width: min(92vw, 360px);
    left: 0;
  }
  .search-cat-menu { max-height: 220px; border-right: 0; border-bottom: 1px solid rgba(44, 74, 46, 0.08); }
  .search-cat-item-arrow { display: none; }
}

/* —— FAQ page —— */
.faq-intro,
.terms-intro {
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 60% 70% at 88% 18%, rgba(76, 122, 61, 0.32), transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 88%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(145deg, #152318 0%, var(--color-forest-dark) 52%, #2a4d2d 100%);
  padding: 3rem 0 3.15rem;
}
.faq-intro::after,
.terms-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 201, 160, 0.45), transparent);
}
.faq-intro-grid,
.terms-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.25rem;
  align-items: end;
}
.faq-kicker,
.terms-kicker {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  color: var(--color-tan) !important;
  margin: 0 0 0.3rem;
  line-height: 1;
}
.faq-intro h1,
.terms-intro h1 {
  color: #fff;
  font-size: clamp(1.95rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
}
.faq-lead,
.terms-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(243, 234, 216, 0.86);
}
.faq-intro-card,
.terms-intro-card {
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 18px;
  padding: 1.35rem 1.45rem;
  backdrop-filter: blur(6px);
}
.faq-intro-label,
.terms-intro-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tan);
  margin-bottom: 0.45rem;
}
.faq-intro-card p,
.terms-intro-card p {
  margin: 0 0 1rem;
  color: rgba(243, 234, 216, 0.88);
  line-height: 1.5;
}
.terms-intro-date {
  margin: 0 0 0.45rem !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff !important;
}

.faq-main,
.terms-main {
  padding: 2.75rem 0 2rem;
}
.faq-layout,
.terms-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.75rem 2.25rem;
  align-items: start;
}
.terms-layout {
  grid-template-columns: 240px 1fr;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid rgba(44, 74, 46, 0.1) !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(44, 74, 46, 0.04);
}
.faq-question {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--color-forest-dark) !important;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 1.05rem 1.2rem !important;
  gap: 0.75rem;
}
.faq-question:not(.collapsed) {
  background: rgba(76, 122, 61, 0.06) !important;
  color: var(--color-forest) !important;
}
.faq-question::after {
  background-image: none !important;
  content: "+" !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  width: auto !important;
  height: auto !important;
  color: var(--color-leaf);
  transform: none !important;
}
.faq-question:not(.collapsed)::after {
  content: "–" !important;
}
.faq-question-meta {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}
.faq-cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-leaf);
}
.faq-q {
  font-size: 1.02rem;
  line-height: 1.35;
}
.faq-answer {
  padding: 0 1.2rem 1.15rem;
  color: rgba(43, 43, 38, 0.78);
  line-height: 1.6;
}

.faq-side {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}
.faq-side-card,
.terms-toc {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 24px rgba(44, 74, 46, 0.04);
}
.faq-side-card.is-soft {
  background: linear-gradient(160deg, rgba(243, 234, 216, 0.65), #fff);
}
.faq-side-card h2,
.terms-toc h2 {
  font-size: 1rem;
  margin: 0 0 0.85rem;
}
.faq-side-card p {
  margin: 0 0 0.75rem;
  color: rgba(43, 43, 38, 0.7);
  line-height: 1.45;
}
.faq-side-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.faq-side-links a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--color-forest);
}
.faq-side-links a:hover { color: var(--color-leaf); }
.faq-side-links i { color: var(--color-leaf); }
.faq-side-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-forest-dark);
  margin-bottom: 0.25rem;
}
.faq-side-phone:hover { color: var(--color-leaf); }

.faq-cta { padding: 0.5rem 0 3.4rem; }
.faq-cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
  border-radius: 22px;
  padding: 2rem 2rem;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(76, 122, 61, 0.38), transparent 55%),
    linear-gradient(135deg, var(--color-forest-dark), var(--color-forest) 55%, #355838);
}
.faq-cta-script {
  font-size: 1.7rem;
  color: var(--color-tan) !important;
  margin: 0 0 0.2rem;
  line-height: 1;
}
.faq-cta-panel h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 0.5rem;
}
.faq-cta-panel p {
  margin: 0;
  max-width: 34rem;
  color: rgba(243, 234, 216, 0.88);
  line-height: 1.55;
}
.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* —— Terms page —— */
.terms-toc {
  position: sticky;
  top: 1rem;
}
.terms-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.terms-toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.35;
}
.terms-toc a span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--color-leaf);
  min-width: 1.4rem;
}
.terms-toc a:hover { color: var(--color-leaf); }
.terms-content {
  display: grid;
  gap: 1rem;
}
.terms-section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 24px rgba(44, 74, 46, 0.04);
  scroll-margin-top: 1.25rem;
}
.terms-section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.terms-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-leaf);
}
.terms-section h2 {
  font-size: 1.2rem;
  margin: 0;
}
.terms-section p {
  margin: 0 0 0.7rem;
  color: rgba(43, 43, 38, 0.78);
  line-height: 1.65;
  max-width: 48rem;
}
.terms-section p:last-child { margin-bottom: 0; }
.terms-foot {
  margin-top: 0.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(243, 234, 216, 0.55), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(44, 74, 46, 0.08);
}
.terms-foot p {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--color-forest-dark);
}
.terms-foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

[data-help-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-help-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-help-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .faq-intro-grid,
  .terms-intro-grid,
  .faq-layout,
  .terms-layout {
    grid-template-columns: 1fr;
  }
  .faq-side,
  .terms-toc { position: static; }
}
@media (max-width: 575.98px) {
  .faq-intro,
  .terms-intro { padding: 2.35rem 0 2.5rem; }
  .faq-cta-panel,
  .terms-section,
  .terms-foot { padding: 1.25rem 1.15rem; }
  .faq-cta-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* —— Shop page —— */
.shop-intro {
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 60% 70% at 88% 20%, rgba(76, 122, 61, 0.32), transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 88%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(145deg, #152318 0%, var(--color-forest-dark) 52%, #2a4d2d 100%);
  padding: 2.35rem 0 2.5rem;
}
.shop-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 201, 160, 0.45), transparent);
}
.shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(243, 234, 216, 0.65);
  margin-bottom: 1.15rem;
}
.shop-breadcrumb a {
  color: rgba(243, 234, 216, 0.82);
  font-weight: 600;
}
.shop-breadcrumb a:hover { color: var(--color-tan); }
.shop-breadcrumb span { color: #fff; font-weight: 700; }
.shop-breadcrumb i { font-size: 0.7rem; opacity: 0.7; }
.shop-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 2rem;
  align-items: end;
}
.shop-kicker {
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  color: var(--color-tan) !important;
  margin: 0 0 0.25rem;
  line-height: 1;
}
.shop-intro h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
}
.shop-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(243, 234, 216, 0.86);
}
.shop-intro-aside {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}
.shop-intro-stat {
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  min-width: 10rem;
}
.shop-intro-stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.shop-intro-stat-label {
  color: rgba(243, 234, 216, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
}
.shop-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.shop-intro-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(243, 234, 216, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
}
.shop-intro-links a:hover { color: var(--color-tan); }

.shop-cats {
  padding: 1.1rem 0 0.25rem;
}
.shop-cats-track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.85rem;
  scrollbar-width: thin;
}
.shop-cat-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(44, 74, 46, 0.1);
  color: var(--color-forest);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.shop-cat-chip i { color: var(--color-leaf); }
.shop-cat-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(76, 122, 61, 0.28);
  color: var(--color-forest-dark);
}
.shop-cat-chip.is-active {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: #fff;
}
.shop-cat-chip.is-active i { color: var(--color-tan); }

.shop-main {
  padding: 1.25rem 0 3.25rem;
}
.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 1.75rem;
  align-items: start;
}
.shop-filters-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(44, 74, 46, 0.05);
  overflow: hidden;
}
.shop-filters-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-forest);
  cursor: pointer;
  user-select: none;
}
.shop-filters-summary::-webkit-details-marker { display: none; }
.shop-filters-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.shop-filters-chevron {
  transition: transform 0.2s ease;
  color: var(--color-leaf);
}
.shop-filters-panel[open] .shop-filters-chevron {
  transform: rotate(180deg);
}
.shop-filters-form {
  padding: 0 1.2rem 1.25rem;
  border-top: 1px solid rgba(44, 74, 46, 0.08);
  padding-top: 1.1rem;
}
.shop-field { margin-bottom: 1rem; }
.shop-filters-form .form-label {
  font-weight: 700;
  color: var(--color-forest);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.shop-filters-form .form-control,
.shop-filters-form .form-select {
  border-radius: 11px;
  border-color: rgba(44, 74, 46, 0.16);
  background: rgba(243, 234, 216, 0.22);
}
.shop-filters-form .form-control:focus,
.shop-filters-form .form-select:focus {
  background: #fff;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.2rem rgba(76, 122, 61, 0.15);
}
.shop-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
}
.shop-price-sep {
  font-size: 0.8rem;
  color: rgba(43, 43, 38, 0.55);
  font-weight: 600;
}
.shop-checks {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.shop-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
}
.shop-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--color-forest);
}
.shop-clear-link {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-leaf);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}
.shop-toolbar-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-forest);
  margin-bottom: 0.2rem;
}
.shop-toolbar-count {
  margin: 0;
  color: rgba(43, 43, 38, 0.68);
  font-size: 0.95rem;
}
.shop-toolbar-count strong { color: var(--color-forest-dark); }
.shop-search {
  position: relative;
  min-width: min(100%, 240px);
}
.shop-search i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(44, 74, 46, 0.45);
}
.shop-search input {
  width: 100%;
  border: 1px solid rgba(44, 74, 46, 0.14);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 2.35rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shop-search input:focus {
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.18rem rgba(76, 122, 61, 0.12);
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.shop-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(76, 122, 61, 0.1);
  color: var(--color-forest-dark);
  font-weight: 700;
  font-size: 0.84rem;
  border: 1px solid rgba(76, 122, 61, 0.16);
}
.shop-active-chip i { font-size: 0.7rem; opacity: 0.7; }
.shop-active-chip:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.shop-grid-item .product-card {
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.shop-grid-item .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(44, 74, 46, 0.1);
}

.shop-empty {
  text-align: center;
  max-width: 30rem;
  margin: 1rem auto;
  padding: 2.4rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
}
.shop-empty-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  font-size: 1.4rem;
}
.shop-empty h2 {
  font-size: 1.35rem;
  margin: 0 0 0.45rem;
}
.shop-empty p {
  margin: 0 0 1.25rem;
  color: rgba(43, 43, 38, 0.7);
  line-height: 1.55;
}
.shop-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
}
.shop-page-btn {
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-forest);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(44, 74, 46, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.shop-page-btn:hover {
  border-color: var(--color-leaf);
  color: var(--color-forest-dark);
}
.shop-page-btn.is-active {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: #fff;
}
.shop-page-gap {
  color: rgba(43, 43, 38, 0.45);
  padding: 0 0.15rem;
}

[data-shop-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-shop-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-shop-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .shop-intro-grid,
  .shop-layout { grid-template-columns: 1fr; }
  .shop-intro-aside {
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .shop-intro { padding: 1.85rem 0 2rem; }
  .shop-intro-aside {
    grid-auto-flow: row;
    justify-items: stretch;
  }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .shop-toolbar { align-items: stretch; }
  .shop-search { min-width: 100%; }
}

/* —— Flash sales page —— */
.btn-sale {
  background: var(--color-sale-red);
  border-color: var(--color-sale-red);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
}
.btn-sale:hover {
  background: #a83226;
  border-color: #a83226;
  color: #fff;
}

.flash-page-intro {
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 55% 70% at 92% 18%, rgba(192, 57, 43, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 8% 90%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(145deg, #1a1512 0%, #241c18 40%, var(--color-forest-dark) 100%);
  padding: 3.25rem 0 3.5rem;
}
.flash-page-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.45), rgba(222, 201, 160, 0.35), transparent);
}
.flash-page-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}
.flash-page-kicker {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #f0b4ab !important;
  margin: 0 0 0.35rem;
  line-height: 1;
}
.flash-page-intro h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
}
.flash-page-lead {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(243, 234, 216, 0.86);
}
.flash-page-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.flash-page-pulse {
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 18px;
  padding: 1.45rem 1.5rem;
  backdrop-filter: blur(6px);
}
.flash-page-pulse-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0b4ab;
  margin-bottom: 0.65rem;
}
.flash-page-pulse-count {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
.flash-page-pulse-count strong {
  font-size: 1.7rem;
  color: #fff;
}
.flash-page-pulse-save {
  margin: 0 0 1.1rem;
  color: rgba(243, 234, 216, 0.82);
}
.flash-page-pulse-save strong { color: #f0b4ab; }
.flash-page-pulse-timer {
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 234, 216, 0.12);
}
.flash-page-pulse-timer-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(243, 234, 216, 0.7);
  margin-bottom: 0.55rem;
}
.flash-page-countdown {
  color: #fff !important;
  gap: 0.45rem;
}
.flash-page-countdown span {
  background: rgba(192, 57, 43, 0.35);
  color: #fff;
  min-width: 2.6rem;
  padding: 0.35rem 0.5rem;
}

.flash-page-main {
  padding: 2.75rem 0 1.5rem;
}
.flash-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.flash-page-section-title {
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
}
.flash-page-section-text {
  margin: 0;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.5;
  max-width: 34rem;
}
.flash-page-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-forest);
  white-space: nowrap;
}
.flash-page-shop-link i {
  transition: transform 0.2s ease;
}
.flash-page-shop-link:hover i {
  transform: translateX(3px);
}
.flash-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.flash-page-item .product-card {
  height: 100%;
}
.flash-page-item .flash-card {
  border-color: rgba(192, 57, 43, 0.22);
  background: linear-gradient(165deg, #fff 0%, #fff8f6 55%, #f8f1e4 100%);
  box-shadow: 0 12px 28px rgba(44, 74, 46, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.flash-page-item .flash-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 57, 43, 0.4);
  box-shadow: 0 16px 34px rgba(192, 57, 43, 0.1);
}

.flash-page-empty {
  text-align: center;
  max-width: 32rem;
  margin: 0.5rem auto 1rem;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(44, 74, 46, 0.05);
}
.flash-page-empty-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-sale-red);
  font-size: 1.5rem;
}
.flash-page-empty h2 {
  font-size: 1.45rem;
  margin: 0 0 0.55rem;
}
.flash-page-empty p {
  margin: 0 0 1.35rem;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.55;
}
.flash-page-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.flash-page-note {
  padding: 1rem 0 3.5rem;
}
.flash-page-note-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.6rem 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
}
.flash-page-note-panel p {
  margin: 0.35rem 0 0;
  max-width: 40rem;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.55;
}
.flash-page-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

[data-flash-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-flash-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-flash-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-flash-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .flash-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .flash-page-intro-grid { grid-template-columns: 1fr; }
  .flash-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .flash-page-intro { padding: 2.5rem 0 2.75rem; }
  .flash-page-main { padding-top: 2.15rem; }
  .flash-page-intro-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .flash-page-note-panel { padding: 1.35rem 1.2rem; }
}

/* —— About page —— */
.about-intro {
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 65% 75% at 90% 15%, rgba(76, 122, 61, 0.38), transparent 55%),
    radial-gradient(ellipse 45% 55% at 5% 85%, rgba(222, 201, 160, 0.14), transparent 50%),
    linear-gradient(145deg, #152318 0%, var(--color-forest-dark) 50%, #2a4d2d 100%);
  padding: 3.25rem 0 3.5rem;
}
.about-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 201, 160, 0.45), transparent);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
}
.about-kicker {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--color-tan) !important;
  margin: 0 0 0.35rem;
  line-height: 1;
}
.about-intro h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  max-width: 12ch;
}
.about-lead {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(243, 234, 216, 0.86);
}
.about-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-highlight {
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 18px;
  padding: 1.5rem 1.55rem;
  backdrop-filter: blur(6px);
}
.about-highlight-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tan);
  margin-bottom: 0.45rem;
}
.about-highlight-place {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}
.about-highlight-address {
  margin: 0 0 1.15rem;
  color: rgba(243, 234, 216, 0.82);
  line-height: 1.5;
}
.about-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 234, 216, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(243, 234, 216, 0.9);
}
.about-highlight-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.about-highlight-meta i { color: var(--color-tan); }

.about-story {
  padding: 3.25rem 0 1.25rem;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem 2.75rem;
  align-items: start;
}
.about-section-title {
  font-size: 1.55rem;
  margin: 0 0 0.75rem;
}
.about-section-text {
  margin: 0;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.55;
  max-width: 36rem;
}
.about-story-copy p {
  color: rgba(43, 43, 38, 0.78);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 38rem;
}
.about-story-copy p:last-child { margin-bottom: 0; }
.about-story-panel {
  background: linear-gradient(145deg, var(--color-forest) 0%, var(--color-leaf) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 1.85rem 1.9rem;
  box-shadow: 0 18px 40px rgba(44, 74, 46, 0.16);
}
.about-story-panel h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}
.about-story-panel > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}
.about-stand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.about-stand-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  line-height: 1.35;
}
.about-stand-list i {
  color: var(--color-tan);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.about-pillars {
  padding: 2rem 0 1.5rem;
}
.about-pillars-head {
  margin-bottom: 1.5rem;
}
.about-pillars-head .about-section-text {
  margin-top: 0.35rem;
}
.about-pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.75rem;
}
.about-pillar {
  padding: 0.25rem 0;
}
.about-pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 46, 0.09);
  color: var(--color-forest);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.about-pillar h3 {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}
.about-pillar p {
  margin: 0;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.55;
}

.about-serve {
  padding: 1.5rem 0 1.25rem;
}
.about-serve-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem 2.5rem;
  align-items: center;
  padding: 1.75rem 1.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
  box-shadow: 0 12px 30px rgba(44, 74, 46, 0.05);
}
.about-serve-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.about-serve-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-forest-dark);
  font-size: 0.98rem;
}
.about-serve-list i {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 122, 61, 0.12);
  color: var(--color-leaf);
  flex-shrink: 0;
}

.about-cta {
  padding: 1.5rem 0 3.5rem;
}
.about-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(76, 122, 61, 0.4), transparent 55%),
    linear-gradient(135deg, var(--color-forest-dark), var(--color-forest) 55%, #355838);
}
.about-cta-script {
  font-size: 1.85rem;
  color: var(--color-tan) !important;
  margin: 0 0 0.25rem;
  line-height: 1;
}
.about-cta-copy h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
}
.about-cta-copy > p {
  max-width: 40rem;
  margin: 0 0 1.4rem;
  color: rgba(243, 234, 216, 0.88);
  line-height: 1.55;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

[data-about-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-about-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-about-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-about-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .about-intro-grid,
  .about-story-grid,
  .about-pillar-row,
  .about-serve-panel {
    grid-template-columns: 1fr;
  }
  .about-intro h1 { max-width: none; }
  .about-serve-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .about-intro { padding: 2.5rem 0 2.75rem; }
  .about-story { padding-top: 2.25rem; }
  .about-serve-panel,
  .about-cta-panel,
  .about-story-panel { padding: 1.4rem 1.2rem; }
  .about-serve-list { grid-template-columns: 1fr; }
  .about-intro-actions .btn-lg,
  .about-cta-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* —— Contact page —— */
.btn-outline-cream {
  border: 2px solid rgba(243, 234, 216, 0.55);
  color: var(--color-cream);
  font-weight: 700;
  border-radius: 999px;
  background: transparent;
}
.btn-outline-cream:hover {
  background: rgba(243, 234, 216, 0.12);
  border-color: var(--color-cream);
  color: #fff;
}

.contact-intro {
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(76, 122, 61, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(222, 201, 160, 0.12), transparent 50%),
    linear-gradient(135deg, #152318 0%, var(--color-forest-dark) 48%, #243f26 100%);
  padding: 3.25rem 0 3.5rem;
}
.contact-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 201, 160, 0.45), transparent);
}
.contact-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}
.contact-kicker {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--color-tan) !important;
  margin: 0 0 0.35rem;
  line-height: 1;
}
.contact-intro h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 14ch;
}
.contact-lead {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(243, 234, 216, 0.86);
}
.contact-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-promise {
  background: rgba(243, 234, 216, 0.06);
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(6px);
}
.contact-promise-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tan);
  margin-bottom: 0.55rem;
}
.contact-promise p {
  margin: 0 0 1rem;
  color: rgba(243, 234, 216, 0.88);
  line-height: 1.5;
}
.contact-promise ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.contact-promise li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(243, 234, 216, 0.92);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-promise li i {
  color: var(--color-tan);
  margin-top: 0.1rem;
}

.contact-main {
  padding: 3.25rem 0 1.5rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem 2.75rem;
  align-items: start;
}
.contact-section-title {
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
}
.contact-section-text {
  margin: 0 0 1.5rem;
  color: rgba(43, 43, 38, 0.72);
  line-height: 1.55;
  max-width: 34rem;
}
.contact-channel-list {
  display: grid;
  gap: 0.75rem;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.04);
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
a.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 122, 61, 0.28);
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: inherit;
}
.contact-channel.is-wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.85));
  border-color: rgba(37, 211, 102, 0.28);
}
.contact-channel-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-channel.is-wa .contact-channel-icon {
  background: #25D366;
  color: #fff;
}
.contact-channel-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.contact-channel-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-leaf);
}
.contact-channel-value {
  font-weight: 700;
  color: var(--color-forest-dark);
  line-height: 1.35;
  word-break: break-word;
}
.contact-channel-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.contact-channel-phones a {
  color: var(--color-forest-dark);
  font-weight: 700;
}
.contact-channel-phones a:hover { color: var(--color-leaf); }
.contact-channel-meta {
  font-size: 0.86rem;
  color: rgba(43, 43, 38, 0.62);
}
.contact-channel-arrow {
  color: rgba(44, 74, 46, 0.35);
  font-size: 1rem;
}
a.contact-channel:hover .contact-channel-arrow {
  color: var(--color-leaf);
}

.contact-social {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(44, 74, 46, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}
.contact-social-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
}
.contact-social-links {
  display: flex;
  gap: 0.55rem;
}
.contact-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.12);
  color: var(--color-forest) !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact-social-btn:hover {
  transform: translateY(-2px);
  color: #fff !important;
}
.contact-social-btn.is-ig:hover { background: #E1306C; border-color: #E1306C; }
.contact-social-btn.is-tt:hover { background: #111; border-color: #111; }
.contact-social-btn.is-fb:hover { background: #1877F2; border-color: #1877F2; }

.contact-form-panel {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
  padding: 1.75rem 1.85rem 1.85rem;
  box-shadow: 0 18px 40px rgba(44, 74, 46, 0.07);
  position: relative;
  overflow: hidden;
}
.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forest), var(--color-leaf), var(--color-tan));
}
.contact-form-head { margin-bottom: 0.25rem; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-field { margin-bottom: 1rem; }
.contact-form .form-label {
  font-weight: 700;
  color: var(--color-forest);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.contact-form .form-control {
  border-radius: 12px;
  border-color: rgba(44, 74, 46, 0.16);
  padding: 0.75rem 0.95rem;
  background: rgba(243, 234, 216, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.2rem rgba(76, 122, 61, 0.15);
}
.contact-form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
}
.contact-form-foot .btn i {
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}
.contact-form-foot .btn:hover i {
  transform: translateX(3px);
}
.contact-form-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #128C7E;
  font-size: 0.95rem;
}
.contact-form-wa:hover { color: #075E54; }

.contact-visit {
  padding: 1.5rem 0 3.5rem;
}
.contact-visit-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.08);
  box-shadow: 0 16px 36px rgba(44, 74, 46, 0.06);
}
.contact-visit-copy {
  padding: 2rem 1.85rem;
  background:
    linear-gradient(160deg, rgba(243, 234, 216, 0.65), #fff 55%),
    #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.35rem;
}
.contact-map {
  min-height: 320px;
  background: rgba(44, 74, 46, 0.06);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

[data-contact-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-contact-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-contact-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-contact-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .contact-intro-grid,
  .contact-layout,
  .contact-visit-panel {
    grid-template-columns: 1fr;
  }
  .contact-intro h1 { max-width: none; }
  .contact-map,
  .contact-map iframe { min-height: 280px; }
}
@media (max-width: 575.98px) {
  .contact-intro { padding: 2.5rem 0 2.75rem; }
  .contact-main { padding-top: 2.25rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-panel,
  .contact-visit-copy { padding: 1.4rem 1.2rem; }
  .contact-channel {
    grid-template-columns: auto 1fr;
  }
  .contact-channel-arrow { display: none; }
  .contact-intro-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Cart page ===== */
.cart-page {
  padding: 2rem 0 3.5rem;
}
.cart-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.cart-page-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-leaf);
}
.cart-page-head h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}
.cart-page-lead {
  margin: 0.35rem 0 0;
  color: rgba(43, 43, 38, 0.68);
}
.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-forest);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cart-continue:hover {
  border-color: rgba(44, 74, 46, 0.35);
  transform: translateX(-2px);
  color: var(--color-forest-dark);
}

.cart-empty {
  text-align: center;
  max-width: 32rem;
  margin: 1.5rem auto 0;
  padding: 2.75rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72)),
    radial-gradient(circle at top, rgba(76, 122, 61, 0.1), transparent 55%);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
}
.cart-empty-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  font-size: 1.5rem;
}
.cart-empty h2 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
}
.cart-empty p {
  margin: 0 0 1.35rem;
  color: rgba(43, 43, 38, 0.7);
  line-height: 1.55;
}
.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}
.cart-main {
  display: grid;
  gap: 1rem;
}

.cart-free-note {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 74, 46, 0.1);
}
.cart-free-note.is-met {
  background: rgba(76, 122, 61, 0.1);
  border-color: rgba(76, 122, 61, 0.22);
}
.cart-free-copy {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}
.cart-free-copy strong {
  color: var(--color-forest-dark);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-free-copy span {
  color: rgba(43, 43, 38, 0.68);
  font-size: 0.88rem;
}
.cart-free-bar {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(44, 74, 46, 0.1);
  overflow: hidden;
}
.cart-free-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-leaf), var(--color-forest));
  transition: width 0.35s ease;
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(44, 74, 46, 0.05);
}
.cart-line-media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 1;
}
.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cart-line:hover .cart-line-media img {
  transform: scale(1.04);
}
.cart-line-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
}
.cart-line-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--color-forest);
  text-decoration: none;
  line-height: 1.3;
}
.cart-line-name:hover { color: var(--color-forest-dark); }
.cart-line-meta {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(43, 43, 38, 0.62);
}
.cart-line-total {
  font-weight: 800;
  color: var(--color-forest-dark);
  white-space: nowrap;
  font-size: 1.05rem;
}
.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.cart-line-price {
  font-weight: 700;
  color: var(--color-forest);
  font-size: 0.92rem;
}
.cart-line-price span {
  font-weight: 500;
  color: rgba(43, 43, 38, 0.55);
  font-size: 0.8rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(44, 74, 46, 0.16);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.cart-qty-btn {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cart-qty-btn:hover:not(:disabled) {
  background: rgba(44, 74, 46, 0.08);
}
.cart-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.cart-qty-input {
  width: 2.4rem;
  border: 0;
  text-align: center;
  font-weight: 700;
  color: var(--color-forest-dark);
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-qty-input:focus {
  outline: none;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: rgba(192, 57, 43, 0.9);
  font-weight: 600;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0;
  cursor: pointer;
}
.cart-remove:hover { color: var(--color-sale-red); }

.cart-summary {
  position: sticky;
  top: 1rem;
}
.cart-summary-panel {
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.96), rgba(243,234,216,0.55));
  border: 1px solid rgba(44, 74, 46, 0.1);
  box-shadow: 0 14px 34px rgba(44, 74, 46, 0.08);
}
.cart-summary-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}
.cart-summary-rows {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.cart-summary-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}
.cart-summary-rows dt {
  margin: 0;
  color: rgba(43, 43, 38, 0.68);
}
.cart-summary-rows dd {
  margin: 0;
  font-weight: 700;
  color: var(--color-forest-dark);
}
.cart-summary-rows .is-discount dt,
.cart-summary-rows .is-discount dd {
  color: var(--color-leaf);
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px dashed rgba(44, 74, 46, 0.18);
}
.cart-summary-total span {
  font-weight: 700;
  color: var(--color-forest);
}
.cart-summary-total strong {
  font-size: 1.45rem;
  color: var(--color-forest-dark);
}

.cart-promo {
  margin-bottom: 1.15rem;
}
.cart-promo-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.7);
  margin-bottom: 0.4rem;
}
.cart-promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.cart-promo-row input {
  border: 1px solid rgba(44, 74, 46, 0.18);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #fff;
  min-width: 0;
}
.cart-promo-row input:focus {
  outline: none;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.15rem rgba(76, 122, 61, 0.15);
}
.cart-promo-row .btn {
  padding-inline: 1rem;
}

.cart-summary-cta {
  display: grid;
  gap: 0.65rem;
}
.cart-summary-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
}
.cart-summary-trust {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(44, 74, 46, 0.1);
  display: grid;
  gap: 0.45rem;
}
.cart-summary-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(43, 43, 38, 0.68);
}
.cart-summary-trust i {
  color: var(--color-leaf);
}

@media (max-width: 991.98px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}
@media (max-width: 575.98px) {
  .cart-page { padding-top: 1.4rem; }
  .cart-line {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.85rem;
  }
  .cart-line-top {
    flex-direction: column;
    gap: 0.35rem;
  }
  .cart-line-actions {
    gap: 0.65rem;
  }
  .cart-summary-panel {
    padding: 1.15rem 1.05rem 1.25rem;
  }
}

/* ============ Newsletter strip (footer) ============ */
.footer-newsletter {
  border-top: 1px solid rgba(222, 201, 160, 0.25);
  background: linear-gradient(90deg, rgba(222, 201, 160, 0.08), rgba(76, 122, 61, 0.14));
}
.footer-newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
}
.footer-newsletter-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.footer-newsletter-text {
  color: rgba(243, 234, 216, 0.72);
  font-size: 0.88rem;
}
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 420px;
}
.footer-newsletter-form .form-control {
  border-radius: 999px;
  border: 1px solid rgba(222, 201, 160, 0.35);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}
.footer-newsletter-form .form-control::placeholder { color: rgba(243, 234, 216, 0.5); }
.footer-newsletter-form .btn {
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { max-width: 100%; }
}

/* ============ Product detail page ============ */
.pd-page {
  padding: 1.5rem 0 2rem;
}
.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(43, 43, 38, 0.55);
  margin-bottom: 1.35rem;
}
.pd-breadcrumb a {
  color: var(--color-forest);
  font-weight: 600;
}
.pd-breadcrumb a:hover { color: var(--color-leaf); }
.pd-breadcrumb span {
  color: var(--color-forest-dark);
  font-weight: 700;
}
.pd-breadcrumb i { font-size: 0.7rem; opacity: 0.65; }

.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.pd-gallery-main {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(44, 74, 46, 0.08);
  box-shadow: 0 16px 36px rgba(44, 74, 46, 0.06);
}
.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-gallery-badges {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 2;
}
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  background: var(--color-sale-red);
}
.pd-badge.is-flash {
  background: var(--color-forest);
  color: var(--color-cream);
}
.pd-badge.is-low {
  background: #c47a12;
}
.pd-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}
.pd-thumb {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-thumb:hover,
.pd-thumb.is-active {
  border-color: var(--color-forest);
  transform: translateY(-1px);
}

.pd-buy {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 16px 36px rgba(44, 74, 46, 0.06);
}
.pd-category {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-leaf);
  margin-bottom: 0.45rem;
}
.pd-buy h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.pd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-bottom: 1rem;
}
.pd-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.pd-rating strong { color: var(--color-forest-dark); }
.pd-rating a {
  color: rgba(43, 43, 38, 0.62);
  font-weight: 600;
  font-size: 0.92rem;
}
.pd-rating a:hover { color: var(--color-leaf); }
.pd-sold {
  color: rgba(43, 43, 38, 0.58);
  font-weight: 600;
  font-size: 0.92rem;
}
.pd-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.35rem;
}
.pd-price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-forest);
  line-height: 1;
}
.pd-price-was {
  color: rgba(43, 43, 38, 0.45);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 600;
}
.pd-save {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-sale-red);
  font-weight: 800;
  font-size: 0.8rem;
}
.pd-unit {
  margin: 0 0 1rem;
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.95rem;
}
.pd-flash {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(222, 201, 160, 0.25));
  border: 1px solid rgba(192, 57, 43, 0.16);
}
.pd-flash-copy {
  display: grid;
  gap: 0.15rem;
}
.pd-flash-copy strong {
  color: var(--color-sale-red);
  font-family: var(--font-display);
}
.pd-flash-copy span {
  font-size: 0.82rem;
  color: rgba(43, 43, 38, 0.6);
}
.pd-countdown { color: var(--color-sale-red) !important; }
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}
.pd-stock.is-in {
  background: rgba(76, 122, 61, 0.12);
  color: var(--color-leaf);
}
.pd-stock.is-low {
  background: rgba(196, 122, 18, 0.14);
  color: #9a5e0c;
}
.pd-stock.is-out {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-sale-red);
}
.pd-cart-form {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.pd-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.pd-qty-label {
  font-weight: 700;
  color: var(--color-forest);
}
.pd-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(44, 74, 46, 0.16);
  border-radius: 999px;
  background: rgba(243, 234, 216, 0.28);
  overflow: hidden;
}
.pd-qty-btn {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pd-qty-btn:hover:not(:disabled) { background: rgba(44, 74, 46, 0.08); }
.pd-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pd-qty-input {
  width: 2.6rem;
  border: 0;
  text-align: center;
  font-weight: 800;
  color: var(--color-forest-dark);
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
}
.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pd-qty-input:focus { outline: none; }
.pd-btn-cart {
  width: 100%;
  justify-content: center;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.pd-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.pd-wish-form,
.pd-actions .btn {
  width: 100%;
}
.pd-actions .btn {
  justify-content: center;
}
.pd-assurance {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(44, 74, 46, 0.1);
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: rgba(43, 43, 38, 0.78);
  font-size: 0.92rem;
}
.pd-assurance div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pd-assurance i { color: var(--color-leaf); }
.pd-call {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(43, 43, 38, 0.62);
}
.pd-call a { font-weight: 700; }

.pd-section {
  padding: 0.5rem 0 2.5rem;
}
.pd-section-title {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}
.pd-section-text {
  margin: 0;
  color: rgba(43, 43, 38, 0.68);
  line-height: 1.5;
}
.pd-section-head {
  margin-bottom: 1.15rem;
}
.pd-about {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem 2rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 22px;
  padding: 1.6rem 1.7rem;
}
.pd-description {
  color: rgba(43, 43, 38, 0.8);
  line-height: 1.7;
  max-width: 42rem;
}
.pd-about-aside {
  background: linear-gradient(160deg, rgba(243, 234, 216, 0.65), #fff);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
}
.pd-about-aside h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.pd-about-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.pd-about-aside li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  line-height: 1.35;
}
.pd-about-aside i { color: var(--color-leaf); margin-top: 0.1rem; }

.pd-reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.75rem 2rem;
  align-items: start;
}
.pd-review-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.pd-review {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
}
.pd-review-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.pd-review-top time {
  color: rgba(43, 43, 38, 0.5);
  font-size: 0.86rem;
  white-space: nowrap;
}
.pd-review p {
  margin: 0 0 0.55rem;
  color: rgba(43, 43, 38, 0.78);
  line-height: 1.55;
}
.pd-review-photo {
  max-width: 120px;
  border-radius: 10px;
  margin-bottom: 0.55rem;
}
.pd-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-leaf);
}
.pd-store-reply {
  margin-top: 0.75rem;
  background: var(--color-cream);
  border-left: 3px solid var(--color-leaf);
  border-radius: 0 12px 12px 0;
  padding: 0.7rem 0.9rem;
}
.pd-store-reply-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-forest-dark);
  margin-bottom: 0.3rem;
}
.pd-store-reply p { margin: 0; font-size: 0.92rem; }
.pd-stock-request {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--color-cream);
  border: 1px dashed rgba(44, 74, 46, 0.3);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}
.pd-stock-request p { margin: 0; font-size: 0.9rem; }
.pd-stock-request-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pd-stock-request-form .form-control { min-width: 200px; flex: 1; }

/* Order progress timeline (storefront) */
.order-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.order-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(44, 74, 46, 0.15);
}
.order-timeline-step {
  position: relative;
  display: flex;
  gap: 0.85rem;
  padding: 0.4rem 0 0.9rem;
}
.order-timeline-step:last-child { padding-bottom: 0; }
.order-timeline-dot {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(44, 74, 46, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  z-index: 1;
}
.order-timeline-step.is-current .order-timeline-dot {
  background: var(--color-leaf);
  border-color: var(--color-leaf);
  color: #fff;
}
.order-timeline-title { font-weight: 600; }
.pd-review-form {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 28px rgba(44, 74, 46, 0.05);
}
.pd-review-form h3 {
  font-size: 1.1rem;
  margin: 0 0 0.9rem;
}
.pd-review-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.pd-review-note {
  margin: 0.5rem 0 0;
  color: rgba(43, 43, 38, 0.65);
}
.pd-related-grid,
.pd-recent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.pd-recent-grid {
  grid-template-columns: repeat(4, 1fr);
}
.pd-related-item .product-card,
.pd-recent-item .product-card {
  height: 100%;
}

[data-pd-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-pd-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-pd-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .pd-layout,
  .pd-about,
  .pd-reviews-layout {
    grid-template-columns: 1fr;
  }
  .pd-recent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .pd-page { padding-top: 1.15rem; }
  .pd-buy { padding: 1.25rem 1.15rem; }
  .pd-actions,
  .pd-review-fields { grid-template-columns: 1fr; }
  .pd-price-now { font-size: 1.7rem; }
  .pd-thumb { width: 3.75rem; height: 3.75rem; }
}

/* ============ Back to top + Floating WhatsApp ============ */
.back-to-top {
  position: fixed;
  right: 1.35rem;
  bottom: calc(1.35rem + 3.65rem + 0.75rem);
  z-index: 1030;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #355838, var(--color-forest-dark));
  color: var(--color-cream);
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(21, 35, 24, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.85);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, var(--color-leaf), var(--color-forest));
  box-shadow: 0 12px 26px rgba(21, 35, 24, 0.38);
  transform: translateY(-3px) scale(1.05);
  outline: none;
}
.back-to-top:focus-visible {
  outline: 3px solid rgba(222, 201, 160, 0.75);
  outline-offset: 3px;
}
.back-to-top[hidden] {
  display: none !important;
}
.back-to-top:not([hidden]) {
  display: inline-flex;
}

.wa-float {
  --wa: #25D366;
  --wa-dark: #128C7E;
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  animation: wa-float-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-float-btn {
  position: relative;
  z-index: 2;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2fe074 0%, var(--wa) 45%, var(--wa-dark) 100%);
  color: #fff;
  font-size: 1.85rem;
  box-shadow:
    0 8px 22px rgba(18, 140, 126, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-float-bob 3.2s ease-in-out 0.8s infinite;
}
.wa-float-btn i {
  position: relative;
  top: 1px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.wa-float-label {
  position: relative;
  z-index: 2;
  order: -1;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--color-forest-dark);
  border: 1px solid rgba(243, 234, 216, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0;
  box-shadow: 0 10px 24px rgba(21, 35, 24, 0.28);
  transition: max-width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  max-width: 10rem;
  opacity: 1;
  padding: 0.55rem 1rem;
}
.wa-float:hover .wa-float-btn,
.wa-float:focus-visible .wa-float-btn {
  color: #fff;
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 28px rgba(18, 140, 126, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.28) inset;
  animation-play-state: paused;
}
.wa-float:focus-visible {
  outline: none;
}
.wa-float:focus-visible .wa-float-btn {
  outline: 3px solid rgba(243, 234, 216, 0.85);
  outline-offset: 3px;
}
.wa-float-rings {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.65rem;
  height: 3.65rem;
  pointer-events: none;
  z-index: 1;
}
.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: wa-float-ring 2.4s ease-out infinite;
}
.wa-float-ring:nth-child(2) {
  animation-delay: 1.2s;
}
@keyframes wa-float-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes wa-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes wa-float-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}
@media (max-width: 575.98px) {
  .back-to-top {
    right: 0.95rem;
    bottom: calc(0.95rem + 3.25rem + 0.65rem);
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.05rem;
  }
  .wa-float {
    right: 0.95rem;
    bottom: 0.95rem;
  }
  .wa-float-btn,
  .wa-float-rings {
    width: 3.25rem;
    height: 3.25rem;
  }
  .wa-float-btn { font-size: 1.6rem; }
  .wa-float-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-float-btn,
  .wa-float-ring {
    animation: none !important;
  }
  .wa-float-label,
  .back-to-top {
    transition: none;
  }
}

/* ============ Cookie consent banner ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background:
    linear-gradient(180deg, rgba(30, 51, 32, 0.97), rgba(21, 35, 24, 0.98));
  color: var(--color-cream);
  box-shadow: 0 -10px 32px rgba(21, 35, 24, 0.28);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.is-hiding {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.cookie-banner-copy {
  min-width: 0;
  flex: 1;
}
.cookie-banner-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.cookie-banner-title i {
  color: var(--color-tan);
  font-size: 1.1rem;
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(243, 234, 216, 0.88);
  max-width: 46rem;
}
.cookie-banner-text a {
  color: var(--color-tan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-banner-actions .btn {
  white-space: nowrap;
}
.cookie-banner-actions .btn-outline-forest {
  border-color: rgba(243, 234, 216, 0.45);
  color: var(--color-cream);
  background: transparent;
}
.cookie-banner-actions .btn-outline-forest:hover,
.cookie-banner-actions .btn-outline-forest:focus-visible {
  border-color: var(--color-tan);
  color: var(--color-forest-dark);
  background: var(--color-tan);
}
.cookie-banner-actions .btn-leaf:hover,
.cookie-banner-actions .btn-leaf:focus-visible {
  filter: brightness(1.06);
}

body.has-cookie-banner .wa-float {
  bottom: calc(1.35rem + 7.5rem);
}
body.has-cookie-banner .back-to-top {
  bottom: calc(1.35rem + 3.65rem + 0.75rem + 7.5rem);
}

@media (max-width: 767.98px) {
  .cookie-banner {
    padding: 0.9rem 0.85rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .cookie-banner-title {
    font-size: 0.95rem;
  }
  .cookie-banner-text {
    font-size: 0.82rem;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
  }
  body.has-cookie-banner .wa-float {
    bottom: calc(0.95rem + 11.5rem);
  }
  body.has-cookie-banner .back-to-top {
    bottom: calc(0.95rem + 3.25rem + 0.65rem + 11.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

/* ============ Checkout — M-Pesa block ============ */
.checkout-mpesa {
  background: #f2f8f2;
  border: 1px solid rgba(44, 74, 46, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
}
.checkout-mpesa-till {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-forest);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.checkout-mpesa-till-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-tan);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.checkout-mpesa-till-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.1;
}
.checkout-mpesa .form-text { color: rgba(44, 74, 46, 0.65); }

/* ============ Admin: forest badge + promo table ============ */
.text-bg-forest {
  color: #fff;
  background-color: var(--color-forest);
}

/* ============ Admin order view ============ */
.ov-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ov-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}
.ov-toolbar-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}
.ov-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.55);
}
.ov-back:hover { color: var(--color-forest); }
.ov-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--color-forest-dark);
  line-height: 1.15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -0.02em;
}
.ov-sub {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(43, 43, 38, 0.58);
}
.ov-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.ov-toolbar-actions .btn,
.ov-toolbar-actions form {
  margin: 0;
}
.ov-toolbar-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ov-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.ov-metric {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.ov-metric-accent {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(76, 122, 61, 0.16), transparent 55%),
    linear-gradient(165deg, #f7f4ec 0%, #fff 72%);
  border-left: 3px solid var(--color-leaf);
}
.ov-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
}
.ov-metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--color-forest-dark);
  line-height: 1.15;
  word-break: break-word;
}
.ov-metric-text {
  font-size: 1.05rem;
}
.ov-metric-hint {
  font-size: 0.76rem;
  color: rgba(43, 43, 38, 0.55);
}

.ov-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 1rem;
  align-items: start;
}
.ov-main,
.ov-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.ov-panel {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.05rem;
}
.ov-panel-sticky {
  position: sticky;
  top: 5.5rem;
}
.ov-panel-danger {
  border-color: rgba(192, 57, 43, 0.22);
  background: linear-gradient(180deg, #fff8f7 0%, #fff 55%);
}
.ov-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ov-section-title {
  font-size: 1.02rem;
  margin: 0;
}
.ov-muted {
  color: rgba(43, 43, 38, 0.55);
  font-size: 0.82rem;
}
.ov-meta {
  font-size: 0.76rem;
  color: rgba(43, 43, 38, 0.55);
}
.ov-strong {
  font-weight: 700;
  color: var(--color-forest-dark);
}
.ov-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: rgba(43, 43, 38, 0.65);
  word-break: break-all;
}
.ov-warn {
  font-style: normal;
  color: #8a6708;
  font-weight: 600;
}

.ov-table-wrap {
  overflow: auto;
  margin: 0 -0.15rem;
}
.ov-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.ov-table thead th {
  background: #f7f4ec;
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.1);
}
.ov-table tbody td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.07);
  vertical-align: middle;
}
.ov-table tbody tr:last-child td { border-bottom: 0; }
.ov-table tbody tr:hover { background: rgba(76, 122, 61, 0.04); }

.ov-add-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: flex-end;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(44, 74, 46, 0.08);
}
.ov-add-product { flex: 1 1 14rem; min-width: 0; }
.ov-add-qty { width: 5.5rem; }

.ov-totals {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(44, 74, 46, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 20rem;
  margin-left: auto;
}
.ov-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(43, 43, 38, 0.7);
}
.ov-total-grand {
  margin-top: 0.25rem;
  padding-top: 0.45rem;
  border-top: 1px dashed rgba(44, 74, 46, 0.18);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-forest-dark);
}

.ov-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ov-form-full { grid-column: 1 / -1; }

.ov-customer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}
.ov-customer strong {
  font-size: 1.02rem;
  color: var(--color-forest-dark);
}
.ov-customer a {
  font-size: 0.88rem;
  font-weight: 600;
}

.ov-kv {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ov-kv > div {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
}
.ov-kv span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.45);
  padding-top: 0.15rem;
}
.ov-kv strong {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--color-forest-dark);
  word-break: break-word;
}
.ov-kv-compact > div {
  grid-template-columns: 4rem minmax(0, 1fr);
}

.ov-mpesa {
  margin-top: 0.95rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: #f4fbf4;
  border: 1px solid #cdeece;
}
.ov-mpesa-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--color-forest);
  margin-bottom: 0.55rem;
}
.ov-proof {
  display: inline-block;
  margin-top: 0.65rem;
}
.ov-proof img {
  max-width: 150px;
  border-radius: 8px;
  border: 1px solid rgba(44, 74, 46, 0.12);
}

.ov-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ov-timeline li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 0.95rem;
}
.ov-timeline li:last-child { padding-bottom: 0; }
.ov-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1rem;
  bottom: 0;
  width: 2px;
  background: rgba(44, 74, 46, 0.12);
}
.ov-timeline-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--color-leaf);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(76, 122, 61, 0.25);
  margin-top: 0.2rem;
  z-index: 1;
}
.ov-timeline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.2rem;
}
.ov-timeline-change {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.ov-timeline-arrow {
  color: rgba(43, 43, 38, 0.4);
  font-weight: 700;
}

.ov-empty {
  text-align: center;
  padding: 1.5rem 1rem;
  color: rgba(43, 43, 38, 0.55);
}
.ov-empty i {
  display: block;
  font-size: 1.45rem;
  color: var(--color-leaf);
  margin-bottom: 0.35rem;
}
.ov-empty p { margin: 0; }

@media (max-width: 991.98px) {
  .ov-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ov-layout {
    grid-template-columns: 1fr;
  }
  .ov-panel-sticky {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .ov-form-grid {
    grid-template-columns: 1fr;
  }
  .ov-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ Admin products ============ */
.prod-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prod-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}
.prod-toolbar-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-forest-dark);
  line-height: 1.2;
}
.prod-toolbar-sub {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: rgba(43, 43, 38, 0.58);
}
.prod-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.prod-toolbar-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.prod-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.prod-metric {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.prod-metric-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.prod-metric-link:hover {
  color: inherit;
  transform: translateY(-1px);
  border-color: rgba(76, 122, 61, 0.35);
}
.prod-metric.is-warn {
  border-left: 3px solid #d4a017;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}
.prod-metric.is-ok {
  border-left: 3px solid var(--color-leaf);
}
.prod-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
}
.prod-metric-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-forest-dark);
  line-height: 1.15;
}

.prod-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1rem;
}
.prod-filters-search {
  position: relative;
  flex: 1 1 14rem;
  min-width: 11rem;
}
.prod-filters-search i {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(43, 43, 38, 0.4);
  pointer-events: none;
}
.prod-filters-search input {
  width: 100%;
  border: 1px solid rgba(44, 74, 46, 0.16);
  border-radius: 0.65rem;
  padding: 0.42rem 0.7rem 0.42rem 2rem;
  font-size: 0.9rem;
  background: #fbfaf7;
}
.prod-filters-search input:focus {
  outline: none;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.15);
  background: #fff;
}
.prod-filters .form-select,
.prod-filters .btn {
  width: auto;
}

.prod-panel {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.05rem;
}
.prod-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.prod-section-title {
  font-size: 1.02rem;
  margin: 0;
}
.prod-muted {
  color: rgba(43, 43, 38, 0.55);
  font-size: 0.82rem;
}
.prod-link {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.prod-table-wrap {
  overflow: auto;
  margin: 0 -0.2rem;
}
.prod-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.prod-table thead th {
  background: #f7f4ec;
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.1);
  position: sticky;
  top: 0;
  z-index: 1;
}
.prod-table tbody td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.07);
  vertical-align: middle;
}
.prod-table tbody tr:hover {
  background: rgba(76, 122, 61, 0.04);
}
.prod-table tbody tr.is-low {
  box-shadow: inset 3px 0 0 #d4a017;
}
.prod-table tbody tr.is-out {
  box-shadow: inset 3px 0 0 var(--color-sale-red);
}

.prod-cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.prod-thumb {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  object-fit: cover;
  background: #f0ebe0;
  border: 1px solid rgba(44, 74, 46, 0.1);
  flex-shrink: 0;
}
.prod-cell-copy {
  min-width: 0;
}
.prod-name {
  display: block;
  font-weight: 700;
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 28ch;
}
.prod-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  margin-top: 0.15rem;
  font-size: 0.76rem;
  color: rgba(43, 43, 38, 0.55);
}
.prod-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
}
.prod-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  line-height: 1.3;
}
.prod-chip-feat {
  background: rgba(76, 122, 61, 0.14);
}
.prod-chip-sale {
  background: rgba(192, 57, 43, 0.12);
  color: var(--color-sale-red);
}
.prod-price {
  font-weight: 700;
  color: var(--color-forest-dark);
  font-variant-numeric: tabular-nums;
}
.prod-price-was {
  font-size: 0.72rem;
  color: rgba(43, 43, 38, 0.45);
  text-decoration: line-through;
}
.prod-stock {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.prod-stock.is-low { color: #8a6708; }
.prod-stock.is-out { color: var(--color-sale-red); }

.prod-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}
.prod-actions form {
  display: inline;
  margin: 0;
}
.prod-action {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.prod-action:hover {
  background: rgba(76, 122, 61, 0.12);
  color: var(--color-forest-dark);
}
.prod-action.is-danger {
  color: rgba(192, 57, 43, 0.85);
}
.prod-action.is-danger:hover {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-sale-red);
}

.prod-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(43, 43, 38, 0.55);
}
.prod-empty i {
  display: block;
  font-size: 1.75rem;
  color: var(--color-leaf);
  margin-bottom: 0.45rem;
}
.prod-empty p { margin: 0 0 0.85rem; }

.prod-import {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1.05rem;
}
.prod-import summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}
.prod-import summary::-webkit-details-marker { display: none; }
.prod-import summary i { color: var(--color-leaf); }
.prod-import-form {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(44, 74, 46, 0.08);
}
.prod-import-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.prod-import-row .form-control {
  flex: 1 1 14rem;
  max-width: 28rem;
}

@media (max-width: 991.98px) {
  .prod-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .prod-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .prod-name {
    max-width: 18ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prod-metric-link,
  .prod-action {
    transition: none;
  }
}

/* ============ Admin dashboard ============ */
.dash-page {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.dash-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}
.dash-greeting-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.45);
}
.dash-greeting-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--color-forest-dark);
  line-height: 1.2;
}
.dash-greeting-sub {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(43, 43, 38, 0.58);
}
.dash-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dash-toolbar-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.dash-metric {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.dash-metric-accent {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(76, 122, 61, 0.16), transparent 55%),
    linear-gradient(165deg, #f7f4ec 0%, #fff 72%);
  border-left: 3px solid var(--color-leaf);
}
.dash-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
}
.dash-metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--color-forest-dark);
  line-height: 1.15;
  word-break: break-word;
}
.dash-metric-hint {
  font-size: 0.78rem;
  color: rgba(43, 43, 38, 0.55);
}

.dash-queues {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.05rem;
}
.dash-queues-head,
.dash-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.dash-section-title {
  font-size: 1.02rem;
  margin: 0;
}
.dash-muted {
  color: rgba(43, 43, 38, 0.55);
  font-size: 0.82rem;
}
.dash-meta {
  font-size: 0.76rem;
  color: rgba(43, 43, 38, 0.55);
}
.dash-strong {
  font-weight: 700;
  color: var(--color-forest-dark);
}
.dash-link {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.dash-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  line-height: 1.3;
}
.dash-chip-warn {
  background: rgba(212, 160, 23, 0.16);
  color: #8a6708;
}
.dash-chip-ok {
  background: rgba(76, 122, 61, 0.14);
  color: var(--color-forest);
}
.dash-chip-sale {
  background: rgba(192, 57, 43, 0.12);
  color: var(--color-sale-red);
}
.dash-queue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.dash-queue {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(44, 74, 46, 0.1);
  background: #fbfaf7;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.dash-queue:hover {
  color: inherit;
  border-color: rgba(76, 122, 61, 0.35);
  background: #fff;
  transform: translateY(-1px);
}
.dash-queue i {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 122, 61, 0.12);
  color: var(--color-leaf);
  font-size: 1rem;
}
.dash-queue strong {
  display: block;
  font-size: 0.86rem;
  color: var(--color-forest-dark);
  line-height: 1.2;
}
.dash-queue span {
  display: block;
  font-size: 0.72rem;
  color: rgba(43, 43, 38, 0.52);
  margin-top: 0.1rem;
}
.dash-queue em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: rgba(43, 43, 38, 0.35);
  min-width: 1.5rem;
  text-align: right;
}
.dash-queue.has-count em {
  color: var(--color-forest-dark);
}
.dash-queue.has-count {
  border-color: rgba(76, 122, 61, 0.22);
  background: #fff;
}
.dash-queue.is-warn.has-count {
  border-color: rgba(212, 160, 23, 0.35);
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}
.dash-queue.is-warn i {
  background: rgba(212, 160, 23, 0.16);
  color: #8a6708;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.dash-panel {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.05rem;
  min-width: 0;
}
.dash-panel-wide {
  grid-column: 1 / -1;
}
.dash-panel-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dash-table-wrap {
  overflow: auto;
  margin: 0 -0.2rem;
}
.dash-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.dash-table thead th {
  background: #f7f4ec;
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.1);
}
.dash-table tbody td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.07);
  vertical-align: middle;
}
.dash-table tbody tr:last-child td {
  border-bottom: 0;
}
.dash-table tbody tr:hover {
  background: rgba(76, 122, 61, 0.04);
}
.dash-order-id {
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.84rem;
}

.dash-empty {
  text-align: center;
  padding: 1.75rem 1rem;
  color: rgba(43, 43, 38, 0.55);
}
.dash-empty i {
  display: block;
  font-size: 1.55rem;
  color: var(--color-leaf);
  margin-bottom: 0.4rem;
}
.dash-empty p { margin: 0; }

.dash-list,
.dash-rank,
.dash-flash {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.dash-list li,
.dash-flash li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  background: #fbfaf7;
  border: 1px solid rgba(44, 74, 46, 0.07);
}
.dash-list-main {
  min-width: 0;
}
.dash-list-main a {
  display: block;
  font-weight: 700;
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-list-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}
.dash-stock {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}
.dash-stock.is-low { color: #8a6708; }
.dash-stock.is-out { color: var(--color-sale-red); }
.dash-mini-bar {
  width: 3.25rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(44, 74, 46, 0.1);
  overflow: hidden;
}
.dash-mini-bar span {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: #d4a017;
  border-radius: inherit;
}

.dash-rank li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.dash-rank-num {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  flex-shrink: 0;
}
.dash-rank li:first-child .dash-rank-num {
  background: var(--color-forest);
  color: #fff;
}
.dash-rank-body {
  flex: 1;
  min-width: 0;
}
.dash-rank-row {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.dash-rank-row strong {
  font-size: 0.88rem;
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-rank-row span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.55);
  flex-shrink: 0;
}
.dash-rank-bar {
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(44, 74, 46, 0.1);
  overflow: hidden;
}
.dash-rank-bar span {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--color-leaf), var(--color-forest));
  border-radius: inherit;
}

.dash-flash-main {
  min-width: 0;
}
.dash-flash-main strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-forest-dark);
}
.dash-flash-main .dash-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.dash-flash-timer {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-sale-red);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1199.98px) {
  .dash-queue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .dash-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .dash-queue-grid {
    grid-template-columns: 1fr;
  }
  .dash-metrics {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dash-queue {
    transition: none;
  }
}

/* ============ Admin inventory ============ */
.admin-main-wrap:has(.inv-page) {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}
.admin-main:has(.inv-page) {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 1rem;
}
.inv-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.inv-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.inv-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.inv-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.65);
  transition: background 0.18s ease, color 0.18s ease;
}
.inv-tab i {
  font-size: 0.95rem;
  color: var(--color-leaf);
}
.inv-tab em {
  font-style: normal;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.12);
  color: var(--color-sale-red);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inv-tab:hover {
  background: rgba(76, 122, 61, 0.08);
  color: var(--color-forest-dark);
}
.inv-tab.is-active {
  background: var(--color-forest);
  color: #fff;
}
.inv-tab.is-active i,
.inv-tab.is-active em {
  color: #fff;
}
.inv-tab.is-active em {
  background: rgba(255, 255, 255, 0.2);
}
.inv-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inv-toolbar-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.inv-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.inv-metric {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.inv-metric-value-accent {
  border-left: 3px solid var(--color-leaf);
}
.inv-metric-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.inv-metric-link:hover {
  color: inherit;
  transform: translateY(-1px);
  border-color: rgba(76, 122, 61, 0.35);
}
.inv-metric.is-warn {
  border-left: 3px solid #d4a017;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}
.inv-metric.is-ok {
  border-left: 3px solid var(--color-leaf);
}
.inv-metric.is-info {
  border-left: 3px solid #3d7a9c;
  background: linear-gradient(180deg, #f5fafc 0%, #fff 100%);
}
.inv-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
}
.inv-metric-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-forest-dark);
  line-height: 1.15;
  word-break: break-word;
}
.inv-metric-hint {
  font-size: 0.75rem;
  color: rgba(43, 43, 38, 0.55);
}

.inv-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}
.inv-catalog,
.inv-detail,
.inv-panel {
  background: #fff;
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.05rem;
}
.inv-catalog {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.inv-detail {
  min-height: 0;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.inv-section-title {
  font-size: 1.05rem;
  margin: 0;
}
.inv-muted {
  color: rgba(43, 43, 38, 0.55);
  font-size: 0.86rem;
}
.inv-catalog-head,
.inv-panel-head,
.inv-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.inv-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(43, 43, 38, 0.55);
  font-weight: 600;
}
.inv-catalog-meta span {
  background: rgba(44, 74, 46, 0.06);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.inv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.08);
}
.inv-filters-search {
  position: relative;
  flex: 1 1 12rem;
  min-width: 10rem;
}
.inv-filters-search i {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(43, 43, 38, 0.4);
  pointer-events: none;
}
.inv-filters-search input {
  width: 100%;
  border: 1px solid rgba(44, 74, 46, 0.16);
  border-radius: 0.65rem;
  padding: 0.42rem 0.7rem 0.42rem 2rem;
  font-size: 0.9rem;
  background: #fbfaf7;
}
.inv-filters-search input:focus {
  outline: none;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.15);
  background: #fff;
}
.inv-filters .form-select,
.inv-filters .btn {
  width: auto;
}

.inv-table-wrap {
  overflow: auto;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
  flex: 1;
  min-height: 0;
}
.inv-catalog > .inv-table-wrap {
  max-height: none;
}
.inv-panel .inv-table-wrap {
  flex: none;
  max-height: none;
}
.inv-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.inv-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7f4ec;
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.1);
}
.inv-table tbody td,
.inv-table tfoot td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(44, 74, 46, 0.07);
  vertical-align: middle;
}
.inv-table tbody tr {
  transition: background 0.12s ease;
}
.inv-table tbody tr:hover {
  background: rgba(76, 122, 61, 0.04);
}
.inv-table tbody tr.is-selected {
  background: rgba(76, 122, 61, 0.1);
}
.inv-table tbody tr.is-low {
  box-shadow: inset 3px 0 0 #d4a017;
}
.inv-table tbody tr.is-out {
  box-shadow: inset 3px 0 0 var(--color-sale-red);
}
.inv-table tfoot td {
  background: #f7f4ec;
  font-weight: 800;
  border-bottom: 0;
  position: sticky;
  bottom: 0;
}

.inv-product-name {
  font-weight: 700;
  color: var(--color-forest-dark);
}
.inv-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(43, 43, 38, 0.55);
}
.inv-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: rgba(43, 43, 38, 0.6);
}
.inv-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest);
  line-height: 1.3;
}
.inv-chip-muted {
  background: rgba(43, 43, 38, 0.08);
  color: rgba(43, 43, 38, 0.65);
}
.inv-chip-warn {
  background: rgba(212, 160, 23, 0.16);
  color: #8a6708;
}
.inv-chip-ok {
  background: rgba(76, 122, 61, 0.14);
  color: var(--color-forest);
}
.inv-chip-info {
  background: rgba(61, 122, 156, 0.14);
  color: #2b5f7a;
}
.inv-stock-qty {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.inv-stock-qty.is-low { color: #8a6708; }
.inv-stock-qty.is-out { color: var(--color-sale-red); }
.inv-stock-threshold {
  font-size: 0.72rem;
  color: rgba(43, 43, 38, 0.45);
}
.inv-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.inv-row-action {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.inv-health {
  width: 100%;
  max-width: 5.5rem;
  height: 0.45rem;
  background: rgba(44, 74, 46, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.inv-health-lg {
  max-width: none;
  height: 0.55rem;
  margin-top: 0.75rem;
}
.inv-health-bar {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  border-radius: inherit;
  background: var(--color-leaf);
  transition: width 0.25s ease;
}
.inv-health-bar.is-low { background: #d4a017; }
.inv-health-bar.is-out { background: var(--color-sale-red); width: max(8%, var(--pct, 0%)); }

.inv-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(43, 43, 38, 0.55);
}
.inv-empty i {
  font-size: 1.75rem;
  color: var(--color-leaf);
  display: block;
  margin-bottom: 0.5rem;
}
.inv-empty p { margin: 0; }
.inv-empty-panel {
  padding: 3rem 1rem;
}

.inv-detail-hero {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(76, 122, 61, 0.14), transparent 55%),
    linear-gradient(165deg, #f7f4ec 0%, #fff 70%);
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}
.inv-detail-hero.is-low {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(212, 160, 23, 0.18), transparent 55%),
    linear-gradient(165deg, #fff8e8 0%, #fff 70%);
}
.inv-detail-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.inv-detail-title {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.25;
}
.inv-detail-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  color: rgba(43, 43, 38, 0.55);
  margin-top: 0.2rem;
}
.inv-detail-stock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.9rem;
}
.inv-detail-stock-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 43, 38, 0.5);
  margin-bottom: 0.1rem;
}
.inv-detail-stock-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-forest-dark);
}

.inv-detail-card {
  border: 1px solid rgba(44, 74, 46, 0.1);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: #fff;
}
.inv-card-title {
  font-size: 0.92rem;
  margin: 0 0 0.65rem;
}
.inv-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.inv-mode-option {
  margin: 0;
  cursor: pointer;
}
.inv-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.inv-mode-option span {
  display: block;
  text-align: center;
  padding: 0.45rem 0.5rem;
  border: 1px solid rgba(44, 74, 46, 0.16);
  border-radius: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(43, 43, 38, 0.65);
  background: #fbfaf7;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.inv-mode-option input:checked + span {
  background: rgba(76, 122, 61, 0.12);
  border-color: var(--color-leaf);
  color: var(--color-forest-dark);
}
.inv-mode-option input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(76, 122, 61, 0.18);
}

.inv-waitlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.inv-waitlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.inv-waitlist li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  background: #fbfaf7;
  border-radius: 0.65rem;
  border: 1px solid rgba(44, 74, 46, 0.08);
}
.inv-waitlist strong {
  display: block;
  font-size: 0.86rem;
  color: var(--color-forest-dark);
}
.inv-waitlist span {
  font-size: 0.75rem;
  color: rgba(43, 43, 38, 0.55);
}
.inv-waitlist-ops {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.inv-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.inv-log-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.inv-log-change {
  min-width: 2.6rem;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 0.86rem;
  padding: 0.2rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(44, 74, 46, 0.08);
  color: var(--color-forest-dark);
}
.inv-log-change.is-plus {
  background: rgba(76, 122, 61, 0.14);
  color: var(--color-leaf);
}
.inv-log-change.is-minus {
  background: rgba(192, 57, 43, 0.12);
  color: var(--color-sale-red);
}
.inv-log-reason {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-forest-dark);
}
.inv-log-meta {
  font-size: 0.75rem;
  color: rgba(43, 43, 38, 0.55);
  margin-top: 0.1rem;
}

.inv-attention {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1199.98px) {
  .inv-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .admin-main-wrap:has(.inv-page) {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .admin-main:has(.inv-page) {
    overflow: visible;
  }
  .inv-workspace {
    grid-template-columns: 1fr;
    flex: none;
    min-height: 0;
  }
  .inv-catalog {
    height: auto;
    min-height: min(70vh, 40rem);
  }
  .inv-detail {
    height: auto;
    max-height: none;
  }
  .inv-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .inv-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .inv-tab span {
    display: none;
  }
  .inv-tab {
    padding: 0.5rem 0.7rem;
  }
  .inv-detail-stock {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inv-tab,
  .inv-metric-link,
  .inv-health-bar,
  .inv-table tbody tr {
    transition: none;
  }
}

/* ============ Customer login / register modal ============ */
body.modal-open .wa-float,
body.modal-open .back-to-top {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

body:has(.auth-modal.show) .modal-backdrop {
  background: #152318;
}

.auth-modal.modal {
  overflow: hidden;
}
.auth-modal .modal-dialog {
  max-width: 26.5rem;
  margin: 0.6rem auto;
  max-height: none;
}
.auth-modal.is-register .modal-dialog {
  max-width: 34rem;
}
.auth-modal .modal-content,
.auth-modal .modal-body {
  overflow: visible;
  max-height: none;
}

.auth-modal-content {
  position: relative;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 60px rgba(21, 35, 24, 0.28);
}

.auth-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.auth-modal-close:hover,
.auth-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: scale(1.05);
  outline: none;
}

.auth-modal-brand {
  flex-shrink: 0;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(76, 122, 61, 0.45), transparent 55%),
    linear-gradient(145deg, #243f26 0%, var(--color-forest-dark) 55%, #152318 100%);
  text-align: center;
  padding: 1.15rem 1.5rem 0.9rem;
}
.auth-modal.is-register .auth-modal-brand {
  padding: 0.75rem 1.35rem 0.65rem;
}
.auth-modal-brand img {
  height: 48px;
  width: auto;
  display: inline-block;
}
.auth-modal.is-register .auth-modal-brand img {
  height: 38px;
}
.auth-modal-script {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
  color: var(--color-tan);
  line-height: 1;
}
.auth-modal.is-register .auth-modal-script {
  display: none;
}

.auth-modal-body {
  padding: 1.15rem 1.35rem 1.2rem;
}
.auth-modal.is-register .auth-modal-body {
  padding: 0.95rem 1.25rem 1.05rem;
}
.auth-modal-title {
  font-size: 1.35rem;
  margin: 0 0 0.15rem;
}
.auth-modal.is-register .auth-modal-title {
  font-size: 1.2rem;
}
.auth-modal-lead {
  color: rgba(43, 43, 38, 0.62);
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}
.auth-modal.is-register .auth-modal-lead {
  font-size: 0.84rem;
  margin: 0 0 0.7rem;
}

.auth-modal-alert {
  background: rgba(192, 57, 43, 0.1);
  color: #8a2a20;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.auth-modal-alert[hidden] { display: none !important; }
[data-auth-panel][hidden] { display: none !important; }

.auth-field {
  margin-bottom: 0.7rem;
}
.auth-modal.is-register .auth-field {
  margin-bottom: 0.55rem;
}
.auth-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 0.28rem;
}
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.auth-control {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fbf8f1;
  border: 1.5px solid rgba(44, 74, 46, 0.14);
  border-radius: 12px;
  padding: 0 0.7rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-control > i {
  color: var(--color-leaf);
  font-size: 1rem;
}
.auth-control input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.62rem 0;
  color: var(--color-charcoal);
  font: inherit;
  outline: none;
}
.auth-modal.is-register .auth-control input {
  padding: 0.52rem 0;
}
.auth-control input::placeholder {
  color: rgba(43, 43, 38, 0.38);
}
.auth-control:focus-within {
  background: #fff;
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 0.18rem rgba(76, 122, 61, 0.14);
}
.auth-eye {
  border: 0;
  background: transparent;
  color: rgba(44, 74, 46, 0.55);
  padding: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-eye:hover,
.auth-eye:focus-visible {
  color: var(--color-forest);
  outline: none;
}

.auth-agree {
  margin: 0.05rem 0 0.75rem;
  font-size: 0.84rem;
  color: rgba(43, 43, 38, 0.72);
}
.auth-agree .form-check-input {
  border-color: rgba(44, 74, 46, 0.35);
}
.auth-agree .form-check-input:checked {
  background-color: var(--color-forest);
  border-color: var(--color-forest);
}
.auth-agree a { font-weight: 700; }

.auth-submit {
  padding: 0.7rem 1.25rem;
}
.auth-modal.is-register .auth-submit {
  padding: 0.62rem 1.25rem;
}
.auth-submit:disabled {
  opacity: 0.72;
}

.auth-modal-links {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}
.auth-modal-switch {
  text-align: center;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: rgba(43, 43, 38, 0.68);
}
.auth-switch {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 800;
  color: var(--color-forest);
  cursor: pointer;
}
.auth-switch:hover,
.auth-switch:focus-visible {
  color: var(--color-leaf);
  outline: none;
}

@media (max-width: 575.98px) {
  .auth-modal .modal-dialog,
  .auth-modal.is-register .modal-dialog {
    max-width: calc(100% - 1.2rem);
    margin: 0.5rem auto;
  }
  .auth-modal-body { padding: 1rem 1.05rem 1.05rem; }
  .auth-modal.is-register .auth-modal-body { padding: 0.85rem 1rem 0.95rem; }
  .auth-modal-brand img { height: 42px; }
  .auth-modal.is-register .auth-modal-brand img { height: 34px; }
}
