/* =============================================================
   IG MARKET PLACE — Template de E-commerce de Tecnologia
   White surface · blue primary · carbon texture · fluorescent blue pigment
   Multi-color bento product cards
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --paper:        #FFFFFF;
  --bg:           #0D0F12;
  --bg-soft:      #171A1F;
  --bg-deep:      #101317;

  /* ink */
  --ink:          #14171C;
  --ink-soft:     #3F4752;
  --ink-mute:     #6B7480;
  --ink-faint:    #9AA3AE;

  /* primary blue (accent) */
  --indigo:       #3B82F6;
  --indigo-deep:  #1D4ED8;
  --indigo-soft:  #EFF6FF;
  --indigo-line:  #BFDBFE;

  /* blue neon (accent) */
  --neon:         #60A5FA;
  --neon-bright:  #93C5FD;
  --neon-deep:    #2563EB;
  --neon-dark:    #0C1B33;

  /* card colors (preto/cinza + azul) */
  --card-blue:    #1F2227;
  --card-blue-2:  #2B2F36;
  --card-purple:  #3B82F6;
  --card-purple-2:#1D4ED8;
  --card-orange:  #3A3F47;
  --card-orange-2:#3B82F6;
  --card-green:   #15181C;
  --card-green-2: #262B31;
  --card-black:   #0A0C0E;

  /* support */
  --rose:         #3B82F6;
  --emerald:      #10B981;
  --amber:        #3B82F6;
  --rule:         #E2E8F0;
  --rule-strong:  #CBD5E1;

  /* semantic */
  --accent:       var(--indigo);
  --accent-deep:  var(--indigo-deep);
  --accent-soft:  var(--indigo-soft);
  --fg:           var(--ink);
  --fg-soft:      var(--ink-soft);
  --fg-mute:      var(--ink-mute);

  /* type */
  --ff-display:   'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body:      'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-mono:      'Roboto Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --text-xs:      12px;
  --text-sm:      13px;
  --text-base:    15px;
  --text-md:      17px;
  --text-lg:      20px;
  --text-xl:      24px;
  --text-2xl:     32px;
  --text-3xl:     40px;
  --text-display: clamp(1.75rem, 1rem + 2.4vw, 3.25rem);
  --text-hero:    clamp(2rem, 1.2rem + 3vw, 3.75rem);

  /* spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 28px; --s7: 40px; --s8: 56px; --s9: 80px; --s10: 112px;

  /* layout */
  --container:    1280px;
  --container-pad: 24px;

  /* radii */
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* shadow */
  --shadow-sm:   0 1px 2px rgba(15,23,42,0.06);
  --shadow:      0 6px 18px -8px rgba(15,23,42,0.16), 0 2px 4px -2px rgba(15,23,42,0.06);
  --shadow-lg:   0 24px 60px -28px rgba(15,23,42,0.30), 0 8px 16px -10px rgba(15,23,42,0.08);
  --shadow-indigo: 0 12px 28px -10px rgba(59,130,246,0.35);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--paper); }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--fg);
  background-color: var(--paper);
  background-image: url('assets/img/fundo-format.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
p { margin: 0; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color 180ms var(--ease); }
a:hover { color: var(--indigo); }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--indigo); color: var(--paper); }

.skip-link {
  position: absolute; top: -100px; left: var(--s4);
  background: var(--ink); color: var(--paper);
  padding: var(--s2) var(--s4); border-radius: var(--r-sm); z-index: 1000;
}
.skip-link:focus { top: var(--s4); }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* ---------- Utility bar (top thin strip) ---------- */
.utility {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}
.utility .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap; gap: var(--s3);
}
.utility .promo { display: inline-flex; align-items: center; gap: var(--s2); }
.utility .promo .tag {
  background: var(--rose); padding: 3px 8px; border-radius: 999px;
  font-weight: 500; font-size: 11px; letter-spacing: 0.06em;
}
.utility .links { display: inline-flex; gap: var(--s5); color: rgba(20,23,28,0.6); }
.utility .links a:hover { color: var(--indigo); }

/* ---------- Top header (logo + search + icons) ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 60;
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s7);
  align-items: center;
  height: 84px;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-display);
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon), var(--neon-deep) 70%);
  display: inline-grid; place-items: center;
  color: var(--neon-dark); font-weight: 800; font-size: 18px;
  box-shadow: 0 0 14px rgba(96,165,250,0.55), var(--shadow-indigo);
}

/* ---------- Logo 3D animada — Verde Neon Cyber Tech ---------- */
.logo3d {
  position: relative;
  width: 44px; height: 44px;
  flex-shrink: 0;
  perspective: 220px;
  display: inline-grid; place-items: center;
}
.logo3d::after {
  content: '';
  position: absolute; inset: -6px;
  background: radial-gradient(circle, rgba(96,165,250,0.28) 0%, rgba(96,165,250,0) 65%);
  border-radius: 999px;
  animation: neonPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
.logo3d .cube {
  width: 38px; height: 38px;
  position: relative;
  transform-style: preserve-3d;
  animation: logoSpin 7s linear infinite;
  will-change: transform;
}
.logo3d:hover .cube { animation-play-state: paused; }
.logo3d .face {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 800; font-size: 12px;
  letter-spacing: -0.02em;
  color: var(--neon-dark);
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-deep) 100%);
  border: 1px solid rgba(96,165,250,0.9);
  box-shadow: 0 0 12px rgba(96,165,250,0.55), inset 0 0 8px rgba(255,255,255,0.35);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.logo3d .face--front  { transform: translateZ(19px); }
.logo3d .face--back   { transform: rotateY(180deg) translateZ(19px); }
.logo3d .face--right  { transform: rotateY(90deg) translateZ(19px); }
.logo3d .face--left   { transform: rotateY(-90deg) translateZ(19px); }
.logo3d .face--top    { transform: rotateX(90deg) translateZ(19px); }
.logo3d .face--bottom { transform: rotateX(-90deg) translateZ(19px); }

@keyframes logoSpin {
  from { transform: rotateX(0deg) rotateY(0deg); }
  to   { transform: rotateX(360deg) rotateY(360deg); }
}
@keyframes neonPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50%      { opacity: 1;    transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .logo3d .cube { animation: none; transform: rotateX(-18deg) rotateY(-24deg); }
  .logo3d::after { animation: none; }
}

