/* ═══════════════════════════════════════════════════════════════
   PTSPORTS — Design inspirado em A Fábrica das Tailandesas
   Bold, desportivo, laranja + preto, Barlow Condensed
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* PTSports brand — novo */
  --primary:   #111111;
  --brand:     #F5701C;
  --brand2:    #d45e10;
  --brand-bg:  rgba(245,112,28,.08);
  /* Neutros */
  --black:     #111111;
  --white:     #ffffff;
  --gray-50:   #f9f9f9;
  --gray-100:  #f2f2f2;
  --gray-200:  #e5e5e5;
  --gray-300:  #d0d0d0;
  --gray-500:  #888888;
  --gray-700:  #444444;
  --red:       #C8102E;
  --green:     #22c55e;
  /* Aliases */
  --bg:        #f9f9f9;
  --surface:   #ffffff;
  --border:    #e5e5e5;
  --text:      #111111;
  --text2:     #444444;
  --text3:     #888888;
  --shadow:    0 2px 12px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --r:         3px;
  --transition: .18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — laranja bold
   ══════════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 0;
  text-align: center;
  overflow: hidden;
}
.ticker-bar span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════════
   HEADER — branco, bordo inferior preto bold
   ══════════════════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 3px solid var(--black);
  overflow: visible;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  min-width: 0;
  overflow: visible;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--black);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--brand); }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: 68px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* Search bar */
.nav-search {
  flex: 1;
  max-width: 460px;
  margin: 0 auto;
  min-width: 0;
}
.nav-search-form {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 2px solid var(--black);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
}
.nav-search-form:focus-within {
  border-color: var(--brand);
  background: var(--white);
}
.nav-search-input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  background: transparent;
  font-size: .88rem;
  font-family: 'Barlow', sans-serif;
  color: var(--black);
  outline: none;
}
.nav-search-input::placeholder { color: var(--gray-500); }
.nav-search-btn {
  padding: 9px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-search-btn:hover { background: var(--brand); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-badge-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-badge-btn .icon { font-size: 1.25rem; }
.nav-badge-btn:hover { color: var(--brand); background: var(--gray-50); }
.badge-count {
  position: absolute;
  top: 4px; right: 6px;
  min-width: 18px; height: 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  font-size: .65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   DROPDOWN MENU
   ══════════════════════════════════════════════════════════════ */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 2px solid var(--black);
  border-top: 3px solid var(--brand);
  box-shadow: 4px 4px 0 rgba(0,0,0,.1);
  list-style: none;
  z-index: 600;
  padding: 6px 0;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  height: auto;
  border-bottom: none;
  margin-bottom: 0;
}
.nav-dropdown li a:hover {
  background: var(--brand);
  color: #fff;
  border-bottom: none;
}
.nav-dropdown-divider { height: 1px; background: var(--gray-200); margin: 4px 0; }
.nav-arrow { font-size: .65rem; margin-left: 2px; transition: var(--transition); }
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* ══════════════════════════════════════════════════════════════
   HERO — azul escuro, tipografia grande
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(130deg, #0d1a2e 0%, #001435 50%, #0d1a2e 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: block;
}
.hero-slide {
  background: linear-gradient(130deg, #0d1a2e 0%, #001435 50%, #0d1a2e 100%);
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(245,112,28,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 460px;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.hero-left {
  padding: 60px 60px 60px 40px;
  position: relative;
  z-index: 1;
}
.hero-right {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .9;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title .accent { color: var(--brand); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  max-width: 400px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--brand);
  color: #fff;
  padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--r);
  transition: var(--transition);
  border: 2px solid var(--brand);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--brand2); border-color: var(--brand2); transform: translateY(-1px); }
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.45);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ══════════════════════════════════════════════════════════════
   BENEFITS — fundo preto, bold
   ══════════════════════════════════════════════════════════════ */
.benefits-bar {
  background: var(--black);
  border-bottom: 3px solid var(--brand);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.08);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; }
.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  line-height: 1.2;
}
.benefit-text { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   CATEGORY FILTER PILLS
   ══════════════════════════════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 71px;
  z-index: 100;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-pill:hover { border-color: var(--black); color: var(--black); }
.cat-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section { padding: 52px 0; }
.section-alt { background: var(--gray-50); }
.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.sec-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
}
.sec-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid var(--black);
  background: none;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: var(--r);
}
.sec-link:hover { background: var(--black); color: var(--white); gap: 10px; }

