/* =========================================
   UperWeed Redesign — Design System
   Inspired by UberEats: clean, card-based, modern
   ========================================= */

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

:root {
  /* Fresh palette */
  --bg:          #FFFFFF;
  --surface:     #F7F7F7;
  --card:        #FFFFFF;
  --border:      #E8E8E8;
  --border-light:#F0F0F0;

  --text-primary:   #191919;
  --text-secondary: #6B6B6B;
  --text-muted:     #AFAFAF;

  --brand:       #05944F;   /* UberEats-inspired green */
  --brand-light: #E6F7EE;
  --brand-dark:  #034D29;

  --accent:      #FF5A00;   /* warm orange CTA */
  --accent-hover:#E04E00;

  --sale:        #D32F2F;
  --star:        #FF9100;
  --badge-bg:    #F0F0F0;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-pill:  999px;

  --shadow-card:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.1);
  --shadow-modal: 0 16px 48px rgba(0,0,0,.16);

  --header-h:    76px;
  --max-w:       1600px;
  --gutter:      24px;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.page-body { padding-top: calc(var(--header-h) + 14px); padding-bottom: 60px; }

/* --- Header --- */
.site-header {
  position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 1000 !important;
  height: var(--header-h) !important;
  background: var(--bg) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
  display: flex !important; align-items: center !important;
}
.header-inner {
  max-width: var(--max-w) !important; margin: 0 auto !important; padding: 0 var(--gutter) !important;
  width: 100% !important; display: flex !important; align-items: center !important; gap: 22px !important;
}
@media (min-width: 1600px) {
  .header-inner { max-width: 100%; padding: 0 40px; }
  .container { max-width: 100%; padding: 0 40px; }
}
.logo {
  font-size: 24px !important; font-weight: 900 !important; color: var(--text-primary) !important;
  display: flex !important; align-items: center !important; gap: 8px !important; white-space: nowrap !important;
  letter-spacing: 0 !important;
}
.logo .leaf { color: var(--brand); font-size: 26px; }
.logo-img { width: 44px !important; height: 44px !important; border-radius: 8px !important; object-fit: cover !important; }

.header-search {
  flex: 1; max-width: 520px; position: relative;
}
.header-search input {
  width: 100%; padding: 10px 16px 10px 42px;
  border: none; border-radius: var(--radius-pill);
  background: var(--surface); font-size: 15px;
  color: var(--text-primary);
  transition: box-shadow .2s;
}
.header-search input:focus { outline: none; box-shadow: 0 0 0 2px var(--brand); }
.header-search .search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 18px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  padding: 0; border: 0; background: transparent;
}
.header-search .search-icon:hover { color: var(--brand-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-actions .btn-text {
  font-size: 14px; font-weight: 600; padding: 8px 16px;
  border-radius: var(--radius-pill); transition: background .15s;
}
.header-actions .btn-text:hover { background: var(--surface); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.primary-nav-item {
  position: relative;
}

.primary-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.primary-nav-link:hover,
.primary-nav-item:focus-within .primary-nav-link,
.primary-nav-item:hover .primary-nav-link {
  background: var(--surface);
  color: var(--brand-dark);
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 180;
  width: min(calc(100vw - 48px), 900px);
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow-y: auto;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.primary-nav-item:hover .mega-panel,
.primary-nav-item:focus-within .mega-panel,
.primary-nav-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-modal);
  padding: 22px;
}

.mega-panel-compact {
  width: min(calc(100vw - 48px), 680px);
}

.mega-panel-shop {
  width: min(calc(100vw - 48px), 900px);
}

.mega-panel-locations {
  width: min(calc(100vw - 48px), 680px);
}

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

.mega-kicker {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.mega-all-link {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.mega-all-link:hover {
  color: var(--brand);
}

.mega-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mega-category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: background .15s, border-color .15s, transform .15s;
}

.mega-category-card:hover {
  background: #fff;
  border-color: rgba(5,148,79,.35);
  transform: translateY(-1px);
}

.mega-category-card img,
.mega-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--brand-light);
}

.mega-category-icon {
  display: grid;
  place-items: center;
  font-size: 22px;
}

.mega-category-card strong,
.mega-action-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.25;
}

.mega-category-card em {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
  margin-top: 2px;
}

.mega-subcategory-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.mega-link-group {
  display: grid;
  align-content: start;
  gap: 7px;
}

.mega-link-group a {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.25;
}

.mega-link-group a:hover {
  color: var(--brand-dark);
}

.mega-link-group .mega-link-heading {
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 2px;
}

.mega-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-action-card {
  display: block;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: background .15s, border-color .15s, transform .15s;
}

.mega-action-card:hover {
  background: #fff;
  border-color: rgba(5,148,79,.35);
  transform: translateY(-1px);
}

.mega-action-card span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
}

.mega-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mega-location-grid a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.mega-location-grid a:hover {
  color: var(--brand-dark);
  border-color: rgba(5,148,79,.35);
  background: #fff;
}

.cart-btn {
  position: relative; display: flex; align-items: center; gap: 6px;
  background: var(--text-primary); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
}
.cart-btn .cart-count {
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* --- Hamburger Button --- */
.hamburger-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s;
}
.hamburger-btn:hover { background: var(--surface); }
.hamburger-btn svg { color: var(--text-primary); }

/* --- Drawer Overlay --- */
.drawer-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- Drawer Menu --- */
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: 380px;
  max-width: calc(100vw - 28px);
  height: 100%;
  background: var(--card);
  z-index: 1110;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: 10px 0 30px rgba(0,0,0,.16);
}
.drawer.open {
  transform: translateX(0);
}
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}
.drawer-brand {
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  color: var(--text-primary);
}
.drawer-close:hover { background: var(--surface); }

.drawer-search {
  position: relative;
  margin: 14px 18px 10px;
  flex-shrink: 0;
}

.drawer-search input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text-primary);
  font-size: 15px;
}

.drawer-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(5, 148, 79, .16);
}

.drawer-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 16px;
}
.drawer-search-glyph {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.drawer-search-glyph::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.drawer-nav {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 6px 18px 16px;
}
.drawer-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.drawer-quick-link {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
}
.drawer-quick-link:hover {
  border-color: rgba(5,148,79,.35);
  color: var(--brand-dark);
  background: #fff;
}
.drawer-section {
  display: grid;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.drawer-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 0 2px 2px;
}
.drawer-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.drawer-category-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.drawer-category-link:hover {
  border-color: rgba(5,148,79,.35);
  color: var(--brand-dark);
  background: var(--brand-light);
}
.drawer-category-link-featured {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}
.drawer-category-link-featured:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(226,232,240,.75);
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
  transition: color .12s;
}
.drawer-link:hover {
  color: var(--brand-dark);
}
.drawer-link-note {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}
.drawer-section .drawer-link:last-child {
  border-bottom: 0;
}

.drawer-footer {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}
.drawer-phone {
  font-size: 15px; font-weight: 600;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}
.drawer-hours {
  font-size: 13px; color: var(--text-muted);
}

/* --- Category Top Nav (icon-based, like UberEats) --- */
.cat-topnav-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.cat-topnav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 12px 0 8px;
}
.cat-topnav::-webkit-scrollbar { display: none; }

.cat-topnav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  padding: 6px 12px;
  min-width: 76px;
  text-align: center;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  transition: background .15s;
}
.cat-topnav-item:hover { background: var(--surface); }
.cat-topnav-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}
.cat-topnav-ph {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.cat-topnav-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Category top-nav arrows */
.cat-topnav-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--card);
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-primary);
  z-index: 3;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s;
}
.cat-topnav-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.cat-topnav-arrow-left { left: 0; }
.cat-topnav-arrow-right { right: 0; }
.cat-topnav-arrow.hidden { opacity: 0; pointer-events: none; }

/* Fade hints */
.cat-topnav-wrap::before,
.cat-topnav-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.cat-topnav-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .2s;
}
.cat-topnav-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  transition: opacity .2s;
}
.cat-topnav-wrap.at-start::before { opacity: 0; }
.cat-topnav-wrap.at-end::after { opacity: 0; }
.cat-topnav-wrap:not(.at-start)::before { opacity: 1; }

/* --- Age Gate Banner --- */
.age-banner {
  background: var(--brand); color: #fff; text-align: center;
  padding: 10px 16px; font-size: 13px; font-weight: 500;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: none; /* shown via JS if needed */
}

/* --- Category Pills --- */
/* Category pills with scroll arrows */
.category-pills-wrap {
  position: relative;
}
.category-pills {
  display: flex; gap: 8px; overflow-x: auto; padding: 16px 0;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.category-pills::-webkit-scrollbar { display: none; }

/* Fade hints on edges */
.category-pills-wrap::before,
.category-pills-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
  transition: opacity .2s;
}
.category-pills-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  opacity: 0;
}
.category-pills-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.category-pills-wrap.at-start::before { opacity: 0; }
.category-pills-wrap.at-end::after { opacity: 0; }
.category-pills-wrap:not(.at-start)::before { opacity: 1; }

