@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

:root {
  --accent: #455227;
  --accent-dark: #303a1b;
  --accent-light: #f0f3e8;
  --accent-rgb: 69, 82, 39;
  --cta: #9c4c23;
  --cta-dark: #7c3516;
  --bg: #f9f8f5;
  --bg2: #f0ede6;
  --border: #e3decb;
  --text: #2b231d;
  --text2: #6e655d;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 2px rgba(43, 35, 29, 0.05);
  --shadow: 0 1px 3px rgba(43, 35, 29, 0.06), 0 6px 16px -8px rgba(43, 35, 29, 0.10);
  --shadow-lg: 0 4px 12px -2px rgba(43, 35, 29, 0.08), 0 20px 40px -12px rgba(43, 35, 29, 0.14);
  --ring: 0 0 0 4px rgba(var(--accent-rgb), 0.14);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 64px;
  --bottom-nav-h: 64px;
}

::selection { background: rgba(var(--accent-rgb), 0.16); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', -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;
  overflow-x: hidden;
}


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: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(234, 234, 234, 0.7);
  box-shadow: var(--shadow-xs);
}

/* ── 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: 44px;
  padding: 0 3rem 0 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  background: var(--bg2);
}
.header-search input:focus { border-color: var(--accent); background: #fff; box-shadow: var(--ring); }

.header-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 34px;
  width: 40px;
  background: var(--accent);
  border: none;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s var(--ease);
}
.header-search button:hover { background: var(--accent-dark); }

.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: .55rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: 0 4px 12px -3px rgba(var(--accent-rgb), 0.45);
  line-height: 1;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 18px -4px rgba(var(--accent-rgb), 0.5); }
.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: 320px;
  background: var(--accent-dark);
}
@media (min-width: 480px) { .hero-carousel { height: 420px; } }
@media (min-width: 768px) { .hero-carousel { height: 520px; } }
@media (min-width: 1024px) { .hero-carousel { height: 620px; } }
@media (min-width: 1400px) { .hero-carousel { height: 700px; } }

.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-slide.active .hero-content > * {
  animation: heroIn .6s var(--ease) both;
}
.hero-slide.active .hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: .13s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: .21s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: .29s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active .hero-content > * { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,20,12,.78) 0%, rgba(8,20,12,.42) 45%, rgba(8,20,12,.05) 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-family: 'Playfair Display', Georgia, serif;
  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: var(--cta);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 8px 22px -6px rgba(234, 88, 12, 0.6);
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.hero-cta:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(234, 88, 12, 0.7); }

.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: .7rem .85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.usp-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.usp-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--accent-light);
  border-radius: 10px;
  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: 2.75rem 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-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; letter-spacing: -.01em; }
.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(var(--accent-rgb), 0.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: var(--radius-sm);
  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(var(--accent-rgb), 0.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: #ffffff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
  cursor: pointer;
  text-align: center;
  width: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.product-img img {
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-img img {
  transform: scale(1.03);
}
.product-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800;
  color: var(--accent); background: var(--accent-light);
}

.product-badge {
  display: none;
}

.product-info {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}
.product-cat {
  display: none;
}
.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
}
.price-final   { font-size: 0.825rem; font-weight: 500; color: #4b5563; }
.price-original { font-size: 0.75rem; color: #888; text-decoration: line-through; }
.price-save    { display: none; }

/* ══════════════════════════════════════════════
   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: 14px;
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq-item.open {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: var(--shadow);
}

.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
══════════════════════════════════════════════ */
/* ── Redesigned Premium Dark Footer ── */
.footer {
  margin-top: auto;
  background: #1d2215;
  color: #cbd5e1;
  font-family: system-ui, -apple-system, sans-serif;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; }
}

/* Brand col */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.15rem;
}
.footer-store-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}
.footer-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-socials {
  display: flex;
  gap: 0.65rem;
}
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Footer columns */
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}
.footer-col li a {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.2s ease;
}
.footer-col li a .chevron {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease;
}
.footer-col li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-col li a:hover .chevron {
  color: #ffffff;
}

/* Contact info card & rows */
.footer-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}
.contact-card-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-icon-bg {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-contact-row a {
  font-size: 0.8rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-contact-row a:hover {
  opacity: 0.85;
}

/* Footer bottom bar */
.footer-bottom-wrapper {
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
}
.footer-bottom strong { color: #fff; }
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ══════════════════════════════════════════════
   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: none;
  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);
}


.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: var(--accent-light); color: var(--accent); }
.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; }

/* ── Overrides for Product Grid & Banner Heights ── */
#products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  justify-content: start !important;
}

@media (max-width: 900px) {
  #products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  #products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

#products-grid .product-card {
  width: 100% !important;
  max-width: 100% !important;
}

.slider-container .product-grid {
  align-items: stretch !important;
}

.featured-header-card {
  height: 100% !important;
  min-height: 250px !important;
  display: flex !important;
  flex-direction: column !important;
}

