/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}
body {
  background: #0a0a0f;
  color: #f1f0f5;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════
   CSS VARS
═══════════════════════════════════════════ */
:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #18181f;
  --card:    #1c1c25;
  --card2:   #212130;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.13);
  --border3: rgba(255,255,255,.22);
  --accent:  #7c3aed;
  --accent2: #9d5cf5;
  --accent3: #c084fc;
  --green:   #22c55e;
  --red:     #ef4444;
  --yellow:  #f59e0b;
  --text:    #f1f0f5;
  --muted:   #8b8a99;
  --muted2:  #5e5d6e;
  --r:       10px;
  --rlg:     16px;
  --rxl:     22px;

  /* nav height — used by mobile drawer offset */
  --nav-h: 56px;
}

/* ═══════════════════════════════════════════
   NAVBAR  (mobile-first: 56px)
═══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,15,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 18px; font-weight: 800; letter-spacing: -.7px;
  color: var(--text); white-space: nowrap; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-logo .logo-dot { color: var(--accent3); }

/* Desktop cats — hidden on mobile */
.nav-cats { display: none; }

/* Desktop search — hidden on mobile */
.nav-search { display: none; }

/* Right cluster */
.nav-right {
  display: flex; align-items: center;
  gap: 6px; margin-left: auto; flex-shrink: 0;
}

/* ── Cart button ── */
.btn-cart {
  display: flex; align-items: center; gap: 5px;
  background: var(--card); border: 1px solid var(--border2);
  color: var(--text); padding: 7px 11px; border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  min-height: 38px;
}
.cart-text { display: none; }
.cart-badge {
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Search toggle (mobile) ── */
.btn-search-mob {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r);
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--muted);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.btn-search-mob.active {
  color: var(--accent3);
  border-color: rgba(192,132,252,.4);
  background: rgba(192,132,252,.08);
}

/* ── Lang selector ── */
.lang-selector { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); padding: 6px 9px; border-radius: var(--r);
  font-size: 14px; min-height: 38px;
  -webkit-tap-highlight-color: transparent;
}
.lang-arrow { font-size: 9px; color: var(--muted); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--rlg); padding: 6px; min-width: 150px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 300;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: var(--r);
  font-size: 14px; color: var(--muted);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.lang-option:active,
.lang-option.active { color: var(--accent3); background: rgba(192,132,252,.08); }

/* ── Hamburger ── */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px 6px; margin-left: 2px;
  -webkit-tap-highlight-color: transparent;
  min-width: 38px; min-height: 38px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 21px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE SEARCH BAR (below nav)
═══════════════════════════════════════════ */
.mobile-search-bar {
  display: none;
  padding: 8px 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,.98);
}
.mobile-search-bar.open { display: block; }
.search-wrap { position: relative; display: flex; align-items: center; }
.search-icon-el {
  position: absolute; left: 12px; pointer-events: none;
  display: flex; align-items: center; color: var(--muted);
}
.search-input {
  width: 100%; padding: 11px 38px 11px 38px;
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: 24px; color: var(--text);
  font-size: 15px; outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.search-input::placeholder { color: var(--muted2); }
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,.15);
}
.search-input::-webkit-search-cancel-button { display: none; }
.search-clear-btn {
  position: absolute; right: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg2); z-index: 190;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mob-menu-inner { padding: 8px 1rem 48px; }
.mob-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--muted2); padding: 14px 4px 6px;
}
.mobile-cat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 12px; border-radius: var(--r);
  font-size: 15px; font-weight: 500; color: var(--muted);
  border: 1px solid transparent; margin-bottom: 3px;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
}
.mobile-cat:active { background: rgba(255,255,255,.04); }
.mobile-cat.mob-active {
  color: var(--accent3); border-color: rgba(192,132,252,.2);
  background: rgba(192,132,252,.06);
}
.mob-icon { display: flex; align-items: center; flex-shrink: 0; }
.mob-icon svg { width: 20px; height: 20px; }
.mob-langs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.mob-lang-opt {
  padding: 10px 16px; border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border2); color: var(--muted);
  min-height: 44px; display: flex; align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-lang-opt:active { opacity: .7; }