/* Scroll arrows for pills */
.pills-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--card);
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-primary);
  z-index: 3;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s;
}
.pills-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.pills-arrow-left { left: 0; }
.pills-arrow-right { right: 0; }
.pills-arrow.hidden { opacity: 0; pointer-events: none; }

.pill {
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; white-space: nowrap;
  background: var(--surface); color: var(--text-primary);
  border: 1px solid transparent;
  transition: all .15s;
  flex-shrink: 0;
}
.pill:hover { background: var(--border); }
.pill.active {
  background: var(--text-primary); color: #fff;
}
.pill .pill-icon { margin-right: 6px; }

/* --- Section Headers --- */
.section-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding-top: 24px;
}
.section-title { margin-right: auto; }
.section-title { font-size: 22px; font-weight: 700; }
.section-link {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  display: flex; align-items: center; gap: 4px;
}
.section-link:hover { color: var(--brand); }

/* --- Carousel --- */
.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px; scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; flex-shrink: 0; }

/* Carousel overlay arrows */
.carousel-nav-left,
.carousel-nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity .2s, transform .15s, box-shadow .15s;
}
.carousel-wrap:hover .carousel-nav-left,
.carousel-wrap:hover .carousel-nav-right {
  opacity: 1;
}
.carousel-nav-left:hover,
.carousel-nav-right:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.carousel-nav-left { left: -4px; }
.carousel-nav-right { right: -4px; }

/* Legacy nav arrows (section header inline) */
.carousel-nav {
  display: flex; gap: 6px; margin-left: 8px; flex-shrink: 0;
}
.nav-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--text-primary);
  cursor: pointer; transition: all .15s;
}
.nav-arrow:hover:not(:disabled) { background: var(--border); transform: scale(1.05); }
.nav-arrow:disabled { opacity: .3; cursor: default; }

/* --- Product Card --- */
.product-card {
  width: 200px; background: var(--card);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow .2s;
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-hover); }

.product-card .card-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--surface);
}
.product-card .card-body { padding: 10px 12px 14px; }
.product-card .card-name {
  font-size: 14px; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.3; margin-bottom: 4px;
}
.product-card .card-price { font-size: 13px; color: var(--text-secondary); }
.product-card .card-price .sale-price { color: var(--sale); font-weight: 600; margin-right: 4px; }
.product-card .card-price .orig-price { text-decoration: line-through; color: var(--text-muted); }

