﻿:root {
  --bg: #071a45;
  --bg-soft: #0b2d78;
  --panel: rgba(8, 27, 69, 0.88);
  --panel-strong: #0f43a8;
  --panel-light: #f6f8fc;
  --card: #ffffff;
  --text: #edf3ff;
  --text-soft: #afbdd7;
  --text-dark: #0a2a67;
  --muted: #6980a8;
  --border: rgba(174, 194, 224, 0.16);
  --navy: #0a2a67;
  --navy-strong: #071a45;
  --red: #1570ff;
  --red-strong: #0b3d99;
  --red-soft: #e9f2ff;
  --yellow: #8fb9ff;
  --shadow: 0 24px 60px rgba(1, 8, 18, 0.32);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 112, 255, 0.34), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(86, 164, 255, 0.20), transparent 22%),
    radial-gradient(circle at bottom right, rgba(11, 61, 153, 0.18), transparent 24%),
    linear-gradient(180deg, #071a45 0%, #0a2a67 42%, #0b3d99 100%);
  min-height: 100vh;
}

body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 13px;
}

.topbar-row,
.main-nav,
.nav-links,
.subnav,
.hero-grid,
.section-heading,
.filters,
.stats-grid,
.feature-grid,
.offer-meta-row,
.detail-grid,
.detail-stats,
.cta-row,
.footer-grid {
  display: flex;
  gap: 16px;
}