/* ---------- Cypher Text Effect (UIX-Pro-Max) ---------- */
[data-cypher] { position: relative; }
[data-cypher].is-cyphering { pointer-events: none; }

.search {
  position: relative;
  max-width: 560px; width: 100%;
  margin: 0 auto;
}
.search input {
  width: 100%;
  padding: 14px 56px 14px 20px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: var(--paper);
  font-size: var(--text-base);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.search input::placeholder { color: var(--ink-faint); }
.search input:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.search button {
  position: absolute; right: 5px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  background: var(--indigo); color: var(--paper);
  border-radius: 999px;
  display: grid; place-items: center;
  transition: background 180ms var(--ease);
}
.search button:hover { background: var(--indigo-deep); }

.icon-row { display: inline-flex; gap: var(--s2); align-items: center; }
.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink);
  background: var(--paper);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.icon-btn:hover { background: var(--indigo-soft); color: var(--indigo); }
.icon-btn .count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--indigo); color: var(--paper);
  font-family: var(--ff-mono); font-size: 10px; font-weight: 600;
  border-radius: 999px; display: grid; place-items: center;
  border: 2px solid var(--paper);
}
.icon-btn--cart { background: var(--paper); color: var(--ink); }
.icon-btn--cart:hover { background: var(--indigo); color: var(--paper); }

/* ---------- Category nav bar ---------- */
.nav-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 84px; z-index: 55;
}
.nav-bar .container {
  display: flex; align-items: center; gap: var(--s7);
  height: 60px; flex-wrap: wrap;
}
.all-cats {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--indigo);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: var(--text-sm);
  transition: background 180ms var(--ease);
}
.all-cats:hover { background: var(--indigo-deep); color: var(--paper); }
.main-nav { display: flex; gap: var(--s7); margin-right: auto; }
.main-nav a {
  font-weight: 500; font-size: var(--text-sm);
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: var(--s1);
  padding: 6px 0;
}
.main-nav a[aria-current="page"] { color: var(--indigo); }
.main-nav a:hover { color: var(--indigo); }
.nav-cta {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--fg-mute);
}
.nav-cta strong { color: var(--rose); font-weight: 700; }
.nav-toggle {
  display: none; padding: 8px;
  font-size: 22px; color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--ff-body); font-weight: 600;
  font-size: var(--text-sm); line-height: 1;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--indigo { background: var(--indigo); color: var(--paper); box-shadow: var(--shadow-indigo); }
.btn--indigo:hover { background: var(--indigo-deep); color: var(--paper); transform: translateY(-1px); }
.btn--ink { background: var(--paper); color: var(--ink); border-color: var(--rule-strong); }
.btn--ink:hover { background: var(--paper); color: var(--indigo); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--paper); color: var(--indigo); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn--ghost:hover { background: var(--paper); color: var(--indigo); border-color: var(--rule-strong); }
.btn--sm { padding: 8px 14px; font-size: var(--text-xs); }
.btn--block { width: 100%; }
.btn--pill-ghost-onDark {
  background: transparent; color: var(--paper);
  border-color: rgba(255,255,255,0.3);
}
.btn--pill-ghost-onDark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Bento HERO ---------- */
.hero {
  padding: var(--s7) 0 var(--s8);
  background: var(--paper);
}
.bento {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: var(--s4);
}
.bento-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--s7);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.82;
  position: relative; z-index: 2;
}
.bento-card h2, .bento-card h3, .bento-card p, .bento-card .shop-now, .bento-card .btn {
  position: relative; z-index: 2;
}
.bento-card h2, .bento-card h3 {
  color: inherit;
  margin: var(--s3) 0 var(--s4);
}
.bento-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  opacity: 0.86;
  max-width: 38ch;
  margin-bottom: var(--s5);
}
.bento-card .shop-now {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: var(--text-sm);
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
  align-self: flex-start;
  transition: gap 180ms var(--ease);
}
.bento-card .shop-now:hover { gap: 14px; }
.bento-card img.product {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
}
.bento-card .sparkle {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.10) 0, transparent 40%);
  pointer-events: none;
}

.bento-card--lg {
  grid-row: 1 / span 2;
  grid-column: 1;
  background: linear-gradient(135deg, var(--card-blue), var(--card-blue-2));
  color: var(--paper);
  min-height: 540px;
  padding: var(--s8);
}
.bento-card--lg > div {
  position: relative;
  z-index: 2;
  max-width: 50%;
}
.bento-card--lg h2 {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 14ch;
}
.bento-card--lg p { max-width: 32ch; font-size: var(--text-sm); }
.bento-card--lg img.product {
  right: -30px; bottom: -20px; top: auto; transform: none;
  width: 50%; max-width: 440px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}
.bento-card--lg .dots {
  display: inline-flex; gap: 6px;
  margin-top: var(--s4);
}
.bento-card--lg .dots span {
  width: 22px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.3);
}
.bento-card--lg .dots span.active { background: var(--paper); width: 28px; }

.bento-card--purple {
  background: linear-gradient(135deg, var(--card-purple) 0%, var(--card-purple-2) 70%, #9333EA 100%);
  color: var(--paper);
  grid-column: 2;
  grid-row: 1;
  min-height: 260px;
}
.bento-card--purple img.product {
  right: -10px; bottom: -10px; width: 60%; max-width: 200px;
}

.bento-card--teal {
  background: linear-gradient(135deg, #0E7490 0%, #0891B2 60%, #06B6D4 100%);
  color: var(--paper);
  grid-column: 2;
  grid-row: 2;
  min-height: 260px;
}
.bento-card--teal img.product {
  right: -10px; bottom: -10px; width: 62%; max-width: 220px;
}

.bento-row {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.bento-card--orange {
  background: linear-gradient(135deg, var(--card-orange), var(--card-orange-2));
  color: var(--paper);
  min-height: 240px;
}
.bento-card--orange img.product {
  right: 0; bottom: 0; width: 55%; max-width: 180px;
}
.bento-card--green {
  background: linear-gradient(135deg, var(--card-green), var(--card-green-2));
  color: var(--paper);
  min-height: 240px;
}
.bento-card--green img.product {
  right: 0; bottom: 0; width: 56%; max-width: 200px;
}
.bento-card--black {
  background: linear-gradient(135deg, var(--card-black), #1F1F1F);
  color: var(--paper);
  min-height: 240px;
}
.bento-card--black img.product {
  right: 0; bottom: 0; width: 50%; max-width: 180px;
}

/* ---------- Section base ---------- */
.section {
  padding: var(--s9) 0;
}
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: var(--s4);
  margin-bottom: var(--s6);
}
.section-head h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  -webkit-box-reflect: below 0.5px linear-gradient(transparent, transparent, rgba(255,255,255,0.30));
}
.section-head .view-all {
  font-weight: 600; font-size: var(--text-sm);
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--indigo);
}
.section-head .view-all:hover { gap: 12px; }

/* ---------- Tabs (category filter) ---------- */
.tabs {
  display: flex; gap: var(--s6);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--rule);
}
.tab {
  font-weight: 600; font-size: var(--text-sm);
  color: var(--fg-mute);
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}
.tab.is-active { color: var(--indigo); }
.tab.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--indigo); border-radius: 2px;
}