.product-card .card-badges { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.product-card .badge {
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.badge-indica   { background: #EDE7F6; color: #5E35B1; }
.badge-sativa   { background: #FFF3E0; color: #E65100; }
.badge-hybrid   { background: #E8F5E9; color: #2E7D32; }
.badge-cbd      { background: #E3F2FD; color: #1565C0; }
.badge-sale     { background: #FFEBEE; color: var(--sale); }
.badge-lab      { background: #E0F2F1; color: #00695C; }

.product-card .card-rating {
  display: flex; align-items: center; gap: 4px;
  margin-top: 6px; font-size: 12px; color: var(--text-secondary);
}
.card-rating .stars { color: var(--star); letter-spacing: -1px; }

/* Wider card variant for grids */
.product-card.grid-card { width: 100%; }

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* --- Category Card (for homepage) --- */
.category-card {
  width: 140px; text-align: center; cursor: pointer;
}
.category-card .cat-img {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-md);
  object-fit: cover; background: var(--surface);
  transition: transform .2s;
}
.category-card:hover .cat-img { transform: scale(1.04); }
.category-card .cat-name {
  margin-top: 8px; font-size: 13px; font-weight: 600;
}

/* --- Hero Banner --- */
.hero-banner {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; margin-bottom: 8px;
  background: linear-gradient(135deg, #0a2e1a 0%, #134e2e 50%, #1a6b3c 100%);
  padding: 48px 40px; color: #fff; min-height: 260px;
  display: flex; align-items: center;
}
.hero-content { max-width: 480px; }
.hero-content h1 { font-size: 32px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.hero-content p { font-size: 16px; opacity: .85; margin-bottom: 20px; line-height: 1.5; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  background: #fff; color: var(--text-primary);
  font-size: 15px; font-weight: 700;
  transition: transform .15s, box-shadow .15s;
}
.hero-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.hero-badge {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}

/* --- Promoptions Hero Grid (1 large + 4 small, all square) --- */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.promo-grid-main {
  grid-row: 1;
  grid-column: 1;
}
.promo-grid-side {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.promo-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  aspect-ratio: 1 / 1;
}
.promo-slot-empty {
  aspect-ratio: 1 / 1;
}

.promo-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.promo-slide-active {
  display: block;
}
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.promo-slot:hover .promo-slide img {
  transform: scale(1.03);
}

/* Carousel arrows — visible on hover */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  border: none;
  opacity: 0;
  transition: opacity .2s, background .15s;
  backdrop-filter: blur(4px);
}
.promo-carousel:hover .promo-arrow {
  opacity: 1;
}
.promo-arrow:hover {
  background: rgba(0,0,0,.75);
}
.promo-arrow-left { left: 8px; }
.promo-arrow-right { right: 8px; }

/* Carousel dots */
.promo-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.promo-dot-active {
  background: #fff;
  transform: scale(1.3);
}

/* Mobile: all 5 banners stack vertically */
@media (max-width: 768px) {
  .promo-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .promo-grid-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .promo-slot {
    aspect-ratio: 1 / 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .shop-landing-search {
    max-width: none;
    margin-top: 16px;
  }

  .shop-action-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-action-card {
    min-height: 118px;
  }

  .shop-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-category-tile {
    grid-template-columns: 44px 1fr;
    min-height: 88px;
    padding: 12px;
  }

  .shop-category-tile img,
  .shop-category-icon {
    width: 44px;
    height: 44px;
  }

  .shop-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-section .section-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .shop-section-count {
    order: 3;
    width: 100%;
  }

  .breadcrumb-section .container {
    align-items: flex-start;
  }

  .breadcrumb-phone {
    display: none;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bundle-detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bundle-action-row {
    align-items: stretch;
  }

  .bundle-action-row .btn-add-cart {
    width: 100%;
  }

  .mix-match-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .mix-item-qty {
    width: 100%;
    justify-content: flex-end;
  }

  .contact-layout,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
  }
}

/* --- Promo Banners Row --- */
.promo-row { display: flex; gap: 16px; margin: 24px 0; }
.promo-banner {
  flex: 1; border-radius: var(--radius-md); padding: 20px 24px;
  color: #fff; display: flex; align-items: center; gap: 16px;
  cursor: pointer; transition: transform .15s;
  min-height: 100px;
}
.promo-banner:hover { transform: translateY(-2px); }
.promo-banner.promo-deals { background: linear-gradient(135deg, #D32F2F, #FF5722); }
.promo-banner.promo-new   { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.promo-banner.promo-lab   { background: linear-gradient(135deg, #00695C, #26A69A); }
.promo-banner h3 { font-size: 16px; font-weight: 700; }
.promo-banner p  { font-size: 13px; opacity: .85; margin-top: 4px; }
.promo-icon { font-size: 32px; }

/* --- Shop Page --- */
.shop-header {
  padding: 8px 0 8px;
}
.shop-header h1 { font-size: 28px; font-weight: 800; }
.shop-header .shop-meta { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

.filter-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 0;
  border-bottom: 1px solid var(--border); margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  background: var(--bg); border: 1px solid var(--border);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--text-primary); }
.filter-btn.active { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }
.filter-btn .arrow { font-size: 10px; margin-left: 2px; }

.sort-dropdown {
  margin-left: auto;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); font-size: 14px;
  background: var(--bg); font-weight: 500;
}

.shop-section { margin-bottom: 40px; }
.shop-section-title {
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 8px;
}

.shop-landing-search {
  max-width: 720px;
  margin: 18px 0 22px;
}

.shop-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.shop-action-card {
  min-height: 136px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(5,148,79,.08), rgba(255,90,0,.08)),
    var(--card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.shop-action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5,148,79,.28);
  box-shadow: var(--shadow-hover);
}

.shop-action-card span {
  width: max-content;
  max-width: 100%;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--brand-dark);
  font-size: .75rem;
  font-weight: 900;
  padding: 5px 10px;
  margin-bottom: 18px;
}

.shop-action-card strong {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.shop-action-card em {
  color: var(--text-secondary);
  font-size: .9rem;
  font-style: normal;
  margin-top: 5px;
}

.shop-action-sales {
  background:
    linear-gradient(135deg, rgba(211,47,47,.14), rgba(255,145,0,.14)),
    var(--card);
}

.shop-category-browser {
  margin: 0 0 32px;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.shop-category-tile {
  min-height: 104px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 14px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: 1fr auto;
  column-gap: 12px;
  align-items: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.shop-category-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(5,148,79,.28);
  box-shadow: var(--shadow-hover);
}

.shop-category-tile img,
.shop-category-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface);
  object-fit: cover;
}

.shop-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.shop-category-tile strong {
  align-self: end;
  font-size: .96rem;
  line-height: 1.2;
}

.shop-category-tile em {
  align-self: start;
  color: var(--text-secondary);
  font-size: .8rem;
  font-style: normal;
  margin-top: 3px;
}

.shop-featured-section {
  padding-top: 4px;
}

.shop-featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
}

.shop-section .section-header {
  align-items: center;
}

.shop-section-count {
  margin-right: auto;
  color: var(--text-secondary);
  font-size: .85rem;
  font-weight: 700;
}

/* --- Shared Storefront Utility Styles --- */
.breadcrumb-section {
  margin: 0 0 22px !important;
  padding: 2px 0 14px !important;
  background: transparent !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.breadcrumb-section .container {
  max-width: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
}

.breadcrumb,
.pd-breadcrumb,
.page-breadcrumb,
nav.breadcrumb {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  color: var(--text-secondary) !important;
  font-size: .86rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  list-style: none !important;
  padding-left: 0 !important;
}

.breadcrumb li:not(:last-child)::after,
.page-breadcrumb .separator {
  content: '/' !important;
  margin-left: 7px !important;
  color: var(--text-muted) !important;
}

.breadcrumb a,
.pd-breadcrumb a,
.page-breadcrumb a,
nav.breadcrumb a {
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

.breadcrumb li:last-child,
.page-breadcrumb span:last-child,
.pd-breadcrumb,
nav.breadcrumb {
  color: var(--text-muted);
}

.breadcrumb a:hover,
.pd-breadcrumb a:hover,
.page-breadcrumb a:hover,
nav.breadcrumb a:hover {
  color: var(--brand) !important;
}

.breadcrumb-phone {
  display: none !important;
}

.page-breadcrumb {
  justify-content: flex-start !important;
  padding: 2px 0 14px !important;
  margin: 0 0 22px !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--text-primary);
  color: #fff;
  padding: 11px 18px;
}

.btn-secondary:hover {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.alert {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 24px;
  margin: 24px 0;
}

/* --- Bundles and Mix & Match Listing --- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin: 24px 0 48px;
}

.bundle-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.bundle-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5,148,79,.28);
  box-shadow: var(--shadow-hover);
}

.bundle-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}

.bundle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: var(--radius-sm);
  background: var(--sale);
  color: #fff;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 900;
}

.bundle-card-info {
  padding: 18px;
}

.bundle-card-info h3 {
  font-size: 1.12rem;
  line-height: 1.28;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.bundle-card-desc {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

.bundle-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.bundle-item-count,
.bundle-pick-qty {
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  padding: 5px 9px;
  font-size: .78rem;
  font-weight: 800;
}

.bundle-pick-qty {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.bundle-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.bundle-card-price .price-was {
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-card-price .price-now {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 900;
}

/* --- Bundle Detail --- */
.bundle-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 36px;
  margin: 24px 0 42px;
  align-items: start;
}

.bundle-main-image {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.bundle-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bundle-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.bundle-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid transparent;
  background: var(--surface);
  cursor: pointer;
}

.bundle-thumb.active,
.bundle-thumb:hover {
  border-color: var(--brand);
}

.bundle-detail-info h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.bundle-rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.bundle-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.bundle-detail-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.bundle-detail-price .price-large {
  font-size: 2rem;
  font-weight: 900;
}

.bundle-detail-price .price-was {
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-savings {
  color: var(--sale);
  font-weight: 900;
}

.bundle-products-section,
.mix-match-picker {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 18px;
  margin: 0 0 18px;
}

.bundle-products-section h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.bundle-products-list {
  display: grid;
  gap: 10px;
}

.bundle-product-row,
.mix-match-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 10px;
}

.bundle-product-img,
.mix-match-item .mix-option-content img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}

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

.mix-match-item .mix-option-content img {
  object-fit: cover;
}

.bundle-product-details,
.mix-option-text {
  min-width: 0;
  flex: 1;
}

.bundle-product-name,
.mix-option-name {
  display: block;
  color: var(--text-primary);
  font-weight: 900;
  line-height: 1.25;
}

.bundle-product-option,
.mix-option-label {
  display: block;
  color: var(--text-secondary);
  font-size: .85rem;
  margin-top: 3px;
}

.bundle-product-qty {
  color: var(--brand-dark);
  font-weight: 900;
}

.picker-instruction {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mix-match-item {
  margin-top: 10px;
}

.mix-match-item .mix-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.mix-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mix-qty-btn,
.bundle-qty-inline button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 900;
}

.mix-qty-btn:hover:not(:disabled),
.bundle-qty-inline button:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.mix-qty-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.mix-qty-display {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.mix-match-status {
  color: var(--text-secondary);
  font-weight: 900;
  margin: 0 0 14px;
}

.bundle-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bundle-qty-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px;
}

.bundle-qty-inline input[type="number"] {
  width: 46px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 900;
  outline: none;
}

.bundle-action-row .btn-add-cart {
  min-height: 48px;
  padding: 0 24px;
}

/* --- Standard Content Pages --- */
.standard-content > .container {
  max-width: none;
  padding: 0;
}

.contact-container,
.about-container {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-container h1,
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.intro-text,
.about-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.info-card,
.contact-form-section,
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.info-card + .info-card {
  margin-top: 14px;
}

.info-card h3,
.contact-form-section h3 {
  margin-bottom: 14px;
}

.info-item + .info-item {
  margin-top: 16px;
}

.info-item h4 {
  font-size: .9rem;
  margin-bottom: 4px;
}

.info-item p,
.info-card li,
.about-content p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.info-card a,
.about-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-weight: 800;
  font-size: .9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(5,148,79,.12);
}

.btn-submit {
  width: max-content;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  font-weight: 900;
}

.btn-submit:hover {
  background: var(--brand-dark);
}

.alert-success {
  border-color: rgba(5,148,79,.25);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.alert-error {
  border-color: rgba(211,47,47,.25);
  background: #fff1f1;
  color: var(--sale);
}

.about-hero {
  margin-bottom: 24px;
}

.about-content {
  max-width: 920px;
}

.about-content h2 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.value-card h3 {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .shop-landing-search {
    max-width: none;
    margin-top: 16px;
  }

  .shop-action-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-action-card {
    min-height: 112px;
  }

  .shop-action-card strong {
    font-size: 1.08rem;
  }

  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-tile {
    grid-template-columns: 44px 1fr;
    min-height: 88px;
    padding: 12px;
  }

  .shop-category-tile img,
  .shop-category-icon {
    width: 44px;
    height: 44px;
  }

  .shop-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-section .section-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .shop-section-count {
    order: 3;
    width: 100%;
  }
}

/* --- Category Description (expandable) --- */
.cat-description {
  margin-top: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand);
}
.cat-desc-preview,
.cat-desc-full {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.desc-toggle-btn {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 0;
  margin-left: 2px;
  display: inline;
}
.desc-toggle-btn:hover { text-decoration: underline; color: var(--brand-dark); }

/* --- Category Search Bar --- */
.cat-search-bar {
  margin: 20px 0 16px;
}
.cat-search-form { width: 100%; }
.cat-search-wrap {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  gap: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.cat-search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.cat-search-icon {
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.cat-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: var(--text-primary);
}
.cat-search-input::placeholder { color: var(--text-muted); }
.cat-search-clear {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 4px;
  line-height: 1;
}
.cat-search-clear:hover { color: var(--text-primary); }

/* --- Category Toolbar (count, per-page, sort, view) --- */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.cat-result-count {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.cat-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cat-per-page {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-secondary);
}
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 30px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all .15s;
}
.pp-btn:hover { border-color: var(--text-primary); color: var(--text-primary); }
.pp-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* --- View Toggle --- */
.cat-view-toggle {
  display: flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 32px;
  background: var(--bg);
  color: var(--text-muted);
  transition: all .15s;
}
.view-btn:hover { background: var(--surface); color: var(--text-primary); }
.view-btn.active { background: var(--text-primary); color: #fff; }
.view-btn svg { pointer-events: none; }

/* --- Product List View --- */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-list-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.product-list-card:hover {
  border-color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.list-card-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.list-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.list-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.list-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-card-price {
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.list-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.list-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.list-meta-item {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.list-card-rating {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  padding-bottom: 20px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all .15s;
}
.page-btn:hover { border-color: var(--text-primary); background: var(--surface); }
.page-btn.active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}
.page-dots {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 4px;
}

/* --- No Results --- */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
}
.no-results .btn-outline {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all .15s;
}
.no-results .btn-outline:hover {
  background: var(--surface);
  border-color: var(--text-primary);
}

/* --- Product Detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 0;
}

.pd-gallery {}
.pd-main-img {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  object-fit: cover; background: var(--surface);
}
.pd-thumbs {
  display: flex; gap: 8px; margin-top: 12px;
}
.pd-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; cursor: pointer; border: 2px solid transparent;
  transition: border-color .15s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--text-primary); }

.pd-info {}
.pd-breadcrumb {
  margin-bottom: 22px;
}
.pd-name { font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.pd-rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.pd-rating .stars { color: var(--star); font-size: 16px; }
.pd-rating .rating-text { font-size: 14px; color: var(--text-secondary); }

.pd-price-block { margin-bottom: 20px; }
.pd-price { font-size: 24px; font-weight: 700; }
.pd-price .sale { color: var(--sale); }
.pd-price .orig { text-decoration: line-through; color: var(--text-muted); font-size: 18px; margin-left: 8px; }
.pd-price-note { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

.pd-badges { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.pd-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  background: var(--surface);
}

.pd-section { margin-bottom: 24px; }
.pd-section-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }

.weight-options { display: flex; gap: 8px; flex-wrap: wrap; }
.weight-opt {
  padding: 10px 20px; border-radius: var(--radius-md);
  border: 2px solid var(--border); font-size: 14px; font-weight: 500;
  transition: all .15s; text-align: center; min-width: 80px;
}
.weight-opt:hover { border-color: var(--text-muted); }
.weight-opt.selected { border-color: var(--text-primary); background: var(--text-primary); color: #fff; }
.weight-opt .opt-price { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.weight-opt.selected .opt-price { color: rgba(255,255,255,.7); }

.pd-description { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.pd-effects { display: flex; gap: 8px; flex-wrap: wrap; }
.effect-tag {
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--brand-light); color: var(--brand-dark);
  font-size: 13px; font-weight: 500;
}

.pd-terpenes { display: flex; gap: 12px; flex-wrap: wrap; }
.terpene {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-secondary);
}
.terpene-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

.add-to-cart-bar {
  position: sticky; bottom: 0; left: 0; right: 0;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex; align-items: center; gap: 16px;
}
.qty-selector {
  display: flex; align-items: center; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.qty-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  transition: background .15s;
}
.qty-btn:hover { background: var(--surface); }
.qty-val {
  width: 40px; text-align: center; font-size: 15px; font-weight: 600;
}

.btn-add-cart {
  flex: 1; padding: 12px 24px; border-radius: var(--radius-pill);
  background: var(--text-primary); color: #fff;
  font-size: 16px; font-weight: 700; text-align: center;
  transition: background .15s;
}
.btn-add-cart:hover { background: #333; }

/* --- Tabs (product detail) --- */
.tab-bar {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-item {
  padding: 12px 20px; font-size: 15px; font-weight: 600;
  color: var(--text-secondary); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .15s;
}
.tab-item:hover { color: var(--text-primary); }
.tab-item.active { color: var(--text-primary); border-bottom-color: var(--text-primary); }

/* --- Reviews --- */
.review-summary {
  display: flex; align-items: center; gap: 24px; margin-bottom: 24px;
}
.review-big-num { font-size: 48px; font-weight: 800; }
.review-breakdown { flex: 1; }
.review-bar-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
  font-size: 13px;
}
.review-bar {
  flex: 1; height: 6px; background: var(--surface); border-radius: 3px;
  overflow: hidden;
}
.review-bar-fill { height: 100%; background: var(--star); border-radius: 3px; }

.review-card {
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
}
.review-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 700;
  color: var(--text-secondary);
}
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--star); font-size: 13px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* --- Cart Page --- */
.cart-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
  padding: 24px 0;
}
.cart-title { font-size: 28px; font-weight: 800; margin-bottom: 24px; }

.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-img {
  width: 90px; height: 90px; border-radius: var(--radius-sm);
  object-fit: cover; background: var(--surface);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.cart-item-option { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.cart-item-price { margin-left: auto; font-size: 15px; font-weight: 600; }

.cart-summary {
  background: var(--surface); border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: calc(var(--header-h) + 24px);
  height: fit-content;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; margin-bottom: 12px;
}
.summary-row.total { font-size: 18px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }

.btn-checkout {
  width: 100%; padding: 14px; border-radius: var(--radius-pill);
  background: var(--brand); color: #fff;
  font-size: 16px; font-weight: 700; text-align: center;
  margin-top: 16px; transition: background .15s;
}
.btn-checkout:hover { background: var(--brand-dark); }

/* --- Checkout Page --- */
.checkout-layout {
  display: grid; grid-template-columns: 1fr 400px; gap: 40px;
  padding: 24px 0;
}
.checkout-section {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.checkout-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-group { flex: 1; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--text-secondary);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px;
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand);
}

.btn-place-order {
  width: 100%; padding: 16px; border-radius: var(--radius-pill);
  background: var(--text-primary); color: #fff;
  font-size: 16px; font-weight: 700; text-align: center;
  margin-top: 16px; transition: background .15s;
}
.btn-place-order:hover { background: #333; }

/* --- Footer (styles moved to bottom of file) --- */
.footer-socials a:hover { color: var(--brand); }

/* --- Misc --- */
.divider { height: 1px; background: var(--border); margin: 24px 0; }

.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-secondary);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }

/* --- Frequently Bought Together --- */
.fbt-section { margin-top: 40px; }
.fbt-grid { display: flex; gap: 16px; overflow-x: auto; }

/* --- Responsive --- */

/* Large desktops (1400px+): wider cards, more space */
@media (min-width: 1400px) {
  .product-card { width: 220px; }
  .deal-card { width: 420px; }
  .category-card { width: 160px; }
  .article-card { width: 320px; }
}

/* Tablets & small desktops */
@media (max-width: 1024px) {
  :root { --gutter: 16px; }
  .primary-nav { display: none; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-nav { display: none; }
}

@media (min-width: 1025px) and (max-width: 1240px) {
  .primary-nav-link { padding: 0 9px; font-size: 13px; }
  .header-search { max-width: 340px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 56px; --gutter: 12px; }

  /* Mobile header */
  .hamburger-btn { display: flex; }
  .header-search { display: none; }
  .header-inner { gap: 12px; }
  .logo { font-size: 18px; }
  .logo-img { width: 34px; height: 34px; border-radius: 7px; }
  .logo .leaf { font-size: 22px; }
  .header-actions .btn-text { padding: 6px 10px; font-size: 13px; }
  .cart-btn { padding: 6px 12px; font-size: 13px; }

  /* Hero */
  .hero-banner { padding: 28px 20px; min-height: 180px; border-radius: var(--radius-md); }
  .hero-content h1 { font-size: 22px; }
  .hero-content p { font-size: 14px; margin-bottom: 16px; }
  .hero-cta { padding: 10px 22px; font-size: 14px; }
  .hero-badge { top: 12px; right: 12px; font-size: 11px; padding: 4px 10px; }

  /* Info strip: scroll horizontally */
  .info-strip {
    overflow-x: auto; white-space: nowrap; gap: 16px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .info-strip::-webkit-scrollbar { display: none; }

  /* Deal carousel */
  .deal-card { width: 300px; min-height: 120px; padding: 16px; }
  .deal-card .deal-text h3 { font-size: 14px; }
  .deal-card .deal-img { width: 80px; height: 80px; }
  .deal-arrow { display: none !important; }

  /* Category pills: make them touch-scrollable */
  .category-pills { gap: 6px; padding: 12px 0; }
  .pill { padding: 7px 14px; font-size: 13px; }

  /* Product cards in carousels */
  .product-card { width: 160px; }
  .product-card .card-body { padding: 8px 10px 12px; }
  .product-card .card-name { font-size: 13px; }
  .product-card .card-price { font-size: 12px; }
  .product-card .badge { font-size: 10px; padding: 2px 6px; }

  /* Category cards */
  .category-card { width: 110px; }
  .category-card .cat-name { font-size: 12px; }

  /* Promo banners stack */
  .promo-row { flex-direction: column; gap: 12px; }
  .promo-banner { padding: 16px 20px; min-height: 80px; }
  .promo-icon { font-size: 28px; }

  /* Section headers */
  .section-header { padding-top: 20px; margin-bottom: 12px; }
  .section-title { font-size: 18px; }
  .section-link { font-size: 13px; }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Product detail */
  .pd-name { font-size: 22px; }
  .pd-price { font-size: 20px; }
  .weight-options { gap: 6px; }
  .weight-opt { padding: 8px 14px; font-size: 13px; min-width: 70px; }
  .pd-thumbs { gap: 6px; }
  .pd-thumb { width: 56px; height: 56px; }

  /* Add to cart bar full width on mobile */
  .add-to-cart-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px var(--gutter); background: var(--bg);
    border-top: 1px solid var(--border); z-index: 50;
  }
  .btn-add-cart { font-size: 14px; padding: 11px 20px; }

  /* Tabs */
  .tab-item { padding: 10px 14px; font-size: 14px; }

  /* Reviews */
  .review-big-num { font-size: 36px; }

  /* Shop page */
  .shop-header h1 { font-size: 22px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 13px; }
  .sort-dropdown { font-size: 13px; padding: 6px 12px; }

  /* Pills arrows hidden on mobile (touch scroll) */
  .pills-arrow { display: none; }
  .category-pills-wrap::before,
  .category-pills-wrap::after { display: none; }

  /* Category page mobile */
  .cat-search-wrap { padding: 8px 14px; }
  .cat-search-input { font-size: 14px; }
  .cat-toolbar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cat-toolbar-right { width: 100%; justify-content: space-between; }
  .cat-per-page { font-size: 12px; }
  .pp-btn { width: 28px; height: 26px; font-size: 12px; }
  .list-card-img { width: 90px; height: 90px; }
  .list-card-name { font-size: 14px; }
  .list-card-desc { display: none; }
  .pagination { gap: 4px; }
  .page-btn { min-width: 34px; height: 34px; font-size: 13px; padding: 0 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Form */
  .form-row { flex-direction: column; gap: 12px; }

  /* Carousel arrows hidden on mobile (touch scrolling) */
  .carousel-nav { display: none; }

  /* Article cards */
  .article-card { width: 240px; }
  .articles-section { margin-top: 24px; padding-top: 20px; }
  .pd-full-desc-title { font-size: 18px; }
  .pd-full-desc-body { font-size: 14px; }
  .pd-highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pd-highlight-box { padding: 12px; }
  .pd-highlight-value { font-size: 16px; }

  /* Category top-nav: smaller on mobile */
  .cat-topnav-item { min-width: 60px; padding: 6px 4px; }
  .cat-topnav-img { width: 48px; height: 48px; }
  .cat-topnav-label { font-size: 10px; }
  .cat-topnav-arrow { display: none; }
  .cat-topnav-wrap::before,
  .cat-topnav-wrap::after { display: none; }

  /* Drawer: full width on mobile */
  .drawer { width: 100%; max-width: 100%; }
}

/* --- Deal Carousel (UberEats-style promo banners) --- */
.deal-carousel {
  display: flex; gap: 16px; overflow-x: auto; padding: 16px 0;
  scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory;
}
.deal-carousel::-webkit-scrollbar { display: none; }
.deal-carousel > * { scroll-snap-align: start; }

/* Deal carousel overlay arrows (UberEats-style) */
.deal-carousel-wrap {
  position: relative;
}
.deal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); box-shadow: 0 2px 8px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text-primary); z-index: 10;
  border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  opacity: 0;
}
.deal-carousel-wrap:hover .deal-arrow:not(.deal-arrow-hidden) { opacity: 1; }
.deal-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.deal-arrow-left { left: 8px; }
.deal-arrow-right { right: 8px; }
.deal-arrow-hidden { display: none !important; }

.deal-card {
  flex-shrink: 0; width: 420px; min-height: 140px;
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  position: relative; transition: transform .15s;
}
.deal-card:hover { transform: translateY(-2px); }
.deal-card.deal-yellow  { background: #FFF8E1; }
.deal-card.deal-green   { background: #E8F5E9; }
.deal-card.deal-orange  { background: #FFF3E0; }
.deal-card.deal-blue    { background: #E3F2FD; }
.deal-card.deal-pink    { background: #FCE4EC; }
.deal-card.deal-purple  { background: #F3E5F5; }

.deal-card .deal-text { flex: 1; }
.deal-card .deal-text h3 { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.deal-card .deal-text p  { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.deal-card .deal-cta {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
  background: var(--text-primary); color: #fff;
  font-size: 13px; font-weight: 600;
}
.deal-card .deal-img {
  width: 100px; height: 100px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
}

/* --- Article Card --- */
.article-card {
  width: 280px; border-radius: var(--radius-md); overflow: hidden;
  background: var(--card); cursor: pointer;
  transition: box-shadow .2s; flex-shrink: 0;
}
.article-card:hover { box-shadow: var(--shadow-hover); }
.article-card .article-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--surface);
}
.article-card .article-body { padding: 12px 14px; }
.article-card .article-title {
  font-size: 14px; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 6px;
}
.article-card .article-meta {
  font-size: 12px; color: var(--text-muted);
}

/* --- Extra badge styles --- */
.badge-best { background: #FFF8E1; color: #F57F17; }
.badge-new  { background: #E3F2FD; color: #1565C0; }
.badge-deal { background: #FFEBEE; color: #C62828; font-weight: 700; }

/* --- Sale tag overlay on product card images --- */
.card-img-wrap,
.list-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.card-deal-tag {
  position: absolute; top: 8px; left: 8px;
  background: #C62828; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill);
  z-index: 2; line-height: 1.2;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
  letter-spacing: 0.02em;
}
/* List card image wrapper sizing */
.list-card-img-wrap {
  flex-shrink: 0;
  width: 120px; height: 120px;
}
.list-card-img-wrap .card-deal-tag {
  font-size: 10px; padding: 3px 8px;
  top: 6px; left: 6px;
}

/* --- Category section on shop page with scroll --- */
.shop-category-section { margin-bottom: 32px; }
.shop-category-section .section-products {
  display: flex; gap: 16px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
}
.shop-category-section .section-products::-webkit-scrollbar { display: none; }
.shop-category-section .section-products .product-card { flex-shrink: 0; width: 200px; }

/* --- Info strip under hero --- */
.info-strip {
  display: flex; align-items: center; gap: 24px;
  padding: 12px 0; font-size: 13px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 8px;
}
.info-strip span { display: flex; align-items: center; gap: 6px; }

/* product card image fix */
.product-card .card-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--surface);
}

/* --- Articles Section --- */
.articles-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.articles-section .section-subtitle {
  font-size: 14px; color: var(--text-secondary);
  margin: -4px 0 0;
}
.articles-carousel {
  gap: 20px;
}
.article-card {
  width: 280px; border-radius: var(--radius-md); overflow: hidden;
  background: var(--card); cursor: pointer;
  transition: box-shadow .2s, transform .2s; flex-shrink: 0;
  text-decoration: none; color: inherit; display: block;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.article-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--surface); display: block;
}
.article-img-ph {
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.article-body { padding: 14px 16px; }
.article-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.article-title {
  font-size: 14px; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 6px;
}
.article-excerpt {
  font-size: 13px; color: var(--text-secondary); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 8px;
}
.article-readmore {
  font-size: 13px; color: var(--brand); font-weight: 600;
}

/* --- Product Full Description Section --- */
.pd-full-description {
  margin-top: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}
.pd-full-desc-title {
  font-size: 22px; font-weight: 700;
  margin: 0 0 16px; color: var(--text-primary);
}
.pd-full-desc-body {
  font-size: 15px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
}
.pd-full-desc-body p { margin: 0 0 12px; }
.pd-full-desc-body ul,
.pd-full-desc-body ol { margin: 0 0 12px; padding-left: 24px; }
.pd-full-desc-body h2,
.pd-full-desc-body h3 {
  color: var(--text-primary); margin: 20px 0 8px;
  font-size: 17px; font-weight: 700;
}

/* Read more link */
.pd-readmore {
  display: inline-block; margin-top: 6px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  text-decoration: none;
}
.pd-readmore:hover { text-decoration: underline; }

/* --- Key Highlights Grid --- */
.pd-highlights {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.pd-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.pd-highlight-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.pd-highlight-value {
  font-size: 20px; font-weight: 800;
  color: var(--brand); margin-bottom: 4px;
}
.pd-highlight-label {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 4px;
}
.pd-highlight-desc {
  font-size: 12px; color: var(--text-secondary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════ */
/* PRODUCT TABS                                          */
/* ═══════════════════════════════════════════════════════ */
/* Accordion sections */
.pd-accordion {
  margin-top: 32px;
  border-top: 1px solid var(--border-light);
}
.pd-accord-item {
  border-bottom: 1px solid var(--border-light);
}
.pd-accord-item > summary { list-style: none; }
.pd-accord-item > summary::-webkit-details-marker { display: none; }
.pd-accord-item > summary::marker { display: none; content: ''; }
.pd-accord-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  transition: color .15s;
}
.pd-accord-header:hover { color: var(--brand); }
.pd-accord-chevron {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform .25s ease;
}
.pd-accord-item[open] > .pd-accord-header .pd-accord-chevron {
  transform: rotate(180deg);
}
.pd-accord-body {
  padding: 0 4px 20px;
  overflow: hidden;
  transition: max-height .3s ease;
}

/* Legacy tab classes kept for backward compat */
.pd-tabs-section { margin-top: 32px; border-top: 1px solid var(--border-light); }
.pd-tab-nav { display: none; }
.pd-tab-content { display: none; padding: 24px 0; }
.pd-tab-content.active { display: block; }

/* Specifications table */
.pd-spec-table { max-width: 700px; }
.pd-spec-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.pd-spec-key {
  flex: 0 0 180px;
  font-weight: 600; color: var(--text-primary);
}
.pd-spec-val {
  flex: 1;
  color: var(--text-secondary);
}

/* Usage & Safety */
.pd-usage-block { margin-bottom: 24px; }
.pd-usage-block h3 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 10px; color: var(--text-primary);
}
.pd-usage-body {
  font-size: 14px; line-height: 1.7;
  color: var(--text-secondary);
}
.pd-warnings-list {
  padding-left: 20px;
  font-size: 14px; line-height: 1.7;
  color: var(--text-secondary);
}
.pd-warnings-list li { margin-bottom: 6px; }

/* FAQ Accordion */
.pd-faq-list { max-width: 800px; }
.pd-faq-item {
  border-bottom: 1px solid var(--border-light);
}
.pd-faq-q {
  padding: 16px 0;
  font-size: 15px; font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pd-faq-q::-webkit-details-marker { display: none; }
.pd-faq-q::after {
  content: '+';
  font-size: 20px; font-weight: 400;
  color: var(--text-muted);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.pd-faq-item[open] .pd-faq-q::after {
  content: '−';
}
.pd-faq-a {
  padding: 0 0 16px;
  font-size: 14px; line-height: 1.7;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════ */
/* DELIVERY BANNER (above footer)                        */
/* ═══════════════════════════════════════════════════════ */
.delivery-banner {
  background: #1b3a1b;
  color: #fff;
  padding: 40px 0 32px;
  text-align: center;
  margin-top: 40px;
}
.delivery-banner-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.delivery-icon {
  font-size: 36px;
}
.delivery-banner-top strong {
  font-size: 20px; display: block; margin-bottom: 4px;
}
.delivery-banner-top p {
  font-size: 14px; color: rgba(255,255,255,.75); margin: 0;
}
.delivery-cities {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.city-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12);
  font-size: 13px; font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.delivery-cta {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
}
.delivery-call-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 28px;
  background: #e53935; color: #fff;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.delivery-call-btn:hover { background: #c62828; }
.delivery-hours {
  font-size: 14px; color: rgba(255,255,255,.75);
}

/* ═══════════════════════════════════════════════════════ */
/* ENHANCED FOOTER                                       */
/* ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #1a1a1a; color: #ccc;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-brand-col .footer-brand {
  font-size: 24px; font-weight: 800; color: #fff;
  margin-bottom: 8px;
}
.footer-brand-col .footer-brand .leaf {
  color: var(--brand); font-size: 28px;
}
.footer-tagline {
  font-size: 14px; font-weight: 700; color: #fff;
  margin: 0 0 8px;
}
.footer-desc {
  font-size: 13px; color: #999; line-height: 1.6;
  margin: 0 0 16px;
}
.footer-socials {
  display: flex; gap: 12px;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #ccc; transition: background .15s, color .15s;
}
.social-link:hover { background: var(--brand); color: #fff; }
.footer-col h4 {
  font-size: 15px; font-weight: 700; color: #fff;
  margin: 0 0 14px;
}
.footer-col a,
.footer-contact-link {
  display: block; font-size: 13px; color: #999;
  text-decoration: none; padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-payments {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px;
}
.payment-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  text-align: center;
}
.payment-cod {
  background: #e65100; color: #fff;
}
.payment-etransfer {
  background: #ffc107; color: #333;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: #666;
}
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  color: #999; text-decoration: none;
  font-size: 13px;
}
.footer-bottom-links a:hover { color: #fff; }

/* ── Footer mobile ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .delivery-banner-top { flex-direction: column; text-align: center; }
  .delivery-banner-top strong { font-size: 18px; }
  .delivery-cta { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Accordion mobile */
  .pd-accord-header { padding: 16px 2px; font-size: 14px; }
  .pd-spec-key { flex: 0 0 120px; }
}


/* ================================================================
   CART PAGE
   ================================================================ */

.cart-page-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 3rem;
}

.cart-page-container h1 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.cart-items-section { min-width: 0; }

.cart-actions-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cart-product-summary {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 250px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cart-table thead {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}

.cart-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.cart-table tr:last-child td { border-bottom: none; }

.cart-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface);
  flex-shrink: 0;
}

.cart-product a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-primary);
}

.cart-product a:hover .cart-product-name { color: var(--brand); }

.cart-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.cart-product-name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: color 0.15s;
}

.cart-product-option {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  background: var(--surface);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.cart-price { white-space: nowrap; }

.cart-original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
}

.cart-sale-price {
  color: var(--sale);
  font-weight: 600;
}

.cart-regular-price {
  font-weight: 600;
  color: var(--text-primary);
}

.cart-subtotal { white-space: nowrap; font-weight: 600; }

/* Quantity selector (cart) */
.cart-quantity .qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}

.cart-quantity .qty-selector-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
  line-height: 1;
}

.cart-quantity .qty-selector-btn:hover:not(:disabled) { background: var(--surface); }

.cart-quantity .qty-selector-btn:disabled,
.cart-quantity .qty-selector-btn.disabled { opacity: 0.3; cursor: default; }

.cart-quantity .qty-selector-display {
  width: 2rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0;
}

.cart-quantity .quantity-form { margin: 0; }

/* Remove button */
.cart-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.cart-remove-btn:hover {
  background: #fef2f2;
  border-color: var(--sale);
  color: var(--sale);
}

.cart-remove-btn svg { pointer-events: none; }

/* Cart breadcrumb */
.cart-page-container nav.breadcrumb {
  margin-bottom: 1rem;
}

.cart-page-container nav.breadcrumb a {
  text-decoration: none;
}

/* Reward rows in cart */
.cart-reward-row {
  background: linear-gradient(90deg, #f0faf4 0%, #fff 60%);
}
.cart-reward-row td { border-bottom: 1px solid #d4e8dc !important; }
.cart-reward-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 2px;
}
.cart-reward-free {
  font-weight: 700;
  color: var(--brand);
  font-size: 0.95rem;
}

/* Next reward teaser */
.cart-reward-teaser {
  background: linear-gradient(90deg, #fff8ee, #fffdf7);
  border: 1px dashed #e0c78a;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #7a5d1e;
  text-align: center;
}

/* Shipping threshold banner (full-width above breadcrumb) */
.shipping-banner {
  background: var(--brand-dark);
  color: #fff;
  padding: 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.shipping-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.shipping-banner__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.shipping-banner__content {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.shipping-banner__content strong {
  color: #7deba9;
}
.shipping-banner__sep {
  opacity: 0.4;
  margin: 0 2px;
}
.shipping-banner__flat {
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 2px;
}
/* State: fully unlocked */
.shipping-banner--free {
  background: var(--brand);
}
.shipping-banner--free .shipping-banner__content strong {
  color: #fff;
}
/* State: partial unlock */
.shipping-banner--partial .shipping-banner__content strong {
  color: #7deba9;
}
@media (max-width: 600px) {
  .shipping-banner { font-size: 0.82rem; padding: 10px 0; }
  .shipping-banner__icon { font-size: 1.2rem; }
  .shipping-banner__content { flex-direction: column; gap: 2px; }
  .shipping-banner__sep { display: none; }
}

/* Order summary sidebar */
.cart-summary {
  position: sticky;
  top: 180px;
}

.summary-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.summary-card h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.summary-row.total {
  padding: 1rem 0;
  border-top: 2px solid var(--brand);
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.summary-row.total strong { color: var(--brand); }
.summary-row strong { color: var(--text-primary); }

/* Cart buttons */
.cart-page-container .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.cart-page-container .btn-primary {
  background: var(--brand);
  color: #fff;
  width: 100%;
  padding: 0.85rem;
  margin-top: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.cart-page-container .btn-primary:hover { background: var(--brand-dark); }

.cart-page-container .btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.cart-page-container .btn-secondary:hover { background: var(--border); }

.cart-page-container .btn-danger {
  background: #fff;
  color: var(--sale);
  border: 1px solid var(--sale);
}

.cart-page-container .btn-danger:hover { background: #fef2f2; }

/* Empty cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.empty-cart h2 { color: var(--text-primary); margin-bottom: 1rem; }
.empty-cart p { color: var(--text-secondary); margin-bottom: 2rem; }

/* ── Mobile Cart ── */
@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody { display: block; }

  .cart-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
  }

  .cart-row:last-child { border-bottom: none; }

  .cart-product {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 0;
  }

  .cart-product a { flex-direction: column; gap: 0; }
  .cart-product .cart-product-info { display: none; }
  .cart-thumb { width: 72px; height: 72px; }

  .cart-row::before {
    content: attr(data-product-name);
    grid-column: 2 / 4;
    grid-row: 1;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.3;
    padding-right: 2rem;
  }

  .cart-price, .cart-quantity, .cart-subtotal {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .cart-price { grid-column: 2; grid-row: 2; font-size: 0.85rem; }
  .cart-quantity { grid-column: 2; grid-row: 3; }
  .cart-subtotal { grid-column: 3; grid-row: 2 / 4; align-items: flex-end; justify-content: flex-end; }

  .cart-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    padding: 0;
  }

  .cart-quantity .qty-selector { transform: scale(0.9); transform-origin: left center; }
  .cart-actions-row { justify-content: center; }
}

/* ================================================================
   CHECKOUT PAGE (co-* classes)
   ================================================================ */

.co-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.co-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.co-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

/* ── Steps ── */
.co-step {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  overflow: hidden;
}

.co-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.co-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.co-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.co-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.15rem 0 0;
}

.co-step-body {
  padding: 1.5rem;
}

/* ── Fields ── */
.co-field {
  margin-bottom: 1rem;
}

.co-field:last-child {
  margin-bottom: 0;
}

.co-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.co-field input,
.co-field select,
.co-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

.co-field input::placeholder,
.co-field textarea::placeholder {
  color: var(--text-muted);
}

.co-field-error input,
.co-field-error select,
.co-field-error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.co-row-3 {
  grid-template-columns: 2fr 1fr 1fr;
}

/* ── Contact cards ── */
.co-contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.co-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}

.co-contact-card input[type="radio"] {
  display: none;
}

.co-contact-card:hover {
  border-color: #ccc;
  background: var(--surface);
}

.co-contact-card.selected {
  border-color: var(--accent);
  background: #fff7ed;
}

.co-contact-icon {
  color: var(--text-secondary);
  transition: color 0.15s;
}

.co-contact-card.selected .co-contact-icon {
  color: var(--accent);
}

.co-icon-whatsapp {
  color: #25D366;
}

.co-contact-card.selected .co-icon-whatsapp {
  color: #25D366;
}

.co-contact-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.co-contact-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Actions ── */
.co-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.co-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.co-btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
}

.co-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.co-btn-back:hover {
  color: var(--text-primary);
}

/* ── Sidebar / Summary ── */
.co-sidebar {
  position: sticky;
  top: 100px;
}

.co-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.co-summary h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.co-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.co-item-img {
  position: relative;
  flex-shrink: 0;
}

.co-item-img img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.co-item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-item-badge-reward {
  background: var(--brand);
  font-size: 0.65rem;
}

.co-item-reward {
  background: linear-gradient(90deg, #f0faf4 0%, #fff 60%);
  border-radius: var(--radius-sm);
  padding: 4px;
}

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

.co-item-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.co-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--text-primary);
}

/* Totals */
.co-totals {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.co-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.co-free {
  color: var(--brand);
  font-weight: 600;
}

.co-total-final {
  border-top: 2px solid var(--text-primary);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.co-total-final strong {
  font-size: 1.2rem;
  color: var(--accent);
}

/* Payment method */
.co-payment {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.co-payment h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.co-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.co-payment-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}

.co-payment-card input[type="radio"] {
  display: none;
}

.co-payment-card:hover {
  border-color: #ccc;
  background: var(--surface);
}

.co-payment-card.selected {
  border-color: var(--accent);
  background: #fff7ed;
}

.co-payment-icon {
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: color 0.15s;
}

.co-payment-card.selected .co-payment-icon {
  color: var(--accent);
}

.co-payment-text {
  flex: 1;
}

.co-payment-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.co-payment-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.co-payment-info {
  margin-top: 0.75rem;
}

.co-payment-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f0f9ff;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.co-payment-detail svg {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Trust signals */
.co-trust {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.co-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.co-trust-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Checkout responsive ── */
@media (max-width: 900px) {
  .co-layout {
    grid-template-columns: 1fr;
  }
  .co-form-section,
  .co-sidebar {
    min-width: 0;
    overflow: hidden;
  }
  .co-sidebar {
    position: static;
    order: -1;
  }
  .co-contact-options {
    grid-template-columns: 1fr;
  }
  .co-item-name {
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 600px) {
  .co-row,
  .co-row-3 {
    grid-template-columns: 1fr;
  }
  .co-step-body {
    padding: 1rem;
  }
  .co-step-header {
    padding: 1rem;
  }
  .co-summary {
    padding: 1rem;
  }
}

/* =========================================
   Sales & Deals Page
   ========================================= */

.sales-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  margin: 0 0 36px;
  padding: 34px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 90, 0, .22), transparent 34%),
    linear-gradient(135deg, #07140d 0%, #05351f 58%, #0b6b3c 100%);
  color: #fff;
  overflow: hidden;
}

.sales-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.sales-eyebrow,
.sales-section-header span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sales-page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
  margin: 10px 0 16px;
}

.sales-page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.sales-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sales-primary-btn,
.sales-secondary-btn,
.sales-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 900;
}

.sales-primary-btn,
.sales-card-cta {
  background: var(--brand);
  color: #fff;
}

.sales-primary-btn:hover,
.sales-card-cta:hover {
  background: var(--brand-dark);
}

.sales-secondary-btn {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.sales-secondary-btn:hover {
  background: rgba(255,255,255,.18);
}

.sales-hero-stats {
  display: grid;
  gap: 12px;
  align-content: center;
}

.sales-hero-stats div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.sales-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.sales-hero-stats span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 700;
  margin-top: 8px;
}

.sales-section {
  margin: 36px 0 48px;
  scroll-margin-top: 160px;
}

.sales-section-header {
  max-width: 760px;
  margin-bottom: 18px;
}

.sales-section-header h2 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 900;
  margin: 8px 0 10px;
}

.sales-section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.sales-promotions .promo-grid {
  margin: 18px 0 0;
}

.sales-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

.sales-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 900;
}

.sales-filter-btn span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: .78rem;
}

.sales-filter-btn.active,
.sales-filter-btn:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.sales-filter-btn.active span {
  background: #fff;
  color: var(--brand-dark);
}

.sales-result-line {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.sales-deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sales-deal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.sales-deal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5,148,79,.32);
  box-shadow: var(--shadow-hover);
}

.sales-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / .78;
  background: var(--surface);
  overflow: hidden;
}

.sales-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.sales-deal-card:hover .sales-card-image img {
  transform: scale(1.035);
}

.sales-discount-badge,
.sales-expiry-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 900;
}

.sales-discount-badge {
  left: 10px;
  top: 10px;
  background: var(--accent);
  color: #fff;
}

.sales-expiry-pill {
  right: 10px;
  bottom: 10px;
  background: rgba(25,25,25,.86);
  color: #fff;
}

.sales-card-body {
  padding: 16px;
}

.sales-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.sales-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: .74rem;
  font-weight: 800;
}

.sales-card-body h3 {
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 900;
  margin: 0 0 10px;
}

.sales-card-body h3 a {
  color: var(--text-primary);
}

.sales-card-body h3 a:hover {
  color: var(--brand-dark);
}

.sales-card-desc {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0 0 12px;
}

.sales-card-price {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 12px;
}

.sales-card-price s {
  color: var(--text-muted);
  font-weight: 700;
  margin-right: 6px;
}

.sales-card-price strong {
  color: var(--sale);
}

.sales-save-line {
  color: var(--brand-dark);
  font-size: .86rem;
  font-weight: 900;
  margin: -4px 0 12px;
}

.sales-option-list {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 14px;
}

.sales-option-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.35;
}

.sales-option-row strong {
  white-space: nowrap;
  color: var(--sale);
  font-weight: 900;
}

.sales-option-row s {
  color: var(--text-muted);
  font-weight: 700;
}

.sales-option-more {
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 900;
}

.sales-card-cta {
  width: 100%;
}

.sales-empty-state {
  padding: 48px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: center;
}

.sales-empty-state h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.sales-empty-state p {
  color: var(--text-secondary);
  margin: 0 auto 20px;
  max-width: 560px;
}

@media (max-width: 1180px) {
  .sales-deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sales-page-hero {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .sales-hero-copy {
    min-height: auto;
  }

  .sales-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .sales-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .sales-page-hero {
    padding: 22px;
  }

  .sales-hero-actions,
  .sales-hero-stats {
    grid-template-columns: 1fr;
  }

  .sales-primary-btn,
  .sales-secondary-btn {
    width: 100%;
  }

  .sales-deal-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CMS Page Shortcodes
   ========================================= */

.sc-section {
  font-size: 1rem;
}

.sc-section h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.sc-section h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.sc-section p {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 18px;
}

.sc-section a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(5, 148, 79, .28);
  text-underline-offset: 4px;
}

.sc-section a:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

.sc-section ul,
.sc-section ol {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sc-section li {
  position: relative;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 28px;
}

.sc-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-light);
}

.sc-section li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sc-section li a::after {
  content: "›";
  color: var(--brand);
  font-weight: 800;
  line-height: 1;
}

.sc-columns {
  align-items: stretch;
  margin-top: 28px;
}

.sc-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.sc-col > :last-child {
  margin-bottom: 0;
}

.sc-col ul:last-child,
.sc-col ol:last-child {
  margin-bottom: 0;
}

.sc-section-fw[style*="background: #fff"] .sc-col,
.sc-section-fw[style*="background:#fff"] .sc-col,
.sc-section-fw[style*="background: #FFFFFF"] .sc-col {
  background: var(--surface);
}

.sc-section-fw[style*="background: #f8f9fa"] .sc-col,
.sc-section-fw[style*="background:#f8f9fa"] .sc-col {
  background: var(--card);
}

.sc-features {
  margin-top: 28px;
}

.sc-features > div {
  border-radius: var(--radius-sm) !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow-card);
}

.sc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1052px;
  margin: 28px auto;
}

.sc-stat-item {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.sc-stat-value {
  color: var(--brand-dark);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
}

.sc-stat-label {
  color: var(--text-secondary);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.35;
}

.sc-section-fw[style*="background: #2e7d32"] .sc-stat-item,
.sc-section-fw[style*="background:#2e7d32"] .sc-stat-item,
.sc-section-fw[style*="background: #05944f"] .sc-stat-item,
.sc-section-fw[style*="background:#05944f"] .sc-stat-item,
.sc-section-fw[style*="background: #0f3d2e"] .sc-stat-item,
.sc-section-fw[style*="background:#0f3d2e"] .sc-stat-item {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.96);
}

.sc-faq-section {
  margin: 28px 0 0;
}

.sc-faq {
  display: grid;
  gap: 12px;
}

.sc-faq-item {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.sc-faq-item:hover {
  border-color: rgba(5, 148, 79, .32);
  box-shadow: var(--shadow-hover);
}

.sc-faq-question {
  position: relative;
  display: block;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 20px 58px 20px 22px;
  user-select: none;
}

.sc-faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 1.15rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.sc-faq-question.active {
  color: var(--brand-dark);
}

.sc-faq-question.active::after {
  content: "-";
  background: var(--brand);
  color: #fff;
}

.sc-faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.7;
  padding: 0 22px;
  transition: max-height .25s ease, padding .25s ease;
}

.sc-faq-answer.active {
  max-height: 520px;
  padding: 0 22px 22px;
}

.sc-faq-answer p {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 800px) {
  .sc-columns {
    grid-template-columns: 1fr !important;
  }

  .sc-col {
    padding: 22px;
  }

  .sc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px auto;
  }

  .sc-stat-item {
    min-height: 112px;
    padding: 18px 14px;
  }

  .sc-section h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  .sc-stats {
    grid-template-columns: 1fr;
  }
}

/* Vape picker modal */
.vape-picker-section {
  margin-top: 18px;
}

.vape-picker-open-btn {
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}

.vape-picker-open-btn:hover {
  background: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(12, 115, 54, .18);
  transform: translateY(-1px);
}

.vape-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .56);
}