.mob-lang-active { color: var(--accent3); border-color: rgba(192,132,252,.3); background: rgba(192,132,252,.08); }

/* ═══════════════════════════════════════════
   HERO  (mobile-first)
═══════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 40px 1rem 36px;
  background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(124,58,237,.2) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(192,132,252,.1); border: 1px solid rgba(192,132,252,.22);
  color: var(--accent3); font-size: 11px; font-weight: 500;
  padding: 4px 13px; border-radius: 20px; margin-bottom: 18px;
}
.hero h1 {
  font-size: 26px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 12px;
}
.hero p {
  color: var(--muted); font-size: 14px;
  max-width: 480px; margin: 0 auto 24px; line-height: 1.65;
}
.hero-stats {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 24px;
}
.hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--accent3); }
.hero-stat span { font-size: 11px; color: var(--muted); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  padding: 13px 28px; border-radius: var(--rxl);
  font-size: 15px; font-weight: 700; min-height: 50px;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s;
}
.hero-cta:active { background: var(--accent2); transform: scale(.97); }

/* ═══════════════════════════════════════════
   STORE LAYOUT  (mobile-first)
═══════════════════════════════════════════ */
.store-wrap { padding: 20px 1rem 64px; max-width: 1280px; margin: 0 auto; }
.cat-section { margin-bottom: 40px; }
.cat-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); gap: 10px;
}
.cat-section-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.cat-icon { flex-shrink: 0; display: flex; align-items: center; }
.cat-icon svg { width: 18px; height: 18px; }
.cat-section-title { font-size: 16px; font-weight: 700; white-space: nowrap; }
.cat-count {
  background: rgba(124,58,237,.18); color: var(--accent3);
  font-size: 11px; padding: 2px 9px; border-radius: 20px; flex-shrink: 0;
}
.cat-see-all {
  background: none; border: 1px solid var(--border2);
  color: var(--muted); padding: 5px 13px; border-radius: 20px;
  font-size: 12px; font-weight: 500; flex-shrink: 0; white-space: nowrap;
  min-height: 32px; display: flex; align-items: center;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID  (2 cols mobile by default)
═══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ═══════════════════════════════════════════
   PRODUCT CARD  (mobile-first)
═══════════════════════════════════════════ */
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rlg); overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s, box-shadow .2s;
  /* no hover transform on mobile — causes jank */
}
.product-card:active { opacity: .88; }

.card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; background: var(--bg3); flex-shrink: 0;
}
.card-img { width: 100%; height: 100%; object-fit: cover; }
.card-off {
  position: absolute; top: 7px; right: 7px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 5px;
}

.card-body { padding: 10px 11px 12px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-size: 11px; font-weight: 700; line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-desc {
  font-size: 11px; color: var(--muted); line-height: 1.45;
  margin-bottom: 9px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 3px; flex-wrap: wrap; }
.price-old { font-size: 10px; color: var(--muted2); text-decoration: line-through; }
.price-new { font-size: 16px; font-weight: 800; letter-spacing: -.3px; }
.card-pix { font-size: 10px; color: var(--green); margin-bottom: 8px; }
.card-stock { font-size: 10px; margin-bottom: 9px; }
.card-stock .in-stock { color: var(--green); font-weight: 600; }
.card-stock .out-stock { color: var(--red); font-weight: 600; }

.card-actions { display: flex; gap: 6px; }
.btn-buy {
  flex: 1; background: var(--accent); color: #fff; border: none;
  padding: 9px 4px; border-radius: var(--r);
  font-size: 11px; font-weight: 700;
  min-height: 38px;
  -webkit-tap-highlight-color: transparent;
}
.btn-buy:active { background: var(--accent2); }
.btn-add-cart {
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); padding: 9px 10px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  min-height: 38px; min-width: 38px;
  -webkit-tap-highlight-color: transparent;
}
.btn-add-cart:active { border-color: var(--accent3); color: var(--accent3); }

