/* Kudavam — основная сетка стилей */
:root {
  --green: #9CB73D;
  --green-deep: #6E8722;
  --green-soft: #D9E5A8;
  --green-tint: #EEF3D6;
  --ink: #1A1F0E;
  --ink-2: #3D4429;
  --muted: #757960;
  --line: #E3E2D6;
  --cream: #F6F4EB;
  --cream-2: #EFEDE0;
  --white: #FFFFFF;
  --red: #C8453D;
  --shadow-card: 0 2px 0 rgba(26,31,14,0.04), 0 18px 40px -22px rgba(26,31,14,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
.display { font-family: "Unbounded", "Manrope", sans-serif; letter-spacing: -0.01em; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Promo strip */
.promo-strip {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.promo-strip span.accent { text-decoration: underline; text-underline-offset: 3px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name { font-family: "Unbounded"; font-weight: 700; letter-spacing: 0.04em; font-size: 18px; }
.logo-text .sub { font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; gap: 6px; }
.nav-item {
  padding: 10px 16px;
  font-size: 14.5px; font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-item:hover { background: var(--green-tint); color: var(--ink); }
.nav-item .chev { font-size: 10px; opacity: 0.6; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.1s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: white; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-outline { background: transparent; color: var(--green-deep); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: white; }

/* Hero */
.hero {
  background: var(--cream);
  padding: 60px 0 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; gap: 18px;
  margin-bottom: 36px;
}
.hero-stat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
}
.hero-stat .num {
  font-family: "Unbounded"; font-weight: 700; font-size: 18px;
  color: var(--green-deep);
}
.hero-stat .lbl { font-size: 12px; color: var(--muted); line-height: 1.2; }

.hero h1 {
  font-family: "Unbounded";
  font-size: clamp(56px, 9vw, 124px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--ink);
}
.hero h1 .swoop { color: var(--green); position: relative; }
.hero-sub {
  font-size: 13px; letter-spacing: 0.22em;
  color: var(--muted); text-transform: uppercase;
  margin-top: 8px;
}
.hero-tagline {
  margin-top: 48px;
  font-family: "Unbounded"; font-weight: 600;
  font-size: 18px; line-height: 1.5;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--ink-2);
}
.hero-tagline .dot { color: var(--green); }
.hero-cta { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.stamp {
  width: 88px; height: 88px; border-radius: 999px;
  background: var(--green); color: white;
  display: grid; place-items: center;
  position: relative;
  transition: transform 0.4s ease;
}
.stamp:hover { transform: rotate(20deg); }
.stamp svg.ring { position: absolute; inset: 0; }

/* Hero photo collage */
.hero-photos {
  position: relative;
  height: 540px;
}
.hero-photos .blob {
  position: absolute;
  border-radius: 48% 52% 60% 40% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26,31,14,0.35);
  background: #ddd;
}
.hero-photos .blob img { width: 100%; height: 100%; object-fit: cover; }
.blob.b1 { top: 0; left: 0; width: 46%; height: 48%; border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%; }
.blob.b2 { top: 4%; right: 0; width: 46%; height: 48%; border-radius: 60% 40% 55% 45% / 50% 50% 60% 40%; }
.blob.b3 { bottom: 0; left: 6%; width: 46%; height: 48%; border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
.blob.b4 { bottom: 4%; right: 4%; width: 46%; height: 48%; border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }

/* Section base */
section { padding: 110px 0; }
.section-title {
  font-family: "Unbounded"; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em; line-height: 1;
  margin: 0 0 56px;
}
.section-title .accent { color: var(--green); }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--green-deep); text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}

/* Module placeholder */
.module-stub {
  position: relative;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(156,183,61,0.08) 18px 19px),
    var(--cream);
  border: 1.5px dashed var(--green);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}
.module-stub::before {
  content: "MODULE PLACEHOLDER";
  position: absolute; top: 16px; left: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--green-deep);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--green);
}
.module-stub .stub-caption {
  position: absolute; top: 16px; right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
}

/* Search form chrome (заглушка под Sletat/Travelata) */
.search-form-shell {
  background: white;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.search-tabs { display: flex; gap: 28px; margin-bottom: 24px; }
.search-tab {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  color: var(--muted);
  padding-bottom: 8px;
}
.search-tab.active { color: var(--ink); border-bottom: 2px solid var(--green); }
.search-tab .radio {
  width: 16px; height: 16px; border-radius: 999px;
  border: 1.5px solid var(--muted);
  display: inline-grid; place-items: center;
}
.search-tab.active .radio { border-color: var(--green); }
.search-tab.active .radio::after {
  content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--green);
}

.search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.4fr 0.8fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
}
.search-field {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}
.search-field:last-child { border-right: none; }
.search-field .lbl {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.search-field .val {
  font-size: 15px; font-weight: 700;
  color: var(--ink);
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.search-pill {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; color: var(--ink-2);
  border: 1px solid var(--line);
}
.search-pill .chev { opacity: 0.5; }

.search-submit-row {
  margin-top: 20px;
  display: flex; justify-content: flex-end;
}

/* Category bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 18px;
}
.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #333;
  cursor: pointer;
  isolation: isolate;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,31,14,0) 0%, rgba(26,31,14,0.55) 100%);
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card.big { grid-row: span 2; }
.cat-card .cat-label {
  position: absolute; top: 24px; left: 24px;
  color: white; z-index: 2;
  font-family: "Unbounded"; font-weight: 700;
  font-size: 22px; text-transform: uppercase; line-height: 1.1;
  letter-spacing: 0.02em;
}
.cat-card .cat-cta {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 2;
  background: var(--green); color: white;
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Hot tour banner */
.hot-banner {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background: #233a3a;
  min-height: 460px;
  display: flex; align-items: center;
  padding: 60px;
}
.hot-banner img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hot-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hot-banner-inner { position: relative; z-index: 2; color: white; max-width: 480px; }
.hot-banner .stars { color: #FFD15C; letter-spacing: 4px; font-size: 13px; }
.hot-banner h3 { font-family: "Unbounded"; font-size: 36px; font-weight: 700; margin: 12px 0 4px; }
.hot-banner .price { font-family: "Unbounded"; font-size: 56px; font-weight: 800; line-height: 1; }
.hot-banner .price sup { font-size: 16px; font-weight: 600; opacity: 0.7; margin-left: 6px; vertical-align: super; }
.hot-banner .meta { opacity: 0.9; margin-top: 10px; font-size: 15px; }
.hot-banner-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hot-banner .discount {
  background: var(--red); color: white;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
}

/* Offers section */
.offers-filters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: white;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}
.offer-filter {
  padding: 10px 14px;
  display: flex; flex-direction: column;
  font-size: 12px; color: var(--muted);
  border-right: 1px solid var(--line);
}
.offer-filter:last-child { border-right: none; }
.offer-filter .lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.offer-filter .val { font-size: 14px; font-weight: 700; color: var(--ink); margin-top: 2px; }

.offer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.offer-card {
  background: white; border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
}
.offer-card .photo {
  position: relative; aspect-ratio: 4/3;
}
.offer-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.offer-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-weight: 800; font-size: 13px;
  padding: 6px 10px; border-radius: 4px;
}
.offer-card .heart {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
}
.offer-card .body { padding: 16px 18px 20px; }
.offer-card .stars { color: #FFB534; letter-spacing: 1px; font-size: 11px; }
.offer-card .title {
  font-family: "Unbounded"; font-weight: 700;
  font-size: 15px; margin: 8px 0 4px; line-height: 1.25;
}
.offer-card .loc { font-size: 12px; color: var(--muted); }
.offer-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 14px;
}
.offer-card .price { font-family: "Unbounded"; font-weight: 700; font-size: 22px; color: var(--ink); }
.offer-card .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* Stats cards */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat-card {
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}
.stat-card .num {
  font-family: "Unbounded"; font-weight: 800;
  font-size: 76px; line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.03em;
}
.stat-card .lbl {
  margin-top: 14px;
  font-size: 15px; color: var(--ink-2);
  line-height: 1.4;
}
.stat-card .stat-photo {
  height: 160px; border-radius: 16px;
  overflow: hidden;
}
.stat-card .stat-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 24px;
}
.reviews-intro h3 {
  font-family: "Unbounded"; font-weight: 800;
  font-size: 42px; line-height: 1; margin: 0 0 28px;
  text-transform: uppercase;
}
.review-card {
  background: var(--cream); border-radius: 22px;
  padding: 30px;
  position: relative;
  border: 1px solid transparent;
}
.review-card .quote {
  position: absolute; top: 24px; right: 24px;
  color: var(--green); font-size: 36px; font-family: "Unbounded"; font-weight: 800;
  line-height: 1;
}
.review-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.review-card .author { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* Quiz */
.quiz {
  background: var(--cream);
  border-radius: 28px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: ""; position: absolute; top: -60px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--green-soft) 0%, transparent 70%);
  z-index: 0;
}
.quiz-text { position: relative; z-index: 1; }
.quiz-text h3 {
  font-family: "Unbounded"; font-weight: 800;
  font-size: 44px; line-height: 1.05; margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.quiz-text h3 .accent { color: var(--green); }
.quiz-text .small {
  font-size: 12px; color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; margin: 22px 0 28px;
}
.quiz-photo {
  position: relative; height: 360px;
  border-radius: 50% / 45%;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(26,31,14,0.3);
}
.quiz-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Destinations */
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.dest-card {
  background: white; border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease;
}
.dest-card:hover { transform: translateY(-4px); border-color: var(--green); }
.dest-card .country {
  font-family: "Unbounded"; font-weight: 700;
  font-size: 18px; margin-bottom: 14px;
}
.dest-card .ph {
  aspect-ratio: 4/3; border-radius: 12px;
  overflow: hidden;
}
.dest-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.dest-cta-row { text-align: center; margin-top: 48px; }

/* Offices */
.offices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.office-card {
  background: white; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
  box-shadow: var(--shadow-card);
}
.office-card h4 {
  font-family: "Unbounded"; font-weight: 800;
  font-size: 22px; letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.office-card .addr { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.office-card .phone {
  display: inline-block;
  color: var(--green-deep); font-weight: 700;
  font-size: 15px; margin: 14px 0;
  border-bottom: 1px dashed var(--green);
}
.office-card .rating {
  display: flex; align-items: center; gap: 8px;
  margin: 6px 0 22px;
}
.office-card .rating-num {
  font-weight: 800; font-size: 16px;
  background: var(--green); color: white;
  padding: 2px 8px; border-radius: 6px;
}
.office-card .rating-stars { color: #FFB534; font-size: 13px; letter-spacing: 2px; }
.office-card .rating-cap { font-size: 12px; color: var(--muted); }
.office-card .actions { display: flex; gap: 10px; margin: 12px 0 20px; }
.office-card .actions .ic {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1.5px solid var(--green);
  display: grid; place-items: center;
  color: var(--green-deep);
  transition: all 0.15s ease;
}
.office-card .actions .ic:hover { background: var(--green); color: white; }
.office-card .photo {
  aspect-ratio: 4/3;
  border-radius: 14px; overflow: hidden;
}
.office-card .photo img { width: 100%; height: 100%; object-fit: cover; }

/* Map stub */
.map-stub {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 48%, rgba(156,183,61,0.18) 49%, rgba(156,183,61,0.18) 51%, transparent 52%) 0 0 / 60px 60px,
    linear-gradient(-45deg, transparent 48%, rgba(156,183,61,0.18) 49%, rgba(156,183,61,0.18) 51%, transparent 52%) 0 0 / 60px 60px,
    #E8EEDA;
  border: 1.5px dashed var(--green);
}
.map-stub .pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
}
.map-stub .pin .dot {
  width: 18px; height: 18px;
  background: var(--green); border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-stub .pin .lbl {
  margin-top: 6px;
  font-size: 11px; font-weight: 700;
  background: white; padding: 4px 8px; border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.map-stub-caption {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--cream); padding: 8px 14px;
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--green-deep);
  border: 1px solid var(--green);
}
.map-stub-open {
  position: absolute; top: 18px; left: 18px;
  background: white; padding: 10px 16px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Final CTA */
.final-cta {
  position: relative;
  border-radius: 0;
  height: 540px;
  overflow: hidden;
  display: grid; place-items: center;
}
.final-cta img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.final-cta::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(26,31,14,0.35);
  z-index: 1;
}
.final-cta-card {
  position: relative; z-index: 2;
  text-align: center; color: white;
  padding: 56px 80px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 24px;
  backdrop-filter: blur(2px);
}
.final-cta-card .small {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 14px;
}
.final-cta-card h3 {
  font-family: "Unbounded"; font-weight: 800;
  font-size: 56px; margin: 0 0 28px; line-height: 1;
}
.final-cta-card .btn { font-size: 16px; padding: 18px 36px; }
.final-cta-card .foot { margin-top: 20px; font-size: 14px; opacity: 0.85; }

/* Footer */
.footer {
  background: var(--green);
  color: white;
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 40px;
}
.footer-logo .logo-mark { background: white; color: var(--green); }
.footer-logo .name { color: white; }
.footer-logo .sub { color: rgba(255,255,255,0.7); }
.footer h5 {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  margin: 0 0 20px; opacity: 0.8;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 14.5px; }
.footer ul li a { opacity: 0.9; }
.footer ul li a:hover { opacity: 1; text-decoration: underline; }
.footer .big-phone {
  font-family: "Unbounded"; font-weight: 700; font-size: 22px;
  display: block; margin-bottom: 8px;
}
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; justify-content: space-between;
  font-size: 12px; opacity: 0.75;
}

/* Favorites floating */
.fav-fab {
  position: fixed; bottom: 24px; left: 24px;
  background: white; border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  box-shadow: var(--shadow-card);
  z-index: 30;
}
.fav-fab svg { color: var(--green); margin-bottom: 4px; }

/* Cookie bar */
.cookie {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 20px;
  max-width: 920px;
  font-size: 12.5px; color: var(--ink-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 40;
}
.cookie button {
  background: var(--green); color: white;
  padding: 10px 22px; border-radius: 10px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}

/* Tweaks panel */
.tweaks-panel {
  position: fixed; top: 100px; right: 24px;
  background: white; border-radius: 14px;
  border: 1px solid var(--line);
  width: 260px; padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 60;
}
.tweaks-panel h4 {
  font-family: "Unbounded"; font-size: 13px; font-weight: 700;
  margin: 0 0 14px; letter-spacing: 0.1em; text-transform: uppercase;
}
.tw-row { margin-bottom: 16px; }
.tw-label { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.tw-swatches { display: flex; gap: 8px; }
.tw-swatch {
  width: 32px; height: 32px; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer;
}
.tw-swatch.active { border-color: var(--ink); }
.tw-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--cream); border-radius: 8px;
  font-size: 13px; font-weight: 600;
}
.tw-toggle .knob {
  width: 36px; height: 20px; background: var(--line);
  border-radius: 999px; position: relative;
  transition: background 0.2s ease;
}
.tw-toggle .knob::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: white; border-radius: 999px;
  transition: transform 0.2s ease;
}
.tw-toggle.on .knob { background: var(--green); }
.tw-toggle.on .knob::after { transform: translateX(16px); }