.vape-picker-modal {
  width: min(960px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.vape-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.vape-picker-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.vape-picker-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f5f1;
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.vape-picker-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  min-height: 440px;
  overflow: hidden;
}

.vape-picker-body > div {
  padding: 18px;
  overflow-y: auto;
}

.vape-picker-body h4 {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.vape-picker-flavors,
.vape-picker-weights {
  border-right: 1px solid var(--border);
}

.vape-picker-flavors,
.vape-picker-summary-col {
  background: #f8faf7;
}

.vape-flavor-list,
.vape-tier-list {
  display: grid;
  gap: 8px;
}

.vape-flavor-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.vape-flavor-btn:hover,
.vape-flavor-btn.active {
  border-color: var(--flavor-color, var(--brand));
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.vape-flavor-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
}

.vape-flavor-name {
  flex: 1;
  font-weight: 700;
}

.vape-flavor-check {
  display: none;
  color: var(--flavor-color, var(--brand));
  font-weight: 900;
}

.vape-flavor-btn.active .vape-flavor-check {
  display: inline;
}

.vape-flavor-badge {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.vape-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.vape-tier-info {
  display: grid;
  gap: 3px;
}

.vape-tier-label {
  font-weight: 800;
}

.vape-tier-price,
.vape-summary-line-price,
.vape-running-total-amount {
  color: var(--brand);
  font-weight: 800;
}

.vape-tier-sale {
  color: var(--sale);
}

.vape-tier-original {
  margin-left: 5px;
  color: var(--text-muted);
  font-size: .82rem;
  text-decoration: line-through;
}

.vape-tier-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.vape-qty-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: #f0f3ee;
  color: var(--text);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
}

.vape-qty-display {
  width: 40px;
  text-align: center;
  font-weight: 800;
}

.vape-empty-msg {
  margin: 18px 0;
  color: var(--text-muted);
  text-align: center;
}

.vape-summary-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}

.vape-summary-line-info {
  flex: 1;
  display: grid;
  gap: 2px;
}

.vape-summary-flavor {
  font-weight: 800;
}

.vape-summary-tier,
.vape-summary-qty {
  color: var(--text-secondary);
  font-size: .82rem;
}

.vape-summary-remove {
  border: 0;
  background: transparent;
  color: var(--sale);
  cursor: pointer;
  font-size: 1.15rem;
}

#vape-picker-running-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--brand);
}