/* ---------- Product card ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--s4);
}
.product-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r);
  padding: var(--s4);
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.product-card:hover {
  border-color: var(--indigo-line);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--s4);
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--card-green); color: var(--paper);
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 4px;
  font-weight: 600;
}
.product-card .badge--sale { background: var(--rose); }
.product-card .wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: var(--paper);
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  opacity: 0; transition: opacity 200ms var(--ease), color 180ms var(--ease);
}
.product-card:hover .wishlist { opacity: 1; }
.product-card .wishlist:hover { color: var(--rose); }
.product-card .stock {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  margin-bottom: 4px;
}
.product-card .stock .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--emerald);
}
.product-card .name {
  font-family: var(--ff-display);
  font-weight: 600; font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-card .price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: var(--s2);
}
.product-card .price .now {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-md);
  background-image: linear-gradient(90deg, #0EA5E9, #2563EB);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.product-card .price .was {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-faint); text-decoration: line-through;
}
.product-card .stars {
  display: inline-flex; gap: 1px;
  color: var(--amber);
  font-size: 13px;
}
.product-card .stars .count {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--fg-mute); margin-left: 6px;
}
.product-card .btn {
  margin-top: var(--s3);
  width: 100%; justify-content: center;
  border-radius: var(--r-sm);
  padding: 10px;
  background: #000000; color: #FFFFFF;
  font-family: 'Roboto Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
}
.product-card .btn:hover { background: #FFFFFF; color: #000000; box-shadow: 0 4px 12px rgba(0,0,0,0.30); }

/* ---------- Discount banner (2-up) ---------- */
.discount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.discount-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--s7);
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  color: var(--paper);
}
.discount-card--watch {
  background: linear-gradient(135deg, #0F172A, #1E293B);
}
.discount-card--airpods {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
}
.discount-card h3 {
  color: inherit;
  font-size: var(--text-2xl);
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.discount-card h3 .pct {
  display: block;
  font-size: var(--text-3xl);
  color: var(--amber);
  font-weight: 800;
}
.discount-card .meta {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; opacity: 0.7; margin-bottom: var(--s5);
}
.discount-card .shop-now { color: var(--paper); align-self: flex-start; }
.discount-card img.product {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 50%; max-width: 240px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

/* ---------- Categories grid (round tiles) ---------- */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
}
.cat-tile {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
  text-align: center;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background 200ms var(--ease);
}
.cat-tile:hover {
  border-color: var(--indigo-line);
  transform: translateY(-3px);
  background: var(--indigo-soft);
  color: var(--ink);
}
.cat-tile .pic {
  width: 80px; height: 80px;
  margin: 0 auto var(--s3);
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
  display: grid; place-items: center;
}
.cat-tile .pic img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile .name {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-sm);
  color: var(--ink);
}
.cat-tile .count {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--fg-mute);
  margin-top: 4px;
}

/* ---------- Compact product row (4-up small cards) ---------- */
.compact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.compact-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s4);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: var(--s4);
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
  transition: border-color 200ms var(--ease);
}
.compact-card:hover { border-color: var(--indigo-line); }
.compact-card .pic {
  width: 76px; height: 76px;
  background: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.compact-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.compact-card .stock {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--fg-mute); display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 4px;
}
.compact-card .name {
  font-family: var(--ff-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--ink); line-height: 1.2; margin-bottom: 4px;
}
.compact-card .price {
  font-family: var(--ff-display); font-weight: 700;
  background-image: linear-gradient(90deg, #0EA5E9, #2563EB);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-size: var(--text-sm);
  margin-bottom: 6px;
}
.compact-card .btn {
  padding: 6px 10px; font-size: 11px;
  border-radius: var(--r-sm);
  background: var(--indigo); color: var(--paper);
  width: 100%;
}
.compact-card .btn:hover { background: var(--indigo-deep); }

/* ---------- Brand strip ---------- */
.brands {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s7) 0;
}
.brand-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: var(--s7);
}
.brand-row .brand-logo {
  font-family: var(--ff-display);
  font-weight: 800; font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: var(--ink-faint);
  transition: color 200ms var(--ease);
  text-transform: uppercase;
}
.brand-row .brand-logo:hover { color: var(--ink); }

