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

:root {
  /* ── Marca Broona ── */
  --primary: #15505e;        /* petróleo — cor estrutural da marca */
  --primary-dark: #0e3c47;   /* petróleo escuro — hover */
  --primary-light: #e2eff1;  /* tint petróleo — fundos suaves */
  --accent: #f2704f;         /* coral — energia / CTA principal */
  --accent-dark: #dc5a3a;    /* coral escuro — hover */
  --accent-light: #fdeee8;   /* tint coral — fundos suaves */

  /* ── Funcionais ── */
  --green: #15803d;          /* economia / preço bom */
  --green-light: #dcfce7;
  --yellow: #d97706;
  --yellow-light: #fef3c7;

  /* ── Neutros (slate, frio — combina com petróleo) ── */
  --gray-50: #f7f9fa;
  --gray-100: #eef2f4;
  --gray-200: #e0e7ea;
  --gray-300: #c4ced3;
  --gray-400: #94a3b0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f1f24;       /* quase-preto com leve toque petróleo */
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(15,31,36,0.08);
  --shadow-md: 0 4px 16px rgba(15,31,36,0.10);
  --shadow-lg: 0 12px 40px rgba(15,31,36,0.16);
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Icon system (Lucide SVG + inline SVG) ── */
svg.lucide, svg.ico {
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   MODAL (Onboarding)
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.75);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 28px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Progress */
.onboarding-progress {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 28px;
}
.progress-step {
  width: 40px; height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  transition: background 0.3s;
}
.progress-step.active {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Steps */
.onboarding-step { display: none; text-align: center; }
.onboarding-step.active { display: block; }
.onboarding-icon {
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.onboarding-icon svg.lucide { width: 28px; height: 28px; stroke: var(--primary); stroke-width: 1.75; }
.onboarding-icon.icon-accent { background: var(--accent-light); }
.onboarding-icon.icon-accent svg.lucide { stroke: var(--accent-dark); }
.onboarding-icon.icon-yellow { background: var(--yellow-light); }
.onboarding-icon.icon-yellow svg.lucide { stroke: var(--yellow); }
.onboarding-step h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.onboarding-sub {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 24px;
}
.onboarding-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
}

/* Country grid (onboarding) */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.country-option {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.country-option:hover {
  border-color: var(--primary);
}
.country-option.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(21,80,94,0.15);
}
.country-option img {
  width: 32px; height: 22px;
  object-fit: cover; border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.country-option span {
  font-size: 13px; font-weight: 500;
  color: var(--gray-700);
}

/* Chip grid (onboarding) */
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.selectable-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.selectable-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.selectable-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(21,80,94,0.3);
}

/* Onboarding counter */
.onb-counter {
  display: inline-block;
  background: var(--gray-100);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.onb-counter.full {
  background: var(--primary-light);
  color: var(--primary);
}

/* Brand by category groups (onboarding step 4) */
.brand-category-group {
  margin-bottom: 20px;
  text-align: left;
}
.brand-cat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-100);
}
.brand-chip-group {
  justify-content: flex-start;
}

/* Modal buttons */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 2px 10px rgba(242,112,79,0.28);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 14px rgba(242,112,79,0.36); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 15px;
  cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { background: var(--gray-100); }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  height: 64px;
  display: flex; align-items: center; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: inherit;
}
.logo-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.04); }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text {
  font-size: 23px; font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--primary);
  line-height: 1;
}

/* ── Categorias dropdown no header ── */
.header-categories-wrap {
  position: relative; flex-shrink: 0;
}
.header-cat-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.header-cat-btn:hover, .header-cat-btn.open {
  background: var(--white); border-color: var(--primary); color: var(--primary);
}
.header-cat-arrow { font-size: 11px; transition: transform 0.2s; }
.header-cat-btn.open .header-cat-arrow { transform: rotate(180deg); }

.header-cat-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px; z-index: 500;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.header-cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  border: none; background: none; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  text-align: left; transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.header-cat-item:hover { background: var(--primary-light); color: var(--primary); }
.header-cat-item-icon { font-size: 16px; flex-shrink: 0; }

@media (max-width: 760px) { .header-categories-wrap { display: none; } }

