/* ╔══════════════════════════════════════════════════════════════════
   ║  Dashboard.css — Smaakverkenners klanten-dashboard
   ║  Volgens huisstijl smaakverkenners.nl: Voltaire voor h1/h2/h3,
   ║  Volkhov italic als accent, Lora voor body. Kleurvariatie tussen
   ║  secties (groen feature, paars voucher, cream ontdek).
   ╚══════════════════════════════════════════════════════════════════ */

:root {
  --container: 1240px;
  --darkblue: #1A5579;
  --green: #3E827A;
  --darkgreen: #286358;

  --nav-green-dark: #1f5046;
  --nav-green-light: #4fa692;
  --footer-green-dark: #205147;
  --footer-green-light: #4FA591;
  --footer-bottom: #1F5046;

  --orange: #EE7B3E;
  --orange-light: #F3B174;
  --peach: #F3C189;
  --coral: #F4A261;
  --terracotta: #C03C24;

  --paarse-1: #895262;
  --paarse-2: #9D717E;

  --paper: #fefbf7;
  --paper-warm: #FAF5E7;
  --cream: #fcf7ea;
  --cream-warm: #f6ead4;

  --ink: #1A5579;
  --ink-soft: #4a6878;
  --ink-muted: #7a8a96;
  --hair: #ECE3CC;
  --hair-strong: #DCCFA8;

  --shadow-soft: 0 4px 16px -8px rgba(31, 80, 70, 0.18);
  --shadow-card: 0 8px 24px -12px rgba(31, 80, 70, 0.22);
  --shadow-feature: 0 30px 80px -30px rgba(15, 63, 92, 0.45);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══ SIDEBAR (verticale nav links) ═══════════════════════════════ */
:root {
  --sidebar-w: 240px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--nav-green-dark) 0%, var(--nav-green-light) 100%);
  display: flex;
  flex-direction: column;
  z-index: 100;
  border-right: 4px solid var(--cream);
  box-shadow: 4px 0 24px -8px rgba(0, 0, 0, 0.15);
}

.sidebar__logo {
  padding: 24px 24px 16px;
  border-bottom: 1px dashed rgba(244, 236, 216, 0.18);
}

.sidebar__logo img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.sidebar__nav {
  flex: 1;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.sidebar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: rgba(244, 236, 216, 0.78);
  font-family: var(--font-voltaire);
  font-size: 18px;
  line-height: 1.2;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.sidebar__item:hover {
  background: rgba(244, 236, 216, 0.08);
  color: #fff;
}

.sidebar__item.active {
  background: rgba(244, 236, 216, 0.15);
  color: #fff;
}

.sidebar__item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
}

.sidebar__item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 1.6;
}

.sidebar__item-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar__item-sub {
  font-family: var(--font-lora);
  font-size: 11px;
  font-weight: 400;
  color: rgba(244, 236, 216, 0.55);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.sidebar__item-badge {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-lora);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.4;
  flex-shrink: 0;
}

.sidebar__divider {
  height: 1px;
  background: rgba(244, 236, 216, 0.15);
  margin: 12px 16px;
}