/* Store header */
.store-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.store-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.league-pills {
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding: 2px 0;
}
.league-pills::-webkit-scrollbar { display: none; }
.league-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  border: 1.5px solid var(--gray-200); background: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0; color: var(--gray-700);
}
.league-pill:hover { border-color: var(--black); color: var(--black); }
.league-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

.filter-select, .sort-select {
  padding: 7px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-family: 'Barlow', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus, .sort-select:focus { outline: none; border-color: var(--black); }
.results-count {
  font-size: .78rem; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .04em; margin-left: auto;
}
.clear-btn {
  padding: 7px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--r);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--red); background: var(--white); transition: var(--transition); cursor: pointer;
}
.clear-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS — hover overlay agressivo
   ══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-width: 0;
  width: 100%;
}
.product-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.product-card:hover {
  border-color: var(--black);
  box-shadow: 4px 4px 0 rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.product-img {
  position: relative;
  background: var(--gray-100);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}

/* Hover overlay — desliza de baixo */
.prod-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  transform: translateY(100%);
  transition: transform .22s ease;
}
.product-card:hover .prod-overlay { transform: translateY(0); }

/* Badges */
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 9px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 2;
}
.prod-badge-new  { background: var(--black); color: #fff; }
.prod-badge-sale { background: var(--red);   color: #fff; }
.prod-badge-hot  { background: var(--brand); color: #fff; }

/* Wishlist */
.wish-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  opacity: 0; transform: scale(.85);
  transition: var(--transition);
  border: none; cursor: pointer; z-index: 2;
}
.product-card:hover .wish-btn { opacity: 1; transform: scale(1); }

/* Product info */
.product-info {
  padding: 12px 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prod-league {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.prod-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.prod-type { font-size: .75rem; color: var(--gray-500); }
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.price-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
}
.price-old {
  font-size: .8rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 6px;
}
.prod-colors { display: flex; gap: 4px; }
.prod-color-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 24px;
  border-top: 3px solid var(--brand);
}
.review-stars { color: #f5a623; font-size: .95rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--black); margin-bottom: 8px; }
.review-text { font-size: .85rem; color: var(--gray-700); line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.review-name { font-size: .82rem; font-weight: 700; color: var(--black); }
.review-verified { font-size: .7rem; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.review-date { font-size: .72rem; color: var(--gray-500); margin-left: auto; }

/* ══════════════════════════════════════════════════════════════
   TRUST SECTION — preto com laranja
   ══════════════════════════════════════════════════════════════ */
.trust-section { background: var(--black); padding: 28px 0; }
.trust-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); }
.trust-icon { font-size: 1.3rem; }
.trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: #0d1120;
  color: rgba(255,255,255,.7);
  padding: 52px 0 24px;
  margin-top: 0;
  border-top: 3px solid var(--brand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 44px; width: auto; max-width: 160px;
  object-fit: contain; margin-bottom: 16px; display: block;
}
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.8rem; color: #fff;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px;
  display: none;
}
.footer-logo-text span { color: var(--brand); }
.footer-about { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: var(--r);
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; transition: var(--transition);
  color: rgba(255,255,255,.6); border: none; text-decoration: none; cursor: pointer;
}
.footer-social-btn:hover { background: var(--brand); color: #fff; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 10px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .84rem; color: rgba(255,255,255,.45);
  transition: var(--transition); display: inline-block;
}
.footer-col ul a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-payments { display: flex; gap: 6px; }
.footer-pay-badge {
  padding: 4px 10px; background: rgba(255,255,255,.06);
  border-radius: 2px; font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════════
   SEARCH MODAL
   ══════════════════════════════════════════════════════════════ */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px); z-index: 1000;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 80px;
}
.search-modal {
  background: var(--white); width: 100%; max-width: 600px;
  padding: 24px; border-radius: var(--r); box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brand);
}
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--gray-200); padding: 10px 16px;
  transition: var(--transition);
}
.search-input-wrap:focus-within { border-color: var(--black); }
.search-icon { font-size: 1.1rem; color: var(--gray-500); }
.search-input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  font-family: 'Barlow', sans-serif; color: var(--black); background: none;
}