/* ---------- Newsletter banner ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--neon) 100%);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s7);
  color: var(--paper);
  position: relative; overflow: hidden;
  margin: var(--s8) 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18) 0, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.10) 0, transparent 50%);
  pointer-events: none;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: center;
  position: relative;
}
.newsletter h2 {
  color: var(--paper);
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.newsletter h2 strong { color: var(--amber); font-weight: 800; }
.newsletter p {
  color: rgba(255,255,255,0.86);
  font-size: var(--text-md);
  margin-top: var(--s3);
  max-width: 38ch;
}
.newsletter-form {
  display: flex; gap: var(--s2);
  background: rgba(255,255,255,0.96);
  padding: 6px;
  border-radius: 999px;
  align-items: center;
}
.newsletter-form input {
  flex: 1; border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: var(--text-base);
  color: var(--ink);
  outline: 0;
}
.newsletter-form input::placeholder { color: var(--ink-faint); }
.newsletter-form .btn { background: var(--paper); color: var(--ink); border-radius: 999px; }
.newsletter-form .btn:hover { background: var(--indigo); color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: var(--s9) 0 var(--s5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--s7);
  padding-bottom: var(--s8);
  border-bottom: 1px solid var(--rule);
}
.footer-brand .mark {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-display);
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.footer-brand p { color: var(--ink-mute); max-width: 32ch; line-height: 1.6; font-size: var(--text-sm); }
.footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: var(--s4);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: var(--ink-mute);
  font-size: var(--text-sm);
}
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s3);
  padding-top: var(--s5);
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.socials { display: inline-flex; gap: var(--s2); }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  transition: background 180ms var(--ease);
}
.socials a:hover { background: var(--indigo); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex; flex-direction: column;
  padding: var(--s7) var(--s5);
  gap: var(--s4);
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer .drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s4);
}
.drawer a {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-xl);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.drawer a:hover { color: var(--indigo); }
.drawer .drawer-close {
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding: var(--s2) var(--s3);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
}

/* ---------- Page head (inner pages) ---------- */
.page-head {
  background: var(--paper);
  padding: var(--s7) 0 var(--s6);
  border-bottom: 1px solid var(--rule);
}
.crumbs {
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  color: var(--fg-mute);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: var(--s3);
}
.crumbs a { color: var(--fg-mute); }
.crumbs a:hover { color: var(--indigo); }
.crumbs .sep { color: var(--ink-faint); }
.page-head h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  max-width: 24ch;
}
.page-head p {
  font-size: var(--text-md);
  color: var(--fg-soft);
  max-width: 60ch;
  margin-top: var(--s3);
}

/* ---------- Shop layout (sidebar + grid) ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s7);
}
.filters {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
  position: sticky;
  top: 160px;
  align-self: start;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.filters h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  margin-bottom: var(--s3);
}
.filter-block {
  padding-bottom: var(--s5);
  margin-bottom: var(--s5);
  border-bottom: 1px solid var(--rule);
}
.filter-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filter-block label {
  display: flex; align-items: center; gap: var(--s2);
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--fg-soft);
  cursor: pointer;
}
.filter-block label:hover { color: var(--indigo); }
.filter-block label input { accent-color: var(--indigo); }
.filter-block label .ct {
  margin-left: auto;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-faint);
}
.range-bar { height: 4px; background: var(--rule); border-radius: 999px; position: relative; margin: var(--s4) 0; }
.range-bar::after {
  content: ''; position: absolute; left: 10%; right: 30%; top: 0; bottom: 0;
  background: var(--indigo); border-radius: 999px;
}
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s5);
  flex-wrap: wrap; gap: var(--s3);
}
.shop-toolbar .count {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}
.shop-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: var(--text-sm);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: var(--s7);
}
.pagination .pg {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--ff-mono); font-size: var(--text-sm);
  color: var(--fg-soft);
}
.pagination .pg.is-active { background: var(--indigo); color: var(--paper); border-color: var(--indigo); }
.pagination .pg:hover:not(.is-active) { border-color: var(--indigo-line); color: var(--indigo); }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s8);
  padding: var(--s7) 0 var(--s9);
}
.gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s4);
}
.gallery-thumbs { display: grid; gap: var(--s2); }
.gallery-thumbs button {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  padding: 0;
  cursor: pointer;
}
.gallery-thumbs button.is-active { border-color: var(--indigo); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 4 / 4;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .pdp-cat {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: var(--s2);
}
.pdp-info h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}
.pdp-info .rating-row {
  display: inline-flex; gap: var(--s3); align-items: center;
  font-size: var(--text-sm);
  color: var(--fg-mute);
  margin-bottom: var(--s4);
}
.pdp-info .price-row {
  display: flex; align-items: baseline; gap: var(--s4);
  margin: var(--s5) 0 var(--s4);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.pdp-info .price-row .now {
  font-family: var(--ff-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  background-image: linear-gradient(90deg, #0EA5E9, #2563EB);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.pdp-info .price-row .was { font-family: var(--ff-mono); color: var(--ink-faint); text-decoration: line-through; }
.pdp-info .price-row .save { background: var(--card-green); color: var(--paper); font-family: var(--ff-mono); font-size: var(--text-xs); padding: 4px 8px; border-radius: 4px; font-weight: 600; }
.pdp-info p.desc { font-size: var(--text-md); color: #000000; font-weight: 700; line-height: 1.65; margin-bottom: var(--s5); }
.option-block { margin-bottom: var(--s5); }
.option-block .label {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute); margin-bottom: var(--s3);
}
.color-swatches { display: flex; gap: var(--s2); }
.color-swatches button {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 2px solid transparent;
  outline: 1px solid var(--rule);
  cursor: pointer;
}
.color-swatches button.is-active { border-color: var(--indigo); outline-color: var(--indigo); }
.option-pills { display: flex; gap: var(--s2); flex-wrap: wrap; }
.option-pills button {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--fg-soft);
  cursor: pointer;
  transition: all 180ms var(--ease);
}
.option-pills button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty button { padding: 10px 14px; font-weight: 700; }
.qty input { width: 50px; border: 0; text-align: center; font-family: var(--ff-mono); font-weight: 600; }
.pdp-cta { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; margin-top: var(--s4); }
.pdp-cta .btn { padding: 14px 28px; font-size: var(--text-base); }
.pdp-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.pdp-features .pf {
  display: flex; gap: var(--s3); align-items: center;
  font-size: var(--text-sm);
  color: var(--fg-soft);
}
.pdp-features .pf .ic {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--indigo-soft);
  color: var(--indigo);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 16px;
}

/* ---------- Cart ---------- */
.cart-layout {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: var(--s7);
  padding: var(--s7) 0 var(--s9);
}
.cart-list {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
}
.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  gap: var(--s4);
  align-items: center;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--rule);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row .pic {
  width: 88px; height: 88px;
  background: var(--bg); border-radius: var(--r-sm); overflow: hidden;
}
.cart-row .pic img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .info .name { font-family: var(--ff-display); font-weight: 600; font-size: var(--text-base); color: var(--ink); margin-bottom: 4px; }
.cart-row .info .variant { font-family: var(--ff-mono); font-size: var(--text-xs); color: var(--fg-mute); letter-spacing: 0.04em; }
.cart-row .qty button { padding: 6px 10px; }
.cart-row .qty input { width: 36px; }
.cart-row .subtotal { font-family: var(--ff-display); font-weight: 700; color: var(--ink); }
.cart-row .remove { color: var(--ink-faint); font-size: 18px; padding: 6px; }
.cart-row .remove:hover { color: var(--rose); }