.sidebar__user {
  border-top: 1px dashed rgba(244, 236, 216, 0.18);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.sidebar__user-name {
  font-family: var(--font-voltaire);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar__user-logout {
  font-family: var(--font-lora);
  font-size: 12px;
  color: rgba(244, 236, 216, 0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.sidebar__user-logout:hover {
  color: var(--peach);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-voltaire);
  font-size: 16px;
  border: 2px solid var(--cream);
  flex-shrink: 0;
}

/* Main content shifts right ── */
.app-shell {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* Mobile toggle ── */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--nav-green-dark);
  border: 2px solid var(--cream);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 63, 92, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
}

@media (max-width: 980px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: inline-flex;
  }

  .sidebar-overlay.is-open {
    display: block;
  }

  .app-shell {
    margin-left: 0;
  }
}

/* ═══ PAGE HEADER (subpagina's) ═════════════════════════════════ */
.page-header {
  background:
    radial-gradient(ellipse at 80% -20%, rgba(243, 193, 137, 0.28) 0%, transparent 50%),
    var(--paper);
  padding: 50px 0 36px;
  border-bottom: 1px solid var(--hair);
}

.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.page-header__crumb {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--green);
  font-size: 16px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-header__crumb a {
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.page-header__crumb a:hover {
  opacity: 1;
  color: var(--orange);
}

.page-header h1 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  color: var(--darkblue);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.page-header__sub {
  font-family: var(--font-lora);
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.5;
}

.page-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .page-header {
    padding: 36px 0 24px;
  }

  .page-header h1 {
    font-size: 36px;
  }
}

/* ═══ KPI STATS ROW ═════════════════════════════════════════════ */
.kpi-row-section {
  background: var(--paper);
  padding: 28px 0 8px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.kpi-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-card__icon--coral {
  background: rgba(238, 123, 62, 0.14);
  color: var(--orange);
}

.kpi-card__icon--green {
  background: rgba(62, 130, 122, 0.14);
  color: var(--darkgreen);
}

.kpi-card__icon--blue {
  background: rgba(26, 85, 121, 0.10);
  color: var(--darkblue);
}

.kpi-card__icon--paars {
  background: rgba(137, 82, 98, 0.14);
  color: var(--paarse-1);
}

.kpi-card__body {
  flex: 1;
  min-width: 0;
}

.kpi-card__num {
  font-family: var(--font-voltaire);
  font-size: 32px;
  line-height: 1;
  color: var(--darkblue);
  margin-bottom: 4px;
}

.kpi-card__num small {
  font-size: 16px;
  color: var(--ink-soft);
  font-family: var(--font-lora);
}

.kpi-card__label {
  font-family: var(--font-lora);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.kpi-card__bar {
  height: 4px;
  background: var(--cream);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.kpi-card__bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .kpi-row {
    grid-template-columns: 1fr;
  }
}

/* ═══ DASHBOARD ROWS — kolomverhoudingen variëren per rij ══════ */
.dash-row {
  display: grid;
  gap: 24px;
}

/* Rij 1 — tour groot, activity smaller (62/38) */
.dash-row--main {
  grid-template-columns: 1.6fr 1fr;
}

/* Rij 2 — promo + acties evenredig (50/50) */
.dash-row--promo {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 980px) {

  .dash-row,
  .dash-row--main,
  .dash-row--promo {
    grid-template-columns: 1fr;
  }
}

/* KPI section padding aanpassen nu het tussen rows zit */
.kpi-row-section {
  padding: 28px 0;
}

/* Quick actions — 2x2 grid binnen een activity-card */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.quick-actions .btn {
  padding: 11px 14px;
  font-size: 15px;
  gap: 8px;
  white-space: nowrap;
  min-width: 0;
}

.quick-actions .btn .btn-icon,
.quick-actions .btn .btn-icon-rotate {
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .quick-actions .btn {
    font-size: 14px;
    padding: 10px 12px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .quick-actions {
    grid-template-columns: 1fr;
  }
}

/* Legacy alias — oude .dash-2col blijft werken */
.dash-2col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.dash-col-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 980px) {
  .dash-2col {
    grid-template-columns: 1fr;
  }
}

.activity-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 22px 24px;
}

.activity-card h3 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 24px;
  color: var(--darkblue);
  margin: 0 0 4px;
}

.activity-card .eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--green);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed var(--hair);
}

.activity-item:first-child {
  border-top: 0;
  padding-top: 4px;
}

.activity-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.activity-item__icon--coral {
  background: rgba(238, 123, 62, 0.14);
  color: var(--orange);
}

.activity-item__icon--green {
  background: rgba(62, 130, 122, 0.14);
  color: var(--darkgreen);
}

.activity-item__icon--blue {
  background: rgba(26, 85, 121, 0.10);
  color: var(--darkblue);
}

.activity-item__icon--paars {
  background: rgba(137, 82, 98, 0.14);
  color: var(--paarse-1);
}

.activity-item__body {
  min-width: 0;
}