.topbar-row,
.main-nav,
.section-heading,
.offer-meta-row,
.detail-stats,
.cta-row {
  align-items: center;
  justify-content: space-between;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 26, 69, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.main-header .container {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.header-brand-row,
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-brand-row {
  flex: 0 0 auto;
  margin-right: 12px;
}

.header-nav-row {
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav {
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark-only .brand-copy {
  display: none;
}

.mobile-toggle,
.mobile-panel {
  display: none;
}

.mobile-toggle {
  display: none !important;
}

.brand-badge {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1570ff 0%, #0b3d99 72%, #56a4ff 100%);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 18px 40px rgba(8, 34, 94, 0.34);
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 124px;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: none;
  color: var(--text-soft);
  font-size: 13px;
}

.nav-links-desktop {
  align-items: center;
  gap: 6px;
  margin-left: 0;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}

.nav-links-desktop .nav-link:first-child {
  margin-left: 6px;
}

.nav-links-legacy {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 14px;
  color: #e6efff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  background: transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(143, 185, 255, 0.18);
  transform: translateY(-1px);
}

.nav-link.is-current,
.nav-link.is-accent {
  background: rgba(21, 112, 255, 0.14);
  border-color: rgba(86, 164, 255, 0.26);
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.82;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 620px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(7, 26, 69, 0.98);
  border: 1px solid rgba(143, 185, 255, 0.16);
  box-shadow: 0 30px 60px rgba(1, 8, 18, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item:hover .nav-dropdown-panel,
.nav-item:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.nav-dropdown-title {
  color: #f4f8ff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.nav-dropdown-copy {
  margin: 0;
  max-width: 42ch;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.nav-dropdown-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1570ff 0%, #0b3d99 100%);
  color: #f5f9ff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nav-dropdown-column {
  display: grid;
  gap: 8px;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: #dce8ff;
  font-size: 14px;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.03);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-dropdown-link:hover {
  background: rgba(21, 112, 255, 0.16);
  border-color: rgba(86, 164, 255, 0.22);
  transform: translateX(2px);
}

.nav-links,
.subnav,
.filters,
.stats-grid,
.feature-grid,
.footer-grid {
  flex-wrap: wrap;
}

.nav-links {
  min-width: 0;
}

.pill,
.badge,
.button,
.menu-chip,
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.pill,
.badge,
.menu-chip,
.mobile-toggle {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.pill:hover,
.badge:hover,
.menu-chip:hover,
.button:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
}

.mobile-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.button {
  padding: 13px 20px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid #d7e3f7;
  background: #fff;
  color: #0b3d99;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-link.primary {
  background: linear-gradient(135deg, #1570ff 0%, #0b3d99 100%);
  border-color: #0b3d99;
  color: #f5f9ff;
}

.button-primary {
  background: linear-gradient(135deg, #1570ff 0%, #0b3d99 100%);
  color: #f5f9ff;
  box-shadow: 0 16px 32px rgba(11, 61, 153, 0.30);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.subnav-wrap {
  padding: 14px 0 26px;
}

.search-hero-panel {
  padding: 18px 22px;
}

.section-panel-compact {
  padding: 18px 22px;
}

.section-heading-tight h2 {
  margin: 0;
}

.search-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.search-hero-copy h2,
.search-results-head h2 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.search-hero-copy .eyebrow {
  margin-bottom: 6px;
}

.search-hero-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 6px;
}

.search-hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.45;
}

.search-box-shell {
  position: relative;
}

.selection-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.selection-column {
  display: grid;
  gap: 16px;
}

.best-offers-main h2,
.best-offers-main p,
.best-offers-main .cta-row {
  display: none;
}

.best-offers-grid {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
}

.best-offers-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.search-box-form {
  position: relative;
}

.header-search-form {
  width: min(100%, 370px);
  margin-left: auto;
  flex: 0 0 370px;
}

.header-search-form-mobile {
  display: none;
}

.mobile-search-form {
  width: 100%;
}

.search-box-row,
.search-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-box-input,
.search-inline-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 16px;
  border: 1px solid rgba(13, 35, 79, 0.12);
  background: #fff;
  color: #0a2a67;
  font-size: 15px;
  outline: none;
}

.search-box-input:focus,
.search-inline-form input:focus {
  border-color: rgba(21, 112, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(21, 112, 255, 0.10);
}

.search-box-button {
  min-width: 118px;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1570ff 0%, #0b3d99 100%);
  color: #f5f9ff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.search-suggest-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 24;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(13, 35, 79, 0.08);
  box-shadow: 0 24px 60px rgba(13, 35, 79, 0.16);
}

.search-suggest-list {
  display: grid;
  gap: 8px;
}

.search-suggest-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: background .18s ease, transform .18s ease;
}

.search-suggest-item:hover {
  background: #eef4ff;
  transform: translateY(-1px);
}

.search-suggest-item img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: #edf1f7;
}

.search-suggest-copy {
  min-width: 0;
}

.search-suggest-copy strong {
  display: block;
  color: #0a2a67;
  font-size: 14px;
  line-height: 1.35;
}

.search-suggest-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.search-suggest-more,
.search-suggest-empty {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f4f8ff;
  color: #0b3d99;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.search-results-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.search-inline-form {
  min-width: min(100%, 460px);
}

.search-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.search-summary-card {
  padding: 18px;
}

.search-summary-card h4 {
  margin: 0 0 10px;
  color: #0a2a67;
}

.mega-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mega-block h3,
.promo-heading h2,
.strip-copy strong {
  margin: 0 0 10px;
}

.mega-block h3 {
  color: #f0f6ff;
  font-size: 15px;
}

.mega-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mega-copy {
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 13px;
}

.subnav-title {
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 2px;
}

.hero {
  padding: 34px 0 42px;
}

.hero-grid {
  align-items: stretch;
}

.hero-main,
.hero-side,
.surface,
.section-panel,
.detail-panel,
.stats-card,
.card,
.footer-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-main,
.hero-side,
.surface,
.section-panel,
.detail-panel,
.footer-card {
  border-radius: var(--radius-xl);
}

.hero-main {
  flex: 1.25;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(10, 42, 103, 0.98) 0%, rgba(21, 112, 255, 0.94) 58%, rgba(7, 26, 69, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(143, 185, 255, 0.30) 0%, transparent 62%);
}

.hero-side {
  flex: 0.88;
  padding: 24px;
  background: rgba(7, 32, 87, 0.92);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dcecff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1,
.detail-copy h1 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 10ch;
}

.hero p,
.detail-copy p,
.section-copy,
.meta {
  color: var(--text-soft);
}

.hero p {
  max-width: 58ch;
  font-size: 16px;
  margin: 14px 0 0;
}

.stats-grid {
  margin-top: 22px;
}

.stats-card {
  flex: 1;
  min-width: 170px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.stats-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.side-item img,
.card-media img,
.detail-media img {
  border-radius: 18px;
  object-fit: cover;
  background: #d7deeb;
}

.side-item img {
  width: 82px;
  height: 82px;
}

.page-shell {
  padding: 0 0 64px;
  color: var(--text-dark);
}

.promo-banner {
  padding: 0 0 28px;
}

.promo-shell {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(8, 35, 92, 0.96) 0%, rgba(21, 112, 255, 0.92) 52%, rgba(11, 61, 153, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
}

.promo-heading {
  color: #f2f7ff;
}

.promo-heading h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  max-width: 10ch;
}

.promo-copy {
  max-width: 58ch;
  color: #dae7ff;
  line-height: 1.6;
  font-size: 16px;
}

.promo-bullets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f3f8ff;
  font-size: 13px;
}

.promo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.promo-card {
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.promo-card strong {
  display: block;
  margin-top: 12px;
  color: #f4f8ff;
}

.promo-card span {
  display: block;
  margin-top: 6px;
  color: #dce9ff;
  font-size: 13px;
}

.surface,
.section-panel,
.detail-panel,
.footer-card {
  background: rgba(247, 251, 255, 0.96);
}

.surface {
  padding: 22px;
  margin-bottom: 22px;
  scroll-margin-top: 110px;
}

.section-panel {
  padding: 28px;
  margin-bottom: 22px;
  scroll-margin-top: 110px;
}

.whatsapp-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(10, 42, 103, 0.98) 0%, rgba(18, 140, 126, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
}

.whatsapp-banner-kicker,
.detail-whatsapp-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.whatsapp-banner h2,
.detail-whatsapp-copy h3 {
  margin: 0;
}

.whatsapp-banner h2 {
  color: #f5f9ff;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.04;
}

.whatsapp-banner p {
  margin: 10px 0 0;
  max-width: 58ch;
  color: #dff9f2;
  line-height: 1.6;
}

.whatsapp-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.affiliate-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 251, 255, 0.96);
  border: 1px solid #d8e2f2;
  box-shadow: 0 16px 34px rgba(12, 29, 66, 0.10);
}

.affiliate-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0a2a67;
  color: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.affiliate-note-copy {
  color: #274063;
  line-height: 1.5;
  font-size: 14px;
}

.affiliate-note-link {
  color: #0b3d99;
  font-weight: 800;
  white-space: nowrap;
}

.section-heading {
  margin-bottom: 18px;
  align-items: flex-end;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
}

.section-copy {
  max-width: 54ch;
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.grid-tight {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  color: var(--text-dark);
  position: relative;
}

.card-media {
  position: relative;
  padding: 14px 14px 0;
}

.card-media img {
  width: 100%;
  height: 230px;
}

.card-badges {
  position: absolute;
  inset: 26px 26px auto auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.flag-sale {
  background: rgba(21, 112, 255, 0.94);
  color: #fff;
}

.flag-top {
  background: rgba(143, 185, 255, 0.96);
  color: #0c2d6b;
}

.flag-dark {
  background: rgba(16, 33, 58, 0.92);
  color: #f2f7ff;
}

.card-body {
  padding: 18px 18px 20px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card-title,
.detail-copy h1 {
  color: var(--navy);
}

.card-title {
  margin: 10px 0 12px;
  font-size: 18px;
  line-height: 1.35;
  min-height: 48px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.price-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.05;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
}

.meta-row,
.offer-meta-row,
.detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #eef3fb;
  color: #324564;
}

.meta-chip.is-plain-price {
  background: transparent;
  border: 1px solid #d8e4f8;
  color: #476182;
  font-weight: 500;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
}

.feature-grid {
  margin-top: 18px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.best-offers-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.best-offers-main {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(9, 40, 100, 0.96) 0%, rgba(21, 112, 255, 0.92) 100%);
  color: #f4f8ff;
  box-shadow: var(--shadow);
}

.best-offers-main h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  max-width: 9ch;
}

.best-offers-main p {
  max-width: 54ch;
  color: #dbe8ff;
  line-height: 1.6;
}

.best-offers-side {
  display: grid;
  gap: 16px;
}

.offer-spotlight {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8e4f8;
  color: #0a2a67;
}

.offer-spotlight img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 20px;
  background: #eef3fb;
}

.spotlight-title {
  font-weight: 800;
  margin: 8px 0;
  color: #0a2a67;
  line-height: 1.35;
}

.coupon-board,
.coupon-list {
  display: grid;
  gap: 16px;
}

.coupon-feature {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #0d2d71 0%, #1570ff 100%);
  color: #f3f8ff;
}

.coupon-feature strong {
  display: block;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #dce9ff;
}

.coupon-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 18px 0 12px;
}

.coupon-note {
  color: #e9f2ff;
  line-height: 1.6;
}

.coupon-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid #d7e3f7;
  background: #fff;
}

.coupon-item img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  background: #eef3fb;
}

.coupon-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0b3d99;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.feature-item {
  flex: 1;
  min-width: 200px;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(180deg, #0f43a8 0%, #0a2a67 100%);
  color: var(--text);
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.filters {
  margin-top: 16px;
}

.filters-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100%;
}

.menu-chip {
  color: var(--navy);
  background: #eef3fb;
  border-color: #d8e2f2;
}

.menu-chip strong {
  color: var(--red);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.list-board {
  display: grid;
  gap: 14px;
}

.list-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #dde6f4;
  border-radius: 18px;
  padding: 12px;
}

.list-rank {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a2a67 0%, #1570ff 72%, #56a4ff 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.detail-panel {
  padding: 28px;
}

.detail-grid {
  align-items: flex-start;
  gap: 28px;
}

.detail-media {
  flex: 0.92;
  position: static;
}

.detail-media-shell {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid #d8e4f8;
  box-shadow: 0 18px 36px rgba(12, 29, 66, 0.10);
}

.detail-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.detail-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.detail-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef3fb;
  color: #24406a;
  font-size: 13px;
  font-weight: 700;
}

.detail-trust-chip.is-highlight {
  background: #e9f2ff;
  color: #0b57d0;
}

.detail-copy {
  flex: 1.08;
}

.detail-copy h1 {
  font-size: clamp(30px, 4.2vw, 48px);
}

.detail-price {
  margin: 18px 0;
}

.detail-whatsapp-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf7ff 100%);
  border: 1px solid #d8e4f8;
}

