/* ══════════════════════════════════════════════════════════
   VRAIMONY — styles-global.css
   NEW styles only — zero conflicts with styles.css
   ══════════════════════════════════════════════════════════ */

/* ── Nav CTA "Scan free" button ─────────────────────────── */
/* styles.css handles all .nav-item, .nav-submenu, .nav-subtoggle etc. */
/* Only add what is genuinely new here */
.nav-cta-btn {
  background: linear-gradient(135deg, #c28d16 0%, #c89317 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(200,147,23,0.28) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 12px rgba(200,147,23,0.24) !important;
  transition: transform 0.14s ease, box-shadow 0.14s ease !important;
  margin-left: 4px;
}
.nav-cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(200,147,23,0.32) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b07d12 0%, #b37d06 100%) !important;
}

/* ── Section entry animations ────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .section-animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.42s ease, transform 0.42s ease;
  }
  .section-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════
   RECEIVER COVERAGE SECTION
   ═══════════════════════════════════════════════════════════ */
.receivers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 20px;
}
.receiver-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,29,52,0.09);
  border-radius: 22px;
  padding: 22px 16px 20px;
  box-shadow: 0 8px 24px rgba(15,29,52,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.receiver-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,29,52,0.10);
}
.receiver-logo-wrap {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.receiver-logo-wrap svg {
  max-height: 28px;
  max-width: 100%;
  height: 28px;
  width: auto;
  display: block;
}
.receiver-card h3 {
  font-size: 0.86rem;
  color: #0b1828;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}
.receiver-card .muted {
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}
.receiver-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.receiver-code {
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(200,147,23,0.08);
  border: 1px solid rgba(200,147,23,0.18);
  font-size: 0.65rem;
  font-weight: 800;
  color: #8a5e00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.receiver-link {
  font-size: 0.80rem;
  color: var(--gold-light) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: auto;
  white-space: nowrap;
}
.receiver-link:hover { color: #7a4f00 !important; }

.receivers-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1000px) {
  .receivers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .receivers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* ── Focus ring ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .topbar, .v3-footer { display: none; }
  .card { box-shadow: none; border: 1px solid #ddd; }
}
