/* ================================================
   RUA SPORTS — ESTILOS PRINCIPAIS
   Tema: Preto e Branco
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --dark4: #2a2a2a;
  --mid: #555555;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --border: #dddddd;
  --off-white: #f5f5f5;
  --white: #ffffff;
  --accent: #000000;
  --accent-hover: #333333;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.18);
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f0f0f0;
  color: var(--black);
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden { display: none !important; }

/* ==================== TOP BAR ==================== */
.topbar {
  background: var(--black);
  color: var(--gray-light);
  font-size: 12px;
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar__links { display: flex; gap: 16px; }
.topbar__links a { color: var(--gray-light); transition: color 0.2s; }
.topbar__links a:hover { color: var(--white); }

/* ==================== HEADER ==================== */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__icon { font-size: 28px; line-height: 1; }
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.logo__sub { font-size: 9px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; }

/* SEARCH */
.search-bar {
  flex: 1;
  display: flex;
  max-width: 580px;
  background: #1e1e1e;
  border: 1.5px solid #2a2a2a;
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--white); }
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 18px;
  color: var(--white);
  font-size: 14px;
}
.search-bar input::placeholder { color: #555; }
.search-btn {
  background: var(--white);
  border: none;
  color: var(--black);
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--gray-light); }

/* ACTIONS */
.header__actions { display: flex; gap: 4px; flex-shrink: 0; }
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  color: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 11px;
  position: relative;
}
.action-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ==================== NAVBAR ==================== */
.navbar { background: #161616; border-top: 1px solid #222; }
.navbar__inner {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}
.navbar__inner::-webkit-scrollbar { display: none; }
.nav-link {
  color: #888;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--white); border-bottom-color: var(--white); }
.nav-link.active { color: var(--white); border-bottom-color: var(--white); }
.ofertas-link { color: #ccc !important; font-style: italic; }
.ofertas-link:hover, .ofertas-link.active { border-bottom-color: var(--white) !important; color: var(--white) !important; }

/* ==================== HERO CAROUSEL ==================== */
.hero-carousel {
  background: var(--black);
  padding: 16px 5%;
}

.carousel-frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 40px rgba(0,0,0,0.6);
}

.carousel-track {
  position: relative;
  width: 100%;
  background: var(--black);
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
}
.carousel-slide.active { display: block; }

.carousel-slide img {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: fill;
}


/* Setas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.carousel-arrow--prev { left: 32px; }
.carousel-arrow--next { right: 32px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.c-dot.active { background: var(--white); width: 28px; border-radius: 4px; }

/* Barra de progresso */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width linear;
}

@media (max-width: 768px) {
  .carousel-arrow { width: 36px; height: 36px; font-size: 20px; }
  .carousel-arrow--prev { left: 10px; }
  .carousel-arrow--next { right: 10px; }
  .carousel-frame::before { inset: 10px; }
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ==================== QUICK BANNERS ==================== */
.quick-banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px auto;
}
.quick-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
}
.quick-banner:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.quick-banner--green { background: var(--dark3); border: 1px solid #333; }
.quick-banner--orange { background: var(--dark2); border: 1px solid #2a2a2a; }
.quick-banner--blue { background: var(--dark3); border: 1px solid #333; }
.quick-banner--red { background: var(--dark2); border: 1px solid #2a2a2a; }
.quick-banner__icon { font-size: 32px; }
.quick-banner strong { display: block; font-size: 15px; font-weight: 700; }
.quick-banner span { font-size: 12px; color: var(--gray); }

/* ==================== PRODUCTS SECTION ==================== */
.products-section { padding: 20px 0 60px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
}
.section-sub { color: var(--gray); font-size: 14px; margin-top: 4px; }
.sort-bar { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.sort-bar select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.sort-bar select:focus { border-color: var(--black); }

/* PILLS */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pill {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: var(--white);
  transition: var(--transition);
}
.pill:hover { border-color: var(--black); color: var(--black); }
.pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  border: 1px solid #eee;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #ccc;
}
.product-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.badge--novo { background: var(--black); color: var(--white); }
.badge--oferta { background: var(--black); color: var(--white); border: 1px solid #444; }
.badge--destaque { background: var(--dark3); color: var(--white); }
.badge--kit { background: var(--mid); color: var(--white); }

.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #eee;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card__wishlist:hover { transform: scale(1.15); background: var(--off-white); }
.product-card__wishlist.active { color: #333; }

.product-card__body { padding: 14px 16px 16px; }
.product-card__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid);
  margin-bottom: 4px;
}
.product-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__colors {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.15s;
}
.color-dot:hover { transform: scale(1.3); }
.product-card__pricing { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.price-old { font-size: 12px; color: var(--gray); text-decoration: line-through; }
.price-now { font-size: 20px; font-weight: 800; color: var(--black); }
.price-pix {
  font-size: 11px;
  color: var(--dark);
  font-weight: 600;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}
.price-installment { font-size: 11px; color: var(--gray); width: 100%; }
.product-card__actions { display: flex; gap: 8px; }
.btn-cart {
  flex: 1;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--white); color: var(--black); }
.btn-detail {
  background: var(--off-white);
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-detail:hover { background: var(--border); }

/* Stars */
.stars { color: #333; font-size: 12px; margin-bottom: 6px; }
.stars span { color: var(--gray); font-size: 11px; margin-left: 4px; }

/* NO RESULTS */
.no-results {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.no-results__icon { font-size: 64px; margin-bottom: 16px; }
.no-results h3 { font-size: 22px; margin-bottom: 8px; }
.no-results p { color: var(--gray); margin-bottom: 20px; }

/* ==================== CUSTOM BANNER ==================== */
.custom-banner {
  background: var(--dark);
  padding: 60px 0;
  margin: 20px 0;
}
.custom-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.custom-banner__text { max-width: 520px; }
.custom-banner__tag {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.custom-banner__text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.custom-banner__text p {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.custom-banner__img { flex-shrink: 0; }
.custom-banner__jerseys {
  display: flex;
  align-items: center;
}
.mini-jersey {
  width: 80px;
  height: 100px;
  border-radius: 12px;
  margin-left: -10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid #333;
}
.mj-1 { background: linear-gradient(145deg, #1a1a1a, #000); transform: rotate(-8deg); }
.mj-2 { background: linear-gradient(145deg, #444, #111); transform: rotate(0deg); z-index: 2; width: 90px; height: 112px; }
.mj-3 { background: linear-gradient(145deg, #2a2a2a, #000); transform: rotate(8deg); }

/* ==================== ADVANTAGES ==================== */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px;
}
.advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.advantage:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bbb; }
.advantage__icon { font-size: 36px; margin-bottom: 10px; }
.advantage strong { font-size: 15px; color: var(--black); margin-bottom: 4px; }
.advantage span { font-size: 12px; color: var(--gray); }

/* ==================== FOOTER ==================== */
.footer { background: var(--dark); color: var(--gray-light); padding: 60px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p {
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  padding: 7px 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50px;
  font-size: 12px;
  color: #888;
  transition: var(--transition);
}
.social-link:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: #555;
  font-size: 13px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.payment-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-icon {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.security-badges { display: flex; flex-direction: column; gap: 6px; }
.sec-badge { font-size: 12px; color: var(--gray-light); display: flex; align-items: center; gap: 4px; }
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  padding: 18px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #333;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== CART PANEL ==================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  backdrop-filter: blur(3px);
}
.cart-panel {
  background: var(--white);
  width: 100%;
  max-width: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.cart-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  background: var(--dark);
  color: var(--white);
}
.cart-panel__header h3 { font-size: 18px; font-weight: 700; }
.cart-close {
  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}
.cart-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.cart-panel__items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 12px;
  color: var(--gray);
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item__img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item__size { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.cart-item__pricing { display: flex; align-items: center; justify-content: space-between; }
.cart-item__price { font-size: 15px; font-weight: 800; color: var(--black); }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.cart-item__remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}
.cart-item__remove:hover { color: var(--black); }
.cart-panel__footer {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
}
.cart-total strong { font-size: 22px; color: var(--black); font-weight: 800; }

/* ==================== PRODUCT MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.product-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.product-modal__close:hover { background: var(--black); color: var(--white); }
.product-modal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-modal__img {
  font-size: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 20px 0 0 20px;
  min-height: 360px;
}
.product-modal__info { padding: 32px 28px 32px 20px; }
.product-modal__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid);
  margin-bottom: 8px;
}
.product-modal__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-modal__stars { color: #555; margin-bottom: 16px; font-size: 14px; }
.product-modal__price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; margin-bottom: 4px; }
.product-modal__price-now { font-size: 34px; font-weight: 900; color: var(--black); margin-bottom: 4px; }
.product-modal__price-pix {
  font-size: 13px;
  color: var(--dark);
  font-weight: 700;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}
.product-modal__installment { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.product-modal__sizes h4, .product-modal__color-sel h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.size-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.size-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.modal-color-dots { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.modal-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.15s;
}
.modal-color-dot:hover { transform: scale(1.2); }
.modal-color-dot.active { border-color: var(--black); }
.modal-add-cart {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.modal-add-cart:hover { background: var(--white); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ==================== LOGIN MODAL ==================== */
.login-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 32px;
  animation: zoomIn 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.modal-close:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.login-modal__header { text-align: center; margin-bottom: 24px; }
.login-modal__header h2 { font-size: 22px; font-weight: 800; margin: 8px 0 4px; }
.login-modal__header p { color: var(--gray); font-size: 14px; }
.login-tabs { display: flex; gap: 0; margin-bottom: 20px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
.login-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
  color: var(--gray);
  transition: var(--transition);
}
.login-tab.active { background: var(--black); color: var(--white); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: #555; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus { border-color: var(--black); }
.forgot-link { font-size: 12px; color: var(--mid); display: block; text-align: right; }
.forgot-link:hover { color: var(--black); }

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: toastIn 0.3s ease;
  white-space: nowrap;
  border: 1px solid #333;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==================== PRODUCT IMAGE BACKGROUNDS ==================== */
.bg-fardamento-verde { background: #f0f0f0; }
.bg-fardamento-azul  { background: #eeeeee; }
.bg-fardamento-vermelho { background: #f0f0f0; }
.bg-fardamento-preto { background: #e8e8e8; }
.bg-fardamento-amarelo { background: #f0f0f0; }
.bg-bolsa   { background: #eeeeee; }
.bg-baiderao { background: #f0f0f0; }
.bg-kit     { background: #e8e8e8; }

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1024px) {
  .quick-banners { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header__inner { gap: 12px; padding: 10px 16px; }
  .search-bar { max-width: none; }
  .topbar__links { display: none; }
  .hero__slide { min-height: 360px; padding: 40px 16px; }
  .hero__img { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quick-banners { grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px auto; }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .product-modal__inner { grid-template-columns: 1fr; }
  .product-modal__img { min-height: 220px; border-radius: 20px 20px 0 0; padding: 30px; }
  .custom-banner__inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .header__inner { flex-wrap: wrap; }
  .logo__name { font-size: 22px; }
  .search-bar { order: 3; width: 100%; }
  .quick-banners { grid-template-columns: 1fr; }
  .hero__title { font-size: 48px; }
  .section-title { font-size: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