.detail-whatsapp-copy h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.detail-whatsapp-copy p {
  margin: 10px 0 18px;
  color: #476182;
}

.detail-whatsapp-kicker {
  margin-bottom: 12px;
  background: #0f43a8;
}

.detail-whatsapp-qr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-whatsapp-qr img {
  width: 180px;
  height: 180px;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #d8e4f8;
  box-shadow: 0 18px 36px rgba(12, 29, 66, 0.10);
}

.detail-price-copy {
  color: #476182;
  font-size: 14px;
  line-height: 1.55;
}

.detail-price .price-now {
  font-size: clamp(34px, 5vw, 52px);
}

.detail-stats {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 22px 0;
}

.detail-stat {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #eef3fb;
}

.detail-stat strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.detail-sales-box {
  margin: 8px 0 22px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
  border: 1px solid #d8e4f8;
}

.detail-sales-box h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
}

.detail-sales-list {
  margin: 0;
  padding-left: 18px;
  color: #2f4768;
  line-height: 1.65;
}

.detail-sales-list li + li {
  margin-top: 8px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--red);
  font-weight: 600;
}

.related-section {
  margin-top: 34px;
}

.compact-card {
  border-radius: 22px;
}


.compact-media {
  padding: 12px 12px 0;
}

.compact-media img {
  height: 170px;
  border-radius: 16px;
}