#vape-selection-summary {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 760px) {
  .vape-picker-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .vape-picker-modal {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .vape-picker-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
  }

  .vape-picker-flavors,
  .vape-picker-weights {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .vape-flavor-list {
    display: flex;
    flex-wrap: wrap;
  }

  .vape-flavor-btn {
    width: auto;
    min-width: 0;
    padding: 8px 10px;
    font-size: .86rem;
  }

  .vape-tier-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vape-tier-row {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .vape-tier-qty {
    align-self: center;
  }

  .vape-picker-summary-col {
    display: none;
  }
}

/* ── Order CTA buttons (drawer + mega menu) ─────────────────── */
.drawer-order-cta { display: flex; gap: 8px; margin: 14px 0 4px; }
.order-btn { flex: 1; text-align: center; padding: 10px 8px; border-radius: 9px; font-weight: 700; font-size: .84rem; text-decoration: none; white-space: nowrap; }
.order-call { background: #16a34a; color: #fff; }
.order-text { background: #16202b; color: #fff; }
.order-wa { background: #25d366; color: #fff; }
.order-btn:hover { filter: brightness(1.08); }
.drawer-order-note { font-size: .76rem; color: #7a8a7a; margin: 4px 0 10px; text-align: center; }

/* ── Drawer category accordions ─────────────────────────────── */
.drawer-acc { border-bottom: 1px solid #edf1ed; }
.drawer-acc summary { display: flex; justify-content: space-between; align-items: center; padding: 11px 4px; font-weight: 600; cursor: pointer; list-style: none; }
.drawer-acc summary::-webkit-details-marker { display: none; }
.drawer-acc-caret { color: #9aa79a; transition: transform .18s; line-height: 1; }
.drawer-acc[open] .drawer-acc-caret { transform: rotate(180deg); }
.drawer-acc-body { padding: 2px 0 10px; }
.drawer-acc-link { display: block; padding: 7px 14px; font-size: .92rem; color: #3c4a3c; text-decoration: none; border-radius: 7px; }
.drawer-acc-link:hover { background: #f2f6f2; }
.drawer-acc-all { font-weight: 600; color: #16a34a; }
.drawer-acc-single { display: block; padding: 11px 4px; font-weight: 600; color: inherit; text-decoration: none; border-bottom: 1px solid #edf1ed; }
.drawer-acc-featured { color: #16a34a; }

/* ── Mega panel: order strip + view-all ─────────────────────── */
.mega-order-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; padding-top: 14px; border-top: 1px solid #eef2ee; }
.mega-order-strip .order-btn { flex: 0 0 auto; padding: 8px 14px; }
.mega-order-label { font-weight: 700; font-size: .9rem; }
.mega-order-hours { font-size: .8rem; color: #7a8a7a; margin-left: auto; }
.mega-link-more { font-size: .82rem; color: #16a34a; font-weight: 600; }
.mega-subcategory-row { flex-wrap: wrap; row-gap: 18px; }

/* ── Section pill buttons (View All Articles / Blogs) ───────── */
.section-pill-btn {
  display: inline-block; padding: 7px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  color: var(--text-primary); border: 1.5px solid #d8e0d8; background: #fff;
  transition: all .15s ease; white-space: nowrap;
}
.section-pill-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── Article FAQ accordions (normalized from WP imports) ────── */
.article-content details.article-faq-item {
  border: 1px solid #e4e8e4; border-radius: 10px;
  padding: 12px 16px; margin: 0 0 10px; background: #fff;
}
.article-content details.article-faq-item summary {
  font-weight: 600; cursor: pointer; line-height: 1.45;
}
.article-content details.article-faq-item[open] summary { margin-bottom: 8px; }
.article-content details.article-faq-item p { margin: 6px 0 2px; color: #4a564a; }

/* ── Floating WhatsApp button (bottom-left) ─────────────────── */
.whatsapp-float {
  position: fixed; left: 18px; bottom: 18px; z-index: 9990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.3); color: #fff; }
@media (max-width: 640px) {
  .whatsapp-float { width: 50px; height: 50px; left: 12px; bottom: 14px; }
}

/* ── Bundle page FAQ accordion ──────────────────────────────── */
.faq-accordion details.faq-item {
  border: 1px solid #e4e8e4; border-radius: 10px;
  padding: 12px 16px; margin: 0 0 10px; background: #fff;
}
.faq-accordion details.faq-item summary {
  font-weight: 600; cursor: pointer; line-height: 1.45; list-style-position: inside;
}
.faq-accordion details.faq-item[open] summary { margin-bottom: 8px; }
.faq-accordion details.faq-item p { margin: 6px 0 2px; color: #4a564a; }

/* ── Bundle page tabs (Description / FAQ / Reviews) ─────────── */
.tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 26px 0 16px; border-bottom: 1px solid #e4e8e4; padding-bottom: 10px; }
.tab-button {
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid #d8e0d8;
  background: #fff; font-weight: 600; font-size: .92rem; cursor: pointer;
  color: var(--text-primary); transition: all .15s;
}
.tab-button:hover { border-color: var(--brand); color: var(--brand); }
.tab-button.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.description-content { line-height: 1.65; color: #3c4a3c; white-space: normal; }