/* ═══════════════════════════════════════════
   SEARCH RESULTS
═══════════════════════════════════════════ */
.search-header { margin-bottom: 20px; padding: 16px 0 14px; border-bottom: 1px solid var(--border); }
.search-header h2 { font-size: 17px; font-weight: 700; margin-bottom: 5px; flex-wrap: wrap; display: flex; gap: 6px; }
.search-header h2 .sq { color: var(--accent3); font-weight: 800; }
.search-header p { font-size: 13px; color: var(--muted); }
.search-header a { color: var(--accent3); }
.search-no-results { text-align: center; padding: 56px 16px; color: var(--muted); }
.search-no-results .snr-icon { font-size: 44px; margin-bottom: 14px; opacity: .5; }
.search-no-results h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.search-no-results a {
  display: inline-block; margin-top: 18px; font-size: 14px;
  color: var(--accent3); border: 1px solid rgba(192,132,252,.3);
  padding: 10px 22px; border-radius: 20px; min-height: 44px;
  display: inline-flex; align-items: center;
}

/* ═══════════════════════════════════════════
   FOOTER  (mobile-first: 1 col)
═══════════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); margin-top: auto; }
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; padding: 36px 1rem 28px;
  max-width: 1280px; margin: 0 auto;
}
.footer-logo { font-size: 18px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 8px; }
.footer-logo span { color: var(--accent3); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; border: 1px solid var(--border2);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.social-wa { color: #22c55e; }
.social-ig { color: #f472b6; }
.footer-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--muted2); margin-bottom: 12px;
}
.footer-nav { display: flex; flex-direction: column; gap: 2px; }
.footer-nav a {
  font-size: 14px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px; display: flex; align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.footer-nav a:last-child { border-bottom: none; }
.payment-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--border2);
  padding: 9px 14px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 12px;
}
.footer-badges { display: flex; flex-direction: column; gap: 6px; }
.sec-badge {
  font-size: 12px; color: var(--muted);
  background: var(--card); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: var(--r); display: inline-block; width: fit-content;
}
.footer-bottom { border-top: 1px solid var(--border); padding: 14px 1rem; }
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-bottom-inner span { font-size: 11px; color: var(--muted2); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 11px; color: var(--muted2); }

/* ═══════════════════════════════════════════
   MODAL / CHECKOUT BOTTOM SHEET
═══════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 500; align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--rxl) var(--rxl) 0 0;
  width: 100%; max-width: 560px;
  max-height: 90dvh; max-height: 90vh;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 6px 18px 40px;
  box-shadow: 0 -8px 48px rgba(0,0,0,.6);
  animation: sheetUp .24s ease;
  /* Safe area for iOS home indicator */
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}
@keyframes sheetUp {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-handle {
  width: 36px; height: 4px; background: var(--border3); border-radius: 2px;
  margin: 10px auto 16px;
}

/* ─── TOAST ─── */
.toast {
  display: none; position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%; transform: translateX(-50%);
  background: var(--card2); border: 1px solid var(--border2);
  color: var(--text); padding: 11px 20px; border-radius: 24px;
  font-size: 14px; font-weight: 500; z-index: 9999;
  box-shadow: 0 4px 24px rgba(0,0,0,.5); white-space: nowrap;
  animation: toastIn .22s ease;
  max-width: calc(100vw - 32px);
}
.toast.show { display: block; }
@keyframes toastIn {
  from { transform: translateX(-50%) translateY(10px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);   opacity: 1; }
}

/* ═══════════════════════════════════════════
   TABLET  ≥ 600px
═══════════════════════════════════════════ */
@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-title  { font-size: 13px; }
  .card-desc   { font-size: 12px; }
  .price-new   { font-size: 19px; }
  .btn-buy     { font-size: 12px; padding: 10px 0; }
  .hero h1     { font-size: 32px; }
  .hero p      { font-size: 15px; }
  .store-wrap  { padding: 28px 1.25rem 72px; }
  .cat-section-title { font-size: 17px; }
  .cart-text   { display: inline; }
}