/* U1 — Botão Modo viagem no header */
.header-travel-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 20px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 600; border: none;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background 0.15s;
}
.header-travel-btn svg.lucide { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; }
.header-travel-btn:hover { background: var(--primary-dark, #0e3c47); }
@media (max-width: 900px) { .header-travel-btn span { display: none; } }
@media (max-width: 768px) { .header-travel-btn { display: none; } }

.header-search {
  flex: 1; max-width: 440px; margin: 0 12px;
  position: relative;
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 8px 14px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.header-search:focus-within {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,80,94,0.10);
}
.header-search-icon { opacity: 0.55; flex-shrink: 0; display: flex; align-items: center; }
.header-search-icon svg.lucide { width: 15px; height: 15px; stroke: var(--gray-700); stroke-width: 2; }
.header-search input {
  flex: 1; border: none; background: none; outline: none;
  font-size: 14px; font-family: inherit; color: var(--gray-900);
}
.header-search input::placeholder { color: var(--gray-400); }
@media (max-width: 760px) { .header-search { display: none; } }

.header-actions { display: flex; gap: 8px; align-items: center; position: relative; }
.header-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 240px; z-index: 200;
}
.header-menu button {
  display: block; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 13.5px; color: var(--gray-700);
  padding: 10px 12px; border-radius: 8px;
  transition: background 0.12s;
}
.header-menu button:hover { background: var(--gray-100); }
.header-menu-sep { height: 1px; background: var(--gray-200); margin: 5px 4px; }
.header-menu-danger { color: #b91c1c; }
.header-menu-danger:hover { background: #fef2f2 !important; }
.header-country-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 5px 12px 5px 5px;
  font-size: 13px; font-weight: 500;
  color: var(--gray-700);
  cursor: pointer; font-family: inherit;
  transition: background 0.15s;
}
.header-country-btn:hover { background: var(--gray-100); }
.header-country-btn img {
  width: 24px; height: 16px;
  object-fit: cover; border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.header-profile-btn {
  width: 34px; height: 34px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.header-profile-btn svg.lucide { width: 17px; height: 17px; stroke: var(--gray-600); stroke-width: 2; }
.header-profile-btn:hover { background: var(--gray-100); }
.header-search-mobile {
  display: none;
  width: 34px; height: 34px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 50%; cursor: pointer;
  align-items: center; justify-content: center;
}
.header-search-mobile svg.lucide { width: 16px; height: 16px; stroke: var(--gray-600); stroke-width: 2; }
.header-search-mobile:hover { background: var(--gray-100); }
@media (max-width: 760px) { .header-search-mobile { display: inline-flex; } }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, #0a2a32 0%, #15505e 55%, #0e3c47 100%);
  color: var(--white);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }

/* Hero compacto (fora da home): só a barra de busca */
.hero.hero--compact { padding: 16px 24px; }
.hero.hero--compact::before { display: none; }
.hero.hero--compact .hero-eyebrow,
.hero.hero--compact h1,
.hero.hero--compact .hero-sub,
.hero.hero--compact .suggestions { display: none; }
.hero.hero--compact .hero-inner { max-width: 1100px; }
.hero.hero--compact .search-box { margin-bottom: 0; box-shadow: var(--shadow-md); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, #ff8a6a, #f2704f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.hero-concept {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  font-style: italic;
}

/* Search */
.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  display: flex; gap: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 18px;
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-size: 16px; color: var(--gray-900);
  padding: 8px 12px; font-family: inherit;
  background: transparent;
}
.search-box input::placeholder { color: var(--gray-300); }
.search-btn {
  background: var(--accent);
  color: var(--white);
  border: none; border-radius: 10px;
  padding: 12px 24px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.search-btn svg.lucide { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; }
.search-btn:hover { background: var(--accent-dark); }
.search-btn:active { transform: scale(0.98); }

.suggestions {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}

/* ── Autocomplete ── */
.search-box { position: relative; }
.autocomplete-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 6px; z-index: 300; max-height: 360px; overflow-y: auto;
  text-align: left;
}
.ac-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; cursor: pointer; font-family: inherit;
  padding: 9px 10px; border-radius: 8px; text-align: left;
}
.ac-item:hover { background: var(--gray-100); }
.ac-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.ac-label { flex: 1; font-size: 14px; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-type { font-size: 11px; color: var(--gray-500); background: var(--gray-100); padding: 2px 8px; border-radius: 10px; flex-shrink: 0; }

/* ── Cross-sell (relacionados no detalhe) ── */
.related-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.related-title { font-size: 14px; font-weight: 700; color: var(--gray-700); margin-bottom: 14px; }
.related-row {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 8px; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.related-row .mini-card { min-width: 210px; max-width: 210px; flex-shrink: 0; }
.related-row .mini-photo { height: 110px; }
.suggestion-label { font-size: 13px; color: rgba(255,255,255,0.5); align-self: center; }
.suggestion-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.suggestion-chip:hover { background: rgba(255,255,255,0.2); }

/* D1 — Rates badge: discreto, não alarmante */
#rates-badge {
  padding: 5px 24px;
  font-size: 11px; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}
.dot {
  width: 6px; height: 6px;
  background: #22c55e; border-radius: 50%;
  flex-shrink: 0; display: inline-block;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
#rates-badge.offline { background: none; }
#rates-badge.offline .dot { background: var(--gray-300); animation: none; }

/* ═══════════════════════════════════════════
   CONTENT LAYOUT (sidebar + main)
   ═══════════════════════════════════════════ */
.content-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: start;
}

/* ═══════════════════════════════════════════
   CATEGORIES SIDEBAR
   ═══════════════════════════════════════════ */
.categories-sidebar {
  padding: 28px 0 28px 24px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
}
.categories-sidebar::-webkit-scrollbar { display: none; }

.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 6px;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.sidebar-nav-item:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}
.sidebar-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}
.sidebar-nav-icon {
  flex-shrink: 0;
  width: 22px;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-nav-icon svg.lucide { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; }

/* Mobile categories strip */
.mobile-categories {
  display: none;
  overflow-x: auto;
  padding: 16px 0 4px;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-categories::-webkit-scrollbar { display: none; }
.mobile-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s;
}
.mobile-cat-chip svg.ico { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.mobile-cat-chip:hover { border-color: var(--primary); color: var(--primary); }
.mobile-cat-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   MAIN
   ═══════════════════════════════════════════ */
main { padding: 28px 28px 40px 24px; min-width: 0; }

/* ═══════════════════════════════════════════
   HOME BLOCKS
   ═══════════════════════════════════════════ */
.home-block { margin-bottom: 48px; }
.home-block-header { margin-bottom: 16px; }
.home-title {
  font-size: 22px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.home-sub { color: var(--gray-500); font-size: 14px; }

.empty-hint {
  background: var(--white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

/* Travel selector */
.travel-selector {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.travel-selector span { font-size: 14px; color: var(--gray-500); }
#travel-destination {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--gray-900);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID + MINI CARD
   ═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.mini-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(15,31,36,0.06);
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
}
.mini-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
  transform: translateY(-3px);
}
.mini-photo {
  height: 130px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mini-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transition: opacity 0.3s;
}
.mini-photo-img.loaded { opacity: 1; }
.mini-photo-img.loaded ~ .mini-photo-fallback { display: none; }
.mini-photo-fallback { font-size: 44px; position: relative; z-index: 1; }

.mini-info { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.mini-brand {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.7px; text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.mini-name {
  font-size: 14px; font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-price-block { margin-top: auto; }
.mini-price {
  display: block;
  font-size: 20px; font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.mini-save-badge {
  display: inline-flex; align-items: center;
  background: var(--green-light); color: var(--green);
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 5px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
.mini-save-badge.good {
  font-size: 10px;
  background: var(--primary-light); color: var(--primary);
  margin-left: 0;
}
.mini-price-was {
  display: block;
  font-size: 11.5px; color: var(--gray-400);
  margin-top: 2px;
}
.mini-save-abs {
  display: block;
  font-size: 11px; font-weight: 600;
  color: #16a34a;
  margin-top: 2px;
}
.mini-country {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-500);
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.mini-country strong { color: var(--gray-700); font-weight: 600; }
.mini-flag {
  width: 18px; height: 13px;
  object-fit: cover; border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════
   RATINGS (estrelas)
   ═══════════════════════════════════════════ */
.rating { display: inline-flex; align-items: center; gap: 5px; }
.stars {
  position: relative; display: inline-block;
  font-size: 14px; line-height: 1; color: var(--gray-300);
}
.stars::before { content: "★★★★★"; letter-spacing: 1px; }
.stars-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  overflow: hidden; white-space: nowrap; color: #f5a623;
}
.stars-fill::before { content: "★★★★★"; letter-spacing: 1px; }
.rating-val { font-size: 13px; font-weight: 700; color: var(--gray-700); }
.rating-count { font-size: 12px; color: var(--gray-400); }
.rating-sm .stars { font-size: 11px; }
.rating-sm .rating-val { font-size: 11.5px; }
.rating-sm .rating-count { font-size: 11px; }

/* ═══════════════════════════════════════════
   INSIGHT PANEL (confiança + dados no detalhe)
   ═══════════════════════════════════════════ */
.insight-panel {
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.trust-strip {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--primary-light);
  padding: 9px 14px;
  font-size: 12.5px; color: var(--primary);
}
.trust-item { display: inline-flex; align-items: center; gap: 5px; }
.trust-item svg.ico { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; }
.trust-item strong { font-weight: 700; }
.trust-dot { color: var(--gray-300); }
.insight-body {
  display: flex; gap: 14px; padding: 14px;
  align-items: stretch; flex-wrap: wrap;
}
.buy-timing {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 210px;
  padding: 10px 12px; border-radius: 8px;
}
.buy-timing strong { display: block; font-size: 13.5px; line-height: 1.3; }
.buy-timing span { font-size: 12px; color: var(--gray-500); }
.buy-timing-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; font-weight: 700;
}
.timing-good { background: var(--green-light); }
.timing-good strong { color: var(--green); }
.timing-good .buy-timing-icon { background: var(--green); color: #fff; }
.timing-wait { background: var(--yellow-light); }
.timing-wait strong { color: var(--yellow); }
.timing-wait .buy-timing-icon { background: var(--yellow); color: #fff; }
.timing-neutral { background: var(--gray-50); }
.timing-neutral strong { color: var(--gray-700); }
.timing-neutral .buy-timing-icon { background: var(--gray-300); color: #fff; }
.insight-spark { flex: 1; min-width: 160px; display: flex; flex-direction: column; justify-content: center; }
.insight-spark-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: var(--gray-500); margin-bottom: 4px;
}
.insight-spark-country { display: inline-flex; align-items: center; gap: 5px; }
.sparkline { width: 100%; height: 36px; display: block; }

/* ═══════════════════════════════════════════
   COUNTRY STRIP (horizontal, topo da home)
   ═══════════════════════════════════════════ */
.country-strip-block {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.country-strip-title {
  font-size: 15px; font-weight: 700;
  color: var(--gray-900);
  padding: 0 24px;
  margin: 0 0 12px;
}
.country-strip-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.country-strip-scroll::-webkit-scrollbar { display: none; }

/* Pill de país */
.country-pill {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.15s, transform 0.12s;
  min-width: 72px;
}
.country-pill:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}
.country-pill-flag {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-50);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.country-pill:hover .country-pill-flag {
  border-color: var(--primary-light);
  box-shadow: 0 4px 14px rgba(21,80,94,0.15);
}
.country-pill-flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.country-pill-name {
  font-size: 11px; font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.country-pill--fav .country-pill-flag {
  border-color: #fde68a;
  box-shadow: 0 2px 8px rgba(245,158,11,0.2);
}
.country-pill--fav .country-pill-name { color: var(--gray-900); }
.country-pill--fav:hover .country-pill-flag {
  border-color: #f59e0b;
}

/* ═══════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════ */
.back-btn {
  background: transparent;
  border: none;
  color: var(--gray-500);
  font-size: 13px;
  cursor: pointer;
  padding: 0 0 6px 0;
  font-family: inherit;
}
.back-btn:hover { color: var(--primary); }

.results-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px;
}
.results-title { font-size: 22px; font-weight: 700; color: var(--gray-900); }
#results-count {
  font-size: 13px; color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Wrong product banner */
#wrong-product-banner {
  display: none;
  align-items: center; justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  margin-bottom: 18px;
  gap: 12px;
}
.wrong-banner-left { display: flex; align-items: center; gap: 10px; }
.wrong-banner-icon { font-size: 16px; flex-shrink: 0; opacity: 0.7; }
.wrong-banner-text strong { display: block; font-size: 13px; color: var(--gray-700); }
.wrong-banner-text p { font-size: 12px; color: var(--gray-500); }
.wrong-banner-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
#wrong-refine {
  background: var(--white); color: var(--primary);
  border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 6px 13px; font-size: 12.5px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
#wrong-refine:hover { border-color: var(--primary); }
#wrong-close {
  background: none; border: none;
  color: #92400e; cursor: pointer;
  font-size: 18px; padding: 4px;
  line-height: 1; opacity: 0.6;
}
#wrong-close:hover { opacity: 1; }

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.product-header {
  display: flex; gap: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.product-photo {
  width: 100px; height: 100px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
}
.product-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 14px;
  opacity: 0; transition: opacity 0.3s;
}
.product-photo-img.loaded { opacity: 1; }
.product-photo-img.loaded ~ .product-photo-fallback { display: none; }
.product-photo-fallback { font-size: 44px; line-height: 1; position: relative; z-index: 1; }

.product-header-info { flex: 1; min-width: 0; }
.product-name {
  font-size: 18px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px; line-height: 1.3;
}
.product-category {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* Pending */
.pending-cta {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.pending-msg {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-700);
  margin-bottom: 14px; line-height: 1.5;
}
.pending-icon { font-size: 24px; flex-shrink: 0; }
.pending-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-confirm {
  background: var(--accent); color: var(--white); border: none;
  border-radius: 8px; padding: 9px 18px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.btn-confirm:hover { background: var(--accent-dark); }
.wrong-product-btn {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  border-radius: 8px; padding: 9px 16px;
  font-size: 14px; cursor: pointer; font-family: inherit;
}
.wrong-product-btn:hover { background: var(--yellow-light); color: var(--yellow); border-color: #fde68a; }

/* Confirmed */
.variant-name {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 8px; font-style: italic;
}

/* Model ID trust badge */
.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid #b9d4d9;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}
.model-badge code {
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.4px;
  font-size: 11.5px;
}
.variant-selector {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.variant-label {
  font-size: 12px; font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-right: 4px; flex-shrink: 0;
}
.variant-tab {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  border-radius: 8px; padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: inherit;
}
.variant-tab:hover { border-color: var(--primary); color: var(--primary); }
.variant-tab.active {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  font-weight: 600; box-shadow: 0 2px 8px rgba(21,80,94,0.3);
}

/* Global stats */
.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.stat strong { font-size: 18px; color: var(--gray-900); }
.stat small { font-size: 11px; color: var(--gray-500); }

/* Origin comparison (sutil) */
.origin-comparison {
  background: var(--gray-50);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 18px;
}
.origin-comparison.good {
  border-left-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}

/* Price table */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table thead tr { background: var(--gray-50); }
.price-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.price-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.row-cheapest { background: #f0fdf4; }
.price-table tr.row-cheapest td { color: var(--green); }
.price-table tr.row-cheapest strong { color: var(--green); font-size: 15px; }
.price-table tr.row-origin { background: #f0f9ff; }
.col-converted strong { font-size: 15px; }
.col-local { color: var(--gray-500); }

.country-cell { display: flex; align-items: center; gap: 9px; }
.country-cell-info { display: flex; flex-direction: column; gap: 2px; }
.flag-img {
  width: 24px; height: 16px; object-fit: cover; border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2); flex-shrink: 0;
}
.country-name { font-weight: 500; white-space: nowrap; }
.vat-badge {
  font-size: 10px; font-weight: 600; white-space: nowrap;
  color: var(--gray-400); cursor: help;
  border-bottom: 1px dotted var(--gray-300);
  width: fit-content;
}
.store-cell { display: flex; align-items: center; gap: 8px; }
.store-name { white-space: nowrap; }
.local-name {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 2px;
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-logo {
  width: 18px; height: 18px;
  border-radius: 4px;
  flex-shrink: 0; object-fit: contain;
  background: var(--gray-100);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px; font-weight: 700;
  white-space: nowrap;
}
.badge-cheap  { background: var(--accent-light); color: var(--accent-dark); }
.badge-origin { background: var(--primary-light); color: var(--primary); }
.badge-diff   { background: var(--gray-100); color: var(--gray-500); }
.badge-fav    { background: var(--primary-light); color: var(--primary); }

/* Favorite country row highlight */
.price-table tr.row-favorite { background: #fffdf0; }
.price-table tr.row-cheapest.row-favorite { background: #f0fdf4; }

/* Price trend indicator */
.price-trend {
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}
.price-trend.trend-down { color: var(--green); }
.price-trend.trend-up   { color: #e53e3e; }
.price-trend.trend-stable { color: var(--gray-400, #94a3b8); }

/* Alert button inside price table */
.alert-btn {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 11px;
  cursor: pointer;
  color: var(--gray-500);
  white-space: nowrap;
  margin-top: 4px;
  display: inline-block;
  transition: all 0.15s;
}
.alert-btn:hover {
  background: var(--yellow-light);
  border-color: #fde68a;
  color: var(--yellow);
}
.alert-btn.has-alert {
  background: var(--yellow-light);
  border-color: #f59e0b;
  color: #b45309;
}

/* Alert modal card */
.alert-modal-card {
  max-width: 420px;
}
.alert-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.alert-modal-icon { font-size: 36px; flex-shrink: 0; }
.alert-modal-title { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.alert-modal-sub { font-size: 13px; color: var(--gray-500); }

.alert-current-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.alert-current-price strong { font-size: 15px; color: var(--gray-900); }

.alert-target-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.alert-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: var(--white);
}
.alert-input-group span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  flex-shrink: 0;
}
.alert-price-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  font-family: inherit;
  background: transparent;
}
.alert-modal-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.alert-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Triggered alerts banner */
#triggered-alerts-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.triggered-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fef9c3;
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.triggered-alert-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
.triggered-alert-icon svg.ico { width: 20px; height: 20px; stroke: #d97706; stroke-width: 2; }
.triggered-alert-text { flex: 1; }
.triggered-alert-text strong { display: block; font-size: 14px; color: #92400e; margin-bottom: 2px; }
.triggered-alert-text p { font-size: 13px; color: #b45309; margin: 0; }
.triggered-alert-close {
  background: none;
  border: none;
  color: #a16207;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}
.triggered-alert-close:hover { opacity: 1; background: rgba(0,0,0,0.06); }

/* Alerts list in profile / manage view (future) */

.disclaimer { font-size: 11px; color: var(--gray-300); margin-top: 12px; text-align: right; }

.no-results {
  text-align: center; padding: 64px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.no-results-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  width: 56px; height: 56px;
  background: var(--primary-light); border-radius: 50%;
}
.no-results-icon svg.ico { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 2; }
.no-results h3 { font-size: 17px; font-weight: 700; color: var(--gray-800, var(--gray-700)); margin-bottom: 8px; }
.no-results p { color: var(--gray-500); font-size: 14px; max-width: 340px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   U2 — WISHLIST / MINHA LISTA
   ═══════════════════════════════════════════ */
.wishlist-btn {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.9); border: none;
  border-radius: 50%; width: 30px; height: 30px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.15s, background 0.15s;
  z-index: 2;
}
.wishlist-btn:hover { transform: scale(1.15); }
.wishlist-btn.in-list { background: #fff0f0; }
.wishlist-btn svg.ico { width: 14px; height: 14px; stroke: var(--gray-500); stroke-width: 2; }
.wishlist-btn.in-list svg.ico { stroke: #e53e3e; fill: #e53e3e; }
.badge-cheap svg.ico, .badge-fav svg.ico { width: 12px; height: 12px; stroke: currentColor; vertical-align: -1px; }
.sidebar-nav-icon svg.ico { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; }
.ico-star { color: #f59e0b; }
.country-pill-name svg.ico,
.travel-dest-name svg.ico { width: 10px; height: 10px; vertical-align: -1px; flex-shrink: 0; }
.mini-card { position: relative; }

.wishlist-empty {
  text-align: center; padding: 60px 24px; color: var(--gray-500);
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.wishlist-empty-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  width: 56px; height: 56px;
  background: var(--accent-light); border-radius: 50%;
}
.wishlist-empty-icon svg.ico { width: 24px; height: 24px; stroke: var(--accent); stroke-width: 2; }
.wishlist-empty p { font-size: 14px; margin-top: 6px; max-width: 280px; margin-left: auto; margin-right: auto; }

.best-dest-block {
  background: linear-gradient(135deg, #eaf5f7, #fff);
  border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 28px;
}
.best-dest-block h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--gray-900); }
.best-dest-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
}
.best-dest-row:last-child { border-bottom: none; }
.best-dest-rank { font-size: 18px; font-weight: 800; color: var(--gray-300); width: 28px; }
.best-dest-rank.top { color: var(--accent); }
.best-dest-flag { width: 28px; height: 20px; object-fit: cover; border-radius: 3px; }
.best-dest-country { font-weight: 600; font-size: 14px; flex: 1; }
.best-dest-total { font-size: 15px; font-weight: 700; color: var(--primary); }
.best-dest-save { font-size: 12px; color: var(--accent-dark); font-weight: 600; }

/* ═══════════════════════════════════════════
   U5 — MEUS ALERTAS
   ═══════════════════════════════════════════ */
.alerts-empty {
  text-align: center; padding: 60px 24px; color: var(--gray-500);
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.alerts-empty-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  width: 56px; height: 56px;
  background: var(--primary-light); border-radius: 50%;
}
.alerts-empty-icon svg.ico { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 2; }
.alert-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 12px;
  margin-bottom: 10px;
}
.alert-card-info { flex: 1; }
.alert-card-product { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.alert-card-detail { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.alert-card-target { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 4px; }
.alert-card-triggered { background: #f0fdf4; border-color: #86efac; }
.alert-triggered-badge {
  font-size: 11px; font-weight: 700; color: #16a34a;
  background: #dcfce7; padding: 2px 8px; border-radius: 10px;
}
.alert-delete-btn {
  padding: 6px 12px; border-radius: 8px;
  border: 1px solid var(--gray-200); background: none;
  font-size: 12px; color: var(--gray-500);
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.alert-delete-btn:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* ── Brand Strip — pills circulares com logo ── */
.brand-strip-block {
  margin-bottom: 16px;
}
.brand-strip-scroll {
  display: flex; gap: 10px;
  overflow-x: auto; padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.brand-strip-scroll::-webkit-scrollbar { display: none; }

.brand-strip-pill {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; flex-shrink: 0; min-width: 64px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 14px; padding: 8px 10px;
  cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.brand-strip-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(21,80,94,0.12);
  transform: translateY(-1px);
}
.brand-strip-pill.active {
  border-color: var(--primary);
  background: var(--primary-light, rgba(21,80,94,0.06));
  box-shadow: 0 2px 8px rgba(21,80,94,0.15);
}
.brand-strip-logo {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: contain; background: #fff;
  border: 1px solid var(--gray-100);
}
.brand-strip-fallback {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-600);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.brand-strip-name {
  font-size: 10px; font-weight: 600; color: var(--gray-600);
  text-align: center; white-space: nowrap;
  max-width: 60px; overflow: hidden; text-overflow: ellipsis;
}
.brand-strip-pill.active .brand-strip-name { color: var(--primary); }
.brand-strip-all {
  font-size: 11px; font-weight: 700; color: var(--gray-500);
  line-height: 36px;
}
.brand-strip-pill.active .brand-strip-all { color: var(--primary); }

/* Live fill indicator */
.live-fill-loader {
  grid-column: 1/-1; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-400); padding: 12px 0;
}
.live-fill-loader svg.ico { width: 14px; height: 14px; stroke: var(--gray-300); }
.live-fill-section { grid-column: 1/-1; margin-top: 8px; }
.live-fill-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--gray-400); margin-bottom: 10px;
}
.live-fill-label svg.ico { width: 11px; height: 11px; stroke: var(--gray-400); }
.mini-card--live { opacity: 0.92; }
.mini-card--live::after {
  content: "ao vivo";
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  background: var(--primary); color: #fff;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px;
}
.results-toolbar--compact { justify-content: flex-end; }

/* ── Discovery: "O que está compensando no mundo hoje?" ── */
.discovery-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.discovery-card-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b7e 100%);
  color: #fff;
}
.discovery-flag {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.discovery-card-title { flex: 1; min-width: 0; }
.discovery-country-name {
  display: block; font-size: 15px; font-weight: 700;
}
.discovery-card-sub {
  display: block; font-size: 11px; opacity: 0.7; margin-top: 1px;
}
.discovery-country-delta {
  flex-shrink: 0;
  font-size: 12px; font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap;
}
.discovery-scroll-row {
  display: flex; gap: 12px;
  overflow-x: auto; padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
  -webkit-overflow-scrolling: touch;
}
.discovery-scroll-row::-webkit-scrollbar { height: 4px; }
.discovery-scroll-row::-webkit-scrollbar-track { background: transparent; }
.discovery-scroll-row::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }
.discovery-scroll-row .mini-card {
  flex: 0 0 200px; min-width: 0;
}

/* Chip de categoria nos mini-cards */
.mini-cat-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--primary);
  background: var(--primary-light, rgba(21,80,94,0.08));
  padding: 2px 7px; border-radius: 4px;
  margin-bottom: 4px;
}
.mini-cat-tag svg.ico { width: 10px; height: 10px; stroke: var(--primary); }
.mini-delta-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--gray-500);
}

/* Demo notice */
.demo-notice {
  background: transparent;
  border: none;
  border-top: 1px solid var(--gray-100);
  padding: 14px 0 0;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 40px;
  display: flex; align-items: flex-start; gap: 10px;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px;
  font-size: 13px;
}
footer strong { color: var(--white); }

/* ═══════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════ */
.auth-modal-card {
  max-width: 420px;
  padding: 32px 28px 28px;
  position: relative;
}

.auth-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--gray-400);
  line-height: 1; padding: 4px 8px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.auth-modal-close:hover { color: var(--gray-700); background: var(--gray-100); }

.auth-logo {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 20px;
}
.auth-logo-text {
  font-size: 22px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.5px;
}

/* Tabs */
.auth-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 24px;
}
.auth-tab-btn {
  flex: 1; background: none; border: none; cursor: pointer;
  padding: 10px 0; font-size: 14px; font-weight: 600;
  color: var(--gray-400); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color 0.15s, border-color 0.15s;
}
.auth-tab-btn.active { color: var(--primary); border-color: var(--primary); }

/* Google button */
.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 11px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn-google:hover { background: var(--gray-50); border-color: var(--gray-300); box-shadow: var(--shadow-sm); }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0; color: var(--gray-400); font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--gray-200);
}

/* Fields */
.auth-field { margin-bottom: 14px; }
.auth-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.auth-field input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; color: var(--gray-900);
  background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.auth-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,80,94,0.12);
}

/* LGPD checkbox */
.auth-lgpd-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--gray-500); margin-bottom: 16px;
  cursor: pointer; line-height: 1.5;
}
.auth-lgpd-check input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--primary); flex-shrink: 0;
  width: 15px; height: 15px; cursor: pointer;
}
.auth-lgpd-check a { color: var(--primary); text-decoration: underline; }

/* Error */
.auth-error {
  background: #fef2f2; border: 1px solid #fecaca;
  color: #b91c1c; border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: 13px; margin-bottom: 14px;
  line-height: 1.4;
}
.auth-error:empty { display: none !important; }

/* Submit */
.auth-submit-btn {
  width: 100%; padding: 12px; font-size: 15px;
  border-radius: var(--radius-sm); margin-bottom: 12px;
}

/* Links */
.auth-link {
  background: none; border: none; cursor: pointer;
  color: var(--primary); font-size: 13px; text-decoration: underline;
  font-family: inherit; padding: 0; display: block; margin: 0 auto 4px;
  text-align: center;
}
.auth-link:hover { color: var(--primary-dark); }
.auth-guest { text-align: center; margin-top: 8px; }

/* Profile avatar (logado) */
.profile-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 2px solid var(--primary-light);
}
.profile-initial {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-size: 13px; font-weight: 700;
}

/* ═══════════════════════════════════════════
   UTILITÁRIOS
   ═══════════════════════════════════════════ */
.hidden { display: none !important; }

/* L1 — esconde busca do header na home */
body[data-view="home"] .header-search { display: none; }

/* L3 — Como funciona */
.how-it-works {
  background: #eaf5f7;
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 24px;
  display: none;
}
body[data-view="home"] .how-it-works { display: block; }
.how-it-works-inner {
  max-width: 700px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.how-step { display: flex; align-items: center; gap: 6px; }
.how-icon { display: flex; align-items: center; justify-content: center; }
.how-icon svg.lucide { width: 15px; height: 15px; stroke: var(--primary); stroke-width: 2.5; }
.how-label { font-size: 12px; font-weight: 600; color: var(--primary-dark); }
.how-arrow { font-size: 14px; color: var(--gray-400); }
@media (max-width: 600px) {
  .how-arrow { display: none; }
  .how-step { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   BRANDS PAGE
   ═══════════════════════════════════════════ */
.brands-page-grid {
  display: flex; flex-direction: column; gap: 32px; padding: 8px 0;
}
.brand-section-block { }
.brand-section-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gray-200);
}
.brand-section-logo {
  width: 44px; height: 44px; background: var(--gray-100);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6px; flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.brand-section-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-section-name { font-size: 18px; font-weight: 800; color: var(--gray-900); }
.brand-section-count { font-size: 13px; color: var(--gray-400); margin-left: auto; }

/* ═══════════════════════════════════════════
   LIVE RESULTS (Google Shopping)
   ═══════════════════════════════════════════ */
.live-results-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-100);
}
.live-results-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
}
.live-loading {
  padding: 28px 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px dashed var(--gray-200);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.live-empty, .live-error {
  padding: 20px;
  border-radius: 8px;
  font-size: 13px;
}
.live-empty { color: var(--gray-400); text-align: center; }
.live-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.live-product-title {
  font-size: 13px;
  font-weight: 500;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-source {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
}
.live-disclaimer {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 10px;
  text-align: right;
  display: flex; align-items: center; justify-content: flex-end; gap: 4px;
}
.live-disclaimer svg.ico { width: 11px; height: 11px; stroke: var(--gray-400); }

/* ═══════════════════════════════════════════
   PAYWALL
   ═══════════════════════════════════════════ */

/* Aviso preventivo (restam 1-2 buscas) */
.paywall-hint {
  display: flex; align-items: center; gap: 8px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 16px;
  font-size: 13px; color: #92400e; font-weight: 500;
}
.paywall-hint svg.ico { width: 14px; height: 14px; stroke: #d97706; flex-shrink: 0; }
.paywall-hint span { flex: 1; }
.paywall-hint button {
  background: none; border: none; cursor: pointer;
  font-size: 12px; font-weight: 700; color: var(--primary);
  white-space: nowrap; font-family: inherit;
  padding: 0; text-decoration: underline;
}

/* Gate duro (cota esgotada) */
.paywall-gate {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 24px;
  gap: 12px;
}
.paywall-gate-icon svg.ico {
  width: 48px; height: 48px; stroke: var(--gray-300); stroke-width: 1.5;
  margin-bottom: 8px;
}
.paywall-gate h3 {
  font-size: 20px; font-weight: 800;
  color: var(--gray-900); margin: 0;
}
.paywall-gate p {
  font-size: 14px; color: var(--gray-500);
  max-width: 380px; margin: 0;
}
.paywall-gate-alt {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--gray-500);
  font-family: inherit; padding: 4px 0;
  text-decoration: underline;
}
.paywall-gate-alt:hover { color: var(--gray-700); }

/* Card "Melhor destino" travado na wishlist */
.best-dest-locked {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius); padding: 18px 20px;
  margin-bottom: 20px; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.best-dest-locked:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.best-dest-locked-icon svg.ico {
  width: 32px; height: 32px; stroke: var(--gray-300); flex-shrink: 0;
}
.best-dest-locked strong { display: block; font-size: 14px; color: var(--gray-700); margin-bottom: 2px; }
.best-dest-locked p { font-size: 12px; color: var(--gray-400); margin: 0; }
.best-dest-locked-badge {
  margin-left: auto; flex-shrink: 0;
  background: linear-gradient(135deg, #f2704f, #c94b2d);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}

/* Botão Pro CTA (usado em paywall-gate e modal) */
.btn-pro-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border: none; border-radius: var(--radius);
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(242,112,79,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  width: 100%;
}
.btn-pro-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,112,79,0.4); }

/* Toast com link Pro */
.toast-pro-link {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-weight: 700; font-size: inherit;
  font-family: inherit; padding: 0; text-decoration: underline;
}

/* ── Modal "Vire Pro" ── */
.pro-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,31,36,0.55);
  display: flex; align-items: flex-end;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.pro-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.pro-sheet {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 32px;
  width: 100%; max-width: 480px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-height: 92vh; overflow-y: auto;
}
.pro-modal-overlay.open .pro-sheet {
  transform: translateY(0);
}
.pro-sheet-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--gray-100); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.pro-sheet-close:hover { background: var(--gray-200); }
.pro-sheet-close svg.ico { width: 16px; height: 16px; stroke: var(--gray-600); }
.pro-sheet-header { margin-bottom: 20px; }
.pro-badge-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 8px;
}
.pro-modal-hint {
  font-size: 13px; color: var(--gray-600);
  background: var(--gray-50); border-radius: 8px;
  padding: 8px 12px; margin-top: 8px;
}
.pro-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.pro-features li {
  display: flex; align-items: flex-start; gap: 12px;
}
.pro-feat-icon {
  font-size: 18px; flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gray-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pro-features strong { display: block; font-size: 14px; color: var(--gray-900); }
.pro-features span   { font-size: 12px; color: var(--gray-500); }
.pro-price-block {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 16px;
}
.pro-price {
  font-size: 32px; font-weight: 800; color: var(--gray-900);
}
.pro-price small { font-size: 15px; font-weight: 500; color: var(--gray-500); }
.pro-price-sub { font-size: 12px; color: var(--gray-400); }
.pro-dismiss {
  display: block; width: 100%; margin-top: 12px;
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--gray-400); font-family: inherit;
  padding: 8px; text-align: center;
  transition: color 0.15s;
}
.pro-dismiss:hover { color: var(--gray-600); }

.pro-code-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; margin-top: 10px;
  background: none; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 11px;
  font-size: 13px; font-weight: 600; color: var(--gray-600);
  cursor: pointer; font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
}
.pro-code-link:hover { border-color: var(--primary); color: var(--primary); }
.pro-code-link svg.ico { width: 14px; height: 14px; stroke: currentColor; }

/* Badge Pro no header */
.header-profile-btn { position: relative; }
.pro-header-badge {
  position: absolute; top: -4px; right: -4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: 8px; font-weight: 800;
  padding: 2px 5px; border-radius: 6px;
  letter-spacing: 0.5px; line-height: 1;
  pointer-events: none;
}

/* Modal de código */
.code-sheet { max-width: 380px; }
.code-input-wrap { margin-bottom: 16px; }
.code-input-wrap input {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 15px; font-weight: 600; letter-spacing: 1.5px;
  font-family: 'Courier New', monospace;
  color: var(--gray-900); background: var(--gray-50);
  text-transform: uppercase;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.code-input-wrap input:focus {
  outline: none; border-color: var(--primary);
  background: var(--white);
}
.code-error {
  font-size: 12px; color: #dc2626;
  margin-top: 6px; font-weight: 500;
}

@media (min-width: 600px) {
  .pro-sheet { border-radius: 20px; margin: auto; margin-bottom: 0; }
  .pro-modal-overlay { align-items: center; }
  .pro-modal-overlay.open .pro-sheet { transform: translateY(0); }
}

/* ── Live group picker (múltiplos modelos encontrados) ── */
.live-picker { padding: 4px 0; }
.live-picker-intro { margin-bottom: 16px; }
.live-picker-intro h3 {
  font-size: 15px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.live-picker-intro p { font-size: 13px; color: var(--gray-500); }

.live-picker-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.live-picker-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 0 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
  box-shadow: 0 1px 3px rgba(15,31,36,0.06);
}
.live-picker-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(21,80,94,0.12);
  transform: translateY(-2px);
}
/* Thumbnail da imagem do produto */
.picker-thumb {
  width: 100%;
  height: 130px;
  background: var(--gray-50);
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.picker-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
/* Padding interno quando há thumb (fica fora do thumb, dentro do card) */
.live-picker-card .picker-model-name,
.live-picker-card .picker-flags,
.live-picker-card .picker-meta,
.live-picker-card .picker-cta {
  padding: 0 14px;
}
.live-picker-card .picker-thumb + .picker-model-name {
  margin-top: 10px;
}
/* Card sem imagem mantém padding normal */
.live-picker-card:not(:has(.picker-thumb)) {
  padding: 14px;
}

.picker-model-name {
  font-size: 13px; font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.picker-flags {
  display: flex; gap: 5px; flex-wrap: wrap;
}
.picker-flag {
  width: 20px; height: 14px;
  object-fit: cover; border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.picker-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.picker-countries {
  font-size: 11px; font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px; border-radius: 20px;
}
.picker-price {
  font-size: 12px; font-weight: 700;
  color: var(--green);
}
.picker-cta {
  font-size: 12px; font-weight: 600;
  color: var(--primary);
  margin-top: 2px;
}

/* Filtro de gênero */
.picker-gender-filter {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.picker-gender-label {
  font-size: 12px; font-weight: 600;
  color: var(--gray-500);
}
.picker-gender-btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 12px; font-weight: 600;
  color: var(--gray-600);
  cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.picker-gender-btn:hover { border-color: var(--primary); color: var(--primary); }
.picker-gender-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: var(--white);
}

/* Badges de gênero nos cards */
.picker-gender-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 4px;
  vertical-align: middle; margin-left: 4px;
}
.picker-gender-m { background: #dbeafe; color: #1d4ed8; }
.picker-gender-f { background: #fce7f3; color: #be185d; }

@media (max-width: 600px) {
  .live-picker-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   SKELETON LOADERS (busca ao vivo)
   ═══════════════════════════════════════════ */
.live-loading-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--gray-500);
  margin-bottom: 6px; padding: 4px 2px;
}
.skel-table {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.skel-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.skel-row:last-child { border-bottom: none; }
.skel-grow { flex: 1; }
.skeleton {
  position: relative; overflow: hidden;
  background: var(--gray-100); border-radius: 6px;
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }
.skel-flag { width: 30px; height: 21px; border-radius: 4px; flex-shrink: 0; }
.skel-line { height: 12px; }
.skel-price { width: 76px; height: 20px; flex-shrink: 0; }

/* Skeleton mini-card (home grid) */
.skel-mini-card {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100); overflow: hidden;
}
.skel-mini-photo { background: var(--gray-100); height: 140px; position: relative; overflow: hidden; }
.skel-mini-photo::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: shimmer 1.4s infinite;
}
.skel-mini-body { padding: 10px 12px; }
.skel-mini-name { height: 13px; background: var(--gray-100); border-radius: 4px; width: 80%; margin-bottom: 8px; position: relative; overflow: hidden; }
.skel-mini-name::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent); animation: shimmer 1.4s infinite; }
.skel-mini-sub  { height: 10px; background: var(--gray-100); border-radius: 4px; width: 55%; margin-bottom: 10px; position: relative; overflow: hidden; }
.skel-mini-sub::after  { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent); animation: shimmer 1.4s 0.1s infinite; }
.skel-mini-price { height: 16px; background: var(--gray-100); border-radius: 4px; width: 45%; position: relative; overflow: hidden; }
.skel-mini-price::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent); animation: shimmer 1.4s 0.2s infinite; }