.cart-summary {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s6);
  align-self: start;
  position: sticky; top: 160px;
}
.cart-summary h3 { font-size: var(--text-lg); margin-bottom: var(--s4); }
.cart-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: var(--text-sm); color: var(--fg-soft); }
.cart-line.is-total { font-family: var(--ff-display); font-weight: 800; font-size: var(--text-lg); color: var(--ink); padding-top: var(--s4); border-top: 1px solid var(--rule); margin-top: var(--s3); }
.cart-summary .btn { width: 100%; margin-top: var(--s5); padding: 14px; }
.promo-input { display: flex; gap: var(--s2); margin: var(--s4) 0; }
.promo-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--rule-strong); border-radius: var(--r-sm); background: var(--paper); font-size: var(--text-sm); }
.promo-input button { padding: 10px 16px; background: var(--paper); color: var(--ink); border-radius: var(--r-sm); font-weight: 600; font-size: var(--text-sm); border: 1px solid var(--rule-strong); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s8);
  padding: var(--s7) 0 var(--s9);
}
.contact-info .info-block {
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s4);
  align-items: center;
}
.contact-info .info-block:first-child { padding-top: 0; }
.contact-info .ic {
  width: 48px; height: 48px;
  background: var(--indigo-soft);
  color: var(--indigo);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 20px;
}
.contact-info .info-block .label {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute);
  margin-bottom: 2px;
}
.contact-info .info-block .value {
  font-family: var(--ff-display); font-weight: 600; font-size: var(--text-md);
  color: var(--ink);
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s7);
}
.field { display: grid; gap: var(--s2); margin-bottom: var(--s4); }
.field label { font-family: var(--ff-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  padding: 12px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper); color: var(--ink); font-size: var(--text-base);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .products { grid-template-columns: repeat(4, 1fr); }
  .compact-row { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s5); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; max-height: none; }
}
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card--lg { grid-row: auto; grid-column: 1; min-height: 420px; }
  .bento-card--lg img.product { width: 70%; max-width: 360px; }
  .bento-card--purple { grid-column: 1; grid-row: auto; }
  .bento-card--teal { grid-column: 1; grid-row: auto; }
  .bento-row { grid-column: 1; grid-row: auto; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .discount-row { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: var(--s6); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .newsletter-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --container-pad: 16px; }
  .site-header .container { grid-template-columns: auto 1fr auto; gap: var(--s4); height: 72px; }
  .search { display: none; }
  .nav-bar .container { gap: var(--s4); height: 56px; overflow-x: auto; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .utility .links { display: none; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-row { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .cart-row { grid-template-columns: 60px 1fr; gap: var(--s3); }
  .cart-row .qty, .cart-row .subtotal, .cart-row .remove { grid-column: 2; justify-self: start; }
  .field-row { grid-template-columns: 1fr; }
  .pdp-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: var(--s8) 0; }
  .newsletter { padding: var(--s7) var(--s5); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Fundo padrão (todas as páginas exceto Dashboard) ---------- */
body.page-fundo {
  background-color: #000000;
  color: #FFFFFF;
}
body.page-fundo .site-header,
body.page-fundo .nav-bar,
body.page-fundo .site-footer { background: #0A0A0A; color: #FFFFFF; }
body.page-fundo .site-header { border-bottom: 1px solid #1F2937; }
body.page-fundo .nav-bar { border-bottom: 1px solid #1F2937; }
body.page-fundo .section,
body.page-fundo .hero { background: transparent; }
body.page-fundo .section-head h2,
body.page-fundo .section h1,
body.page-fundo .section h2 { color: #FFFFFF; text-shadow: none; }
body.page-fundo .section-head .view-all { color: #60A5FA; }
body.page-fundo .section-head .view-all:hover { color: #93C5FD; }
body.page-fundo .section .muted,
body.page-fundo .section p:not(.muted) { color: #D1D5DB; }
body.page-fundo .breadcrumb,
body.page-fundo .crumbs { color: #9CA3AF; }
body.page-fundo .breadcrumb a { color: #60A5FA; }
body.page-fundo .auth-card { background: rgba(17,17,17,0.95); box-shadow: 0 4px 16px rgba(0,0,0,0.55); }
body.page-fundo .card-product,
body.page-fundo .product-card,
body.page-fundo .panel,
body.page-fundo .map-box { background: rgba(15,17,20,0.85); box-shadow: 0 4px 16px rgba(0,0,0,0.55); }
body.page-fundo .card-product,
body.page-fundo .product-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #1F2937;
}
body.page-fundo .item-form input,
body.page-fundo .item-form select,
body.page-fundo .item-form textarea,
body.page-fundo .filter-bar input,
body.page-fundo .filter-bar select { background: #111111; color: #FFFFFF; border-color: #374151; }
body.page-fundo .item-form label { color: #E5E7EB; }
body.page-fundo .purchase-card { background: #151515; box-shadow: 0 4px 16px rgba(0,0,0,0.55); border-color: #1F2937; }
body.page-fundo .purchase-body h3 a { color: #FFFFFF; }
body.page-fundo .purchase-body .muted { color: #D1D5DB; }
body.page-fundo .empty { background: rgba(17,17,17,0.94); border-color: #374151; box-shadow: 0 4px 16px rgba(0,0,0,0.55); }
body.page-fundo .empty p { color: #D1D5DB; }
body.page-fundo .table-wrap,
body.page-fundo .table { color: #E5E7EB; }

/* ---------- Barra de botões de categorias (home) ---------- */
.cat-jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.cat-jump .cat-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  color: var(--ink); font-weight: 600; font-size: 13px;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.cat-jump .cat-btn:hover { background: var(--paper); border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.cat-jump .cat-btn .cnt {
  background: rgba(59,130,246,0.12); color: var(--indigo);
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px;
}
.cat-jump .cat-btn:hover .cnt { background: rgba(59,130,246,0.18); color: var(--indigo); }
.cat-jump--card { background: rgba(255,255,255,0.97); border: 1px solid var(--rule); border-radius: 16px; padding: 12px; }
.cat-jump--card .cat-btn { background: var(--paper); border-color: var(--rule-strong); color: var(--ink); }
.cat-jump--card .cat-btn:hover { background: var(--paper); border-color: var(--indigo); color: var(--indigo); }
.cat-jump--card .cat-btn .cnt { background: var(--indigo-soft); color: var(--indigo); }
.cat-jump--card .cat-btn:hover .cnt { background: rgba(59,130,246,0.12); color: var(--indigo); }
.cat-jump .cat-btn.is-active { background: var(--paper); border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.cat-jump .cat-btn.is-active .cnt { background: rgba(59,130,246,0.18); color: var(--indigo); }
.cat-jump--card .cat-btn.is-active { background: var(--paper); border-color: var(--indigo); color: var(--indigo); }
.cat-jump--card .cat-btn.is-active .cnt { background: rgba(59,130,246,0.12); color: var(--indigo); }
.cat-section { scroll-margin-top: 150px; }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px;
}
.wa-float-btn {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
}

/* =============================================================
   VITRINE CARROSSEL — Horizontal Infinito (Marquee)
   ============================================================= */

.vitrine-carrossel-3d {
  position: relative;
  width: 100%;
  margin: var(--s7) 0;
  overflow: hidden;
}

.vitrine-carrossel-3d__track {
  position: relative;
  display: flex;
  width: max-content;
  gap: var(--s4);
  animation: vitrine-scroll-x 35s linear infinite;
  will-change: transform;
}

.vitrine-carrossel-3d:hover .vitrine-carrossel-3d__track {
  animation-play-state: paused;
}

@keyframes vitrine-scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vitrine-carrossel-3d__slide {
  position: relative;
  flex-shrink: 0;
  width: 170px;
  height: 75px;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}

.vitrine-carrossel-3d__slide:hover {
  box-shadow: 0 20px 40px -12px rgba(15,23,42,0.35), 0 8px 16px -8px rgba(15,23,42,0.12);
  border-color: var(--indigo-line);
}

.vitrine-carrossel-3d__slide a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.vitrine-carrossel-3d__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.vitrine-carrossel-3d__slide:hover img {
  transform: scale(1.05);
}

.vitrine-carrossel-3d__slide .vitrine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,18,0) 50%, rgba(13,15,18,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s3);
  color: var(--paper);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.vitrine-carrossel-3d__slide:hover .vitrine-overlay {
  opacity: 1;
}

.vitrine-carrossel-3d__slide .vitrine-nome {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.vitrine-carrossel-3d__slide .vitrine-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--neon-bright);
  margin-top: 2px;
}

/* Duplicatas (aria-hidden) para loop infinito suave */
.vitrine-carrossel-3d__slide[aria-hidden="true"] {
  pointer-events: none;
}

/* Indicador visual sutil */
.vitrine-carrossel-3d__hint {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .vitrine-carrossel-3d__track {
    animation: none;
    overflow-x: auto;
  }
}

/* =============================================================
   VITRINE & LOJA PÚBLICA
   ============================================================= */

/* Vitrine form card */
.vitrine-form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s7);
  margin-bottom: var(--s8);
  box-shadow: var(--shadow-lg);
}
.vitrine-form-card h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--s5);
}

/* Form head (section headers inside forms) */
.form-head {
  margin-top: var(--s7);
  margin-bottom: var(--s3);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
}
.form-head h3 {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* Loja header with banner */
.loja-header {
  position: relative;
  height: 360px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--s7);
  box-shadow: var(--shadow-lg);
}
.loja-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,18,0.55) 0%, rgba(13,15,18,0.75) 100%);
  z-index: 1;
}
.loja-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: var(--s5);
  height: 100%;
  padding: var(--s6);
  color: var(--paper);
}
.loja-logo {
  width: 110px;
  height: 110px;
  border-radius: var(--r);
  object-fit: cover;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.loja-title-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.loja-nome {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.loja-rating {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-md);
  color: var(--neon);
  font-weight: 600;
}

/* Loja info grid */
.loja-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s4);
  margin-bottom: var(--s6);
}
.loja-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s4);
  transition: border-color .2s, box-shadow .2s;
}
.loja-info-item:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}
.info-ico {
  font-size: 22px;
  flex-shrink: 0;
}
.loja-info-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.loja-info-item p {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--ink-mute);
}
.loja-info-item a {
  color: var(--indigo);
  font-weight: 600;
}
.loja-info-item a:hover {
  text-decoration: underline;
}

/* Horario list */
.horario-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
}
.horario-list li {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  padding: 4px 8px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
}

/* Redes sociais list */
.loja-redes {
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.loja-redes strong {
  display: block;
  margin-bottom: var(--s3);
  font-size: var(--text-sm);
}
.redes-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}
.redes-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s, color .2s;
}
.redes-list a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* Loja section titles */
.loja-section-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s4);
}

/* Vitrine items table */
.vitrine-itens h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--s4);
}
.vitrine-itens .table-wrap {
  overflow-x: auto;
}
.vitrine-itens .table th {
  color: var(--ink-mute);
}
.vitrine-itens .table td {
  color: var(--ink);
}

