/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12, 13, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled { background: rgba(10, 11, 13, 0.92); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.25rem; transition: padding 0.25s var(--ease); }
.site-header.is-scrolled .header-inner { padding: 0.6rem 1.25rem; }
.logo-block { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }
.logo-fallback {
  display: inline-flex; align-items: center; gap: 0.4rem; height: 34px; padding: 0 0.9rem;
  border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: #1a1300; font-family: var(--font-display); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase; box-shadow: var(--shadow-gold);
}
.nav-desktop { display: none; gap: 1.6rem; margin-left: 1.25rem; }
.nav-link { position: relative; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); padding: 0.3rem 0; transition: color 0.16s var(--ease); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transition: right 0.22s var(--ease);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; }
.search-desktop {
  display: none; align-items: center; gap: 0.55rem; background: var(--graphite-2); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 0.6rem 1.05rem; width: 240px; color: var(--text-tertiary);
  transition: border-color 0.16s var(--ease), width 0.2s var(--ease);
}
.search-desktop:focus-within { border-color: var(--border-gold); width: 270px; }
.search-desktop input { background: none; border: none; color: var(--text-primary); width: 100%; font-size: 0.85rem; }
.search-desktop input:focus { outline: none; }
.header-whatsapp { display: none; }
.fav-count {
  position: absolute; top: 3px; right: 3px; background: var(--gold); color: #1a1300; font-size: 0.6rem;
  font-weight: 800; border-radius: 999px; min-width: 16px; height: 16px; display: flex; align-items: center;
  justify-content: center; padding: 0 3px; box-shadow: 0 0 0 2px var(--black);
}
.search-mobile { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem 0.9rem; }
.search-mobile input {
  flex: 1; background: var(--graphite-2); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 0.65rem 1rem; color: var(--text-primary); font-size: 0.88rem;
}
.search-mobile input:focus { outline: none; border-color: var(--gold); }