.compact-body {
  padding: 14px 16px 16px;
}

.compact-title {
  min-height: 0;
  font-size: 15px;
  line-height: 1.45;
  margin: 8px 0 10px;
}

.compact-price-row {
  margin-bottom: 8px;
}

.compact-price-row .price-now {
  font-size: 22px;
}

.compact-footer {
  margin-top: 12px;
  align-items: center;
}

.compact-footer .meta-chip {
  max-width: 52%;
}

.category-subnav-wrap {
  padding: 12px 0 18px;
}

.category-subnav {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.category-subnav::-webkit-scrollbar {
  display: none;
}

.category-subnav > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

.category-store-strip {
  margin-bottom: 20px;
}

.instagram-hero {
  background: linear-gradient(135deg, rgba(8, 35, 92, 0.96) 0%, rgba(21, 112, 255, 0.92) 100%);
  color: #f4f8ff;
}

.instagram-hero .section-copy,
.instagram-hero p,
.instagram-hero h1 {
  color: #f4f8ff;
}

.instagram-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.instagram-hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  max-width: 11ch;
}

.instagram-hero-copy p {
  max-width: 56ch;
  margin: 16px 0 0;
  line-height: 1.6;
  color: #dce9ff;
}

.instagram-mini-stats {
  width: 100%;
  display: grid;
  gap: 14px;
}