.activity-item__title {
  font-family: var(--font-lora);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}

.activity-item__title strong {
  color: var(--darkblue);
  font-weight: 600;
}

.activity-item__time {
  font-family: var(--font-lora);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.activity-item__cta {
  font-family: var(--font-voltaire);
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}

.activity-item__cta:hover {
  color: var(--terracotta);
}

@media (max-width: 980px) {
  .dash-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ═══ CITY ANNOUNCE — promo kaart "Ontdek nu" ═══════════════════ */
.city-announce {
  position: relative;
  display: block;
  aspect-ratio: 16 / 7;
  border-radius: 24px;
  overflow: hidden;
  background: var(--darkblue);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.city-announce:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-feature);
}

.city-announce__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transition: transform 0.6s ease;
}

.city-announce:hover .city-announce__photo {
  transform: scale(1.06);
}

.city-announce__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(15, 47, 53, 0.85) 0%,
      rgba(15, 47, 53, 0.65) 35%,
      rgba(15, 47, 53, 0.2) 70%,
      transparent 100%);
  pointer-events: none;
}

.city-announce__content {
  position: absolute;
  inset: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  max-width: 70%;
}

.city-announce__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 13px;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px -4px rgba(238, 123, 62, 0.6);
}

.city-announce__eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  font-size: 16px;
  color: var(--peach);
  margin-bottom: 4px;
}

.city-announce__title {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--cream);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}

.city-announce__title em {
  font-family: var(--font-volkhov);
  font-style: italic;
  font-weight: 400;
  color: var(--peach);
}

