@import "tailwindcss";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import "swiper/css";

* {
  font-family: "Outfit";
}

:root {
  --green-900: #0d3a1e;
  --green-800: #145228;
  --green-700: #1a6b33;
  --green-600: #1f8340;
  --green-500: #25a050;
  --green-400: #36c465;
  --green-300: #5dd988;
  --green-100: #d0f5df;
  --green-50: #edfaf3;

  --yellow-600: #c47a00;
  --yellow-500: #e8930a;
  --yellow-400: #f7ab1e;
  --yellow-300: #fcc945;
  --yellow-200: #fde08a;
  --yellow-100: #fef3cc;
  --yellow-50: #fffae8;

  --text-dark: #0f1f15;
  --text-mid: #344a3b;
  --text-soft: #6b8070;
  --bg-page: #f5faf7;
  --bg-card: #ffffff;
  --radius-card: 18px;
  --shadow-card:
    0 4px 20px rgba(13, 58, 30, 0.1), 0 1px 4px rgba(13, 58, 30, 0.06);
  --shadow-hover:
    0 10px 36px rgba(13, 58, 30, 0.16), 0 2px 8px rgba(13, 58, 30, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========= NAVBAR ========= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-900);
  border-bottom: 3px solid var(--yellow-400);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 88px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow-400);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-900);
}

.nav-logo span em {
  color: var(--yellow-400);
  font-style: normal;
}

.nav-search {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  max-width: 480px;
}

.nav-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  padding: 10px 16px;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nav-search button {
  background: var(--yellow-400);
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  color: var(--green-900);
  font-size: 1rem;
  transition: background 0.2s;
}

.nav-search button:hover {
  background: var(--yellow-300);
}

.nav-city {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-city:hover {
  color: var(--yellow-300);
}

.nav-spacer {
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost-nav {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 50px;
  padding: 7px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 0.87rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost-nav:hover {
  border-color: var(--yellow-400);
  color: var(--yellow-400);
}

.btn-publish {
  background: var(--yellow-400);
  border: none;
  color: var(--green-900);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(248, 171, 30, 0.4);
  text-decoration: none;
}

.btn-publish:hover {
  background: var(--yellow-300);
  box-shadow: 0 5px 18px rgba(248, 171, 30, 0.55);
  transform: translateY(-1px);
}

/* ── USER MENU (shown when logged in) ── */
.user-menu-wrap {
  position: relative;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 5px 14px 5px 5px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.user-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--yellow-400);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--green-900);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(247, 171, 30, 0.4);
}

.user-chip-info {
  line-height: 1.2;
}

.user-chip-greeting {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

.user-chip-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  max-width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.user-chip-arrow {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s;
}

.user-menu-wrap.open .user-chip-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(10, 40, 20, 0.18),
    0 2px 10px rgba(10, 40, 20, 0.08);
  border: 1.5px solid var(--green-100);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.22, 0.9, 0.36, 1);
  z-index: 300;
}

.user-menu-wrap.open .user-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Dropdown header */
.ud-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ud-avatar-lg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(247, 171, 30, 0.35);
  flex-shrink: 0;
}

.ud-user-info {}

.ud-user-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.ud-user-email {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ud-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(52, 196, 101, 0.2);
  border: 1px solid rgba(52, 196, 101, 0.3);
  color: var(--green-300);
  font-size: 0.67rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  margin-top: 4px;
}

/* Dropdown links */
.ud-body {
  padding: 8px 0;
}

.ud-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 0.86rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.ud-link:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.ud-link i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--green-500);
}

.ud-link .ud-badge {
  margin-left: auto;
  background: var(--green-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
}

.ud-divider {
  height: 1px;
  background: var(--green-100);
  margin: 4px 0;
}

.ud-link-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 0.86rem;
  color: #dc2626;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.ud-link-logout:hover {
  background: #fef2f2;
}

.ud-link-logout i {
  width: 20px;
  text-align: center;
}

/* Online indicator */
.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-400);
  border: 2px solid var(--green-900);
  position: absolute;
  bottom: 1px;
  right: 1px;
}

/* ========= HERO ========= */
.hero {
  position: relative;
  background: var(--green-900);
  overflow: hidden;
  padding: 80px 40px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 480px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 70% 50%,
      rgba(37, 160, 80, 0.18) 0%,
      transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%,
      rgba(248, 171, 30, 0.12) 0%,
      transparent 60%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px,
      transparent 1px);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(248, 171, 30, 0.15);
  border: 1.5px solid rgba(248, 171, 30, 0.35);
  color: var(--yellow-300);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--yellow-400);
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  max-width: 560px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 22px;
  font-family: "Outfit", sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
}