/* ══════════════════════════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 999;
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw;
  height: 100vh; background: var(--white); box-shadow: var(--shadow-lg);
  z-index: 1000; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  border-left: 3px solid var(--black);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black);
}
.cart-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .08em;
  color: #fff;
}
.cart-close {
  font-size: 1.3rem; color: rgba(255,255,255,.7); transition: var(--transition);
  background: none; border: none; cursor: pointer;
}
.cart-close:hover { color: var(--brand); }
.cart-body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  max-height: calc(100vh - 180px);
}
.cart-foot {
  padding: 20px 24px; border-top: 1px solid var(--gray-200);
  background: var(--gray-50); flex-shrink: 0;
}
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.cart-item-img {
  width: 72px; height: 72px; background: var(--gray-100);
  overflow: hidden; flex-shrink: 0; border: 1px solid var(--gray-200);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; font-size: .88rem; color: var(--black); margin-bottom: 4px; }
.cart-item-meta { font-size: .76rem; color: var(--gray-500); }
.cart-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.05rem; color: var(--black); margin-top: 6px;
}
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty-btn {
  width: 28px; height: 28px; border: 1.5px solid var(--gray-300); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: var(--transition); color: var(--gray-700); background: none; cursor: pointer;
}
.cart-qty-btn:hover { border-color: var(--black); color: var(--black); background: var(--black); color: #fff; }
.cart-qty-n { font-weight: 800; font-size: .9rem; min-width: 24px; text-align: center; }
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; margin-bottom: 14px;
}
.checkout-btn {
  width: 100%; padding: 14px; background: var(--black); color: #fff;
  border: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em; transition: var(--transition); cursor: pointer;
  border-radius: var(--r);
}
.checkout-btn:hover { background: var(--brand); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════════════════════════════════════ */
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0;
}
.gallery-main {
  aspect-ratio: 1/1; background: var(--gray-100); overflow: hidden; margin-bottom: 10px;
  border: 1px solid var(--gray-200);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 68px; height: 68px; background: var(--gray-100); overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--brand); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-league {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px;
}
.detail-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--black);
  line-height: 1.1; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .02em;
}
.detail-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.detail-price-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--black);
}
.detail-price-old { font-size: 1rem; color: var(--gray-500); text-decoration: line-through; }
.size-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.size-btn {
  padding: 9px 16px; border: 2px solid var(--gray-300); border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  transition: var(--transition); color: var(--black); background: var(--white); cursor: pointer;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); border-color: var(--black); color: #fff; }
.size-btn.unavailable { opacity: .3; cursor: not-allowed; }
.custom-section {
  background: var(--gray-50); border: 1px solid var(--gray-200); padding: 18px; margin-bottom: 20px;
}
.custom-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--black); margin-bottom: 14px;
}
.custom-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-field label { display: block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-700); margin-bottom: 5px; }
.form-field input {
  width: 100%; padding: 9px 12px; border: 1.5px solid var(--gray-300); border-radius: var(--r);
  font-size: .88rem; color: var(--black); background: var(--white); font-family: 'Barlow', sans-serif;
  transition: var(--transition);
}
.form-field input:focus { outline: none; border-color: var(--black); }
.add-cart-btn {
  width: 100%; padding: 15px; background: var(--black); color: #fff; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 10px; border-radius: var(--r); cursor: pointer;
}
.add-cart-btn:hover { background: var(--brand); }
.add-cart-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════════
   MOBILE / HAMBURGER
   ══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; width: 32px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.nav-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 85%; max-width: 320px;
  height: 100vh; background: var(--white); z-index: 998;
  box-shadow: var(--shadow-lg); flex-direction: column; padding: 80px 24px 32px;
  gap: 2px; overflow-y: auto; transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  border-right: 3px solid var(--black);
}
.nav-mobile-menu.open { transform: translateX(0); display: flex; }
.nav-mobile-menu a {
  padding: 12px 16px; border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--black); text-decoration: none; display: block;
  text-transform: uppercase; letter-spacing: .06em; transition: var(--transition);
}
.nav-mobile-menu a:hover { background: var(--black); color: #fff; }
.nav-mob-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 997;
}
.nav-mob-overlay.open { display: block; }
.mob-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gray-500); padding: 14px 16px 6px;
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px;
  background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); z-index: 300;
  transition: var(--transition); text-decoration: none; border: none; cursor: pointer;
}
.fab-wa:hover { transform: scale(1.08); }

/* Alerts */
.alert { padding: 11px 16px; font-size: .85rem; font-weight: 600; margin-bottom: 14px; }
.alert-success { background: #f0faf1; color: #15803d; border-left: 3px solid var(--brand); }
.alert-error { background: #fef2f2; color: #dc2626; border-left: 3px solid var(--red); }

/* Empty state */
.empty-state { text-align: center; padding: 72px 24px; color: var(--gray-500); }
.empty-icon { font-size: 2.5rem; margin-bottom: 14px; }
.empty-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.2rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray-700); margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 6px; align-items: center; font-size: .75rem;
  color: var(--gray-500); margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: .04em; font-weight: 600;
}
.breadcrumb a { color: var(--gray-500); transition: var(--transition); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { color: var(--gray-300); }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-btn {
  width: 100%; padding: 16px 0; display: flex; justify-content: space-between;
  align-items: center; font-weight: 700; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--black); background: none; border: none; cursor: pointer;
}
.accordion-body { padding: 0 0 16px; font-size: .85rem; color: var(--gray-700); line-height: 1.7; display: none; }
.accordion-body.open { display: block; }