.city-announce__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 17px;
  width: fit-content;
  box-shadow: 0 4px 14px -4px rgba(238, 123, 62, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-announce:hover .city-announce__cta {
  transform: translateX(4px);
  box-shadow: 0 6px 18px -4px rgba(238, 123, 62, 0.7);
}

.city-announce__cta svg {
  transition: transform 0.2s ease;
}

.city-announce:hover .city-announce__cta svg {
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .city-announce__title {
    font-size: 36px;
  }
}

@media (max-width: 980px) {
  .city-announce {
    aspect-ratio: 16 / 9;
  }

  .city-announce__title {
    font-size: 36px;
  }

  .city-announce__content {
    max-width: 80%;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .city-announce {
    aspect-ratio: 4 / 3;
  }

  .city-announce__title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .city-announce__content {
    max-width: 100%;
    padding: 20px;
  }

  .city-announce__overlay {
    background: linear-gradient(180deg, rgba(15, 47, 53, 0.3) 0%, rgba(15, 47, 53, 0.85) 100%);
  }
}

/* ═══ FILTER PILLS ═════════════════════════════════════════════ */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid var(--hair);
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 16px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-pill.active {
  background: var(--darkblue);
  border-color: var(--darkblue);
  color: #fff;
}

.filter-pill .count {
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-lora);
  font-weight: 600;
}

.filter-pill:not(.active) .count {
  background: var(--cream);
  color: var(--ink-soft);
}

/* ═══ VOUCHER LIST ITEMS ═══════════════════════════════════════ */
.voucher-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voucher-item {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 20px;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.voucher-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.voucher-item--used {
  opacity: 0.85;
  background: var(--paper-warm);
}

.voucher-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voucher-item--used .voucher-item__icon {
  background: var(--cream);
  color: var(--ink-muted);
}

.voucher-item__body {
  min-width: 0;
}

.voucher-item__name {
  font-family: var(--font-voltaire);
  font-size: 22px;
  color: var(--darkblue);
  line-height: 1.1;
  margin-bottom: 4px;
}

.voucher-item__meta {
  font-family: var(--font-lora);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.voucher-code {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--darkblue);
  background: var(--cream);
  border: 1px dashed var(--hair-strong);
  padding: 2px 8px;
  border-radius: 5px;
}

.voucher-item__amount {
  text-align: right;
}

.voucher-item__amount .big {
  font-family: var(--font-voltaire);
  font-size: 26px;
  line-height: 1;
  color: var(--darkblue);
}

.voucher-item__amount .small {
  font-family: var(--font-lora);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.voucher-item__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-lora);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.voucher-item__status--open {
  background: rgba(238, 123, 62, 0.14);
  color: var(--orange);
}

.voucher-item__status--used {
  background: var(--cream);
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .voucher-item {
    grid-template-columns: 50px 1fr;
    row-gap: 10px;
    padding: 16px;
  }

  .voucher-item__amount,
  .voucher-item__cta {
    grid-column: 2;
  }
}

/* ═══ ORDER CARDS (bestellingen) ═══════════════════════════════ */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 22px;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.order-card--archived {
  background: var(--paper-warm);
  opacity: 0.92;
}

.order-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-card--processing .order-card__icon {
  background: rgba(238, 123, 62, 0.14);
  color: var(--orange);
}

.order-card--shipped .order-card__icon {
  background: rgba(26, 85, 121, 0.10);
  color: var(--darkblue);
}

.order-card--delivered .order-card__icon {
  background: rgba(62, 130, 122, 0.14);
  color: var(--darkgreen);
}

.order-card--archived .order-card__icon {
  background: var(--cream);
  color: var(--ink-muted);
}

.order-card__body {
  min-width: 0;
}

.order-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.order-card__id {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.order-card__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-lora);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-card__status--processing {
  background: rgba(238, 123, 62, 0.14);
  color: var(--orange);
}

.order-card__status--shipped {
  background: rgba(26, 85, 121, 0.10);
  color: var(--darkblue);
}

.order-card__status--delivered {
  background: rgba(62, 130, 122, 0.14);
  color: var(--darkgreen);
}

.order-card__status--archived {
  background: var(--cream);
  color: var(--ink-muted);
}

.order-card__title {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 22px;
  color: var(--darkblue);
  line-height: 1.15;
  margin-bottom: 4px;
}

.order-card__meta {
  font-family: var(--font-lora);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  line-height: 1.5;
}

.order-card__meta .dot {
  color: var(--peach);
}

.order-card__meta strong {
  color: var(--ink);
  font-weight: 600;
}

.order-card__amount {
  text-align: right;
  white-space: nowrap;
}

.order-card__amount .big {
  font-family: var(--font-voltaire);
  font-size: 26px;
  line-height: 1;
  color: var(--darkblue);
}

.order-card__amount .small {
  font-family: var(--font-lora);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.order-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-card__actions .btn {
  padding: 9px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.order-card__actions .btn-link {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-family: var(--font-lora);
  font-size: 13px;
  text-align: center;
  text-decoration: underline dashed var(--hair-strong);
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s ease;
}

.order-card__actions .btn-link:hover {
  color: var(--orange);
}

@media (max-width: 980px) {
  .order-card {
    grid-template-columns: 48px 1fr;
    row-gap: 14px;
    padding: 16px 18px;
  }

  .order-card__amount,
  .order-card__actions {
    grid-column: 2;
    text-align: left;
  }

  .order-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .order-card__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .order-card__amount .small {
    margin-top: 0;
  }
}

/* ═══ ACCOUNT — sectie panels + form ═══════════════════════════ */
.settings-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 30px 0 70px;
  align-items: start;
}

.settings-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 30px;
}

.settings-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-voltaire);
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.2s ease;
}

.settings-tab:hover {
  background: var(--paper-warm);
  color: var(--darkblue);
}

.settings-tab.active {
  background: var(--darkblue);
  color: #fff;
}

.settings-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.settings-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.settings-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 28px 30px;
}

.settings-card h2 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 26px;
  color: var(--darkblue);
  margin: 0 0 4px;
}

.settings-card .eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--green);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.settings-card__intro {
  font-family: var(--font-lora);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid--full>* {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-lora);
  font-size: 13px;
  font-weight: 600;
  color: var(--darkblue);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hair);
  border-radius: 10px;
  font-family: var(--font-lora);
  font-size: 15px;
  color: var(--darkblue);
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(62, 130, 122, 0.08);
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--hair);
}

/* Toggle row */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dashed var(--hair);
}

