/* ═══════════════════════════════════════════════════════════════
   SHARED DESIGN TOKENS  (used by both mobile + desktop code)
═══════════════════════════════════════════════════════════════ */
:root {
  --black:   #0a0a0a;
  --black2:  #111111;
  --black3:  #1a1a1a;
  --card-bg: #161616;
  --red:     #e8142a;
  --red-dk:  #b80f20;
  --white:   #ffffff;
  --w70:     rgba(255,255,255,0.70);
  --w40:     rgba(255,255,255,0.40);
  --w10:     rgba(255,255,255,0.08);
  --gold:    #d4a847;
  --green:   #22c55e;
  --border:  rgba(255,255,255,0.08);
  --r:       10px;
  --r-sm:    6px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  overflow-x: hidden;
}
a { color: inherit; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE LAYOUT CODE  — primary experience  (base / no query)
═══════════════════════════════════════════════════════════════ */


/* --- Hero --- */
.hero {
  background: linear-gradient(180deg, #1a0305 0%, var(--black) 100%);
  padding: 22px 16px 20px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 180px;
  background: radial-gradient(ellipse, rgba(232,20,42,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px; font-weight: 800; letter-spacing: -.5px;
  text-align: center; margin-bottom: 16px; line-height: 1.1;
}
.hero-title span { color: var(--red); }
.search-box {
  background: #e8e8e8; border-radius: 12px;
  overflow: hidden; max-width: 700px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: stretch;
}
.search-field {
  flex: 1 1 auto; min-width: 100px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px; border-right: 1px solid #d0d0d0;
}

.search-field:last-of-type { border-right: none; }
.search-field select {
  flex: 1; border: none; outline: none; background: none;
  font-family: 'Inter',sans-serif; font-size: 14px; font-weight: 500;
  color: #111; cursor: pointer; padding: 12px 0; min-width: 0;
  -webkit-appearance: none; appearance: none;
}
.search-field-text {
  min-width: 140px;
}
.search-field-text input {
  flex: 1; border: none; outline: none; background: none;
  font-family: 'Inter',sans-serif; font-size: 14px; font-weight: 500;
  color: #111; padding: 12px 0; min-width: 0;
}
.search-field-text input::placeholder { color: #999; }
.btn-search {
  background: var(--red); color: var(--white); border: none;
  border-radius: 0 12px 12px 0; padding: 12px 24px;
  font-size: 14px; font-weight: 700; font-family: 'Inter',sans-serif;
  cursor: pointer; flex-shrink: 0;
}

/* --- Category pills --- */
.categories {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 12px 14px; scrollbar-width: none;
  background: var(--black2); border-bottom: 1px solid var(--border);
}
.categories::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 5px;
  background: var(--w10); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 13px;
  font-size: 12px; font-weight: 500;
  white-space: nowrap; cursor: pointer;
  transition: all .2s; flex-shrink: 0; color: var(--w70);
  text-decoration: none;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.cat-pill .e { font-size: 15px; }

/* --- Section layout --- */
.section {
  padding: 18px 14px;
  max-width: 1200px; margin: 0 auto;
}
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -.2px;
  display: flex; align-items: center; gap: 8px;
}
.section-title .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.see-all {
  font-size: 12px; color: var(--red);
  text-decoration: none; font-weight: 600;
}
.see-all:hover { text-decoration: underline; }
.divider { height: 1px; background: var(--border); margin: 0 14px; }

/* --- Country-first directory: featured + category sliders --- */
.country-directory { max-width: 1440px; margin: 0 auto; }
.country-directory-intro { padding-bottom: 10px; }
.section-kicker {
  margin-bottom: 4px; color: var(--red); font-size: 10px; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase;
}
.country-jump-nav {
  display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 8px;
  scrollbar-width: none; scroll-snap-type: x proximity;
}
.country-jump-nav::-webkit-scrollbar, .country-listing-slider::-webkit-scrollbar { display: none; }
.country-jump-nav a {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--card-bg); color: var(--w70); font-size: 12px; font-weight: 700;
  text-decoration: none; scroll-snap-align: start; transition: border-color .2s, color .2s, background .2s;
}
.country-jump-nav a:hover, .country-jump-nav a:focus-visible {
  border-color: var(--red); background: rgba(232,20,42,.08); color: var(--white);
}
.country-jump-nav small { color: var(--w40); font-size: 10px; }
.country-showcase { scroll-margin-top: 76px; }
.country-showcase-header {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.country-showcase-identity { display: flex; align-items: center; gap: 11px; min-width: 0; }
.country-showcase-flag { font-size: 30px; line-height: 1; }
.country-showcase-header h2 { font-size: 25px; line-height: 1; letter-spacing: -.03em; }
.country-slider-group { margin-top: 20px; }
.country-slider-group-featured {
  position: relative; overflow: hidden;
  padding: 15px; border: 1px solid rgba(212,168,71,.38); border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232,20,42,.18), transparent 32%),
    linear-gradient(125deg, #241509 0%, #17110d 48%, #120b0d 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 34px rgba(0,0,0,.22);
}
.country-slider-group-featured::after {
  content: '★'; position: absolute; right: -14px; top: -38px;
  color: rgba(212,168,71,.06); font-size: 138px; line-height: 1;
  pointer-events: none; transform: rotate(9deg);
}
.slider-heading {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 10px;
}
.slider-heading h3 { font-size: 15px; font-weight: 750; line-height: 1.2; }
.slider-heading-icon { color: var(--gold); margin-right: 3px; }
.featured-eyebrow {
  display: block; margin-bottom: 3px; color: #f5d784;
  font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase;
}
.featured-slider-actions { display: flex; align-items: center; gap: 6px; position: relative; z-index: 2; }
.featured-slider-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0; border: 1px solid rgba(245,215,132,.36);
  border-radius: 50%; background: rgba(255,255,255,.06); color: #f5d784;
  font: 700 16px/1 'Inter', sans-serif; cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.featured-slider-arrow:hover {
  border-color: #f5d784; background: #f5d784; color: #1a1000; transform: translateY(-1px);
}
.featured-slider-arrow:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.featured-slider-arrow:disabled { opacity: .3; cursor: default; transform: none; }
.country-listing-slider {
  display: flex; gap: 10px; overflow-x: auto; padding: 1px 1px 8px;
  scrollbar-width: none; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain;
}
.country-listing-slider .country-listing-card {
  flex: 0 0 calc((100% - 10px) / 2);
  width: calc((100% - 10px) / 2);
  min-width: 0; scroll-snap-align: start;
}
.country-listing-slider .country-listing-card .sp-img {
  height: auto; aspect-ratio: 16 / 10;
}
.featured-listing-slider { position: relative; z-index: 1; }
.featured-listing-slider .country-listing-card {
  border-color: rgba(212,168,71,.28);
  background: linear-gradient(180deg, #211b16, #151311);
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
}
.featured-listing-slider .country-listing-card:hover {
  border-color: rgba(245,215,132,.72); box-shadow: 0 10px 26px rgba(0,0,0,.34);
}
.featured-slider-motion {
  position: relative; z-index: 1; height: 2px; margin-top: 4px;
  overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.06);
}
.featured-slider-motion span {
  display: block; width: 28%; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--red), #f5d784);
  animation: featured-slider-progress 4.8s linear infinite;
}
.country-slider-group-featured:hover .featured-slider-motion span,
.country-slider-group-featured:focus-within .featured-slider-motion span { animation-play-state: paused; }
@keyframes featured-slider-progress {
  from { transform: translateX(-100%); }
  to { transform: translateX(360%); }
}
.country-listing-card:focus-visible, .country-jump-nav a:focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px;
}
.country-showcase-divider:last-child { display: none; }

/* --- Homepage's three editorially fixed destination sections --- */
.fixed-showcase { position: relative; }
.fixed-featured-shell {
  position: relative;
  padding: 5px 0px;
  /* border: 1px solid rgba(212,168,71,.38); */
  border-radius: 14px;
  /* background:
    radial-gradient(circle at 8% 0%, rgba(232,20,42,.18), transparent 32%),
    linear-gradient(125deg, #241509 0%, #17110d 48%, #120b0d 100%); */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 34px rgba(0,0,0,.22);
}
.featured-slider-arrow--side {
  position: absolute; z-index: 4; top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,.88);
  box-shadow: 0 5px 18px rgba(0,0,0,.38);
}
.featured-slider-arrow--side:hover { transform: translateY(-50%) scale(1.04); }
.featured-slider-arrow--side:disabled { transform: translateY(-50%); }
.featured-slider-arrow--left { left: 7px; }
.featured-slider-arrow--right { right: 7px; }
.featured-slider-scrubber { position: relative; z-index: 3; margin: 11px 2px 0; }
.featured-slider-scrubber input {
  --slider-progress: 0%;
  display: block; width: 100%; height: 18px; margin: 0;
  border: 0; outline: 0; background: transparent; cursor: ew-resize;
  appearance: none; -webkit-appearance: none;
}
.featured-slider-scrubber input::-webkit-slider-runnable-track {
  height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, #f5d784 0 var(--slider-progress), rgba(255,255,255,.14) var(--slider-progress) 100%);
}
.featured-slider-scrubber input::-webkit-slider-thumb {
  width: 18px; height: 18px; margin-top: -7px;
  border: 2px solid #1a1000; border-radius: 50%; background: #f5d784;
  box-shadow: 0 2px 9px rgba(0,0,0,.45); appearance: none; -webkit-appearance: none;
}
.featured-slider-scrubber input::-moz-range-track { height: 4px; border-radius: 999px; background: rgba(255,255,255,.14); }
.featured-slider-scrubber input::-moz-range-progress { height: 4px; border-radius: 999px; background: #f5d784; }
.featured-slider-scrubber input::-moz-range-thumb {
  width: 16px; height: 16px; border: 2px solid #1a1000; border-radius: 50%;
  background: #f5d784; box-shadow: 0 2px 9px rgba(0,0,0,.45);
}
.featured-slider-scrubber input:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 999px; }
.featured-slider-scrubber input:disabled { opacity: .3; cursor: default; }
.fixed-card-grid,
.homepage-staff-grid,
.homepage-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.fixed-card-grid .country-listing-card { min-width: 0; }

