/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #2e7d32;
  --accent-dark: #1b5e20;
  --accent-light: #e8f5e9;
  --bg: #ffffff;
  --bg2: #f5f7f5;
  --border: #e5e7eb;
  --text: #1a1a1a;
  --text2: #6b7280;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
  --header-h: 80px;
  --bottom-nav-h: 60px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--bottom-nav-h);
  overflow-x: hidden;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Container ────────────────────────────────── */
.container { max-width: 1200px; margin-inline: auto; padding: 0 1rem; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* ── Main bar (logo + search + actions) ── */
.header-main {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 1rem;
  height: var(--header-h);
}

.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo svg { flex-shrink: 0; }

/* Desktop search — hidden on mobile */
.header-search {
  display: none;
  flex: 0 1 680px;
  position: relative;
}
@media (min-width: 768px) { .header-search { display: flex; } }

.header-search input {
  width: 100%;
  height: 42px;
  padding: 0 3rem 0 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  background: #fff;
}
.header-search input:focus { border-color: var(--accent); }

.header-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 42px;
  width: 46px;
  background: var(--accent);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
}
.header-search button:hover { opacity: .88; }

.header-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .45rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  line-height: 1;
  flex-shrink: 0;
}
.cart-btn:hover { opacity: .88; }
.cart-label { display: none; }
@media (min-width: 480px) { .cart-label { display: inline; } }

.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: .65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px; height: 38px;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
}
@media (min-width: 768px) { .hamburger { display: none; } }

/* ── Mobile search row ── */
.header-search-mobile {
  padding: .4rem 1rem .55rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .header-search-mobile { display: none; } }

.header-search-mobile form {
  position: relative;
  display: flex;
}
.header-search-mobile input {
  flex: 1;
  height: 38px;
  padding: 0 2.75rem 0 .9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.header-search-mobile input:focus { border-color: var(--accent); }
.header-search-mobile button {
  position: absolute;
  right: 0;
  top: 0;
  height: 38px;
  width: 42px;
  background: var(--accent);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Desktop category nav ── */
.cat-nav {
  display: none;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0 1rem;
}
.cat-nav::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { 
  .cat-nav { 
    display: flex; 
    justify-content: center; 
  } 
}

.cat-nav-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 .95rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.cat-nav-item:hover,
.cat-nav-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ══════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════ */
#nav-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
}
#nav-drawer-overlay.open { display: block; }

#nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
#nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-header-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text2);
}
.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--text2); padding: .25rem;
  display: flex; align-items: center;
  border-radius: 6px;
}
.drawer-close:hover { color: var(--text); background: var(--bg2); }

.drawer-search {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-search form { display: flex; position: relative; }
.drawer-search input {
  flex: 1;
  height: 36px;
  padding: 0 2.5rem 0 .8rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  outline: none;
}
.drawer-search input:focus { border-color: var(--accent); }
.drawer-search button {
  position: absolute; right: 0; top: 0;
  height: 36px; width: 38px;
  background: var(--accent); border: none;
  border-radius: 0 8px 8px 0;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.drawer-nav { padding: .5rem .75rem; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  transition: background .15s, color .15s;
  margin-bottom: .1rem;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--accent-light);
  color: var(--accent);
}
.drawer-nav a svg { flex-shrink: 0; color: var(--text2); }
.drawer-nav a:hover svg,
.drawer-nav a.active svg { color: var(--accent); }
.drawer-cats a { padding-left: 2.5rem; font-size: .85rem; color: var(--text2); }
.drawer-cats a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 240px;
  background: var(--accent-dark);
}
@media (min-width: 480px) { .hero-carousel { height: 300px; } }
@media (min-width: 768px) { .hero-carousel { height: 380px; } }
@media (min-width: 1024px) { .hero-carousel { height: 440px; } }

