/* ════════════════════════════════════════════════════════════════
   novritsch-theme.css  —  I9 Airsoft Store
   Dark tactical visual refinements.
   Loaded AFTER inline <style> for targeted overrides only.
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   HEADER — Logo prominence and zone of exclusion
   ════════════════════════════════════════════════════════════════ */
.logo {
  margin-right: 24px;
}

.logo-badge {
  width: 104px;
  height: 104px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER — Logo solo, sem duplicação de texto
   ════════════════════════════════════════════════════════════════ */
.foot-brand {
  display: block;
  margin-bottom: 0;
}

.foot-logo-img {
  width: 60px;
  height: 60px;
  flex-shrink: unset;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════════
   HERO — Tipografia Barlow Condensed
   ════════════════════════════════════════════════════════════════ */
.hero h1 {
  font-family: 'Barlow Condensed', 'Exo 2', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR — Ícones SVG e padding
   ════════════════════════════════════════════════════════════════ */
.stat-icon {
  font-size: initial;
  color: var(--orange);
}

.stat {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ════════════════════════════════════════════════════════════════
   SECTION LABELS — Padrão // uniforme
   ════════════════════════════════════════════════════════════════ */
.sec-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY CARDS — Imagem de fundo em desktop e mobile
   ════════════════════════════════════════════════════════════════ */

/* Grid 3 colunas (desktop) — 6 cards = 2 linhas */
.cat-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Card com imagem de fundo — desktop */
.cat-card {
  position: relative !important;
  overflow: hidden !important;
  height: 180px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background-color: #111 !important;
  background-size: cover !important;
  background-position: center !important;
  border: none !important;
}

/* Overlay escuro — legibilidade do texto sobre a foto */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.25) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: background 0.22s;
}

.cat-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(232,98,26,0.08) 100%
  );
}

/* Nome da categoria sobre o overlay */
.cat-card .cat-name {
  position: relative;
  z-index: 2;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px !important;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  margin: 0 !important;
}

/* Ocultar ícone e seta no desktop — design de foto */
.cat-card .cat-icon {
  display: none !important;
}

/* Descrição: pequena, abaixo do nome, visível no desktop */
.cat-card .cat-desc {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.70rem !important;
  line-height: 1.4;
  padding: 0 16px 14px !important;
  margin: 0 !important;
  display: none !important;
}

/* Seta: reposicionada sobre o overlay */
.cat-card .cat-arr {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  color: rgba(255,255,255,0.55) !important;
  font-size: 1.1rem;
  transform: none !important;
  transition: color 0.2s, right 0.2s;
}

.cat-card:hover .cat-arr {
  color: var(--orange) !important;
  right: 10px;
}

/* Hover: não usar shorthand background (reseta background-image) */
.cat-card:hover {
  background-color: #111 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5), 0 0 20px rgba(232,98,26,0.10) !important;
  border-color: rgba(232,98,26,0.35) !important;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE — @media (max-width: 768px)
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* --- Ocultar barra de stats e seção "nossa missão" --- */
  .stats,
  .promo-banner {
    display: none !important;
  }

  /* Grid 2 colunas — substitui o carrossel horizontal existente */
  .cat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    overflow-x: unset !important;
    scroll-snap-type: unset !important;
    -webkit-overflow-scrolling: unset !important;
    gap: 10px !important;
    padding: 0 12px 6px !important;
    scrollbar-width: unset !important;
  }

  .cat-grid::-webkit-scrollbar { display: none; }

  /* Card mobile: altura menor, sem descrição */
  .cat-card {
    height: 120px !important;
    width: auto !important;
    flex-shrink: unset !important;
    scroll-snap-align: unset !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.45) !important;
  }

  /* Feedback tátil ao toque */
  .cat-card:active {
    transform: scale(0.97) !important;
    transition: transform 0.12s ease;
  }

  /* Hover no mobile: não usa shorthand background */
  .cat-card:hover {
    transform: none !important;
    background-color: #111 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.45) !important;
  }

  /* Nome menor no mobile */
  .cat-card .cat-name {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }

} /* fim @media (max-width: 768px) */