/* --- Staff --- */
.homepage-staff-card {
  position: relative; overflow: hidden; min-width: 0;
  aspect-ratio: 4 / 5; border: 1px solid var(--border); border-radius: var(--r);
  background: var(--card-bg); color: var(--white); text-decoration: none;
}
.homepage-staff-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.homepage-staff-card:hover img { transform: scale(1.035); }
.homepage-staff-card__overlay {
  position: absolute; inset: auto 0 0; display: flex; flex-direction: column; gap: 2px;
  padding: 28px 11px 11px; background: linear-gradient(transparent, rgba(0,0,0,.9));
}
.homepage-staff-card__overlay strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.homepage-staff-card__overlay small { color: var(--w70); font-size: 10px; }

/* --- Articles --- */
.homepage-article-card {
  overflow: hidden; min-width: 0; border: 1px solid var(--border);
  border-radius: var(--r); background: var(--card-bg);
}
.homepage-article-card__media { display: grid; height: 118px; place-items: center; overflow: hidden; text-decoration: none; }
.homepage-article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.homepage-article-card:hover .homepage-article-card__media img { transform: scale(1.035); }
.homepage-article-card__media span { color: var(--w40); font-size: 16px; font-weight: 800; letter-spacing: .08em; }
.homepage-article-card__body { padding: 11px; }
.homepage-article-card time { color: var(--w40); font-size: 9px; text-transform: uppercase; }
.homepage-article-card h3 { margin-top: 5px; font-size: 13px; line-height: 1.35; }
.homepage-article-card h3 a { color: inherit; text-decoration: none; }
.homepage-article-card p { display: none; margin-top: 7px; color: var(--w70); font-size: 11px; line-height: 1.55; }