/* ═══════════════════════════════════════════
   SMALL DESKTOP  ≥ 900px
═══════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --nav-h: 62px; }

  /* Show desktop nav cats, hide hamburger */
  .nav-cats {
    display: flex; align-items: center; gap: 2px;
    flex: 1; overflow-x: auto; scrollbar-width: none; min-width: 0;
  }
  .nav-cats::-webkit-scrollbar { display: none; }
  .hamburger     { display: none; }
  .btn-search-mob { display: none; }

  /* Show desktop search */
  .nav-search  { display: block; flex: 0 1 320px; min-width: 0; }
  .nav-inner   { gap: 12px; padding: 0 1.5rem; }

  .search-input { padding: 8px 36px 8px 36px; font-size: 14px; border-radius: 24px; }
  .search-icon-el { left: 11px; }

  /* Nav cat pills */
  .nav-cat {
    padding: 5px 12px; border-radius: 20px;
    font-size: 13px; font-weight: 500; white-space: nowrap;
    color: var(--muted); border: 1px solid transparent;
    transition: all .18s; flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 5px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-cat svg { width: 14px; height: 14px; }
  .nav-cat:hover { color: var(--text); background: rgba(255,255,255,.04); }
  .nav-cat.active {
    color: var(--accent3); border-color: rgba(192,132,252,.3);
    background: rgba(192,132,252,.08);
  }

  .hero { padding: 64px 2rem 52px; }
  .hero h1 { font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -1.5px; }
  .hero p  { font-size: 16px; }
  .hero-stats { gap: 40px; }
  .hero-stat strong { font-size: 26px; }

  .store-wrap { padding: 36px 2rem 80px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }

  /* Card hover on desktop */
  .product-card:hover {
    transform: translateY(-2px); border-color: var(--border2);
    box-shadow: 0 6px 28px rgba(124,58,237,.12);
  }
  .product-card:hover .card-img { transform: scale(1.04); }
  .card-img { transition: transform .4s; }

  .card-body   { padding: 14px 16px 16px; }
  .card-title  { font-size: 13px; }
  .card-desc   { font-size: 12px; }
  .price-new   { font-size: 20px; }
  .btn-buy     { font-size: 13px; padding: 10px 0; }
  .btn-add-cart:hover { border-color: var(--accent3); color: var(--accent3); }

  .cat-section-title { font-size: 18px; }
  .cat-icon svg { width: 20px; height: 20px; }
  .cat-section { margin-bottom: 52px; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 52px 2rem 36px; }
  .footer-nav a { font-size: 13px; padding: 5px 0; min-height: auto; border-bottom: none; }
  .footer-bottom-inner { flex-direction: row; align-items: center; }
  .footer-bottom-inner span { font-size: 12px; }
  .footer-bottom-links a { font-size: 12px; }

  /* lang hover */
  .lang-btn:hover { border-color: var(--border3); }
  .lang-option:hover { background: rgba(255,255,255,.05); color: var(--text); }
  .cat-see-all:hover { border-color: var(--accent3); color: var(--accent3); }
  .social-wa:hover { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.3); }
  .social-ig:hover { background: rgba(244,114,182,.08); border-color: rgba(244,114,182,.3); }
  .btn-cart:hover  { border-color: var(--accent3); }
  .footer-nav a:hover { color: var(--text); }
  .footer-bottom-links a:hover { color: var(--text); }
}

/* ═══════════════════════════════════════════
   LARGE DESKTOP  ≥ 1200px
═══════════════════════════════════════════ */
@media (min-width: 1200px) {
  .nav-search { flex: 0 1 360px; }
  .products-grid { gap: 18px; }
}

/* ── Botão Minha Conta no nav ── */
.btn-account-nav {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--muted); padding: 7px 11px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  min-height: 38px; position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s;
}
.btn-account-nav:hover  { border-color: var(--accent3); color: var(--accent3); }
.btn-account-nav.active { color: var(--accent3); border-color: rgba(192,132,252,.3); background: rgba(192,132,252,.08); }
.account-nav-text { display: none; }
.account-nav-dot {
  position: absolute; top: 6px; right: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); border: 1.5px solid var(--bg3);
}
@media (min-width: 900px) {
  .account-nav-text { display: inline; }
}
