/* ═══════════════════════════════════════════════════════════════
   SUNNYMAX SOLAR — base.css
   Full reset, CSS variables, nav, footer, shared utilities
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #f5f6f7;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:      #f69c10;
  --primary-dark: #c47a08;
  --primary-lt:   #f8b040;
  --primary-bg:   #fff8ec;
  --accent:       #1a1a2e;
  --accent-lt:    #3d3d5c;

  /* keep everything else the same below */
  --bg:           #f5f6f7;
  --surface:      #ffffff;
  --surface-2:    #f0f1f3;
  --ink:          #1a1a2e;
  --ink-lt:       #3d3d5c;
  --muted:        #7a7a9a;
  --border:       #e0e0ec;
  --success:      #2e7d32;
  --danger:       #c62828;
  --warn:         #ef6c00;
  --wa:           #25d366;
  --wa-dark:      #1da851;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-top-h:    40px;
  --nav-main-h:   72px;
  --nav-dept-h:   48px;
  --max-w:        1320px;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --t: 200ms cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════════════ */
.topbar {
  height: var(--nav-top-h);
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,.75);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════════════════════
   MAIN NAV (logo + search + actions)
   ══════════════════════════════════════════════════════════════ */
.nav-main {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-main-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-main-h);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.5px;
}
.nav-logo-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 500;
}

/* Search bar */
.nav-search {
  flex: 1 1 200px;
  min-width: 0;
  max-width: 500px;
}
.nav-search form {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.nav-search form:focus-within { border-color: var(--primary); }
.nav-search input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  min-width: 0;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button {
  width: 52px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.nav-search button:hover { background: var(--primary-lt); }

/* Nav categories (inline dropdown in header) */
/* Nav About/Contact inline bar */
.nav-cats {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding-left: 12px;
  margin-left: 4px;
  height: var(--nav-main-h);
  gap: 4px;
}

.nav-cat-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-cat-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-lt);
  white-space: nowrap;
  height: 100%;
  transition: color var(--t);
  border-bottom: 2px solid transparent;
}

.nav-cat-item:hover .nav-cat-link {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* No dropdowns needed for About/Contact */
.nav-cat-dropdown { display: none; }

.nav-cat-item:hover .nav-cat-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-cat-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--ink-lt);
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}

.nav-cat-dropdown a:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

/* Nav action icons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-lt);
  font-size: 11px;
  font-weight: 500;
  transition: all var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-action-btn:hover { background: var(--surface-2); color: var(--primary); }
.nav-action-btn svg { flex-shrink: 0; }
.nav-action-btn > span { font-size: 11px; }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   DEPARTMENT NAV BAR
   ══════════════════════════════════════════════════════════════ */
.nav-dept {
  background: var(--primary);
  position: sticky;
  top: var(--nav-main-h);
  z-index: 190;
}

.nav-dept-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-dept-h);
  display: flex;
  align-items: stretch;
}

.dept-links {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.dept-links::-webkit-scrollbar { display: none; }

.dept-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.dept-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  transition: background var(--t), color var(--t);
  border-bottom: 3px solid transparent;
}

.dept-link--all {
  margin-left: auto;
  font-weight: 600;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 20px;
}

.dept-item:hover > .dept-link,
.dept-link--all:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-bottom-color: rgba(255,255,255,.5);
}

.dept-chevron {
  transition: transform var(--t);
  opacity: .75;
}
.dept-item:hover .dept-chevron { transform: rotate(180deg); }

.dept-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 400;
}

.dept-item:hover > .dept-dropdown,
.dept-item:focus-within > .dept-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}


.dept-item:hover .dept-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.dept-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--ink-lt);
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}

.dept-dropdown a:hover {
  background: var(--primary-bg);
  color: var(--primary);
  padding-left: 22px;
}