.toggle-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.toggle-row__text {
  flex: 1;
  min-width: 0;
}

.toggle-row__title {
  font-family: var(--font-lora);
  font-size: 15px;
  font-weight: 600;
  color: var(--darkblue);
}

.toggle-row__sub {
  font-family: var(--font-lora);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 2px;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--hair);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.toggle[data-on="1"] {
  background: var(--green);
}

.toggle[data-on="1"]::before {
  transform: translateX(20px);
}

.danger-zone {
  background: rgba(192, 60, 36, 0.05);
  border: 1px dashed rgba(192, 60, 36, 0.4);
  border-radius: 16px;
  padding: 22px 24px;
}

.danger-zone h3 {
  font-family: var(--font-voltaire);
  font-size: 22px;
  color: var(--terracotta);
  margin: 0 0 4px;
}

.danger-zone p {
  font-family: var(--font-lora);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.btn-danger {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-danger:hover {
  background: var(--terracotta);
  color: #fff;
}

@media (max-width: 980px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .settings-tabs {
    flex-direction: row;
    overflow-x: auto;
    position: static;
    padding-bottom: 4px;
  }

  .settings-tab {
    white-space: nowrap;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ HERO GREETING ═════════════════════════════════════════════ */
.dashboard-page {
  background: var(--paper);
  padding: 0 0 0;
  min-height: 100vh;
}

.hero-greet {
  background:
    radial-gradient(ellipse at 80% -20%, rgba(243, 193, 137, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 0%, rgba(62, 130, 122, 0.08) 0%, transparent 60%),
    var(--paper);
  padding: 60px 0 30px;
}

.hero-greet .eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 8px;
  display: inline-block;
}

.hero-greet h1 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.05;
  color: var(--darkblue);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  max-width: 820px;
  text-wrap: balance;
}

.hero-greet h1 em {
  font-family: var(--font-volkhov);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.hero-greet p {
  font-family: var(--font-lora);
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 560px;
}

@media (max-width: 980px) {
  .hero-greet h1 {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .hero-greet {
    padding: 40px 0 24px;
  }

  .hero-greet h1 {
    font-size: 36px;
  }

  .hero-greet p {
    font-size: 16px;
  }
}

/* ═══ FEATURE TOUR CARD — donkergroen gradient ═══ */
.tour-feature-wrap {
  background: var(--paper);
  padding: 30px 0 60px;
}

.tour-feature {
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(244, 162, 97, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--footer-green-dark) 0%, var(--footer-green-light) 100%);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}

.tour-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(244, 236, 216, 0.12) 1.2px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.tour-feature>* {
  position: relative;
}

.tour-feature__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--cream);
  padding: 4px 0 4px 4px;
}

.tour-feature__chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.chip-coral {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px -4px rgba(238, 123, 62, 0.55);
}

.tour-feature__when {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: rgba(244, 236, 216, 0.88);
  font-size: 15px;
}

.tour-feature__eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--peach);
  font-size: 16px;
  margin-top: 4px;
  line-height: 1.2;
}

.tour-feature__city {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.95;
  color: var(--cream);
  margin: 2px 0 6px;
  letter-spacing: -0.01em;
}

.tour-feature__sub {
  font-family: var(--font-lora);
  font-size: 14px;
  color: rgba(244, 236, 216, 0.9);
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
  line-height: 1.5;
}

.tour-feature__sub span {
  display: inline-flex;
  align-items: center;
}

.tour-feature__sub strong {
  color: var(--cream);
  font-weight: 600;
}

.tour-feature__sub .dot {
  color: var(--coral);
}

.tour-feature__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.tour-feature__content::before {
  content: '';
  width: 109%;
  height: 250px;
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: url(https://smaakverkenners.gaat-beyond-potential.nl/wp-content/uploads/2026/04/Header-skyline-Amersfoort.svg);
  background-position: bottom;
  background-size: cover;
  z-index: 0;
}

.tour-feature__actions .btn {
  padding: 10px 18px;
  font-size: 16px;
  gap: 8px;
}

.tour-feature__actions .btn .btn-icon,
.tour-feature__actions .btn .btn-icon-rotate {
  width: 18px;
  height: 18px;
}

.tour-feature .btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(244, 236, 216, 0.55);
  color: var(--cream);
}