/* Badges for vitrine */
.badge--ativa { background: var(--ok-bg); color: var(--ok-fg); }
.badge--inativa { background: var(--err-bg); color: var(--err-fg); }

/* Check field (checkbox label) */
.check-field {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  cursor: pointer;
  padding: var(--s3);
  background: var(--bg-soft);
  border-radius: var(--r);
  border: 1px solid var(--rule);
}
.check-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--indigo);
  margin-top: 2px;
}
.check-label {
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
}

/* Page specific styles */
body.page-vitrine .section {
  padding-top: var(--s5);
  padding-bottom: var(--s8);
}
body.page-loja .section {
  padding-top: var(--s5);
  padding-bottom: var(--s8);
}
body.page-loja .bg-light {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: var(--s6);
  margin: calc(-1 * var(--s6));
}

@media (max-width: 640px) {
  .loja-header { height: 280px; }
  .loja-header-inner { flex-direction: column; align-items: center; text-align: center; gap: var(--s3); }
  .loja-logo { width: 80px; height: 80px; }
  .loja-nome { font-size: var(--text-2xl); }
  .loja-rating { justify-content: center; }
  .loja-info-grid { grid-template-columns: 1fr; }
}
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.40); }
.wa-float-circle {
  position: absolute; inset: 0; border-radius: 50%;
  pointer-events: none; opacity: 0;
}