/* ═══════════════════════════════════════════
   ANIMAÇÕES DE ENTRADA + HOVER
   ═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-grid .mini-card { animation: fadeInUp 0.34s ease both; }
.product-grid .mini-card:nth-child(2) { animation-delay: 0.04s; }
.product-grid .mini-card:nth-child(3) { animation-delay: 0.08s; }
.product-grid .mini-card:nth-child(4) { animation-delay: 0.12s; }
.product-grid .mini-card:nth-child(5) { animation-delay: 0.16s; }
.product-grid .mini-card:nth-child(6) { animation-delay: 0.20s; }
.product-card { animation: fadeInUp 0.34s ease both; }

/* Card hover refinement */
.mini-card:hover { border-color: #cdd9dc; }
.mini-card .mini-photo-img { transition: transform 0.4s ease, opacity 0.3s; }
.mini-card:hover .mini-photo-img.loaded { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .product-grid .mini-card, .product-card { animation: none; }
  .mini-card:hover .mini-photo-img.loaded { transform: none; }
}

/* ═══════════════════════════════════════════
   SIDEBAR ACCORDION (subcategories)
   ═══════════════════════════════════════════ */
.sidebar-cat-group { }

.sidebar-cat-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.sidebar-cat-btn:hover { background: var(--gray-100); color: var(--gray-900); }
.sidebar-cat-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-arrow {
  margin-left: auto;
  font-size: 9px;
  transition: transform 0.2s ease;
  color: var(--gray-400);
  flex-shrink: 0;
}
.sidebar-cat-group.is-open .sidebar-arrow { transform: rotate(90deg); }

.sidebar-subcats {
  display: none;
  padding: 2px 0 6px 32px;
}
.sidebar-cat-group.is-open .sidebar-subcats { display: block; }

.sidebar-subcat {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  transition: all 0.15s;
}
.sidebar-subcat:hover { background: var(--gray-100); color: var(--gray-700); }
.sidebar-subcat.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
}