/* --- Featured shops: MOBILE = horizontal scroll row --- */
.sponsored-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.sponsored-scroll::-webkit-scrollbar { display: none; }
.sponsored-scroll .sp-card { flex-shrink: 0; width: 200px; }

/* --- Banner ad slider --- */
.ad-wrap { padding: 0 14px 4px; max-width: 1200px; margin: 0 auto; }
.ad-slider {
  position: relative; border-radius: var(--r); overflow: hidden; height: 118px;
}
.ad-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 18px 16px; opacity: 0; transition: opacity .5s; gap: 14px;
}
.ad-slide.active { opacity: 1; }
.ad-s1 { background: linear-gradient(135deg,#1a0008,#6b0015); }
.ad-s2 { background: linear-gradient(135deg,#0a1628,#1a3a6b); }
.ad-s3 { background: linear-gradient(135deg,#1a1200,#5c3d00); }
.ad-img {
  width: 76px; height: 76px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.15);
  background: #2a1a1a;
}
.ad-content { flex: 1; min-width: 0; }
.ad-tag {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .5px; padding: 2px 6px; border-radius: 3px; margin-bottom: 4px;
}
.ad-title {
  font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0; line-height: 1.1; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ad-sub { font-size: 11px; color: var(--w70); }
.ad-cta {
  background: var(--white); color: var(--black);
  border: none; border-radius: 6px; padding: 8px 12px;
  font-size: 11px; font-weight: 700; font-family: 'Inter',sans-serif;
  cursor: pointer; flex-shrink: 0; white-space: nowrap;
}
.ad-dots {
  position: absolute; bottom: 8px; right: 10px;
  display: flex; gap: 4px;
}
.ad-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s;
}
.ad-dot.active { background: var(--white); width: 14px; border-radius: 3px; }

/* --- Deals horizontal scroll --- */
.deals-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.deals-scroll::-webkit-scrollbar { display: none; }
.deals-scroll .sp-card { flex-shrink: 0; width: 148px; }
.deals-scroll .sp-img { height: 88px; }

/* --- Hero subheadline --- */
.hero-sub {
  text-align: center; font-size: 13px; color: var(--w70);
  margin-bottom: 16px; line-height: 1.5;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* --- Country tile grid --- */
.country-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.country-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 12px 6px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .2s, background .15s;
  text-align: center;
  text-decoration: none;
}
.country-tile:hover { border-color: rgba(232,20,42,.3); background: rgba(232,20,42,.06); }
.country-tile.active { border-color: var(--red); background: rgba(232,20,42,.08); }
.country-flag { font-size: 22px; line-height: 1; }
.country-label { font-size: 12px; font-weight: 600; color: var(--white); line-height: 1.2; }
.country-count { font-size: 10px; color: var(--w40); }
.country-expand {
  grid-column: 1 / -1;
  padding: 4px 0 0;
}
.country-expand[style*="display: none"], .country-expand[style*="display:none"] { padding: 0; }

/* --- Explore entry cards --- */
.explore-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.explore-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, transform .2s;
}
.explore-card:hover { border-color: rgba(232,20,42,.4); transform: translateY(-1px); }
.explore-icon {
  font-size: 28px; width: 48px; height: 48px;
  background: var(--w10); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.explore-label { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.explore-desc { font-size: 12px; color: var(--w40); }
.city-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.city-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--w10); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: var(--w70);
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.city-chip:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.city-chip .chip-count { font-size: 10px; color: var(--w40); }
.city-chip:hover .chip-count { color: rgba(255,255,255,.7); }

/* --- All listings grid (filterable, MOBILE = 2 col) --- */
.listings-filter {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 0 0 12px; scrollbar-width: none; flex-wrap: nowrap;
}
.listings-filter::-webkit-scrollbar { display: none; }
.lf-btn {
  background: var(--w10); border: 1px solid var(--border);
  border-radius: 16px; padding: 5px 12px;
  font-size: 11px; font-weight: 500; color: var(--w70);
  white-space: nowrap; cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.lf-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* --- Footer --- */
footer {
  background: var(--black2); border-top: 1px solid var(--border);
  padding: 24px 16px; margin-top: 16px; text-align: center;
}
footer img { height: 30px; margin: 0 auto 14px; display: block; }
.footer-links {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 14px;
}
.footer-links a { font-size: 12px; color: var(--w40); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-disc {
  font-size: 10px; color: var(--w40); line-height: 1.6;
  max-width: 460px; margin: 0 auto;
}
.footer-copy { font-size: 11px; color: var(--w40); margin-top: 12px; }

/* --- Bottom nav (MOBILE only) --- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--black2); border-top: 1px solid var(--border);
  display: flex; padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; cursor: pointer; color: var(--w40);
  text-decoration: none; transition: color .2s;
}
.bnav-item.active { color: var(--red); }
.bi { font-size: 20px; }
.bl { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.bn-spacer { height: 70px; }


/* ═══════════════════════════════════════════════════════════════
   DESKTOP LAYOUT CODE  — secondary experience  (≥ 768px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* Center content on large screens — body stays full-width so header spans viewport */
  .hero, .categories, .section, .divider, .ad-wrap { max-width: 1440px; margin-left: auto; margin-right: auto; }
  footer { max-width: 1440px; margin-left: auto; margin-right: auto; }

  /* Hide mobile-only elements */
  .bottom-nav, .bn-spacer { display: none !important; }

  /* Hero */
  .hero { padding: 36px 24px 32px; }
  .hero-title { font-size: 52px; }
  .hero-tagline { font-size: 12px; }

  /* Search box: single-row on desktop */
  .search-box { flex-wrap: nowrap; max-width: 720px; }
  .search-field { min-width: 0; }

  /* Categories */
  .categories { padding: 14px 24px; gap: 10px; }
  .cat-pill { font-size: 13px; padding: 7px 16px; }

  /* Section */
  .section { padding: 24px 24px; }
  .divider { margin: 0 24px; }
  .section-title { font-size: 22px; }

  .country-directory-intro { padding-bottom: 12px; }
  .country-jump-nav { gap: 10px; }
  .country-jump-nav a { padding: 9px 15px; font-size: 13px; }
  .country-showcase { padding-top: 30px; padding-bottom: 30px; }
  .country-showcase-flag { font-size: 38px; }
  .country-showcase-header h2 { font-size: 32px; }
  .country-slider-group { margin-top: 24px; }
  .country-slider-group-featured { padding: 18px; }
  .slider-heading h3 { font-size: 18px; }
  .country-listing-slider { gap: 12px; }
  .country-listing-slider .country-listing-card {
    flex-basis: calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
  }

  .fixed-featured-shell { padding: 0px; }
  .fixed-featured-shell .country-listing-slider .country-listing-card {
    flex-basis: calc((100% - 60px) / 6);
    width: calc((100% - 60px) / 6);
  }
  .fixed-card-grid,
  .homepage-staff-grid,
  .homepage-article-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .homepage-article-card__media { height: 150px; }
  .homepage-article-card__body { padding: 14px; }
  .homepage-article-card h3 { font-size: 15px; }
  .homepage-article-card p { display: block; }

  /* Featured shops: DESKTOP = 4-col square vertical cards */
  .sponsored-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow: visible;
  }
  .sponsored-scroll .sp-card { width: auto; }
  .sp-body { padding: 10px 12px; }

  /* All-listings grid: DESKTOP = 5 cols */
  .all-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }

  /* Hero sub */
  .hero-sub { font-size: 15px; max-width: 600px; margin-bottom: 20px; }

  /* Country browse: DESKTOP */
  .country-tiles { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .country-tile { padding: 14px 8px; }
  .country-flag { font-size: 26px; }
  .country-label { font-size: 13px; }
  .city-chip { font-size: 13px; padding: 7px 16px; }

  /* Explore: 3 columns on desktop */
  .explore-grid { grid-template-columns: repeat(3, 1fr); }

  /* Ad slider */
  .ad-slider { height: 148px; }
  .ad-title { font-size: 22px; }

  /* Deals scroll: wider cards on desktop */
  .deals-scroll .sp-card { width: 180px; }
  .deals-scroll .sp-img  { height: 110px; }

  /* Footer */
  footer { padding: 32px 24px; }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(5, 1fr); }
  .all-grid   { grid-template-columns: repeat(6, 1fr) !important; }
  .city-grid  { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 767.8px) {
  .search-box .search-field { border-bottom: 1px solid #d0d0d0; }
}

@media (max-width: 479px) {
  .hero-title { font-size: 28px; }
  .btn-login { padding: 6px 10px; font-size: 11px; }
  .featured-slider-actions .see-all { display: none; }
  .featured-slider-arrow { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .featured-slider-motion span { animation: none; width: 100%; opacity: .45; }
  .featured-listing-slider { scroll-behavior: auto; }
}