/* ---------- Mapa Leaflet no formulário (item-novo) ---------- */
#item-map.map-frame { height: 320px; z-index: 1; }
.map-hint { margin: 8px 0 0; font-size: 12px; color: var(--ink-faint); }

/* ---------- Modal de contato com localização (WhatsApp) ---------- */
.geo-modal {
  position: fixed; inset: 0; z-index: 100000;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 12, 30, 0.72); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); padding: 20px;
}
.geo-modal.is-open { display: flex; }
.geo-modal-card {
  position: relative; width: 100%; max-width: 400px;
  background: var(--paper, #ffffff); border-radius: 20px;
  padding: 26px 22px 20px; text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  animation: geoPop .25s var(--ease, ease);
}
@keyframes geoPop { from { transform: translateY(14px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.geo-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0; font-size: 18px; cursor: pointer;
  color: var(--ink-faint, #64748b); padding: 6px;
}
.geo-modal-title { font-weight: 700; font-size: 17px; margin: 0 0 18px; color: var(--ink, #0f172a); }

/* Radar pulsante */
.geo-radar-wrap { display: grid; place-items: center; margin: 0 0 18px; }
.geo-radar { position: relative; width: 128px; height: 128px; }
.geo-radar-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: geoPulse 1.6s ease-out infinite;
}
.geo-radar.is-pulsing .geo-radar-ring { animation: geoPulse 1.6s ease-out infinite; }
.geo-radar.is-good .geo-radar-ring { animation: none; border-color: #25D366; }
.geo-radar.is-denied .geo-radar-ring { animation: none; border-color: #ef4444; }
.geo-radar-core {
  position: absolute; top: 50%; left: 50%; width: 40px; height: 40px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4ade80, #16a34a);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: geoCore 1.6s ease-out infinite;
}
.geo-radar.is-good .geo-radar-core { animation: none; box-shadow: 0 0 24px rgba(37, 211, 102, 0.8); }
.geo-radar.is-denied .geo-radar-core { background: radial-gradient(circle at 35% 35%, #f87171, #dc2626); animation: none; box-shadow: 0 0 24px rgba(239, 68, 68, 0.6); }
@keyframes geoPulse {
  0%   { transform: scale(.35); opacity: 1; }
  70%  { transform: scale(1.15); opacity: .35; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes geoCore {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 34px rgba(37, 211, 102, 0); }
}
.geo-status { font-weight: 700; font-size: 15px; color: var(--ink, #0f172a); }
.geo-prec { font-size: 12.5px; color: var(--ink-faint, #64748b); line-height: 1.45; margin: 6px 0 16px; }
.geo-modal-cancel {
  display: block; margin: 10px auto 0; background: none; border: 0;
  color: var(--ink-faint, #64748b); font-size: 13px; cursor: pointer;
}

/* ---------- Etiquetas do produto ---------- */
.etiqueta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  font: 700 11px 'Plus Jakarta Sans', 'Roboto Mono', sans-serif;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
}
.etiqueta-pill--verde    { background: linear-gradient(135deg, #16a34a, #22c55e); }
.etiqueta-pill--vermelho { background: linear-gradient(135deg, #dc2626, #ef4444); }
.etiqueta-pill--laranja  { background: linear-gradient(135deg, #d97706, #f59e0b); }

.product-card .etiqueta-pill { position: absolute; bottom: 10px; right: 10px; }
.card-thumb .etiqueta-pill { position: absolute; top: 12px; right: 12px; }
.etiqueta-row { margin: 2px 0 8px; }

/* Seletor de etiqueta (radio) */
.etiqueta-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 480px) { .etiqueta-opts { grid-template-columns: 1fr; } }
.etiqueta-opt { position: relative; cursor: pointer; }
.etiqueta-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.etiqueta-opt span {
  display: block; padding: 12px 10px; border-radius: 14px; text-align: center;
  font: 700 13px 'Plus Jakarta Sans', sans-serif; color: var(--ink, #0f172a);
  border: 1.5px solid var(--line, #e2e8f0); background: #fff;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.etiqueta-opt--verde    input:checked + span { border-color: #16a34a; background: #f0fdf4; box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.etiqueta-opt--vermelho input:checked + span { border-color: #dc2626; background: #fef2f2; box-shadow: 0 0 0 3px rgba(220,38,38,.15); }
.etiqueta-opt--laranja  input:checked + span { border-color: #d97706; background: #fff7ed; box-shadow: 0 0 0 3px rgba(217,119,6,.15); }

/* Formulário: valor com degradê azul e descrição preto negrito */
.item-form input.txt-valor {
  font: 800 20px 'Plus Jakarta Sans', sans-serif;
  background-image: linear-gradient(90deg, #0EA5E9, #2563EB);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  caret-color: #2563EB;
}
.item-form textarea.txt-desc {
  color: #FFFFFF; font-weight: 700; font-size: 15px;
}

/* ============ TEMA PADRÃO: fundo preto · botões azuis · textos brancos ============ */
:root {
  --paper:            #FFFFFF;
  --bg:               #000000;
  --bg-soft:          #0E0E0E;
  --bg-deep:          #000000;
  --ink:              #FFFFFF;
  --ink-soft:         #D1D5DB;
  --ink-mute:         #9CA3AF;
  --ink-faint:        #6B7280;
  --card-blue:        #111111;
  --card-blue-2:      #1A1C20;
  --card-purple:      #3B82F6;
  --card-purple-2:    #1D4ED8;
  --card-orange:      #1A1C20;
  --card-orange-2:    #3B82F6;
  --card-green:       #111111;
  --card-green-2:     #202428;
  --card-black:       #000000;
  --rule:             #24262B;
  --rule-strong:      #374151;
  --indigo-soft:      #1E293B;
  --indigo-line:      #3B82F6;
  --accent-soft:      #1E293B;
  --fg:               #FFFFFF;
  --fg-soft:          #D1D5DB;
  --fg-mute:          #9CA3AF;
}

html, html body, html body.page-fundo, html body.page-vitrine, html body.page-loja {
  background: linear-gradient(180deg, #A0D8EF 0%, #7EC8E0 40%, #3C9E6F 75%, #009C3B 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
}

/* Header / nav / footer / utility */
html body .utility,
html body .site-header,
html body .nav-bar,
html body .site-footer,
html body .drawer { background: #0A0A0A; color: #FFFFFF; }
html body .utility { border-bottom: 1px solid #1F2937; }
html body .utility .links { color: #D1D5DB; }
html body .brand,
html body .main-nav a,
html body .nav-cta,
html body .footer-col h4,
html body .socials a,
html body .footer-bottom,
html body .footer-brand p,
html body .footer-col a { color: #FFFFFF; }
html body .main-nav a[aria-current="page"],
html body .main-nav a:hover,
html body .footer-col a:hover { color: #60A5FA; }

/* Search + botão de busca */
html body .search input {
  background: #111111; color: #FFFFFF;
  border-color: #374151;
}
html body .search input:focus { background: #151515; border-color: #3B82F6; }
html body .search input::placeholder { color: #6B7280; }
html body .search button { background: #3B82F6; color: #FFFFFF; }
html body .search button:hover { background: #1D4ED8; }

/* Ícones */
html body .icon-btn { background: #151515; color: #FFFFFF; }
html body .icon-btn:hover { background: #1E293B; color: #60A5FA; }
html body .icon-btn--cart { background: #151515; color: #FFFFFF; }
html body .icon-btn--cart:hover { background: #3B82F6; color: #FFFFFF; }

/* Links gerais */
html body a { color: #FFFFFF; }
html body a:hover { color: #60A5FA; }
html body h1, html body h2, html body h3, html body h4, html body h5 { color: #FFFFFF; }
html body p, html body .muted, html body small, html body .card-price { color: #E5E7EB; }
html body .card-price { background-image: linear-gradient(90deg, #60A5FA, #2563EB); -webkit-background-clip: text; background-clip: text; }

/* Botões — azul padrão */
html body .btn--ink,
html body .btn--paper,
html body .btn--ghost,
html body .promo-input button,
html body .newsletter-form .btn,
html body .product-card .btn,
html body .compact-card .btn { background: #3B82F6; color: #FFFFFF; border-color: #3B82F6; }
html body .btn--ink:hover,
html body .btn--paper:hover,
html body .btn--ghost:hover,
html body .promo-input button:hover,
html body .newsletter-form .btn:hover,
html body .product-card .btn:hover,
html body .compact-card .btn:hover { background: #1D4ED8; color: #FFFFFF; border-color: #1D4ED8; }
html body .btn--indigo,
html body .all-cats { background: #3B82F6; color: #FFFFFF; }
html body .btn--indigo:hover,
html body .all-cats:hover { background: #1D4ED8; color: #FFFFFF; }
html body .btn--pill-ghost-onDark { color: #FFFFFF; border-color: #FFFFFF; }
html body .btn--pill-ghost-onDark:hover { background: #FFFFFF; color: #000000; }
html body .pagination .pg { color: #FFFFFF; border-color: #374151; }

/* Cards / superfícies */
html body .card-product,
html body .product-card,
html body .compact-card,
html body .cat-tile,
html body .panel,
html body .map-box,
html body .auth-card,
html body .purchase-card,
html body .cart-row,
html body .cart-summary,
html body .contact-info,
html body .contact-form,
html body .shop-toolbar,
html body .filter-block,
html body .cat-jump--card,
html body .vitrine-form-card,
html body .loja-info-item { background: #111111; border-color: #1F2937; }
html body .card-product { background: rgba(17,17,17,0.92); border-color: #1F2937; }
html body .product-card .name,
html body .compact-card .name,
html body .cat-tile .name,
html body .cart-row .info .name,
html body .cart-row .subtotal,
html body .cart-line.is-total { color: #FFFFFF; }
html body .product-card .wishlist,
html body .option-pills button,
html body .color-swatches button { background: #151515; color: #FFFFFF; border-color: #374151; }
html body .product-card .wishlist:hover { color: #3B82F6; }

/* Tabs / filtros / range */
html body .tabs { border-bottom-color: #24262B; }
html body .tab, html body .crumbs, html body .crumbs .sep { color: #9CA3AF; }
html body .tab.is-active { color: #60A5FA; }
html body .filter-block label,
html body .filter-block label::before { color: #E5E7EB; }
html body .range-bar { background: #2A2D33; }
html body .shop-toolbar select,
html body .filters select,
html body .qty input,
html body .cart-row .qty input { background: #151515; color: #FFFFFF; border-color: #374151; }

/* Formulários */
html body .field label { color: #E5E7EB; }
html body .field input,
html body .field select,
html body .field textarea,
html body .newsletter-form input,
html body .promo-input input { background: #151515; color: #FFFFFF; border-color: #374151; }
html body .field input::placeholder,
html body .newsletter-form input::placeholder { color: #6B7280; }
html body .field input:focus,
html body .field select:focus,
html body .field textarea:focus { border-color: #3B82F6; }

/* Detalhe do produto / galeria / página do item */
html body .gallery-main,
html body .gallery-thumbs button { background: #111111; border-color: #1F2937; }
html body .pdp-info p.desc,
html body .product-desc { color: #FFFFFF; }
html body .pdp-features .pf .ic { background: #1E293B; }

/* Cart empty / newsletter section */
html body .cart-layout, html body .section { background: transparent; }
html body .newsletter { background: rgba(0,0,0,0.4); }

/* Stock/avaliacoes */
html body .product-card .stock,
html body .cart-row .info .variant,
html body .cart-line,
html body .product-card .stars .count { color: #9CA3AF; }

/* Categoria / condição — botões azuis com texto branco e sombra 35% preto */
html body .cat-jump .cat-btn {
  background: #3B82F6;
  color: #FFFFFF;
  border: 1px solid #3B82F6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
html body .cat-jump .cat-btn:hover,
html body .cat-jump .cat-btn.is-active {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
html body .cat-jump .cat-btn .cnt {
  background: rgba(255,255,255,0.25);
  color: #FFFFFF;
}
html body .cat-jump--card .cat-btn,
html body .cat-jump--card .cat-btn.is-active,
html body .cat-jump--card .cat-btn:hover {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
html body .cat-jump--card .cat-btn .cnt,
html body .cat-jump .cat-btn:hover .cnt,
html body .cat-jump .cat-btn.is-active .cnt { background: rgba(255,255,255,0.25); color: #FFFFFF; }