.instagram-mini-stats .stats-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.instagram-mini-stats .stats-card strong,
.instagram-mini-stats .stats-card span {
  color: #f3f8ff;
}

.instagram-list {
  display: grid;
  gap: 16px;
}

.instagram-list-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d8e4f8;
  color: #0a2a67;
}

.instagram-list-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  background: #eef3fb;
}

.home-conversion-hero,
.deals-hero-panel,
.category-hero-panel {
  background:
    linear-gradient(135deg, rgba(9, 40, 100, 0.96) 0%, rgba(21, 112, 255, 0.92) 56%, rgba(11, 61, 153, 0.96) 100%);
  color: #f4f8ff;
}

.home-conversion-grid,
.deals-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.home-conversion-copy h1,
.deals-hero-copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.02;
  max-width: none;
}

.home-conversion-copy {
  max-width: none;
}

.home-conversion-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.home-conversion-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.hero-featured-video-shell {
  position: relative;
  width: min(1140px, calc(100% - 8px));
  margin: 0 auto 22px;
  padding: 0 46px;
}

.hero-featured-video {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
  gap: 20px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(8, 27, 69, 0.28) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(4, 16, 44, 0.22);
}

.hero-featured-video-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 26, 69, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(4, 16, 44, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.hero-featured-video-nav:hover,
.hero-featured-video-nav:focus-visible {
  background: rgba(21, 112, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-featured-video-nav span {
  font-size: 24px;
  line-height: 1;
}

.hero-featured-video-nav-prev {
  left: 0;
}

.hero-featured-video-nav-next {
  right: 0;
}

.hero-featured-video-media {
  position: relative;
  min-height: 220px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-featured-video-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-featured-video-sound {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 26, 69, 0.84);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(4, 16, 44, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.hero-featured-video-sound:hover,
.hero-featured-video-sound:focus-visible {
  background: rgba(21, 112, 255, 0.92);
}

.hero-featured-video-media:hover .hero-featured-video-sound,
.hero-featured-video-media:focus-within .hero-featured-video-sound,
.hero-featured-video-sound.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-featured-video-sound span {
  font-size: 20px;
  line-height: 1;
}

.hero-featured-video-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.hero-featured-video-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.06;
}

.hero-featured-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.is-hidden {
  display: none !important;
}

.hero-media-rail {
  min-width: 0;
  height: 100%;
}

.hero-media-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 4px 8px;
  scrollbar-width: none;
}

.hero-media-track::-webkit-scrollbar {
  display: none;
}

.hero-media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 240px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(4, 16, 44, 0.22);
}

.hero-media-frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  background: rgba(255, 255, 255, 0.06);
}

.hero-media-frame img,
.hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 26, 69, 0.82);
  color: #f4f8ff;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media-body {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(7, 26, 69, 0.82) 0%, rgba(7, 26, 69, 0.94) 28%, rgba(7, 26, 69, 0.99) 100%);
}

.hero-media-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-media-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.hero-media-price-now {
  color: #ffdf6c;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-media-price-old {
  color: #d5e2ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}

.deals-hero-panel {
  display: grid;
  gap: 22px;
}

.deals-hero-panel .deals-hero-copy h1 {
  max-width: none;
}

.deals-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f3f8ff;
  font-size: 14px;
  font-weight: 800;
}

