/* =========================================================
   ROOT & GLOBAL
========================================================= */
:root {
  --bg: #fffaf4;
  --ink: #24463f;
  --brand1: #f36f3f;
  --brand2: #ffb36b;
  --btn: #2f4f4f;
  --card: #ffffff;
  --card-border: #e8e3d7;
  --muted: #000000;
}

* { box-sizing: border-box; }

html {
  height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  height: 100%;

  display: flex;
  flex-direction: column;

  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding-bottom: 0 !important;
}

/* =========================================================
   HEADER
========================================================= */
header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 28px;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

nav {
  justify-self: center;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #faf7ef;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.icons {
  display: flex;
  gap: 14px;
  justify-self: end;
  /* Platziert die Icons rechts */
}

.icons .icon-button {
  color: #faf7ef !important;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
}

.icons .icon-button:hover {
  background: rgba(255, 255, 255, 0);
  /* 2. HOVER-FARBE DEFINIEREN */
  color: #FF6A00 !important;
  /* Beispiel: Orange beim Hover */
}


.icons .icon-button svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  display: block !important;
}


.icons .icon-button svg path {
  fill: currentColor !important;

  stroke: currentColor !important;

  stroke-width: 0.5px !important;
}

/* =========================================================
   PAGE LAYOUT & TYPO
========================================================= */
.container {
  flex-grow: 1;
  width: 1100px;
  max-width: 1100px;
  margin: 22px auto;
  padding: 0 16px;
}

h1 {
  margin: 0 0 14px;
  font-size: 32px;
}

h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
}

/* =========================================================
   COMMON FORM ELEMENTS
========================================================= */
input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
}

button,
.btn {
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;

  text-decoration: none;

  display: inline-block;
  text-align: center;
}

button.primary,
.btn {
  background: var(--btn);
  color: #fff;
  min-width: 160px;

  text-decoration: none;

  display: inline-block;
  text-align: center;
}

/* remove number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Radios/Checkboxes nicht vom Global-Input-Styling „aufblasen“ */
input[type="radio"],
input[type="checkbox"] {
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.hint {
  font-size: 12px;
  color: #8a918d;
  margin-top: 10px;
  /* <--- Fügt das margin-top aus dem HTML hier ein */
}


.req-star {
  color: #f36f3f;
}

/* =========================================================
   GENERISCHE GRIDS (für andere Seiten)
========================================================= */
.row {
  display: grid;
  gap: 12px;
}

.row.cols-2 {
  grid-template-columns: 1fr auto;
}

.row.cols-3 {
  grid-template-columns: auto auto 1fr;
  align-items: center;
}

.row.cols-5 {
  grid-template-columns: auto auto auto auto auto;
  align-items: end;
}

/* =========================================================
   GENERISCHE CARD
========================================================= */
.card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin: 12px 0;
  padding: 16px;
}

.card h3 {
  margin: 0 0 6px;
}

.badge {
  background: #e9ece7;
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 12px;
}

/* =========================================================
   EVENT LIST CARD (dreispaltig)
========================================================= */
.event-card {
  display: grid;
  grid-template-columns: 200px 1fr 140px;
  gap: 20px;
  align-items: start;

  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

/* SPALTE 1: Bild */
.event-card-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #f0f0f0;
}

/* SPALTE 2: Inhalt */
.event-card-content h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.event-card-content .event-description {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-content .event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.event-card-content .event-meta span {
  color: var(--muted);
}

.event-card-content .event-meta span strong {
  color: var(--ink);
}

/* Header Landing page */
.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* SPALTE 3: Aktionen */
.event-card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.event-card-actions .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand1);
  background: #fff1e9;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
}

.event-card-actions .btn,
.event-card-actions button {
  width: 100%;
  min-width: 0;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
}

/* Sekundär-Button für "Add to basket" */
.btn-secondary {
  background: var(--card);
  color: var(--btn);
  border: 1px solid var(--btn);
}

/* =========================================================
   TOP SEARCH BAR (Booking-Style)
========================================================= */


.searchbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  /* 4 Felder + Button */
  align-items: center;
  gap: 0;

  background: #fff;
  border: 1px solid #e4dfd1;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  height: 48px;
  margin-bottom: 18px;
  margin-top: 22px;
}