.hero-search input::placeholder {
  color: #aab8b0;
}

.hero-search .sep {
  width: 1px;
  height: 28px;
  background: #ddd;
}

.hero-search select {
  border: none;
  outline: none;
  padding: 15px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.87rem;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
}

.hero-search .btn-hero-search {
  background: var(--green-500);
  border: none;
  padding: 15px 28px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.hero-search .btn-hero-search:hover {
  background: var(--green-600);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 28px;
}

.hero-stat .num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--yellow-300);
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-illustration {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transform: rotate(-2deg);
}

.hero-mini-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}

.hero-mini-card:hover {
  transform: scale(1.04);
}

.hero-mini-card .hmc-info {
  padding: 8px 10px;
}

.hero-mini-card .hmc-price {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow-300);
}

.hero-mini-card .hmc-title {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mini-card.featured {
  grid-column: span 2;
}

.img-hero {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  /* Transparencia */
  backdrop-filter: blur(8px);
  /* Aplica el desenfoque */
  -webkit-backdrop-filter: blur(8px);
  /* Soporte Safari */
}

/* ========= CATEGORIES ========= */
.categories-section {
  padding: 50px 40px 30px;
  background: #fff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.section-title span {
  color: var(--green-500);
}

.section-link {
  font-size: 0.85rem;
  color: var(--green-600);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.section-link:hover {
  gap: 8px;
}

/* ── Categories Swiper ── */
.categories-section {
  padding: 40px 40px 30px;
  background: #fff;
}

.categories-swiper {
  padding: 8px 8px 16px !important;
  position: relative;
}


/* ── Cat card: estilo limpio tipo imagen de referencia ── */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-radius: 0;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.cat-card:hover {
  transform: translateY(-3px);
}

.cat-card:hover .cat-label {
  color: var(--green-600);
}

.cat-card.active .cat-label {
  color: var(--green-600);
  font-weight: 700;
}

.cat-card.active .cat-icon i {
  color: var(--green-500);
}

/* ── Ícono: grande, sin fondo, solo el icono ── */
.cat-icon {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  /* ícono grande */
  color: #2d2d2d;
  transition: color 0.2s;
}

.cat-card:hover .cat-icon i {
  color: var(--green-500);
}

/* Eliminar colores de fondo cíclicos anteriores */
.swiper-slide:nth-child(8n + 1) .cat-icon,
.swiper-slide:nth-child(8n + 2) .cat-icon,
.swiper-slide:nth-child(8n + 3) .cat-icon,
.swiper-slide:nth-child(8n + 4) .cat-icon,
.swiper-slide:nth-child(8n + 5) .cat-icon,
.swiper-slide:nth-child(8n + 6) .cat-icon,
.swiper-slide:nth-child(8n + 7) .cat-icon,
.swiper-slide:nth-child(8n + 8) .cat-icon {
  background: none;
  color: #2d2d2d;
}

/* ── Label ── */
.cat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: #333;
  line-height: 1.3;
  width: 100%;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ========= MAIN LAYOUT ========= */
.main-layout {
  display: flex;
  gap: 24px;
  padding: 36px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.sidebar {
  flex-shrink: 0;
  width: 260px;
}

.filter-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.filter-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-title i {
  color: var(--green-500);
}

.filter-group {
  margin-bottom: 22px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Scrollbar personalizada para que no se vea tosca */
.filter-options::-webkit-scrollbar {
  width: 5px;
}
.filter-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.filter-options::-webkit-scrollbar-thumb {
  background: var(--green-200, #c8e6d1);
  border-radius: 10px;
}
.filter-options::-webkit-scrollbar-thumb:hover {
  background: var(--green-400);
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  user-select: none;
}

.filter-opt:hover {
  background: var(--green-50);
  transform: translateX(4px);
}

.filter-opt.selected {
  background: var(--green-100);
  border-color: var(--green-300);
}

.filter-opt input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}

.filter-opt input[type="checkbox"]:checked {
  background: var(--green-500);
  border-color: var(--green-500);
}

.filter-opt input[type="checkbox"]:checked::after {
  content: "\F26E"; /* Bootstrap Icon check */
  font-family: "bootstrap-icons";
  position: absolute;
  color: #fff;
  font-size: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter-opt-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.filter-opt input[type="checkbox"]:checked + .filter-opt-label {
  color: var(--green-900);
  font-weight: 600;
}

.filter-opt-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-soft);
  background: #f0f0f0;
  padding: 1px 7px;
  border-radius: 20px;
}

.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 10px;
  font-size: 0.8rem;
  color: var(--text-soft);
  pointer-events: none;
  font-weight: 600;
}

.price-input {
  width: 100%;
  border: 1.5px solid #eef2f0;
  border-radius: 10px;
  padding: 8px 10px 8px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  outline: none;
  color: var(--text-dark);
  transition: all 0.2s;
  background: #f8faf9;
}

.price-input:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 160, 80, 0.1);
}