.hero-slides { width: 100%; height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 60%, transparent 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  max-width: 520px;
}
@media (min-width: 768px) { .hero-content { padding: 2rem 3rem; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  width: fit-content;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(.8rem, 2vw, 1rem);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  max-width: 360px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #e53935;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  width: fit-content;
  transition: opacity .15s, transform .15s;
}
.hero-cta:hover { opacity: .9; transform: translateY(-1px); }

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
}
.hero-prev:hover,
.hero-next:hover { background: rgba(0,0,0,.6); }
.hero-prev { left: .6rem; }
.hero-next { right: .6rem; }
@media (min-width: 768px) {
  .hero-prev { left: 1.25rem; width: 42px; height: 42px; }
  .hero-next { right: 1.25rem; width: 42px; height: 42px; }
}

.hero-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ══════════════════════════════════════════════
   USP BAR
══════════════════════════════════════════════ */
.usp-bar {
  padding: .875rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.usp-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.usp-text h4 { font-size: .78rem; font-weight: 700; line-height: 1.3; }
.usp-text p  { font-size: .68rem; color: var(--text2); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 2rem 1rem; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.section-title { font-size: 1.2rem; font-weight: 800; }
.section-sub { color: var(--text2); font-size: .8rem; margin-top: .15rem; }
.section-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap .15s;
}
.section-more:hover { gap: .55rem; }

/* ══════════════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════════════ */
.slider-wrapper {
  position: relative;
  width: 100%;
}
.slider-container {
  width: 100%;
  overflow: hidden;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(46,125,50,.18);
}
.slider-prev {
  left: 4px;
}
.slider-next {
  right: 4px;
}
@media (min-width: 768px) {
  .slider-prev { left: -12px; }
  .slider-next { right: -12px; }
}
@media (min-width: 1024px) {
  .slider-prev { left: -18px; }
  .slider-next { right: -18px; }
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Category Slider Customizations */
.slider-container .cat-grid {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  transition: transform 0.4s ease-in-out;
  padding: 0.5rem 0.25rem;
  width: 100%;
}
.slider-container .cat-card {
  flex: 0 0 calc(25% - 0.38rem) !important;
}
@media (min-width: 768px) {
  .slider-container .cat-grid {
    gap: 1rem;
  }
  .slider-container .cat-card {
    flex: 0 0 calc(16.66% - 0.83rem) !important;
  }
}

/* Product Slider Customizations */
.slider-container .product-grid {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  padding: 0.5rem 0.25rem;
  width: 100%;
}
.slider-container .product-card,
.slider-container .skel-card {
  flex: 0 0 calc(50% - 0.5rem) !important;
}
@media (min-width: 580px) {
  .slider-container .product-card,
  .slider-container .skel-card {
    flex: 0 0 calc(33.33% - 0.67rem) !important;
  }
}
@media (min-width: 900px) {
  .slider-container .product-card,
  .slider-container .skel-card {
    flex: 0 0 calc(25% - 0.75rem) !important;
  }
}
.cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  border: 2px solid var(--border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cat-card:hover .cat-img {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(46,125,50,.18);
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.cat-label { font-size: .72rem; font-weight: 700; color: var(--text); line-height: 1.3; }

.cat-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .cat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .cat-img {
    max-width: 75px;
    margin: 0 auto;
  }
  .cat-label {
    text-align: center !important;
    margin-top: 0.35rem;
    display: block;
    width: 100%;
  }
}


/* ══════════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .875rem;
}
@media (min-width: 580px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-img {
  aspect-ratio: 1 / 1;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.product-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}

.product-badge {
  position: absolute;
  top: .45rem; left: .45rem;
  background: #f97316;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  padding: .2rem .5rem;
  border-radius: 4px;
  line-height: 1.4;
  z-index: 1;
}

.product-info {
  padding: .65rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .22rem;
  flex: 1;
}
.product-cat {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
}
.product-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}
.product-price {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .2rem;
  flex-wrap: wrap;
}
.price-final   { font-size: .95rem; font-weight: 800; color: var(--text); }
.price-original { font-size: .73rem; color: var(--text2); text-decoration: line-through; }
.price-save    { font-size: .68rem; font-weight: 700; color: var(--accent); }

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section {
  background: #fff;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-seo {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.faq-seo h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.faq-seo p {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 780px;
}
.faq-seo p strong { color: var(--text); }

.faq-heading {
  font-size: .875rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg2); }

.faq-q span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text2);
  transition: transform .25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1rem 1rem;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}
.faq-a a { color: var(--accent); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  margin-top: auto;
  background: #f4faf4;
  font-family: system-ui, -apple-system, sans-serif;
  padding-bottom: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(4, 1fr); }
}

/* Brand col */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: .75rem;
}
.footer-store-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e7d32;
}
.footer-desc {
  font-size: .75rem;
  color: #4b5563; /* gray-600 */
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.footer-play-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  background: #2e7d32;
  padding: .5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  margin-bottom: .75rem;
  transition: opacity .2s;
  width: max-content;
}
.footer-play-btn:hover { opacity: .9; }
.play-btn-text { line-height: 1.1; }
.play-btn-sub { font-size: 9px; opacity: 0.85; }
.play-btn-main { font-size: 13px; font-weight: bold; }

.footer-seller-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  padding: .4rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .2s;
  width: max-content;
}
.footer-seller-btn:hover { background-color: #f0fdf4; }

/* Footer columns */
.footer-col h4 {
  font-size: .875rem;
  font-weight: bold;
  color: #1f2937; /* gray-800 */
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}
.footer-col li a {
  font-size: .75rem;
  color: #4b5563;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color .2s;
}
.footer-col li a .chevron {
  font-size: 10px;
  color: #9ca3af; /* gray-400 */
}
.footer-col li a:hover { color: #166534; /* green-800 */ }

/* Social icons */
.footer-social-heading { margin-bottom: .75rem; }
.footer-socials {
  display: flex;
  gap: .5rem;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: bold;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.footer-social:hover { opacity: .85; }

/* Newsletter */
.footer-newsletter {
  background: #fff;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1.25rem;
}
.footer-newsletter h4 { margin-bottom: .25rem; font-size: .875rem; color: #1f2937; }
.footer-newsletter p {
  font-size: .75rem;
  color: #6b7280; /* gray-500 */
  margin-bottom: .75rem;
}
.newsletter-form {
  display: flex;
  gap: .5rem;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .75rem;
  color: #374151;
  padding: .5rem .75rem;
  outline: none;
  min-width: 0;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: #22c55e; }
.newsletter-form button {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: #2e7d32;
  border: none;
  border-radius: .5rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact info */
.footer-contact-card {
  background: #fff;
  border-radius: .75rem;
  padding: .75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: .75rem;
  font-size: .75rem;
  color: #4b5563;
  line-height: 1.625;
}
.contact-card-title {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: .25rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.contact-icon-bg {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-lbl {
  font-size: .75rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0;
}
.footer-contact-row a {
  font-size: .75rem;
  color: #4b5563;
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-row a:hover { color: #166534; }

/* Footer bottom bar */
.footer-bottom-wrapper {
  padding: 0 1rem;
}
.footer-bottom {
  background: #1b5e20;
  border-radius: 1rem;
  padding: .75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.footer-bottom strong { color: #fff; }
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: opacity .2s;
}
.footer-bottom-links a:hover { opacity: 1; color: #fff; }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL
══════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 1.75rem auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.product-detail-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.product-detail-body { display: flex; flex-direction: column; gap: .9rem; }
.product-detail-cat  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.product-detail-name { font-size: 1.55rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.product-detail-price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.product-detail-price .price-final { font-size: 1.55rem; }
.product-detail-desc {
  font-size: .9rem; color: var(--text2); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: .85rem;
}
.product-detail-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-buy {
  flex: 1; min-width: 140px;
  background: var(--accent); color: #fff; border: none;
  padding: .9rem 1.5rem; border-radius: 50px;
  font-weight: 800; font-size: .9rem; cursor: pointer;
  transition: opacity .15s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-buy:hover { opacity: .88; }
.back-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; color: var(--accent); font-weight: 600;
}
.back-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════ */
.page-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.page-header h1 { font-size: 1.35rem; font-weight: 800; }
.page-header p  { color: var(--text2); font-size: .85rem; margin-top: .2rem; }

/* ══════════════════════════════════════════════
   CATEGORY FILTER TABS
══════════════════════════════════════════════ */
.cat-tabs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cat-tabs {
    justify-content: center;
  }
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0;
  padding: .38rem .95rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--text2);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.cat-tab.active,
.cat-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ══════════════════════════════════════════════
   SKELETON
══════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.skel-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.skel-img  { aspect-ratio: 1 / 1; }
.skel-body { padding: .75rem; display: flex; flex-direction: column; gap: .45rem; }
.skel-line { height: .7rem; border-radius: 4px; }
.skel-line.short  { width: 50%; }
.skel-line.medium { width: 75%; }

/* ══════════════════════════════════════════════
   EMPTY / ERROR STATE
══════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text2); }
.empty-state h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }

/* ══════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════ */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
@media (min-width: 768px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text2);
  font-family: inherit;
  font-size: .6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
  padding: .4rem 0;
  position: relative;
}
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--accent); }
.bottom-nav-item svg { width: 22px; height: 22px; }

.bottom-cart-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 20px);
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 15px; height: 15px;
  font-size: .58rem;
  font-weight: 900;
}

/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
#cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
}
#cart-overlay.active { display: block; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
#cart-drawer.active { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 1rem; font-weight: 800; }
.cart-close {
  background: none; border: none; cursor: pointer;
  color: var(--text2); padding: .25rem;
  display: flex; align-items: center; border-radius: 6px;
}
.cart-close:hover { color: var(--text); }

#cart-items { flex: 1; overflow-y: auto; padding: .75rem 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--text2); }
.cart-empty a { color: var(--accent); font-weight: 700; }

.cart-item {
  display: flex; gap: .75rem;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 58px; height: 58px; border-radius: 8px;
  overflow: hidden; background: var(--bg2);
  border: 1px solid var(--border); flex-shrink: 0;
}
.cart-item-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: .84rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
.cart-item-price { font-size: .76rem; color: var(--text2); margin-top: .12rem; }
.cart-qty { display: flex; align-items: center; gap: .35rem; margin-top: .4rem; }
.cart-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s;
}
.cart-qty button:hover { border-color: var(--accent); color: var(--accent); }
.cart-qty span { font-size: .85rem; font-weight: 700; min-width: 1.4rem; text-align: center; }
.cart-qty button.cart-remove {
  margin-left: .5rem; font-size: .75rem; color: var(--text2);
  text-decoration: underline; cursor: pointer; border: none; background: none;
  font-family: inherit; width: auto; height: auto; padding: 0;
}
.cart-qty button.cart-remove:hover { color: #dc2626; border-color: transparent; }
.cart-item-total { font-size: .88rem; font-weight: 800; white-space: nowrap; color: var(--accent); }

#cart-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); background: var(--bg2); }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .875rem; margin-bottom: .75rem; font-weight: 600;
}
.btn-checkout {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  text-align: center; padding: .825rem;
  border-radius: 50px; font-weight: 800; font-size: .9rem;
  transition: opacity .15s;
}
.btn-checkout:hover { opacity: .88; }

/* ══════════════════════════════════════════════
   CHECKOUT
══════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 1.75rem auto;
  padding: 0 1rem;
  align-items: start;
}
@media (min-width: 700px) {
  .checkout-layout { grid-template-columns: 1fr 340px; gap: 2rem; }
}
.checkout-section {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem;
}
.checkout-section h2 { font-size: .95rem; font-weight: 800; margin-bottom: .875rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .75rem; }
.form-group label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .6rem .8rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .875rem; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 78px; }

.payment-options { display: flex; flex-direction: column; gap: .5rem; }
.payment-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border: 2px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.payment-option:hover { border-color: var(--accent); }
.payment-option.selected { border-color: var(--accent); background: var(--accent-light); }
.payment-option input[type=radio] { accent-color: var(--accent); }
.payment-option-label { font-weight: 700; font-size: .875rem; }
.payment-option-sub { font-size: .72rem; color: var(--text2); margin-top: .06rem; }

.coupon-row { display: flex; gap: .5rem; }
.coupon-row input {
  flex: 1;
  padding: .6rem .8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.coupon-row input:focus { border-color: var(--accent); }
.btn-apply {
  padding: .6rem .95rem;
  background: var(--text); color: #fff;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: .82rem; cursor: pointer;
  white-space: nowrap; transition: opacity .15s; font-family: inherit;
}
.btn-apply:hover { opacity: .85; }
.btn-apply:disabled { opacity: .5; cursor: not-allowed; }
.coupon-msg { font-size: .8rem; margin-top: .4rem; }
.coupon-msg.ok  { color: #16a34a; }
.coupon-msg.err { color: #dc2626; }

.order-summary {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 700px) { .order-summary { position: sticky; top: 80px; } }
.order-summary-header {
  background: var(--bg2); padding: .825rem 1.25rem;
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.summary-items { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
.summary-item { display: flex; gap: .6rem; align-items: center; margin-bottom: .6rem; }
.summary-item:last-child { margin-bottom: 0; }
.summary-item-img {
  width: 42px; height: 42px; border-radius: 6px;
  border: 1px solid var(--border); overflow: hidden;
  background: var(--bg2); flex-shrink: 0;
}
.summary-item-name  { font-size: .82rem; font-weight: 700; flex: 1; text-transform: uppercase; }
.summary-item-price { font-size: .82rem; font-weight: 700; white-space: nowrap; }
.summary-totals { padding: .825rem 1.25rem; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: .82rem; margin-bottom: .4rem; color: var(--text2);
}
.summary-row.discount { color: #16a34a; }
.summary-row.total {
  font-size: .95rem; font-weight: 800; color: var(--text);
  border-top: 1px solid var(--border); padding-top: .6rem; margin-top: .15rem;
}
.btn-place-order {
  display: block; width: calc(100% - 2.5rem); margin: 0 1.25rem 1.25rem;
  background: var(--accent); color: #fff;
  text-align: center; padding: .875rem;
  border-radius: 50px; font-weight: 800; font-size: .9rem;
  border: none; cursor: pointer; transition: opacity .15s; font-family: inherit;
}
.btn-place-order:hover { opacity: .88; }
.btn-place-order:disabled { opacity: .5; cursor: not-allowed; }

/* ══════════════════════════════════════════════
   INFO PAGES (track / confirm)
══════════════════════════════════════════════ */
.info-page { max-width: 640px; margin: 1.75rem auto; padding: 0 1rem; }
.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1rem;
}
.info-card h2 { font-size: .95rem; font-weight: 800; margin-bottom: .875rem; }
.status-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .7rem; border-radius: 50px;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.status-badge.green  { background: #dcfce7; color: #15803d; }
.status-badge.yellow { background: #fef9c3; color: #a16207; }
.status-badge.red    { background: #fee2e2; color: #b91c1c; }
.status-badge.gray   { background: var(--bg2); color: var(--text2); }

.detail-row {
  display: flex; justify-content: space-between;
  padding: .45rem 0; border-bottom: 1px solid var(--bg2);
  font-size: .875rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--text2); }
.detail-row strong { font-weight: 700; }

.success-icon { font-size: 2.75rem; text-align: center; margin-bottom: .875rem; }

.track-form input {
  width: 100%; padding: .65rem .875rem;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: .875rem; font-family: inherit; outline: none;
  margin-bottom: .65rem; color: var(--text);
}
.track-form input:focus { border-color: var(--accent); }
.btn-track {
  width: 100%; padding: .825rem;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50px;
  font-weight: 800; font-size: .875rem; cursor: pointer;
  transition: opacity .15s; font-family: inherit;
}
.btn-track:hover { opacity: .85; }
.btn-track:disabled { opacity: .5; cursor: not-allowed; }

/* ── Google Translate Overrides ──────────────── */
#google_translate_element {
  display: flex;
  align-items: center;
}
.goog-te-gadget {
  font-family: inherit !important;
  color: transparent !important;
  font-size: 0 !important;
  display: flex;
  align-items: center;
}
.goog-te-gadget .goog-te-combo {
  font-family: inherit !important;
  color: var(--text) !important;
  font-size: 0.875rem !important;
  padding: 0.25rem 0.5rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem !important;
  outline: none !important;
  background-color: #fff !important;
  margin: 0 !important;
  cursor: pointer;
  height: 2.25rem;
}
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget img {
  display: none !important;
}
.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0 !important;
}