.tour-feature .btn-secondary:hover {
  background: var(--cream);
  color: var(--darkgreen);
}

/* tour image side */
.tour-feature__media {
  position: relative;
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.4);
}

.tour-feature__photo {
  flex: 1;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.tour-feature__photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tour-feature__sticker {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-voltaire);
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 6px;
  box-shadow: 0 4px 12px -3px rgba(238, 123, 62, 0.55);
  z-index: 3;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.tour-feature__sticker .num {
  font-family: ui-monospace, "SF Mono", monospace;
  opacity: 0.9;
}

.tour-feature__caption {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-lora);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px dashed var(--hair-strong);
  background: var(--paper-warm);
  line-height: 1.4;
}

.tour-feature__caption svg {
  color: var(--green);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.tour-feature__caption strong {
  color: var(--darkblue);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .tour-feature__city {
    font-size: 56px;
  }
}

@media (max-width: 980px) {
  .tour-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .tour-feature__city {
    font-size: 60px;
  }

  .tour-feature__photo {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .tour-feature {
    padding: 20px;
    border-radius: 18px;
  }

  .tour-feature__city {
    font-size: 48px;
  }
}

/* ═══ STAD-KAART (1-op-1 uit stad_grid_section.php) ════════════ */
/* Used in: reisboek (voltooid + gepland) en upsell (niet ontdekt) */

.section-h2 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--darkblue);
  margin-bottom: 6px;
}

.section-divider {
  display: block;
  max-width: 200px;
}

.reisboek-section,
.upsell-section {
  padding: 70px 0;
}

.reisboek-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.upsell-section {
  background: var(--paper);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

.section-head .eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--green);
  font-size: 17px;
  margin-bottom: 8px;
  display: block;
}

.section-head h2 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--darkblue);
  margin-bottom: 0;
}

/* Upsell head — centered, zoals kies-een-stad section */
.upsell-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-inline: auto;
}

.upsell-head h2 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--darkblue);
  margin-bottom: 18px;
}

.upsell-lead {
  font-family: var(--font-lora);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 28px;
}

.upsell-head__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 640px) {
  .upsell-head h2 {
    font-size: 36px;
  }

  .upsell-lead {
    font-size: 16px;
  }
}

/* Grid (3 koloms zoals col-xl-4 col-lg-6 col-md-6 in PHP) */
.stad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card — exacte port van .card.h-100.border-0 + kop styling */
.stad-card {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Image wrapper — .stads-kaart-image rounded-3, aspect 425/323 */
.stad-card__image {
  position: relative;
  aspect-ratio: 425/323;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--cream);
}

.stad-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.stad-card:hover .stad-card__image img {
  transform: scale(1.04);
}

/* Goudenborder overlay (uit .stads-kaart-image::before) */
.stad-card__image::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border: 1.5px solid rgba(243, 193, 137, 0.85);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.4);
  z-index: 2;
}

/* Badge linksboven (.badge in PHP) — darkgreen bg, rounded-bottom */
.stad-card__badge {
  position: absolute;
  top: 0;
  left: 20px;
  padding: 8px 14px;
  border-radius: 0 0 6px 6px;
  font-family: var(--font-lora);
  font-size: 14px;
  color: #fff;
  z-index: 3;
  text-align: center;
  background: var(--darkgreen);
  line-height: 1.4;
  min-width: 110px;
}

.stad-card__badge .strong {
  font-weight: 600;
  display: block;
  font-size: 14px;
  opacity: 0.95;
}

.stad-card__badge .km {
  display: block;
  opacity: 0.9;
  font-size: 13px;
}

.stad-card__badge--planned {
  background: var(--orange);
}