.price-sep {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.range-slider {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--green-500);
}

.btn-apply-filter {
  width: 100%;
  background: var(--green-500);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 18px;
  transition: all 0.2s;
}

.btn-apply-filter:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

.condition-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cond-tag {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
}

.cond-tag:hover {
  border-color: var(--green-400);
  color: var(--green-600);
}

.cond-tag.active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
}

.sidebar-promo {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: var(--radius-card);
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sidebar-promo::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  background: rgba(248, 171, 30, 0.15);
  border-radius: 50%;
}

.sidebar-promo .promo-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--yellow-400);
  color: var(--green-900);
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.sidebar-promo h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.sidebar-promo p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height: 1.5;
}

.sidebar-promo a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-400);
  color: var(--green-900);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.2s;
}

.sidebar-promo a:hover {
  background: var(--yellow-300);
}

/* ========= PRODUCT GRID ========= */
.content-area {
  flex: 1;
  min-width: 0;
}

.content-section {
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1.5px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-200, #a8e6bf);
}

.product-card .badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--green-500);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card .badge-used {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--yellow-400);
  color: var(--green-900);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card .badge-refurbished {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #6366f1;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card .btn-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #bbb;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.product-card .btn-fav:hover {
  color: #e53935;
  transform: scale(1.1);
}

.product-card .btn-fav.active {
  color: #e53935;
}

.product-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  background: #e8ede9;
}

.product-img-placeholder {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8f2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #b8d4be;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 14px 16px 16px;
}

.product-price {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-600);
  margin-bottom: 4px;
}

.product-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.product-meta-row i {
  font-size: 0.8rem;
}

.product-seller {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seller-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-700);
  flex-shrink: 0;
  overflow: hidden;
}

.seller-info {
  flex: 1;
  min-width: 0;
}

.seller-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  color: var(--yellow-500);
}

.seller-rating span {
  color: var(--text-soft);
  margin-left: 2px;
}

/* ========= NEARBY SECTION ========= */
.nearby-section {
  background: linear-gradient(135deg, var(--green-50), var(--yellow-50));
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 0;
  border: 1.5px solid var(--green-100);
}

.nearby-section .section-header {
  margin-bottom: 22px;
}

.nearby-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--green-900);
  border-top: 4px solid var(--yellow-400);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 48px 48px;
}

.footer-brand .brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow-400);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--yellow-400);
  color: var(--green-900);
  border-color: var(--yellow-400);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow-300);
}

.footer-col .app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.app-btn i {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.app-btn-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.app-btn-text strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--yellow-300);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: var(--yellow-300);
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeUp 0.45s both;
}

.product-card:nth-child(1) {
  animation-delay: 0.05s;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3) {
  animation-delay: 0.15s;
}

.product-card:nth-child(4) {
  animation-delay: 0.2s;
}

.product-card:nth-child(5) {
  animation-delay: 0.25s;
}

.product-card:nth-child(6) {
  animation-delay: 0.3s;
}

.product-card:nth-child(7) {
  animation-delay: 0.35s;
}

.product-card:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========= MISC ========= */
.divider-line {
  height: 3px;
  background: linear-gradient(to right,
      var(--green-400),
      var(--yellow-400),
      transparent);
  border-radius: 50px;
  margin-bottom: 24px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════════
   ANIMACIONES — estado inicial oculto
═══════════════════════════════════════════════ */
.sa-hidden {
  opacity: 0;
}

/* ═══════════════════════════════════════════════
   ANUNCIOS PATROCINADOS
═══════════════════════════════════════════════ */
.sponsored-section {
  padding: 48px 40px 36px;
  background: linear-gradient(180deg, #fff 0%, var(--yellow-50) 100%);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--yellow-100);
}

.sponsored-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.sponsored-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-300));
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.sponsored-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sponsored-info-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.sponsored-info-pill i { color: var(--yellow-500); }

