@font-face {
  font-family: "Ravi";
  src: url("./ravi.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f5f0;
  --bg-soft: #f1eee7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #1f241d;
  --text: #22261f;
  --text-soft: #596154;
  --primary: #728068;
  --primary-dark: #5f6c56;
  --primary-light: #dfe6d9;
  --accent: #c8b28a;
  --accent-soft: #efe4d2;
  --line: rgba(114, 128, 104, 0.14);
  --shadow: 0 10px 30px rgba(58, 68, 50, 0.08);
  --shadow-strong: 0 16px 50px rgba(58, 68, 50, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --nav-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(200, 178, 138, 0.16), transparent 24%),
    radial-gradient(circle at top left, rgba(114, 128, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #faf8f3 0%, #f5f1ea 100%);
  color: var(--text);
  font-family: "Ravi", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.page-shell {
  min-height: 100vh;
  padding: 20px 16px calc(var(--nav-h) + 24px);
}

.topbar,
.main-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 14px;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(114, 128, 104, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ghost-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(114, 128, 104, 0.14);
  transition: 0.25s ease;
}

.ghost-btn:hover {
  background: rgba(114, 128, 104, 0.14);
  transform: translateY(-1px);
}

.main-content {
  display: grid;
  gap: 18px;
}

.hero-card,
.flash-sale,
.pack-section,
.brands-section,
.categories,
.trend-section,
.trust-section,
.cta-section {
  position: relative;
  overflow: hidden;
}

.hero-card {
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245, 241, 234, 0.84)),
    linear-gradient(135deg, rgba(114,128,104,0.08), rgba(200,178,138,0.08));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(200,178,138,0.28), transparent 70%);
  z-index: -1;
}

.hero-badge,
.flash-kicker,
.pack-label,
.trend-badge,
.flash-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.2px;
}

.hero-badge {
  margin-bottom: 18px;
  color: var(--primary-dark);
  background: rgba(114, 128, 104, 0.1);
  border: 1px solid rgba(114, 128, 104, 0.1);
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.35;
  letter-spacing: -0.3px;
}

.hero-title span {
  display: block;
  color: var(--primary-dark);
}

.hero-desc {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 2.1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-btn,
.secondary-btn,
.solid-btn,
.outline-btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.28s ease;
  font-size: 0.96rem;
}

.primary-btn,
.solid-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(95, 108, 86, 0.22);
}

.primary-btn:hover,
.solid-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(95, 108, 86, 0.28);
}

.secondary-btn,
.outline-btn {
  color: var(--primary-dark);
  border: 1px solid rgba(114, 128, 104, 0.18);
  background: rgba(255,255,255,0.65);
}

.secondary-btn:hover,
.outline-btn:hover {
  background: rgba(114, 128, 104, 0.08);
  transform: translateY(-2px);
}

.large-btn {
  min-height: 56px;
  padding: 0 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat-box {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(114, 128, 104, 0.1);
  box-shadow: var(--shadow);
}

.stat-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.stat-box span {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.5;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 0.96rem;
}

.flash-sale,
.pack-section,
.brands-section,
.categories,
.trend-section,
.trust-section,
.cta-section {
  padding: 22px 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.flash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.flash-kicker {
  background: rgba(200, 178, 138, 0.18);
  color: #8a6d3e;
  margin-bottom: 8px;
}

.flash-link {
  color: var(--primary-dark);
  font-size: 0.92rem;
  white-space: nowrap;
}

.flash-card {
  position: relative;
  border-radius: 26px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1f241d 0%, #2e3629 100%);
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.flash-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.flash-badge {
  background: rgba(255,255,255,0.12);
  color: #f7efe1;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.flash-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.6;
}

.flash-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.8);
  line-height: 2;
}

.flash-glow {
  position: absolute;
  left: -20px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,178,138,0.4), transparent 65%);
  filter: blur(8px);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.time-box {
  min-width: 74px;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.time-box strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}

.time-box span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.74);
  font-size: 0.82rem;
}

.pack-grid,
.trend-grid,
.trust-grid {
  display: grid;
  gap: 14px;
}

.pack-card,
.trend-card,
.trust-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,245,239,0.92));
  border: 1px solid rgba(114, 128, 104, 0.1);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.pack-card:hover,
.trend-card:hover,
.trust-card:hover,
.category-card:hover,
.brand-chip:hover {
  transform: translateY(-4px);
}