.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(8, 9, 10, 0.65); backdrop-filter: blur(6px); z-index: 60; display: flex; justify-content: flex-end; animation: fade-up 0.2s var(--ease); }
.mobile-menu-panel {
  width: min(320px, 84vw); height: 100%; background: var(--graphite);
  background-image: radial-gradient(140% 60% at 100% 0%, rgba(212, 175, 55, 0.06), transparent 55%);
  padding: 1.4rem; display: flex; flex-direction: column; gap: 1.5rem; border-left: 1px solid var(--border);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
}
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu-links a, .mobile-menu-fav {
  padding: 0.85rem 0.3rem; font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem; text-align: left; transition: color 0.16s var(--ease);
}
.mobile-menu-links a:hover, .mobile-menu-fav:hover { color: var(--gold); }
.mobile-menu-whatsapp { margin-top: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: 3rem 1.25rem 3.25rem; border-bottom: 1px solid var(--border); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 85% 0%, rgba(212, 175, 55, 0.14), transparent 60%),
    radial-gradient(45% 60% at 0% 100%, rgba(255, 255, 255, 0.05), transparent 60%);
}
.hero-watermark {
  position: absolute; top: -4.5rem; right: -1.5rem; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(9rem, 26vw, 15rem); color: rgba(255, 255, 255, 0.025); line-height: 1; pointer-events: none;
  letter-spacing: -0.04em;
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.hero h1 {
  font-size: clamp(2.15rem, 6vw, 3.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.015em;
  margin-bottom: 0.85rem; background: linear-gradient(120deg, #ffffff 45%, var(--gold-bright) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.hero p { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.6; max-width: 46ch; margin: 0 0 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ==========================================================================
   CATEGORIES — chips com rolagem e desvanecimento nas bordas
   ========================================================================== */
.categories { padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.categories-inner {
  max-width: 1280px; margin: 0 auto; display: flex; gap: 0.6rem; overflow-x: auto; padding: 0 1.25rem 0.2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.category-chip {
  flex-shrink: 0; padding: 0.62rem 1.15rem; border-radius: var(--radius-pill); background: var(--graphite-2);
  border: 1px solid var(--border); font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
  transition: all 0.18s var(--ease); min-height: 40px;
}
.category-chip:hover { border-color: var(--border-gold); color: var(--text-primary); }
.category-chip.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1300; border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   IMAGENS DE PRODUTO
   ========================================================================== */
.shirt-placeholder { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(150deg, #24262b, #101114); }
.shirt-placeholder-icon { width: 40%; height: 40%; color: rgba(212, 175, 55, 0.3); }
.shirt-placeholder-tag { position: absolute; bottom: 8px; left: 8px; font-size: 0.6rem; font-weight: 600; background: rgba(0, 0, 0, 0.55); padding: 3px 8px; border-radius: 999px; color: rgba(255, 255, 255, 0.75); }
.product-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); background: var(--graphite); transition: transform 0.5s var(--ease); }
.image-frame { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius); }
.image-skeleton { position: absolute; inset: 0; border-radius: var(--radius); }
.product-photo.is-loading { opacity: 0; }
.product-photo.is-loaded { opacity: 1; transition: opacity 0.3s var(--ease); }
.product-card:hover .product-photo, .related-card:hover .product-photo { transform: scale(1.06); }

/* ==========================================================================
   CATALOG LAYOUT
   ========================================================================== */
.catalog-section { max-width: 1280px; margin: 0 auto; padding: 2.75rem 1.25rem; }
.catalog-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.4rem; }
.catalog-head h2 { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary); }
.catalog-controls { display: flex; gap: 0.6rem; align-items: center; }
.sort-select {
  background: var(--graphite-2); border: 1px solid var(--border); color: var(--text-primary);
  padding: 0.6rem 0.9rem; border-radius: var(--radius-sm); font-size: 0.8rem; min-height: 38px;
}
.catalog-layout { display: flex; gap: 1.75rem; align-items: flex-start; }
.filters-sidebar {
  display: none; width: 240px; flex-shrink: 0; background: var(--graphite);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.35rem;
  position: sticky; top: 96px; box-shadow: var(--shadow-sm);
}
.catalog-results { flex: 1; min-width: 0; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.empty-state { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; padding: 4rem 1rem; color: var(--text-secondary); text-align: center; }

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */
.product-card {
  position: relative; background: linear-gradient(165deg, var(--graphite-2), var(--graphite));
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  animation: fade-up 0.45s var(--ease) both;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-gold); }
.card-media-btn { display: block; width: 100%; }
.card-media { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-media .image-frame, .card-media .shirt-placeholder, .card-media .product-photo { border-radius: 0; }
.card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.badge {
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(6px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.badge-new { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1300; }
.badge-promo { background: linear-gradient(135deg, #ff6b7a, var(--danger)); color: #2a0509; }
.badge-soldout { background: rgba(20, 21, 24, 0.85); color: var(--text-secondary); border: 1px solid var(--border-strong); }
.fav-toggle {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(10, 11, 13, 0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform 0.16s var(--ease), color 0.16s var(--ease), background 0.16s var(--ease);
}
.fav-toggle:hover { background: rgba(10, 11, 13, 0.75); }
.fav-toggle:active { transform: scale(0.86); }
.fav-toggle.is-active { color: #ff5577; }
.card-body { padding: 1rem 1.05rem 1.1rem; }
.card-meta { font-size: 0.68rem; color: var(--text-tertiary); margin: 0 0 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.card-title { font-size: 0.92rem; font-family: var(--font-body); font-weight: 700; margin: 0 0 0.55rem; line-height: 1.3; min-height: 2.4em; color: var(--text-primary); }
.card-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.65rem; flex-wrap: wrap; }
.price-old { font-size: 0.74rem; color: var(--text-tertiary); text-decoration: line-through; }
.price-current { font-size: 1.15rem; font-weight: 800; background: linear-gradient(120deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.card-sizes { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.85rem; }
.size-chip { font-size: 0.63rem; font-weight: 600; border: 1px solid var(--border); color: var(--text-secondary); padding: 2px 7px; border-radius: 6px; }
.card-actions { display: flex; gap: 0.55rem; }
.card-actions .btn-outline { flex: 1; }
.card-actions .btn-whatsapp { width: 42px; height: 42px; padding: 0; flex-shrink: 0; border-radius: var(--radius-pill); }

/* ==========================================================================
   FILTROS — chips modernos
   ========================================================================== */
.filter-group { margin-bottom: 1.15rem; display: flex; flex-direction: column; gap: 0.5rem; }
.filter-group label, .filter-label-static { font-size: 0.72rem; font-weight: 800; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; }
.filter-select-label { display: flex; flex-direction: column; gap: 0.5rem; }
.filter-chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.filter-chip {
  border: 1px solid var(--border); background: var(--elevated); padding: 0.5rem 0.85rem; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); transition: all 0.16s var(--ease); min-height: 36px;
}
.filter-chip:hover { border-color: var(--border-gold); color: var(--text-primary); }
.filter-chip.is-active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; color: #1a1300; font-weight: 700; }
.filter-size-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chip-btn { border: 1px solid var(--border); background: var(--elevated); padding: 0.42rem 0.7rem; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); transition: all 0.16s var(--ease); min-height: 36px; }
.size-chip-btn:hover { border-color: var(--border-gold); color: var(--text-primary); }
.size-chip-btn.is-active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; color: #1a1300; font-weight: 700; }
.filter-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--text-secondary); }
.filter-checkbox input { accent-color: var(--gold); width: 16px; height: 16px; }
.filters-clear { width: 100%; margin-top: 0.5rem; }
.filters-open-btn { display: inline-flex; }
.filters-drawer-overlay { position: fixed; inset: 0; background: rgba(8, 9, 10, 0.65); backdrop-filter: blur(6px); z-index: 60; display: flex; align-items: flex-end; }
.filters-drawer-panel { width: 100%; max-height: 85vh; overflow-y: auto; background: var(--graphite); border-radius: 22px 22px 0 0; padding: 1.4rem; box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4); }
.filters-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }

/* ==========================================================================
   HIGHLIGHT ROWS
   ========================================================================== */
.highlight-row { max-width: 1280px; margin: 0 auto; padding: 1rem 1.25rem 2.75rem; }
.highlight-head { display: flex; align-items: center; gap: 0.55rem; color: var(--gold); margin-bottom: 1.1rem; }
.highlight-head h2 { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary); }
.highlight-scroll { display: flex; gap: 1rem; overflow-x: auto; padding: 0.2rem 0.2rem 0.6rem; scroll-snap-type: x proximity; }
.highlight-card-wrap { flex: 0 0 64%; scroll-snap-align: start; }

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits { max-width: 1280px; margin: 0 auto; padding: 2.25rem 1.25rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefit-item { background: var(--graphite); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.benefit-item:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.benefit-item .benefit-icon { color: var(--gold); margin-bottom: 0.7rem; font-size: 1.3rem; }
.benefit-item h3 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 700; margin: 0 0 0.35rem; }
.benefit-item p { font-size: 0.78rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; background: var(--graphite); border-top: 1px solid var(--border); padding: 2.5rem 1.25rem 1.5rem; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; gap: 1.9rem; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.55; margin: 0.4rem 0 0; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-tertiary); margin: 0 0 0.8rem; font-weight: 800; }
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; margin-bottom: 0.55rem; color: var(--text-secondary); transition: color 0.16s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1280px; margin: 2rem auto 0; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: 0.74rem; color: var(--text-tertiary); text-align: center; }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.floating-stack { position: fixed; right: 1.1rem; bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; z-index: 50; }
.floating-btn { width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: transform 0.18s var(--ease); font-size: 1.3rem; }
.floating-btn:active { transform: scale(0.9); }
.floating-whatsapp { background: linear-gradient(135deg, #2be374, #1db954); color: #06170d; animation: pulse-soft 2.6s ease-in-out infinite; }
@keyframes pulse-soft { 0%, 100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.35), var(--shadow); } 50% { box-shadow: 0 0 0 9px rgba(29, 185, 84, 0), var(--shadow); } }
.floating-top { background: var(--elevated); border: 1px solid var(--border-strong); color: var(--text-primary); }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(6, 7, 8, 0.75); backdrop-filter: blur(8px); z-index: 70; display: flex; align-items: flex-end; justify-content: center; animation: fade-up 0.2s var(--ease); }
.modal-panel { background: var(--black); background-image: radial-gradient(120% 60% at 100% 0%, rgba(212, 175, 55, 0.05), transparent 55%); width: 100%; max-height: 92vh; overflow-y: auto; border-radius: 24px 24px 0 0; padding: 1.4rem; position: relative; border-top: 1px solid var(--border); box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5); }
.modal-close { position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2; background: var(--elevated); }
.modal-grid { display: flex; flex-direction: column; gap: 1.6rem; }
.modal-gallery-main { max-width: 340px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; }
.modal-gallery-thumbs { display: flex; gap: 0.6rem; max-width: 340px; margin: 0.7rem auto 0; flex-wrap: wrap; }
.gallery-thumb { width: 58px; height: 58px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; opacity: 0.55; transition: all 0.16s var(--ease); }
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.is-active { border-color: var(--gold); opacity: 1; box-shadow: var(--shadow-gold); }
.modal-info h2 { font-size: 1.3rem; font-weight: 800; margin: 0 0 0.6rem; letter-spacing: -0.01em; }
.modal-price { margin-bottom: 0.85rem; }
.modal-price .price-current { font-size: 1.4rem; }
.modal-description { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.2rem; }
.modal-size-block { margin-bottom: 1.2rem; background: var(--graphite); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.modal-size-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn { border: 1px solid var(--border); background: var(--elevated); padding: 0.55rem 0.9rem; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700; min-height: 40px; transition: all 0.16s var(--ease); }
.size-btn:hover { border-color: var(--border-gold); }
.size-btn.is-active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; color: #1a1300; }
.size-warning { display: flex; align-items: center; gap: 0.4rem; color: #ff8a94; font-size: 0.78rem; margin-top: 0.65rem; }
.sold-out-banner { display: flex; align-items: center; gap: 0.5rem; background: rgba(239, 84, 100, 0.12); border: 1px solid rgba(239, 84, 100, 0.25); color: #ffb3ba; padding: 0.75rem 0.95rem; border-radius: var(--radius); font-size: 0.85rem; margin-bottom: 1.2rem; }
.modal-shipping { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-tertiary); margin-bottom: 1.2rem; }
.modal-cta-row { display: flex; gap: 0.6rem; align-items: center; }
.modal-fav, .modal-share { background: var(--elevated); flex-shrink: 0; border: 1px solid var(--border); }
.share-confirm { display: flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.8rem; margin-top: 0.65rem; }
.modal-related { margin-top: 1.9rem; border-top: 1px solid var(--border); padding-top: 1.2rem; }
.modal-related h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 1rem; }
.modal-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.related-card { display: flex; flex-direction: column; gap: 0.45rem; text-align: left; }
.related-card .image-frame, .related-card .shirt-placeholder { border-radius: var(--radius-sm); overflow: hidden; }
.related-card span { font-size: 0.68rem; color: var(--text-secondary); line-height: 1.35; font-weight: 600; }

@media (min-width: 700px) {
  .nav-desktop { display: flex; }
  .search-desktop { display: flex; }
  .search-mobile-btn { display: none; }
  .header-whatsapp { display: inline-flex; }
  .menu-btn { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .highlight-card-wrap { flex: 0 0 30%; }
  .modal-overlay { align-items: center; }
  .modal-panel { max-width: 920px; border-radius: 24px; max-height: 88vh; }
  .modal-grid { flex-direction: row; }
  .modal-gallery, .modal-info { flex: 1; }
}
@media (min-width: 960px) {
  .filters-sidebar { display: block; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Entrada escalonada dos cards — sutil, sem custo de performance perceptível */
.product-grid > .product-card:nth-child(1) { animation-delay: 0.02s; }
.product-grid > .product-card:nth-child(2) { animation-delay: 0.06s; }
.product-grid > .product-card:nth-child(3) { animation-delay: 0.1s; }
.product-grid > .product-card:nth-child(4) { animation-delay: 0.14s; }
.product-grid > .product-card:nth-child(n+5) { animation-delay: 0.16s; }