.sponsored-info-pill a {
  color: var(--green-600);
  font-weight: 700;
  text-decoration: none;
}

.sponsored-info-pill a:hover { text-decoration: underline; }

/* Horizontal scroll track */
.sponsored-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow-300) transparent;
}

.sponsored-track::-webkit-scrollbar { height: 5px; }
.sponsored-track::-webkit-scrollbar-track { background: transparent; }
.sponsored-track::-webkit-scrollbar-thumb {
  background: var(--yellow-300);
  border-radius: 4px;
}

/* Sponsored card */
.sp-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--bg-card);
  border-radius: 18px;
  border: 2px solid var(--yellow-200);
  box-shadow: 0 4px 18px rgba(247,171,30,0.12), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: all 0.25s cubic-bezier(0.175,0.885,0.32,1.275);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-400);
  box-shadow: 0 12px 36px rgba(247,171,30,0.25), 0 2px 8px rgba(0,0,0,0.08);
}

.sp-tag-patrocinado {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(13,58,30,0.82);
  color: var(--yellow-300);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sp-img-wrap {
  position: relative;
  width: 100%;
  height: 148px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0faf4, #fffbe8);
}

.sp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.sp-card:hover .sp-img-wrap img { transform: scale(1.06); }

.sp-img-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--green-200);
}

.sp-condition {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.sp-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-600);
}

.sp-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.sp-seller {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f4f1;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.sp-seller-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hover CTA overlay */
.sp-hover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13,58,30,0.88) 0%, transparent 100%);
  padding: 20px 14px 12px;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.sp-card:hover .sp-hover-cta { opacity: 1; }

.sp-hover-cta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-400);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   ¿CÓMO FUNCIONA?
═══════════════════════════════════════════════ */
.how-section {
  padding: 72px 40px;
  background: #fff;
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.how-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.how-title span { color: var(--green-500); }

.how-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 460px;
  margin: 0 auto;
}

/* Steps row */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: 22px;
  border: 1.5px solid var(--green-100);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.25s ease;
}

.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-300);
}

.how-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  color: var(--green-300);
  font-size: 1.4rem;
  margin-top: 60px;
}

.how-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.how-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-50), var(--yellow-50));
  border: 2px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-500);
  margin-bottom: 18px;
  margin-top: 8px;
  transition: all 0.25s;
}

.how-step:hover .how-step-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.how-step-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-600);
  text-decoration: none;
  transition: gap 0.2s;
}

.how-step-link:hover { gap: 9px; }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: var(--green-900);
  padding: 72px 48px;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(247,171,30,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 30%, rgba(54,196,101,0.1) 0%, transparent 60%);
}

.cta-banner-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-banner-left { flex: 1; min-width: 280px; }

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247,171,30,0.18);
  border: 1.5px solid rgba(247,171,30,0.35);
  color: var(--yellow-300);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-banner h2 em {
  color: var(--yellow-400);
  font-style: normal;
}

.cta-banner-left > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow-400);
  color: var(--green-900);
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.22s;
  box-shadow: 0 6px 24px rgba(247,171,30,0.45);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--yellow-300);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(247,171,30,0.55);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 2px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.22s;
}

.btn-cta-ghost:hover {
  border-color: var(--yellow-400);
  color: var(--yellow-300);
}

.cta-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.cta-trust-row span i { color: var(--green-400); }

/* Stat cards grid */
.cta-banner-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex-shrink: 0;
}

.cta-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 22px;
  min-width: 120px;
  transition: all 0.2s;
}

.cta-stat-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.cta-stat-yellow {
  background: rgba(247,171,30,0.1);
  border-color: rgba(247,171,30,0.2);
}

.cta-stat-yellow:hover {
  background: rgba(247,171,30,0.16);
  border-color: rgba(247,171,30,0.3);
}

.cta-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow-300);
  line-height: 1;
  margin-bottom: 6px;
}

.cta-stat-yellow .cta-stat-num { color: var(--yellow-400); }

.cta-stat-lbl {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — NUEVAS SECCIONES
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .how-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .how-step-connector { display: none; }

  .sponsored-section,
  .how-section,
  .cta-banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-banner-content {
    flex-direction: column;
    gap: 36px;
  }

  .cta-banner-right {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 540px) {
  .cta-banner-right {
    grid-template-columns: 1fr 1fr;
  }

  .sponsored-track { gap: 12px; }
  .sp-card { width: 170px; }
}