.pack-card.featured {
  background: linear-gradient(135deg, rgba(114,128,104,0.12), rgba(200,178,138,0.16), rgba(255,255,255,0.92));
  border: 1px solid rgba(114, 128, 104, 0.16);
}

.pack-label {
  background: rgba(114, 128, 104, 0.1);
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.pack-card h3,
.trend-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.pack-card p,
.trend-card p,
.trust-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 0.93rem;
}

.pack-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}

.pack-meta span {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.pack-meta strong,
.trend-card strong,
.trust-card strong {
  color: var(--primary-dark);
}

.brands-section {
  overflow: hidden;
}

.brand-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.brand-strip::-webkit-scrollbar {
  display: none;
}

.brand-chip {
  flex: 0 0 auto;
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(239, 235, 226, 0.88));
  border: 1px solid rgba(114, 128, 104, 0.12);
  text-align: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.category-card {
  min-height: 96px;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(240,236,228,0.96)),
    linear-gradient(135deg, rgba(114,128,104,0.08), rgba(200,178,138,0.06));
  border: 1px solid rgba(114, 128, 104, 0.1);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: 0.28s ease;
}

.trend-badge {
  background: rgba(200, 178, 138, 0.2);
  color: #83683a;
  margin-bottom: 12px;
}

.trend-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1rem;
}

.trust-grid {
  grid-template-columns: 1fr;
}

.trust-card strong {
  font-size: 1rem;
}

.cta-card {
  padding: 4px;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.6;
}

.cta-card p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--text-soft);
  line-height: 2;
}

.bottom-nav {
  position: fixed;
  right: 14px;
  left: 14px;
  bottom: 14px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(36, 44, 30, 0.12);
}

.nav-item {
  min-height: 58px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-soft);
  transition: 0.24s ease;
}

.nav-item span {
  font-size: 1.2rem;
  line-height: 1;
}

.nav-item small {
  font-size: 0.76rem;
}

.nav-item.active,
.nav-item:hover {
  background: rgba(114, 128, 104, 0.1);
  color: var(--primary-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .page-shell {
    padding: 28px 24px 110px;
  }

  .hero-card {
    padding: 40px 34px;
  }

  .flash-sale,
  .pack-section,
  .brands-section,
  .categories,
  .trend-section,
  .trust-section,
  .cta-section {
    padding: 28px 24px;
  }

  .pack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trend-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 1100px) {
  .hero-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-desc {
    font-size: 1.05rem;
  }

  .flash-card {
    min-height: 340px;
    padding: 34px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .bottom-nav {
    right: 50%;
    left: auto;
    transform: translateX(50%);
    width: min(760px, calc(100% - 40px));
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 14px;
  }

  .ghost-btn {
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero-title {
    line-height: 1.5;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flash-head {
    flex-direction: column;
  }

  .countdown {
    gap: 8px;
  }

  .time-box {
    min-width: calc(50% - 4px);
  }
}
.nav-item {
  min-height: 58px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-soft);
  transition: 0.24s ease;
}

.nav-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-item small {
  font-size: 0.76rem;
  line-height: 1;
}

.nav-item.active,
.nav-item:hover {
  background: rgba(114, 128, 104, 0.1);
  color: var(--primary-dark);
}
/* ========== OFFERS PRO MAX ========== */

.offers-pro-hero {
  position: relative;
  overflow: hidden;
}

.offers-pro-hero::before,
.offers-pro-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.offers-pro-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  left: -50px;
  background: radial-gradient(circle, rgba(114, 128, 104, 0.16), transparent 72%);
}

.offers-pro-hero::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: -30px;
  background: radial-gradient(circle, rgba(196, 168, 118, 0.18), transparent 70%);
}

.offers-summary-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.summary-box {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(114, 128, 104, 0.14);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(34, 43, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-box strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.summary-box span {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.8;
}

.offers-pro-section {
  margin-top: 28px;
}

.section-head-advanced {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.offers-pro-controls {
  display: flex;
  gap: 10px;
}

.pro-arrow {
  width: 48px;
  height: 48px;
  border-radius: 18px;
}

.offers-pro-slider-wrap {
  margin-top: 18px;
  position: relative;
}

.offers-pro-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.offers-pro-slider::-webkit-scrollbar {
  display: none;
}

.offer-pro-card {
  position: relative;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,245,238,0.98));
  border: 1px solid rgba(114, 128, 104, 0.14);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(34, 43, 36, 0.08);
  overflow: hidden;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.offer-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(34, 43, 36, 0.11);
  border-color: rgba(114, 128, 104, 0.22);
}

.offer-pro-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 0;
  flex-wrap: wrap;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  border: 1px solid transparent;
}

.offer-chip.discount {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 10px 24px rgba(114, 128, 104, 0.24);
}

.offer-chip.category {
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  border-color: rgba(114, 128, 104, 0.14);
}

.offer-visual {
  margin: 16px 18px 0;
  height: 180px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.3px;
}

.offer-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(17, 24, 19, 0.22));
}