/* Jedes Feld: bündig, ohne eigene Innenränder */
.searchbar__field {
  padding: 0 16px;
  border-right: 1px solid #eee5d6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Letztes Feld hat keinen Divider */
.searchbar__field:last-of-type {
  border-right: none;
}

/* Label wie vorher, aber kompakt */
.searchbar__field label {
  font-size: 0.75rem;
  margin-bottom: 2px;
  color: var(--muted);
  line-height: 1;
}

/* Inputs & Selects bündig, ohne äußere Ränder */
.searchbar__field input,
.searchbar__field select {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  height: 20px;
  /* verhindert dass das Layout höher wird */
}

/* Button rechts im gleichen Block */
.searchbar__btn {
  border: none;
  border-left: 1px solid #eee5d6;
  background: var(--btn);
  color: #fff;
  padding: 0 20px;
  height: 100%;
  /* gleiche Höhe wie Rest */
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 0;
  /* weil er inside ist */
}

/* =========================================================
   MAIN LAYOUT: Sidebar + Results
========================================================= */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

/* Einheitlicher, zusammenhängender Sidebar-Block */
.sidebar {
  position: sticky;
  top: 12px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 8px;
}

.filter-group {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px;
  margin: 0;
}

.filter-group+.filter-group {
  border-top: 1px solid var(--card-border);
}

.filter-title {
  margin: 0 0 10px;
  font-size: 1rem;
}

.filter-body {
  text-align: left;
}

.filter-body input[type="number"],
.filter-body input[type="time"],
.filter-body input[type="date"],
.filter-body input[type="text"],
.filter-body select {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
}

.btn--sm {
  padding: 6px 10px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.muted {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* =========================================================
   FILTER-COMPONENTS: Checklists, Radio-Lists, Stepper
========================================================= */


.checklist .check,
.radiolist .radio {
  display: flex;
  align-items: start;
  gap: 8px;
  margin: 6px 0;
}

/* --- Radios LINKS-BÜNDIG --- */
.radiolist {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding-left: 0;
  margin-left: 0;
}

.radiolist .radio {
  width: 100%;
  margin: 0;
  line-height: 1.4;
  align-items: center;
}

.radiolist input[type="radio"] {
  margin: 0;
  accent-color: var(--brand1);
  vertical-align: middle;
}

/* Stepper: gleiche Breite wie die übrigen Inputs */
.filter-body .stepper,
.filter-body input[type="time"] {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--card);
}

.stepper button {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand1);
  background: var(--card);
  border: none;
  cursor: pointer;
}

.stepper input {
  flex: 1 1 auto;
  height: 40px;
  border: none;
  background: var(--card);
  text-align: center;
  font-size: 1rem;
}

/* Kategorien-„Show more“ */
/* Grundstil für Show more / less */
.showmore__summary,
.showmore__less {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0px;
}

/* Standard-Details-Pfeil ausblenden */
.showmore summary::-webkit-details-marker {
  display: none;
}

/* Chevron nach unten für Show more */
.showmore__summary::before {
  content: "";
  width: 5px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* Chevron nach oben für Show less */
.showmore__less::before {
  content: "";
  width: 5px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
}

/* Wenn offen: Show more oben ausblenden */
.showmore[open]>.showmore__summary {
  display: none;
}

.showmore__inner {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =========================================================
   SORTBAR
========================================================= */
.sortbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.sortbar__meta {
  color: var(--muted);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .row.cols-5,
  .row.cols-3 {
    grid-template-columns: 1fr;
  }

  .grid,
  .row-3,
  .row-4,
  .split {
    grid-template-columns: 1fr;
  }

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

  nav ul {
    display: none;
  }
}

@media (max-width: 640px) {
  /* ggf. zusätzliche Mobile-Anpassungen */
}

/* =========================================================
   LANDING PAGE SPEZIFISCHES CSS (ERGÄNZUNGEN)
========================================================= */

/* Hero Section (für Slider) */
.hero-section {
  background: rgba(0, 0, 0, 0.5);
  /* Wird vom Slider überlagert */
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  /* Wichtig für den Slider */
}

/* Slider */
.hero-slider-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-slider {
  display: flex;
  height: 100%;
  width: 300%;
  /* Beispiel für 3 Bilder */
  transition: transform 0.5s ease-in-out;
}
.hero-slider-item {
  min-width: 33.333%;
  /* Muss an Anzahl der Bilder angepasst werden */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Konkrete Slides (Bilder) */
.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  background-image: url('/assets/klettern.jpg');
}

/* Overlay über dem Slider */
.hero-slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  /* Abdunkelung für bessere Lesbarkeit */
}

/* Hero Content & Search */
.hero-content {
  text-align: left;
  max-width: 1100px;
  z-index: 10;
}

.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin: 0 auto 40px;
  /* zentriert block-level Element */
  text-align: center;
  /* falls Zeilen umbrechen */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}


/* Section Headings */
.section-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 30px;
}

/* Landing Page keine Events */
.no-events {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  padding: 40px 0;
}