/* ── Voltooid ribbon (diagonaal banner over de hoek) ── */
.stad-card__ribbon {
  position: absolute;
  top: 22px;
  right: -50px;
  width: 180px;
  background: linear-gradient(135deg, var(--darkgreen) 0%, var(--green) 100%);
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-family: var(--font-voltaire);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.28);
  z-index: 4;
}

/* tiny check icon binnen ribbon */
.stad-card__ribbon::before {
  content: '✓ ';
  font-weight: bold;
  margin-right: 4px;
}

/* Sterren-overlay (rechtsonder op de foto) */
.stad-card__rating {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: serif;
  color: var(--coral);
  font-size: 15px;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}

.stad-card__rating .empty {
  color: rgba(0, 0, 0, 0.15);
}

/* Body — .card-body.d-flex.flex-column */
.stad-card__body {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* h3 met py-4 (32px top/bottom padding) */
.stad-card__body h3 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--darkblue);
  padding-block: 28px 16px;
  margin: 0;
}

/* USP list — `- {tekst}` zoals in PHP */
.stad-card__usps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.stad-card__usps li {
  font-family: var(--font-lora);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.stad-card__usps li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Reviewed indicator */
.reviewed-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-volkhov);
  font-style: italic;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 8px;
}

.reviewed-indicator svg {
  color: var(--green);
}

/* CTA — full width, mt-3 -> margin-top auto for bottom alignment */
.stad-card__cta {
  margin-top: auto;
  text-align: center;
}

.stad-card__cta .btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 18px;
}

.stad-card__cta-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.stad-card__cta-row .btn {
  flex: 1;
  padding: 14px 14px;
  font-size: 17px;
}

.stad-card__cta-row .btn-icon-only {
  flex: 0 0 auto;
  padding: 14px 16px;
}

@media (max-width: 1100px) {
  .stad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .stad-grid {
    grid-template-columns: 1fr;
  }

  .reisboek-section,
  .upsell-section {
    padding: 50px 0;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .stad-card__body h3 {
    font-size: 28px;
    padding-block: 22px 12px;
  }
}

/* ═══ VOUCHER SECTIE — paarse content gradient (full width) ═════ */
.voucher-section {
  background: var(--paper);
  padding: 70px 0;
}

.voucher-block {
  background: linear-gradient(135deg, var(--paarse-1) 0%, var(--paarse-2) 100%);
  border-radius: 28px;
  padding: 48px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.voucher-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.voucher-block__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voucher-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.voucher-block>* {
  position: relative;
}

.voucher-block .eyebrow {
  font-family: var(--font-volkhov);
  font-style: italic;
  color: var(--peach);
  font-size: 17px;
  margin-bottom: 6px;
  display: block;
}

.voucher-block h2 {
  font-family: var(--font-voltaire);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.voucher-block .voucher-divider {
  display: block;
  margin-bottom: 20px;
  max-width: 160px;
}

.voucher-block .voucher-empty__sub {
  font-family: var(--font-lora);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 380px;
}

.voucher-input {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.3);
}

.voucher-input input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  padding: 12px 20px;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--darkblue);
}

.voucher-input input::placeholder {
  color: var(--ink-muted);
  opacity: 0.7;
}

.voucher-input button {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  border: 0;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-voltaire);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px -4px rgba(238, 123, 62, 0.5);
  letter-spacing: 0.02em;
}

.voucher-input button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(238, 123, 62, 0.6);
}

.voucher-block__footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.voucher-block__footer-link {
  font-family: var(--font-lora);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.voucher-block__footer-link:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 980px) {
  .voucher-block {
    padding: 32px 28px;
    border-radius: 22px;
  }

  .voucher-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .voucher-block h2 {
    font-size: 32px;
  }

  .voucher-section {
    padding: 50px 0;
  }
}

/* ═══ FOOTER ═════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--footer-green-dark) 0%, var(--footer-green-light) 100%);
  color: #fff;
  padding: 56px 0 28px;
  margin-top: 50px;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-volkhov);
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo img {
  width: 130px;
  height: auto;
}

.footer-contact p,
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-lora);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--peach);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: var(--peach);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--footer-bottom);
  padding-block: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: var(--font-lora);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--peach);
}

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}