.offer-visual span {
  position: relative;
  z-index: 1;
}

.visual-1 { background: linear-gradient(135deg, #7d8b6f, #c4a876); }
.visual-2 { background: linear-gradient(135deg, #9b7e6b, #d4b08c); }
.visual-3 { background: linear-gradient(135deg, #849a85, #d4dbc6); color: #1f281f; }
.visual-4 { background: linear-gradient(135deg, #5c6b57, #a5b08a); }
.visual-5 { background: linear-gradient(135deg, #8f7d86, #d6c2c8); color: #2a2327; }
.visual-6 { background: linear-gradient(135deg, #866c63, #cfad93); }
.visual-7 { background: linear-gradient(135deg, #7c8f83, #ced9cf); color: #1d2620; }
.visual-8 { background: linear-gradient(135deg, #b89869, #ecd8b0); color: #2d2518; }
.visual-9 { background: linear-gradient(135deg, #7e706b, #cab8af); }
.visual-10 { background: linear-gradient(135deg, #6d7565, #c7aa7a); }

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
  height: 100%;
}

.offer-body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.9;
  color: var(--text-dark);
}

.offer-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 2;
}

.offer-meta-line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  background: rgba(114, 128, 104, 0.08);
  border: 1px solid rgba(114, 128, 104, 0.12);
  color: var(--primary-dark);
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 7px 11px;
}

.offer-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stock-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(114, 128, 104, 0.06);
  border: 1px solid rgba(114, 128, 104, 0.1);
}

.stock-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.stock-text strong {
  color: var(--text-dark);
  font-size: 0.88rem;
}

.stock-text span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.stock-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(114, 128, 104, 0.12);
  overflow: hidden;
}

.stock-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #728068, #c4a876);
}

.danger-stock {
  background: rgba(196, 108, 88, 0.07);
  border-color: rgba(196, 108, 88, 0.14);
}

.danger-stock .stock-bar {
  background: rgba(196, 108, 88, 0.12);
}

.danger-stock .stock-bar span {
  background: linear-gradient(90deg, #c76a56, #e2a577);
}

.offer-pro-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.offer-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.offers-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(114, 128, 104, 0.2);
  cursor: pointer;
  transition: 0.22s ease;
}

.dot.active {
  width: 28px;
  background: var(--primary-dark);
}

.offer-pro-card.ending-soon {
  border-color: rgba(196, 108, 88, 0.34);
  box-shadow: 0 20px 52px rgba(196, 108, 88, 0.14);
}

.offer-pro-card.ending-soon .offer-chip.discount {
  background: #c76a56;
  box-shadow: 0 10px 24px rgba(199, 106, 86, 0.22);
}

.offer-pro-card.expired {
  opacity: 0.72;
  filter: grayscale(0.12);
}

.offer-pro-card.expired .offer-visual::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(20, 22, 20, 0.42));
}

.offer-pro-card.expired .offer-cta {
  pointer-events: none;
  opacity: 0.6;
}

.cta-card-pro {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,244,237,0.98));
}

@media (min-width: 768px) {
  .offers-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers-pro-slider {
    grid-auto-columns: 48%;
  }
}

@media (min-width: 1200px) {
  .offers-pro-slider {
    grid-auto-columns: 32%;
  }
}
/* ========== BRANDS PAGE ========== */

.brands-hero {
  position: relative;
  overflow: hidden;
}

.brands-hero::before,
.brands-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.brands-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  background: radial-gradient(circle, rgba(196, 168, 118, 0.16), transparent 72%);
}

.brands-hero::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: -30px;
  background: radial-gradient(circle, rgba(114, 128, 104, 0.16), transparent 70%);
}

.brands-benefits {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.benefit-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(34, 43, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-card strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.benefit-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.brands-section {
  margin-top: 28px;
}

.featured-grid {
  display: grid;
  gap: 18px;
}

.brand-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,244,237,0.98));
  border: 1px solid rgba(114, 128, 104, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(34, 43, 36, 0.07);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(34, 43, 36, 0.1);
  border-color: rgba(114, 128, 104, 0.22);
}

.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 0;
  flex-wrap: wrap;
}

.brand-badge,
.brand-price-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
}

.brand-badge {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 10px 24px rgba(114, 128, 104, 0.22);
}

.brand-price-level {
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(114, 128, 104, 0.12);
}

.brand-mark {
  margin: 16px 18px 0;
  min-height: 150px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 1px;
}

.brand-mark-1 { background: linear-gradient(135deg, #6c7a61, #c4a876); }
.brand-mark-2 { background: linear-gradient(135deg, #8e7468, #d6b497); }
.brand-mark-3 { background: linear-gradient(135deg, #7e907f, #d8e0d0); color: #223026; }
.brand-mark-4 { background: linear-gradient(135deg, #6f6a74, #ceb6bf); }

.brand-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.brand-card-body h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.12rem;
}

.brand-card-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 2;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-tags span {
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.74rem;
}

.brand-category-grid {
  display: grid;
  gap: 16px;
}

.brand-category-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(34, 43, 36, 0.05);
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.category-head h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
}

.category-head span {
  background: rgba(196, 168, 118, 0.14);
  color: #8b6d3c;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.76rem;
}

.brand-category-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.brand-category-card li {
  color: var(--text-soft);
  border-bottom: 1px dashed rgba(114, 128, 104, 0.14);
  padding-bottom: 10px;
}

.brand-category-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.brand-story-section {
  margin-top: 28px;
}

.brand-story-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,244,237,0.98));
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(34, 43, 36, 0.06);
  display: grid;
  gap: 20px;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.story-content h2 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: 1.3rem;
  line-height: 1.8;
}

.story-content p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 2;
  font-size: 0.94rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-points {
  display: grid;
  gap: 14px;
}

.story-point {
  background: rgba(114, 128, 104, 0.06);
  border: 1px solid rgba(114, 128, 104, 0.1);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-point strong {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.story-point span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .brands-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-story-card {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: start;
  }
}
/* ========== ADVISOR PAGE ========== */

.advisor-hero {
  position: relative;
  overflow: hidden;
}

.advisor-hero::before,
.advisor-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.advisor-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -40px;
  background: radial-gradient(circle, rgba(196, 168, 118, 0.18), transparent 72%);
}

.advisor-hero::after {
  width: 180px;
  height: 180px;
  bottom: -45px;
  left: -20px;
  background: radial-gradient(circle, rgba(114, 128, 104, 0.16), transparent 70%);
}

.advisor-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.advisor-step-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(34, 43, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advisor-step-card strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.advisor-step-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.advisor-form-section,
.advisor-result-section,
.advisor-presets {
  margin-top: 28px;
}

.advisor-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(34, 43, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-card select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(114, 128, 104, 0.18);
  background: #fff;
  color: var(--text-dark);
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.form-card select:focus {
  border-color: rgba(114, 128, 104, 0.42);
  box-shadow: 0 0 0 4px rgba(114, 128, 104, 0.08);
}

.advisor-note {
  background: rgba(196, 168, 118, 0.1);
  border: 1px solid rgba(196, 168, 118, 0.18);
  border-radius: 20px;
  padding: 16px 18px;
}

.advisor-note p {
  margin: 0;
  color: #7a6240;
  line-height: 1.95;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.advisor-result-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,244,237,0.98));
  border: 1px solid rgba(114, 128, 104, 0.14);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(34, 43, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.76rem;
  box-shadow: 0 10px 24px rgba(114, 128, 104, 0.2);
}

.advisor-result-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.15rem;
}

.advisor-result-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 2;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-tags span {
  background: rgba(114, 128, 104, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.74rem;
}

.preset-grid {
  display: grid;
  gap: 16px;
}

.preset-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(114, 128, 104, 0.12);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(34, 43, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preset-card strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.preset-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.preset-btn {
  width: fit-content;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .advisor-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preset-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