/* Recent Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.event-grid-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s;
}

.event-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.event-grid-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.event-grid-card-content {
  padding: 15px;
}

.event-grid-card-content h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-grid-card-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand1);
  text-align: right;
  line-height: 1;
}

.recent-events-actions {
  text-align: center;
  margin: 30px 0 50px;
}

/* Discover by Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 180px;
  text-decoration: none;
  color: #fff;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: background 0.2s;
}

.category-card:hover .category-card-overlay {
  background: rgba(243, 111, 63, 0.5);
  /* Brand1-Hover */
}

.category-card-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE (LANDING PAGE ERGÄNZUNGEN)
========================================================= */
@media (max-width: 960px) {
  /* ... bestehender Code ... */
  /* LANDING PAGE RESPONSIVE */
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  /* ... bestehender Code ... */
  /* LANDING PAGE RESPONSIVE */
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  /* ggf. zusätzliche Mobile-Anpassungen */
  /* LANDING PAGE RESPONSIVE */
  .hero-searchbar {
    flex-direction: column;
  }
  .hero-searchbar button {
    width: 100%;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------ FOOTER STYLES ------------------ */

footer {
  position: static;
  z-index: auto;
  /* Sicherstellen, dass er sich nicht ausdehnt, sondern nur den benötigten Platz einnimmt */
  flex-shrink: 0;
  background-color: #324640;
  color: #FFFFFF;
  padding: 40px 28px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 30px;
  gap: 30px;

  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 150px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 12px;
  color: #FFFFFF;
}

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

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column a {
  color: #C1C9C5;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--brand1);
}

/* ------------------ FOOTER BOTTOM ------------------ */

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid #4D5954;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: #C1C9C5;
}

/* ------------------ RESPONSIVITÄT FOOTER ------------------ */

@media (max-width: 1150px) {
  .footer-content {
    padding: 0 10px;
  }
}

@media (max-width: 860px) {
  .footer-content {
    justify-content: flex-start;
  }
  .footer-column {
    flex: 1 1 45%;
  }
}

@media (max-width: 550px) {
  footer {
    padding: 30px 16px 15px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 15px;
  }
}

/* =========================================================
   BASKET PAGE
========================================================= */

.basket-page {
  display: flex;
  flex-direction: column;
}

.basket-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

@media (min-width: 900px) {
  .basket-layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* ------------------ Item Card ------------------ */

.basket-item-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
  align-items: start;
}

.basket-item-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-image-container {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 200px;
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.item-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  grid-column: 2;
  grid-row: 1;
}

.item-details h2 {
  font-size: 1.2em;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 0.9em;
  color: var(--muted);
}

.item-features li {
  display: block;
  margin-bottom: 4px;
}

.item-features .label {
  font-weight: bold;
  color: var(--ink);
  display: inline-block;
  min-width: 80px;
  margin-right: 10px;
}

.price-per-item {
  font-size: 0.9em;
  font-weight: bold;
  color: var(--brand1);
}

/* ------------------ Item Controls ------------------ */

.item-controls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.quantity-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quantity-control label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.quantity-form {
  margin: 0;
  padding: 0;
}

.quantity-control input {
  width: 120px;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 4px;
}

.total-remove-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}

/* Item Subtotal */
.item-subtotal {
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  margin: 0;
  padding-right: 150px;
}

.item-subtotal .label {
  font-weight: normal;
  color: var(--muted);
  margin-right: 5px;
}

.item-right-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}

.item-right-section form {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--brand1);
  font-weight: bold;
  cursor: pointer;
  font-size: 0.85em;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
  margin: 0;
}

.remove-btn:hover {
  opacity: 1;
}

/* ------------------ Summary Card ------------------ */

.summary-card .body {
  padding: 25px;
}

.summary-details {
  display: grid;
  grid-template-columns: 1fr minmax(80px, auto);
  gap: 10px 15px;
  margin: 0 0 25px 0;
}

.summary-details dt, .summary-details dd {
  text-align: left;
  margin: 0;
}

.summary-details dt {
  color: var(--muted);
}

.summary-details .separator {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--card-border);
  margin: 10px 0;
}

.summary-details .total-label {
  font-weight: bold;
  font-size: 1.3em;
  color: var(--ink);
}

.summary-details .total-value {
  font-weight: bold;
  font-size: 1.3em;
  color: var(--brand1);
  text-align: left;
}

.confirm-button {
  width: 100%;
  margin-bottom: 10px;
}

.tax-note {
  display: block;
  text-align: center;
  font-size: 0.8em;
  color: var(--muted);
}

/* ------------------ Empty Basket ------------------ */

.basket-empty-message {
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  color: var(--muted);
  font-size: 1.1em;
  margin: 15px 0 20px;
  display: flex;
  justify-content: center;
}

.basket-find-events-button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  background: var(--btn);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

.basket-layout.empty .btn {
  padding: 11px 16px;
  min-width: 160px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
}

.basket-layout.empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
  gap: 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}