/* ═══════════════════════════════════════════
   CATEGORY VIEW (subcategory chips + mini grid)
   ═══════════════════════════════════════════ */
.subcat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.subcat-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.subcat-chip:hover { border-color: var(--primary); color: var(--primary); }
.subcat-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.category-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; cursor: pointer; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.bc-sep { color: var(--gray-300); }
.bc-current { color: var(--gray-700); font-weight: 600; }

/* ── Results toolbar (brand filter + sort) ── */
.results-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.brand-filter { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.brand-pill {
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--gray-600); border-radius: 18px;
  padding: 5px 13px; font-size: 12.5px; font-weight: 500;
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.brand-pill:hover { border-color: var(--primary); color: var(--primary); }
.brand-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.sort-control {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-500); flex-shrink: 0;
}
.sort-control select {
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--gray-900); border: 1px solid var(--gray-200);
  background: var(--white); border-radius: 8px;
  padding: 7px 30px 7px 11px; cursor: pointer; outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.sort-control select:focus { border-color: var(--primary); }

/* ═══════════════════════════════════════════
   SIDEBAR — NAVEGAÇÃO PRIMÁRIA (Início / Viagem)
   ═══════════════════════════════════════════ */
.sidebar-primary {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.primary-nav-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 12px;
  background: none; border: none; cursor: pointer;
  border-radius: 9px; font-size: 14.5px; font-weight: 600;
  color: var(--gray-700); font-family: inherit; text-align: left;
  transition: background 0.15s, color 0.15s;
}
.primary-nav-item:hover { background: var(--gray-100); color: var(--gray-900); }
.primary-nav-item.active { background: var(--primary); color: #fff; }

/* ═══════════════════════════════════════════
   CTA MODO VIAGEM (home)
   ═══════════════════════════════════════════ */
.travel-cta {
  display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: left; cursor: pointer; font-family: inherit;
  background: linear-gradient(120deg, var(--primary), #0a2a32);
  color: #fff; border: none; border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.2s;
}
.travel-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.travel-cta-emoji { font-size: 30px; flex-shrink: 0; display: flex; align-items: center; }
.travel-cta-emoji svg.ico { width: 30px; height: 30px; stroke: #fff; stroke-width: 1.75; }
.travel-cta-text { flex: 1; min-width: 0; }
.travel-cta-text strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.travel-cta-text span { font-size: 13.5px; color: rgba(255,255,255,0.8); }
.travel-cta-arrow { font-size: 22px; color: #ff8a6a; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   MODO VIAGEM — ABA DEDICADA
   ═══════════════════════════════════════════ */
.travel-hero { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.travel-hero-emoji { font-size: 40px; flex-shrink: 0; line-height: 1; display: flex; align-items: center; }
.travel-hero-emoji svg.ico { width: 40px; height: 40px; stroke: var(--primary); stroke-width: 1.5; }
.travel-hero-title { font-size: 26px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.4px; }
.travel-hero-sub { font-size: 14.5px; color: var(--gray-500); max-width: 640px; margin-top: 4px; }

.travel-picker {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px;
}
.travel-picker label { font-size: 14px; font-weight: 600; color: var(--gray-700); flex-shrink: 0; }
.travel-picker select {
  flex: 1; min-width: 200px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--gray-900); background-color: var(--white);
  border: 1px solid var(--gray-200); border-radius: 9px;
  padding: 10px 34px 10px 14px; cursor: pointer; outline: none;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color 0.15s;
}
.travel-picker select:focus { border-color: var(--primary); }

.travel-empty-title { font-size: 15px; font-weight: 600; color: var(--gray-700); margin-bottom: 20px; }

/* ── Seletor de destino do Modo Viagem ── */
.travel-dest-group { margin-bottom: 28px; }

.travel-dest-continent {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.travel-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.travel-dest-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer; font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.travel-dest-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(21,80,94,0.10);
  transform: translateY(-2px);
}
.travel-dest-card--fav {
  border-color: #fde68a;
  background: #fffdf5;
}
.travel-dest-card--fav:hover { border-color: #f59e0b; }

.travel-dest-flag {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-100);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  flex-shrink: 0;
}
.travel-dest-flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
.travel-dest-name {
  font-size: 12px; font-weight: 600;
  color: var(--gray-800);
  text-align: center; line-height: 1.2;
}

.travel-summary {
  background: linear-gradient(120deg, var(--primary), #0a2a32);
  color: #fff; border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 24px;
}
.travel-summary-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.travel-flag {
  width: 46px; height: 32px; object-fit: cover; border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); flex-shrink: 0;
}
.travel-summary-head h3 { font-size: 20px; font-weight: 800; }
.travel-summary-head p { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.travel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.travel-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 12px 14px;
}
.travel-stat span {
  display: block; font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.travel-stat strong { display: block; font-size: 24px; font-weight: 800; color: #fff; margin-top: 3px; line-height: 1; }
.travel-stat small {
  display: block; font-size: 11px; color: #ffb9a6; margin-top: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.travel-summary-empty { display: flex; align-items: center; gap: 14px; }
.travel-summary-empty strong { display: block; font-size: 16px; margin-bottom: 2px; }
.travel-summary-empty span { font-size: 13px; color: rgba(255,255,255,0.8); }
.travel-cat-chips { margin-bottom: 20px; }

/* Slim destination banner (sem stats) */
.travel-summary-slim { display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.travel-summary-slim h3 { font-size: 19px; font-weight: 800; }
.travel-summary-slim p { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 2px; }

/* Filtro de categoria ativo no Modo viagem */
.travel-filter-active {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--primary-light); border: 1px solid #b9d4d9;
  border-radius: var(--radius-sm); padding: 10px 16px; margin-bottom: 18px;
  font-size: 13.5px; color: var(--primary);
}
.travel-filter-clear {
  background: none; border: none; color: var(--primary); cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600; text-decoration: underline;
}
.travel-filter-clear:hover { color: var(--primary-dark); }
.travel-cat-hint {
  background: var(--accent-light); border: 1px solid #f7d5c9;
  border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 18px;
  font-size: 13.5px; color: var(--accent-dark);
}

/* Isca editorial: maior pechincha */
.travel-highlight {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(120deg, #fff3ef, #ffe9e2);
  border: 1px solid #f7d5c9; border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 22px;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.2s;
}
.travel-highlight:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.travel-highlight-badge {
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.travel-highlight-text { flex: 1; font-size: 14px; color: var(--gray-700); line-height: 1.45; }
.travel-highlight-text strong { color: var(--gray-900); }
.travel-highlight-arrow { font-size: 20px; color: var(--accent); flex-shrink: 0; }
.travel-global-link { display: inline-block; margin-top: 8px; color: var(--primary); font-weight: 600; text-decoration: underline; }

.travel-advisory {
  margin-top: 32px; padding: 14px 18px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.travel-advisory-item {
  font-size: 12px; color: var(--gray-400); line-height: 1.5;
  margin-bottom: 6px;
}
.travel-advisory-item:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   TOP MARCAS (showcase com logos)
   ═══════════════════════════════════════════ */
.brand-showcase { margin-top: 36px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
}
.brand-logo-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px 12px;
  cursor: pointer; font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.15s;
}
.brand-logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.brand-logo-img {
  width: 56px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.brand-logo-img img { max-width: 56px; max-height: 40px; object-fit: contain; }
.brand-logo-img img.is-favicon { width: 34px; height: 34px; border-radius: 7px; }
.brand-logo-name { font-size: 13px; font-weight: 600; color: var(--gray-700); }

/* Mobile subcategories strip — always hidden on desktop, shown by JS on mobile */
#mobile-subcategories {
  display: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  padding: 0 20px 12px;
  scrollbar-width: none;
}
#mobile-subcategories::-webkit-scrollbar { display: none; }
#mobile-subcategories .subcat-chip { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .categories-sidebar {
    display: none;
  }
  .mobile-categories {
    display: flex;
    position: sticky;
    top: 64px;
    z-index: 80;
    background: var(--gray-50);
    margin: 0 -20px;
    padding: 12px 20px 8px;
    box-shadow: 0 6px 10px -8px rgba(15,31,36,0.25);
  }
  #mobile-subcategories.visible {
    display: flex;
  }
  main {
    padding: 0 20px 40px;
  }
}

@media (max-width: 640px) {
  .hero { padding: 40px 20px 60px; }
  .search-btn span { display: none; }
  .header-country-btn span { display: none; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .country-explore-grid { grid-template-columns: 1fr; }
  .product-photo { width: 72px; height: 72px; }
  .product-photo-fallback { font-size: 32px; }
  .price-table th:nth-child(3), .price-table td:nth-child(3) { display: none; }
  .store-cell span { display: none; }
  .global-stats { grid-template-columns: 1fr; }
  #wrong-product-banner { flex-wrap: wrap; }
  .col-badge { display: flex; flex-wrap: wrap; gap: 4px; }
  .travel-stats { grid-template-columns: 1fr; }
  .travel-hero-emoji { font-size: 32px; }
  .travel-hero-title { font-size: 22px; }
  .travel-highlight { flex-direction: column; align-items: flex-start; gap: 10px; }
  .travel-highlight-arrow { display: none; }
}