/* ══════════════════════════════════════════════════════════════
   LIGAS GRID
   ══════════════════════════════════════════════════════════════ */
.ligas-carousel {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.ligas-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-name: ligas-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.ligas-carousel:hover .ligas-track {
  animation-play-state: paused;
}
@keyframes ligas-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.liga-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 0 0 auto;
  width: 190px;
}
.liga-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(0,0,0,.08);
}
.liga-flag { font-size: 2.5rem; line-height: 1; }
.liga-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
}
.liga-sub { font-size: .75rem; color: var(--gray-500); }
.liga-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--brand-bg);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════════════════════
   CLUBES GRID
   ══════════════════════════════════════════════════════════════ */
.clubes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Nav dropdown Ligas */
.nav-dropdown-ligas { min-width: 260px; }
.nav-dropdown-ligas .liga-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; font-size: .84rem; font-weight: 600;
  color: var(--gray-700); cursor: pointer; transition: var(--transition);
  border: none; background: none; width: 100%; text-align: left;
  text-transform: none; letter-spacing: 0; text-decoration: none;
}
.nav-dropdown-ligas .liga-item:hover { background: var(--brand); color: #fff; }
.nav-dropdown-ligas .liga-item .flag { font-size: 1.1rem; width: 24px; text-align: center; }
.nav-dropdown-ligas .liga-item .name { flex: 1; }
.nav-dropdown-ligas .liga-item .arrow { color: var(--gray-300); font-size: .7rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-search { max-width: 300px; }
  .clubes-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-search { max-width: 200px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 48px 24px; }
  .hero { min-height: 400px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .clubes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 14px; }
  .nav-search { display: none; }
  .hero-title { font-size: 2.4rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
  .trust-grid { gap: 20px; justify-content: flex-start; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .clubes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .liga-card { width: 150px; }
}

/* ══════════════════════════════════════════════════════════════
   SUBCATEGORIA CARDS — página de clube (3 níveis)
   ══════════════════════════════════════════════════════════════ */
.subcats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.subcat-card {
  position: relative;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.subcat-card:hover {
  border-color: var(--brand);
  box-shadow: 4px 4px 0 rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.subcat-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subcat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.subcat-card:hover .subcat-card-img img { transform: scale(1.06); }
.subcat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 50%);
}
.subcat-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.subcat-card-emoji { font-size: 1.4rem; }
.subcat-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
}
.subcat-card-count {
  font-size: .78rem;
  color: var(--gray-500);
}
.subcat-card-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand);
  margin-top: 6px;
  transition: var(--transition);
}
.subcat-card:hover .subcat-card-arrow { letter-spacing: .1em; }

@media (max-width: 900px) {
  .subcats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .subcats-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE FIXES — correcções específicas para dispositivos móveis
   ══════════════════════════════════════════════════════════════ */

/* Evitar overflow horizontal */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ── ANNOUNCEMENT BAR ── */
@media (max-width: 600px) {
  .ticker-bar { font-size: .7rem; padding: 7px 12px; }
  .ticker-bar span { gap: 28px; }
}

/* ── HEADER ── */
@media (max-width: 600px) {
  .nav-inner { height: 56px; padding: 0 14px; gap: 12px; }
  .nav-logo img { height: 36px; }
  .nav-badge-btn { padding: 6px 8px; font-size: .65rem; gap: 1px; }
  .nav-badge-btn .icon { font-size: 1.1rem; }
  .nav-actions { gap: 0; }
  .badge-count { top: 2px; right: 4px; min-width: 16px; height: 16px; font-size: .6rem; }
}

/* ── HERO ── */
@media (max-width: 600px) {
  .hero { min-height: 0; }
  .hero-slide { min-height: 0; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; }
  .hero-left { padding: 32px 20px 28px; }
  .hero-eyebrow { font-size: .68rem; padding: 3px 10px; margin-bottom: 10px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); margin-bottom: 10px; }
  .hero-sub { font-size: .88rem; margin-bottom: 20px; }
  .hero-btns { gap: 8px; flex-wrap: wrap; }
  .btn-hero-primary, .btn-hero-secondary { padding: 11px 18px; font-size: .88rem; width: 100%; text-align: center; justify-content: center; }
}