.home-conversion-copy p,
.deals-hero-copy p,
.home-conversion-hero .section-copy,
.deals-hero-panel .section-copy,
.category-hero-panel .section-copy {
  color: #dce9ff;
}

.home-conversion-copy p,
.deals-hero-copy p {
  max-width: 56ch;
  margin: 16px 0 0;
  line-height: 1.6;
}

.home-conversion-side,
.deals-hero-stats {
  display: grid;
  gap: 14px;
}

.deals-hero-stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deals-mini-stat {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(6, 21, 56, 0.12);
}

.deals-mini-stat strong {
  display: block;
  color: #f3f8ff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
}

.deals-mini-stat span {
  display: block;
  margin-top: 8px;
  color: #dce9ff;
  font-size: 15px;
  font-weight: 700;
}

.rush-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rush-grid .card.is-hidden {
  display: none;
}

.rush-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.rush-more-wrap .button {
  min-width: 172px;
  justify-content: center;
}

.rush-more-wrap .button-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  color: var(--navy);
  border: 1px solid rgba(11, 61, 153, 0.16);
  box-shadow: 0 14px 32px rgba(10, 42, 103, 0.12);
}

.rush-more-wrap .button-secondary:hover {
  background: linear-gradient(180deg, #f8fbff 0%, #e3eeff 100%);
  color: var(--red-strong);
}

.hero-shortcut-card {
  display: block;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(6, 21, 56, 0.18);
}

.hero-shortcut-card strong {
  display: block;
  color: #f3f8ff;
  font-size: 24px;
  line-height: 1.1;
}

.hero-shortcut-card span {
  display: block;
  margin-top: 8px;
  color: #dce9ff;
  font-size: 15px;
}

.home-conversion-hero .stats-card,
.deals-hero-panel .stats-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-conversion-hero .stats-card strong,
.home-conversion-hero .stats-card span,
.deals-hero-panel .stats-card strong,
.deals-hero-panel .stats-card span,
.home-conversion-hero h1,
.deals-hero-panel h1,
.deals-hero-panel h2,
.category-hero-panel h2 {
  color: #f3f8ff;
}

.category-hero-panel .section-heading > div {
  flex: 1 1 auto;
  min-width: 0;
}

.category-hero-panel .section-copy {
  max-width: none;
  white-space: nowrap;
}

.deals-hero-actions {
  margin-top: 20px;
}

.instagram-list-title {
  margin: 8px 0 10px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4;
  color: #0a2a67;
}

.footer-shell {
  padding: 0 0 42px;
}

.footer-card {
  padding: 28px;
  color: var(--text-dark);
}

.footer-card-compact {
  padding: 20px 24px;
}

.footer-compact-top,
.footer-compact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-compact-top {
  margin-bottom: 14px;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-compact-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(12, 44, 96, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.footer-compact-bottom a {
  color: #31435f;
}

.footer-grid > div {
  flex: 1;
  min-width: 220px;
}

.footer-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #31435f;
}

.footer-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f3f8ff 0%, #e6f0ff 100%);
  border: 1px dashed #ccd8ea;
  color: var(--navy);
}

.hidden-mobile {
  display: inline-flex;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }

  .main-header .container {
    display: block;
    gap: 12px;
    padding: 14px 0;
  }

  .header-brand-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .header-nav-row {
    display: block;
  }

  .main-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 0;
    gap: 14px;
    position: relative;
    width: 100%;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy span {
    overflow-wrap: anywhere;
  }

  .nav-links {
    display: none !important;
  }

  .header-search-form {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  .header-search-form-mobile {
    display: block;
    width: 100%;
    margin: 0;
    flex: 1 1 auto;
  }

  .nav-dropdown-panel {
    display: none !important;
  }

  .subnav,
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .subnav::-webkit-scrollbar,
  .filters::-webkit-scrollbar {
    display: none;
  }

  .subnav > *,
  .filters > * {
    flex: 0 0 auto;
  }

  .section-heading {
    align-items: flex-start;
  }

  .hero-media-track {
    gap: 14px;
  }

  .section-heading .cta-link {
    margin-top: 4px;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-self: center;
    justify-self: end;
    margin: 0;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    border-radius: 14px;
  }

  .mobile-panel {
    width: 100%;
    max-width: none;
    display: none !important;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(7, 26, 69, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 10px;
    margin-left: 0;
  }

  .mobile-panel.is-open {
    display: grid !important;
  }

  .mobile-panel .pill,
  .mobile-panel .button {
    width: 100%;
    justify-content: center;
  }

  .header-search-form .search-box-row {
    grid-template-columns: 1fr;
  }

  .header-search-form .search-box-button {
    display: none;
  }

  .header-search-form-mobile .search-box-row {
    grid-template-columns: 1fr;
  }

  .header-search-form-mobile .search-box-button {
    display: none;
  }

  .hero-main {
    padding: 28px;
  }

  .search-hero-grid,
  .search-results-head,
  .search-summary-grid,
  .search-box-row,
  .search-inline-form {
    grid-template-columns: 1fr;
  }

  .search-box-button {
    width: 100%;
  }

  .affiliate-note {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .whatsapp-banner {
    grid-template-columns: 1fr;
  }

  .whatsapp-banner-actions {
    justify-content: flex-start;
  }

  .hero-side,
  .section-panel,
  .surface,
  .detail-panel,
  .footer-card {
    padding: 24px;
  }

  .best-offers-main h2,
  .hero h1,
  .detail-copy h1 {
    max-width: none;
  }

  .detail-media img {
    max-height: 420px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .detail-grid,
  .promo-shell,
  .coupon-grid,
  .best-offers-grid {
    flex-direction: column;
    display: flex;
  }

  .detail-media {
    position: static;
  }

  .detail-whatsapp-card {
    grid-template-columns: 1fr;
  }

  .instagram-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-conversion-grid,
  .deals-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-conversion-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-featured-video {
    grid-template-columns: 1fr;
  }

  .hero-featured-video-shell {
    width: 100%;
    padding: 0;
  }

  .hero-featured-video-media {
    min-height: 220px;
    max-height: none;
  }

  .hero-featured-video-sound {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-featured-video-nav {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .hero-featured-video-nav-prev {
    left: calc(50% - 58px);
  }

  .hero-featured-video-nav-next {
    right: calc(50% - 58px);
  }

  .home-conversion-actions {
    justify-content: flex-start;
  }

  .deals-hero-stats-row {
    grid-template-columns: 1fr;
  }

  .rush-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-gallery {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .mega-nav { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .main-nav,
  .topbar-row,
  .section-heading,
  .offer-meta-row,
  .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-main,
  .hero-side,
  .section-panel,
  .surface,
  .detail-panel,
  .footer-card {
    padding: 22px;
  }

  .promo-shell {
    width: min(100% - 24px, 1320px);
    padding: 20px;
  }

  .hero h1 {
    max-width: none;
  }

  .hidden-mobile {
    display: none;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .mobile-toggle-line {
    width: 16px;
  }

  .card-footer,
  .offer-meta-row,
  .cta-row {
    width: 100%;
  }

  .card-footer .cta-link,
  .offer-meta-row .cta-link,
  .cta-row .button,
  .coupon-item .btn-link {
    width: 100%;
    justify-content: center;
  }

  .best-offers-main,
  .coupon-feature {
    border-radius: 24px;
  }

  .coupon-item {
    grid-template-columns: 88px 1fr;
  }

  .coupon-item .btn-link {
    grid-column: 1 / -1;
  }

  .offer-spotlight {
    grid-template-columns: 92px 1fr;
  }

  .offer-spotlight img {
    width: 92px;
    height: 92px;
  }

  .footer-compact-top,
  .footer-compact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-whatsapp-qr {
    justify-content: flex-start;
  }

  .list-card {
    grid-template-columns: 52px 1fr;
  }

  .list-card .cta-link {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .instagram-list-card {
    grid-template-columns: 1fr;
  }

  .instagram-list-card img {
    width: 100%;
    height: 220px;
  }

  .rush-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .topbar {
    padding: 10px 0;
    font-size: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .brand-logo {
    height: 36px;
    max-width: 108px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .pill,
  .badge,
  .menu-chip {
    padding: 10px 12px;
    font-size: 12px;
  }

  .button,
  .btn-link,
  .mobile-toggle {
    min-height: 46px;
  }

  .mobile-toggle {
    min-width: 40px;
    min-height: 40px;
    padding: 7px;
  }

  .hero {
    padding: 20px 0 28px;
  }

  .hero-main,
  .hero-side,
  .section-panel,
  .surface,
  .detail-panel,
  .footer-card,
  .best-offers-main,
  .coupon-feature {
    padding: 18px;
    border-radius: 20px;
  }

  .hero p,
  .section-copy,
  .coupon-note,
  .detail-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .stats-grid {
    gap: 12px;
  }

  .stats-card {
    min-width: 0;
    padding: 14px;
  }

  .stats-card strong {
    font-size: 24px;
  }

  .grid,
  .grid-tight {
    grid-template-columns: 1fr;
  }

  .rush-grid {
    grid-template-columns: 1fr;
  }

  .promo-gallery,
  .coupon-item {
    grid-template-columns: 1fr;
  }

  .side-item,
  .offer-spotlight,
  .list-card {
    grid-template-columns: 1fr;
  }

  .instagram-list-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card {
    border-radius: 20px;
  }

  .card-media {
    padding: 12px 12px 0;
  }

  .card-media img {
    height: 190px;
    border-radius: 16px;
  }

  .card-badges {
    inset: 20px 20px auto auto;
  }

  .card-body {
    padding: 16px 16px 18px;
  }

  .card-title {
    min-height: 0;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .price-now {
    font-size: 24px;
  }

  .price-old,
  .meta,
  .meta-chip,
  .kicker,
  .cta-link {
    font-size: 12px;
  }

  .coupon-item,
  .offer-spotlight,
  .list-card {
    gap: 12px;
    padding: 12px;
  }

  .hero-media-body {
    padding: 16px;
  }

  .hero-media-title {
    font-size: 16px;
  }

  .hero-media-card {
    flex-basis: 220px;
  }

  .hero-featured-video {
    padding: 14px;
    gap: 16px;
  }

  .hero-featured-video-shell {
    padding: 0;
    margin-bottom: 74px;
  }

  .hero-featured-video-copy h2 {
    font-size: 24px;
  }

  .hero-featured-video-media {
    min-height: 200px;
  }

  .hero-featured-video-sound {
    width: 44px;
    height: 44px;
  }

  .hero-featured-video-nav {
    width: 44px;
    height: 44px;
  }

  .coupon-item img,
  .offer-spotlight img {
    width: 100%;
    height: 160px;
  }

  .detail-grid {
    gap: 18px;
  }

  .detail-media img {
    max-height: 320px;
    border-radius: 18px;
  }

  .detail-sales-box {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-whatsapp-card {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-whatsapp-copy h3 {
    font-size: 20px;
  }

  .detail-whatsapp-qr img {
    width: 156px;
    height: 156px;
  }

  .detail-sales-box h2 {
    font-size: 18px;
  }

  .detail-price .price-now {
    font-size: 30px;
  }

  .detail-stat {
    min-width: calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
    padding: 12px 14px;
  }

  .detail-stat strong {
    font-size: 18px;
  }

  .empty-state {
    padding: 16px;
    border-radius: 18px;
  }

  .compact-media img {
    height: 160px;
  }

  .list-rank {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, 1240px);
  }

  .main-nav {
    gap: 12px;
  }

  .mobile-toggle {
    min-width: 38px;
    min-height: 38px;
    padding: 6px;
    border-radius: 12px;
  }

  .hero-main,
  .hero-side,
  .section-panel,
  .surface,
  .detail-panel,
  .footer-card,
  .best-offers-main,
  .coupon-feature {
    padding: 16px;
  }

  .hero h1,
  .best-offers-main h2,
  .detail-copy h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .detail-stat {
    min-width: 100%;
    flex-basis: 100%;
  }
}



.detail-commerce-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.detail-commerce-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 112, 255, 0.10);
  border: 1px solid rgba(21, 112, 255, 0.16);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
}