.dept-item:hover .dept-chevron,
.dept-item:focus-within .dept-chevron {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ══════════════════════════════════════════════════════════════ */
.messages-bar {
  max-width: var(--max-w);
  margin: 12px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flash-msg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
}
.flash-msg.error { background: #ffebee; border-color: var(--danger); color: var(--danger); }
.flash-msg.warning { background: #fff3e0; border-color: var(--warn); color: var(--warn); }
.flash-msg button { font-size: 16px; color: inherit; opacity: .5; line-height: 1; }

/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  border-left: 4px solid var(--primary-lt);
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   SHARED BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary   { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-lt); border-color: var(--primary-lt); }
.btn-outline   { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-accent    { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #d45000; }
.btn-whatsapp  { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-whatsapp:hover { background: var(--wa-dark); }
.btn-full      { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  margin-top: 80px;
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--accent-lt); }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--primary-lt); color: var(--primary-lt); }

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  transition: color var(--t);
}
.footer-col a:hover { color: #fff; }

.footer-trust {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-trust-item svg { color: var(--primary-lt); flex-shrink: 0; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════
   SHARED PRODUCT CARD
   ══════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
  display: block;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-image img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--primary);
  color: #fff;
}
.out-of-stock-badge { background: var(--muted); }

.card-body { padding: 14px 16px; flex: 1; }
.card-category {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.card-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--ink);
}
.card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
.card-price .from { font-weight: 400; color: var(--muted); font-size: 12px; }
.card-price .range { color: var(--muted); font-weight: 400; font-size: 12px; }

.card-actions {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-actions a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--t);
}
.card-actions a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV TOGGLE
   ══════════════════════════════════════════════════════════════ */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: transform var(--t), opacity var(--t);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-cats { display: none; }
  .dept-links { overflow-x: auto; scrollbar-width: none; }
  .dept-links::-webkit-scrollbar { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-main-h: 60px; }
  .topbar { display: none; }
  .mobile-nav-toggle { display: flex; }

  /* Give search room, hide label text on action buttons */
  .nav-search {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .nav-search input { font-size: 13px; }

  /* Hide action button labels */
.nav-actions .nav-action-btn > span:not(.cart-badge) { display: none;}
  .nav-actions { gap: 0; }

  /* Hide inline nav-cats on mobile */
  .nav-cats { display: none; }

  .nav-dept { display: none; }
  .nav-logo-img {
    height: 36px;
    max-width: 100px;
  }
  .nav-dept.mobile-open { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-trust-inner { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shop-layout { grid-template-columns: 1fr; padding: 16px 12px 60px; gap: 20px; }
  .sidebar { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; position: static; }
  .sidebar-title { width: 100%; margin-bottom: 4px; }
  .cat-link { padding: 6px 14px; border: 1.5px solid var(--border); border-radius: 99px; font-size: 12px; background: var(--surface); }
  .cat-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
  .sub-links { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-name { font-size: 13px; }
  .card-price { font-size: 14px; }
  .page-header { flex-direction: column; align-items: flex-start; padding: 20px 12px 16px; gap: 12px; }
  .page-header h1 { font-size: 24px; }
  .sort-bar { width: 100%; justify-content: flex-start; }
  .sort-bar select { flex: 1; }
}

@media (max-width: 480px) {
  .nav-main-inner { gap: 12px; }
  .nav-search input { font-size: 13px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-body { padding: 10px 12px; }
  .card-actions { padding: 8px 12px; }
  .card-actions a { font-size: 11.5px; }
}



/* ══════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER — fully styled with subcategory accordion
   ══════════════════════════════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.drawer-overlay.active { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.nav-drawer.open { left: 0; }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--primary);
  flex-shrink: 0;
}
.drawer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
}
.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--t);
  border: none;
}
.drawer-close:hover { background: rgba(255,255,255,.3); }

/* Drawer scroll area */
.drawer-links {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

/* "All Products" top link */
.drawer-link--all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  background: var(--primary-bg);
}

/* Category item wrapper */
.drawer-cat-item {
  border-bottom: 1px solid var(--border);
}

/* Toggle row: link text + chevron */
.drawer-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.drawer-link {
  flex: 1;
  display: block;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t), background var(--t);
}
.drawer-cat-toggle .drawer-link { padding-right: 0; }
.drawer-link:hover { color: var(--primary); }

.drawer-chevron {
  flex-shrink: 0;
  width: 36px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform .25s ease;
}
.drawer-cat-item.open .drawer-chevron { transform: rotate(180deg); color: var(--primary); }

/* Subcategory panel */
.drawer-sub {
  display: none;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 4px 0 8px;
}
.drawer-cat-item.open .drawer-sub { display: block; }

.drawer-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 36px;
  font-size: 13.5px;
  color: var(--ink-lt);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: color var(--t), background var(--t), padding var(--t);
}
.drawer-sub-link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .5;
  flex-shrink: 0;
}
.drawer-sub-link:last-child { border-bottom: none; }
.drawer-sub-link:hover {
  color: var(--primary);
  background: var(--primary-bg);
  padding-left: 40px;
}
.drawer-sub-link:hover::before { opacity: 1; }

/* About / Contact quick links inside drawer */
.drawer-page-links {
  border-top: 2px solid var(--border);
  padding: 8px 0;
  background: var(--surface);
}
.drawer-page-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-lt);
  border-bottom: 1px solid var(--border);
  transition: color var(--t), background var(--t);
}
.drawer-page-link:last-child { border-bottom: none; }
.drawer-page-link:hover { color: var(--primary); background: var(--primary-bg); }
.drawer-page-link svg { color: var(--primary); flex-shrink: 0; }

/* Drawer footer — WhatsApp CTA */
.drawer-footer {
  padding: 16px 20px;
  border-top: 2px solid var(--border);
  flex-shrink: 0;
  background: var(--surface);
}
.drawer-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t);
  text-decoration: none;
}
.drawer-wa:hover { background: var(--wa-dark); }

@media (min-width: 769px) {
  .nav-drawer,
  .drawer-overlay { display: none !important; }
}

/* ── Card Add to Cart button ── */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-view-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--t);
}
.card-view-link:hover { color: var(--accent); }
.card-atc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.card-atc-btn:hover { background: var(--primary-lt); transform: translateY(-1px); }
.card-atc-btn--sm {
  width: 100%;
  justify-content: center;
  padding: 8px;
  font-size: 12px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}