/* ── BENEFITS BAR ── */
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-item { padding: 12px 14px; gap: 8px; }
  .benefit-icon { font-size: 1.2rem; }
  .benefit-title { font-size: .75rem; }
  .benefit-text { font-size: .65rem; }
}

/* ── SECTIONS ── */
@media (max-width: 600px) {
  .section { padding: 28px 0; }
  .sec-header { margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
  .sec-title { font-size: 1.4rem; }
  .sec-eyebrow { font-size: .65rem; }
  .sec-link { font-size: .72rem; padding: 6px 12px; }
}

/* ── PRODUCT GRID ── */
@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .prod-name { font-size: .8rem; }
  .price-new { font-size: 1rem; }
  .product-info { padding: 8px 8px 12px; }
}

/* ── LIGAS CAROUSEL ── */
@media (max-width: 600px) {
  .liga-card { padding: 16px 10px; gap: 6px; width: 160px; }
  .liga-flag { font-size: 2rem; }
  .liga-name { font-size: .82rem; }
}

/* ── CLUBES GRID ── */
@media (max-width: 600px) {
  .clubes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── SUBCATS GRID ── */
@media (max-width: 600px) {
  .subcats-grid { grid-template-columns: 1fr; gap: 12px; }
  .subcat-card-img { aspect-ratio: 16/9; }
}

/* ── REVIEWS ── */
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── TRUST SECTION ── */
@media (max-width: 600px) {
  .trust-grid { gap: 14px; padding: 0 14px; justify-content: flex-start; flex-wrap: wrap; }
  .trust-item { flex: 1 1 40%; }
  .trust-label { font-size: .75rem; }
}

/* ── FOOTER ── */
@media (max-width: 600px) {
  footer { padding: 32px 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 14px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 12px 14px; }
  .footer-payments { flex-wrap: wrap; justify-content: center; }
  .footer-about { max-width: 100%; }
  .footer-logo-img { height: 36px; }
}

/* ── CART DRAWER ── */
@media (max-width: 600px) {
  .cart-drawer { width: 100vw; border-left: none; border-top: 3px solid var(--black); }
  .cart-head { padding: 16px 20px; }
}

/* ── STORE HEADER (filtros) ── */
@media (max-width: 600px) {
  .store-header-inner { flex-wrap: wrap; gap: 8px; }
  .results-count { order: -1; }
  .filter-select, .sort-select { font-size: .78rem; padding: 6px 10px; }
}

/* ── DETAIL PAGE ── */
@media (max-width: 600px) {
  .detail-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
  .detail-name { font-size: 1.6rem; }
  .detail-price-main { font-size: 1.8rem; }
  .size-grid { gap: 6px; }
  .size-btn { padding: 8px 12px; font-size: .85rem; }
}

/* ── CHECKOUT ── */
@media (max-width: 900px) {
  #co-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .co-form-2col { grid-template-columns: 1fr !important; }
}

/* ── HAMBURGER MENU ── */
.nav-mobile-menu a { font-size: .92rem; }


/* ══════════════════════════════════════════════════════════════
   DETAIL PAGE RESPONSIVE — ficha de produto
   ══════════════════════════════════════════════════════════════ */
.detail-grid-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.detail-gallery {
  position: sticky;
  top: 80px;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 700px) {
  .detail-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .detail-gallery {
    position: static;
  }
  .grid-2col {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — uma linha no mobile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .announcement, .ticker-bar {
    font-size: .65rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 10px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   PATCHES — uma coluna no mobile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .patch-btn {
    width: 100% !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE MENU — melhorias visuais
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-mobile-menu {
    padding-top: 60px !important;
  }
  .nav-mobile-menu a {
    font-size: .95rem;
    padding: 13px 20px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-menu a:last-child {
    border-bottom: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   STORE FILTERS — mobile wrap fix
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .store-header { padding: 10px 0; }
  .store-header-inner {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }
  /* Categoria pills — wrap em múltiplas linhas */
  .store-header-inner > div:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }
  .cat-pill {
    font-size: .72rem;
    padding: 5px 10px;
    flex-shrink: 0;
  }
  /* Linha 2: dropdowns + pesquisa */
  .store-header-inner > div:last-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .filter-select, .sort-select {
    flex: 1;
    min-width: 100px;
    font-size: .78rem;
    padding: 7px 8px;
  }
  .results-count {
    display: none;
  }
  /* Pesquisa full width */
  #store-search-input {
    width: 100% !important;
  }
}
