/* ============================================================
   ADAC Spezialreisen Prototyp — Styles
   Tokens aus Figma (ADAC Design):
   Primary #FFCC00 · Secondary #0079C0 · Black #1A1A1A
   Grey Dark #949494 · Grey Darker #666 · Grey Light #D5D5D5
   ============================================================ */

:root {
  --yellow: #ffcc00;
  --yellow-hover: #ffd633;
  --blue: #0079c0;
  --blue-hover: #0069a7;
  --black: #1a1a1a;
  --white: #ffffff;
  --grey-dark: #949494;
  --grey-darker: #666666;
  --grey-light: #d5d5d5;
  --grey-bg: #f5f5f5;
  --green: #2e7d32;
  --shadow-02: 0 1px 5px rgba(0,0,0,.12), 0 3px 4px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.06);
  --radius: 4px;
  --wrap: 1440px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  background: var(--grey-bg);
  font-feature-settings: "case" 1;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1500px) { .wrap { padding: 0; } }

.icon { display: inline-flex; flex: none; }
.icon svg { display: block; }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); font-weight: 700; padding: 8px 16px; line-height: 24px; white-space: nowrap; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-hover); }
.btn-outline { background: var(--white); color: var(--black); border: 1px solid var(--black); font-weight: 700; }
.btn-outline:hover { background: var(--grey-bg); }
.btn-lg { padding: 13px 40px; font-size: 18px; }

/* ============ Header ============ */
.site-header { position: relative; z-index: 50; box-shadow: var(--shadow-02); }
.topbar { background: var(--black); color: var(--white); padding: 6px 0; font-size: 14px; }
.topbar .wrap { display: flex; align-items: center; gap: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; }
.topbar a span { text-decoration: underline; }
.topbar .spacer { flex: 1; }
.topbar .icon svg { width: 18px; height: 18px; }

.mainbar { background: var(--yellow); }
.mainbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 10px; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area img { height: 30px; width: auto; }
.header-meta { display: flex; align-items: center; gap: 24px; }
.header-search { background: var(--white); border-radius: 99px; width: 351px; height: 44px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 20px 0 24px; }
.header-search input { border: none; outline: none; font-family: inherit; font-size: 16px; color: var(--black); flex: 1; background: transparent; }
.header-search input::placeholder { color: var(--grey-dark); }
.meta-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; position: relative; padding: 12px 0; }
.meta-btn .badge { position: absolute; top: 2px; left: -12px; background: var(--black); color: var(--white);
  font-size: 12px; font-weight: 700; border-radius: 99px; min-width: 20px; height: 20px; line-height: 20px; text-align: center; }
.mainnav { background: var(--yellow); border-top: 1px solid rgba(255,255,255,.6); }
.mainnav .wrap { display: flex; align-items: center; justify-content: space-between; }
.mainnav a { display: flex; align-items: center; height: 44px; font-weight: 700; white-space: nowrap; }
.mainnav a:hover, .mainnav a.active { box-shadow: inset 0 -3px 0 var(--black); }

/* ============ Hero ============ */
.hero { position: relative; }
.hero-slides { position: relative; height: 571px; overflow: hidden; }
.hero-slides .hero-img { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.hero-slides .hero-img.active { opacity: 1; }
.hero-img { height: 571px; width: 100%; object-fit: cover; }
.hero-content { position: absolute; inset: 0 0 87px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.hero-content .hl { background: var(--white); padding: 12px 16px; font-size: 32px; line-height: 36px; font-weight: 700; }
.hero-content .sl { background: var(--white); padding: 12px 16px; font-size: 20px; line-height: 28px; }
.hero-arrow { position: absolute; top: 268px; background: var(--white); border-radius: 99px; width: 42px; height: 42px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-02); }
.hero-arrow.left { left: 16px; } .hero-arrow.right { right: 16px; }
.hero-arrow svg { width: 20px; height: 20px; }

/* ============ Suchmaske ============ */
.searchmask-outer { position: relative; margin-top: -87px; z-index: 20; }
.searchmask { background: var(--white); box-shadow: var(--shadow-02); padding: 16px; }
.searchmask-tabs { display: flex; gap: 32px; margin-bottom: 16px; overflow-x: auto; }
.searchmask-tabs .tab { padding-bottom: 12px; white-space: nowrap; color: var(--black); }
.searchmask-tabs .tab.active { font-weight: 700; border-bottom: 1px solid var(--black); }
.search-inputs { display: flex; gap: 16px; }
.search-field { flex: 1; display: flex; align-items: center; gap: 11px; background: var(--white);
  border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 5px 16px; min-width: 0; cursor: pointer; text-align: left; }
.search-field:hover { border-color: var(--grey-darker); }
.search-field .icon svg { width: 20px; height: 20px; }
.search-field .sf-label { font-size: 14px; line-height: 20px; color: var(--grey-darker); }
.search-field .sf-value { font-size: 16px; line-height: 24px; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-field > div { min-width: 0; }
.searchmask.compact { padding: 12px 16px 16px; box-shadow: none; }
.srl-searchbar { background: var(--white); box-shadow: var(--shadow-02); position: relative; z-index: 20; }

/* ============ Dialoge / Popover ============ */
.dialog-backdrop { position: fixed; inset: 0; z-index: 90; display: none; }
.dialog-backdrop.open { display: block; }
.dialog { position: absolute; z-index: 100; width: 760px; max-width: calc(100vw - 32px); background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.18), var(--shadow-02); border-radius: var(--radius); display: none; }
.dialog.small { width: 420px; }
.dialog.open { display: block; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 12px 17px 12px; border-bottom: 1px solid var(--grey-light); }
.dialog-head h3 { font-size: 16px; font-weight: 700; }
.dialog-head .close-x { padding: 0 8px; }
.dialog-head .close-x svg { width: 20px; height: 20px; }
.dialog-search { padding: 17px; }
.dialog-search .ds-inner { display: flex; align-items: center; gap: 10px; border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 12px 16px; color: var(--grey-dark); }
.dialog-search input { border: none; outline: none; flex: 1; font-family: inherit; font-size: 16px; }
.dialog-search .icon svg { width: 20px; height: 20px; }
.dialog-tabs { display: flex; align-items: center; gap: 0; padding: 0 17px; position: relative; }
.dialog-tabs .dtab { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; white-space: nowrap; color: var(--black); border-bottom: 2px solid transparent; }
.dialog-tabs .dtab.active { font-weight: 700; border-bottom-color: var(--yellow); }
.dialog-tabs .dtab .icon svg { width: 17px; height: 17px; }
.dialog-tabs .dtab-arrow { margin-left: auto; border: 1px solid var(--grey-light); border-radius: 99px; width: 33px; height: 33px; display: inline-flex; align-items: center; justify-content: center; }
.dialog-tabs .dtab-arrow svg { width: 17px; height: 17px; }
.dialog-body { padding: 18px 17px; max-height: 420px; overflow-y: auto; }
.dialog-group { margin-bottom: 24px; }
.dialog-group:last-child { margin-bottom: 0; }
.dialog-group h4 { font-size: 16px; font-weight: 700; line-height: 28px; margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.dialog-group h4 .icon svg { width: 17px; height: 17px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.check-item { display: flex; align-items: flex-start; gap: 7px; cursor: pointer; line-height: 28px; }
.check-item input { display: none; }
.check-box { width: 20px; height: 20px; margin-top: 4px; border: 1px solid var(--grey-darker); border-radius: 3px; flex: none;
  display: inline-flex; align-items: center; justify-content: center; background: var(--white); }
.check-box svg { width: 14px; height: 14px; opacity: 0; }
input:checked + .check-box { background: var(--black); border-color: var(--black); }
input:checked + .check-box svg { opacity: 1; }
.check-item .sub { display: block; font-size: 12px; line-height: 15px; color: var(--grey-darker); }
.dialog-foot { display: flex; align-items: center; justify-content: space-between; padding: 17px; border-top: 1px solid var(--grey-light); }
.dialog-foot .btn { padding: 8px 24px; }

/* Kalender im Zeitraum-Dialog */
.cal-wrap { display: flex; gap: 32px; }
.cal { flex: 1; }
.cal h5 { text-align: center; font-size: 16px; margin: 0 0 12px; }
.cal table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cal th { color: var(--grey-darker); font-weight: 400; padding: 4px; }
.cal td { text-align: center; padding: 0; }
.cal td span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 99px; }
.cal td.muted span { color: var(--grey-light); }
.cal td.in-range span { background: #fff3bf; border-radius: 0; width: 100%; }
.cal td.range-end span { background: var(--yellow); font-weight: 700; border-radius: 99px; }

/* Reisende-Dialog */
.pax-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--grey-light); }
.pax-row:last-child { border-bottom: none; }
.pax-row .pr-label b { display: block; }
.pax-row .pr-label span { color: var(--grey-darker); font-size: 14px; }
.stepper { display: flex; align-items: center; gap: 16px; }
.stepper button { width: 36px; height: 36px; border: 1px solid var(--black); border-radius: 99px; font-size: 20px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; }
.stepper button:disabled { border-color: var(--grey-light); color: var(--grey-light); cursor: default; }
.stepper .val { min-width: 24px; text-align: center; font-weight: 700; }

/* ============ Startseite Content ============ */
.section { margin: 56px 0; }
.section-head { margin-bottom: 24px; }
.section-head h2 { font-size: 28px; line-height: 36px; font-weight: 700; }
.section-head p { color: var(--grey-darker); margin-top: 4px; }
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dest-tile { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.dest-tile img { width: 100%; height: 320px; object-fit: cover; transition: transform .3s; }
.dest-tile:hover img { transform: scale(1.04); }
.dest-tile .dt-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.65)); }
.dest-tile .dt-text { position: absolute; left: 16px; right: 16px; bottom: 16px; color: var(--white); }
.dest-tile .dt-text h3 { font-size: 20px; font-weight: 700; }
.dest-tile .dt-text span { font-size: 14px; }
.dest-tile .dt-price { position: absolute; top: 16px; right: 16px; background: var(--yellow); color: var(--black);
  font-weight: 700; padding: 4px 10px; border-radius: var(--radius); font-size: 14px; }

.feature-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--white); box-shadow: var(--shadow-02); border-radius: var(--radius); overflow: hidden; }
.feature-band img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.feature-band .fb-text { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.feature-band .fb-text h2 { font-size: 28px; line-height: 36px; }
.feature-band .fb-text .btn { align-self: flex-start; }

.teaser-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }

.carousel { position: relative; }
.carousel-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .tour-card { flex: 0 0 344px; scroll-snap-align: start; }
.carousel-arrow { position: absolute; top: 40%; background: var(--white); border-radius: 99px; width: 42px; height: 42px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-02); z-index: 5; }
.carousel-arrow.left { left: -20px; } .carousel-arrow.right { right: -20px; }
.carousel-arrow svg { width: 20px; height: 20px; }

.info-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); padding: 32px 24px; }
.info-box .icon { background: var(--yellow); border-radius: 99px; padding: 12px; margin-bottom: 16px; }
.info-box .icon svg { width: 24px; height: 24px; }
.info-box h3 { font-size: 18px; margin-bottom: 8px; }
.info-box p { color: var(--grey-darker); }

.newsletter { background: var(--black); color: var(--white); border-radius: var(--radius); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter h2 { font-size: 28px; }
.newsletter p { color: rgba(255,255,255,.75); margin-top: 6px; }
.newsletter form { display: flex; gap: 12px; flex: none; }
.newsletter input { border: none; border-radius: var(--radius); padding: 13px 16px; width: 320px; font-family: inherit; font-size: 16px; outline: none; }

.certs { text-align: center; padding: 24px 0 8px; }
.certs h2 { font-size: 20px; margin-bottom: 20px; }
.certs .cert-row { display: flex; justify-content: center; gap: 56px; color: var(--grey-darker); }
.certs .cert-row .cert { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 14px; }
.certs .cert .icon { background: var(--white); border: 1px solid var(--grey-light); border-radius: 99px; padding: 14px; }
.certs .cert .icon svg { width: 28px; height: 28px; }

/* ============ Tour Card ============ */
.tour-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .2s; }
.tour-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.tc-media { position: relative; }
.tc-media img { width: 100%; height: 214px; object-fit: cover; }
.tc-fav { position: absolute; right: 16px; bottom: -18px; background: var(--white); border-radius: 99px;
  width: 36px; height: 36px; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-02); z-index: 2; }
.tc-fav svg { width: 20px; height: 20px; display: block; }
.tc-fav.active svg path { fill: var(--black); }
.tc-body { padding: 20px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tc-loc { color: var(--grey-darker); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-title { font-size: 18px; line-height: 24px; font-weight: 700; }
.tc-sub { color: var(--grey-darker); }
.tc-chips { display: flex; flex-wrap: wrap; gap: 4px; padding-top: 4px; }
.chip { background: var(--grey-bg); border-radius: var(--radius); padding: 2px 8px; font-size: 13px; line-height: 20px; white-space: nowrap; }
.tc-amenities { display: flex; gap: 4px; padding-top: 8px; }
.tc-amenities .am { border: 1px solid var(--black); border-radius: 99px; padding: 5px; display: inline-flex; }
.tc-amenities .am svg { width: 18px; height: 18px; }
.tc-footer { padding: 0 16px 9px; display: flex; flex-direction: column; align-items: flex-end; }
.tc-price-row { display: flex; align-items: center; gap: 16px; }
.price-block { display: flex; flex-direction: column; align-items: flex-end; }
.price-line { display: flex; align-items: flex-end; gap: 4px; position: relative; }
.price-line .from { padding-bottom: 2px; }
.price-line .amount { font-size: 20px; line-height: 28px; font-weight: 700; position: relative; }
.price-line .amount::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: -1px; height: 3px; background: var(--yellow); }
.price-block .pp { color: var(--grey-darker); }
.tc-total { font-size: 12px; line-height: 16px; color: var(--grey-darker); margin-top: 2px; }

/* ============ SRL ============ */
.srl-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; padding: 40px 0 56px; align-items: start; }

.filter-sidebar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); padding: 0 12px; }
.fs-header { display: flex; align-items: center; gap: 8px; padding: 16px 0; font-weight: 700; border-bottom: 1px solid var(--grey-light); }
.fs-header .icon svg { width: 20px; height: 20px; }
.fs-section { border-bottom: 1px solid var(--grey-light); padding: 12px 0; }
.fs-section:last-child { border-bottom: none; }
.fs-title { display: flex; align-items: center; justify-content: space-between; font-weight: 700; padding: 5px 0; cursor: pointer; width: 100%; text-align: left; }
.fs-title .nb { background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; border-radius: 3px; padding: 1px 6px; margin-left: 8px; vertical-align: 2px; }
.fs-title svg { width: 18px; height: 18px; }
.fs-body { padding: 8px 0 4px; }
.fs-section.collapsed .fs-body { display: none; }
.fs-section.collapsed .fs-title svg { transform: rotate(180deg); }
.radio-item { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; }
.radio-item .rb { width: 20px; height: 20px; border: 1px solid var(--grey-darker); border-radius: 99px; flex: none; position: relative; }
.radio-item input { display: none; }
.radio-item input:checked + .rb { border-color: var(--black); }
.radio-item input:checked + .rb::after { content: ""; position: absolute; inset: 4px; border-radius: 99px; background: var(--black); }
.radio-item .info-i { margin-left: auto; }
.radio-item .info-i svg, .fs-check .info-i svg { width: 16px; height: 16px; }
.fs-check { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; cursor: pointer; line-height: 24px; }
.fs-check input { display: none; }
.fs-check .check-box { margin-top: 2px; }
.fs-check .cnt { color: var(--grey-dark); }
.fs-check.lvl1 { margin-left: 24px; }
.fs-check.lvl2 { margin-left: 48px; }
.fs-group-head { display: flex; align-items: center; gap: 7px; font-weight: 700; padding: 8px 0 2px; }
.fs-group-head .icon svg { width: 17px; height: 17px; }
.price-slider { padding: 8px 4px 4px; }
.price-slider input[type=range] { width: 100%; accent-color: var(--black); }
.price-slider .ps-labels { display: flex; justify-content: space-between; color: var(--grey-darker); font-size: 14px; margin-top: 4px; }
.fs-chip-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--black); border-radius: 99px; padding: 6px 14px; margin: 4px 0; font-weight: 700; font-size: 14px; }
.fs-chip-btn.active { background: var(--yellow); border-color: var(--yellow); }
.fs-chip-btn svg { width: 16px; height: 16px; }
.fs-reset { padding: 16px 0; }
.fs-reset .btn { width: 100%; }

.last-seen { margin-top: 24px; }
.last-seen h4 { font-size: 16px; padding: 8px 0; }
.ls-item { display: flex; gap: 12px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); padding: 8px; margin-bottom: 8px; }
.ls-item img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--radius); }
.ls-item .ls-text { min-width: 0; display: flex; flex-direction: column; }
.ls-item .ls-title { font-size: 13px; font-weight: 700; line-height: 17px; margin-bottom: 2px; }
.ls-item .ls-loc { font-size: 11px; color: var(--grey-darker); line-height: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ls-item .ls-tags { font-size: 10px; color: var(--grey-darker); line-height: 14px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ls-item .ls-price { margin-top: auto; text-align: right; font-weight: 700; }
.ls-item .ls-price u { text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 2px; }

.srl-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.srl-head h1 { font-size: 20px; line-height: 28px; }
.srl-controls { display: flex; align-items: center; gap: 16px; }
.sort-select { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 8px 12px; }
.sort-select select { border: none; outline: none; font-family: inherit; font-size: 16px; background: transparent; }
.view-toggle { display: flex; border: 1px solid var(--grey-light); border-radius: var(--radius); overflow: hidden; }
.view-toggle button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--white); font-weight: 700; }
.view-toggle button.active { background: var(--yellow); }
.view-toggle svg { width: 16px; height: 16px; }

.srl-accordion { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); margin-bottom: 16px; }
.srl-acc-head { display: grid; grid-template-columns: 18px 1fr 1fr 1fr; align-items: center; gap: 16px;
  padding: 13px 16px; cursor: pointer; width: 100%; text-align: left; }
.srl-acc-head .chev svg { width: 18px; height: 18px; }
.srl-acc-head .t { font-weight: 700; }
.srl-acc-head .cnt { text-align: center; color: var(--grey-darker); }
.srl-acc-head .prc { text-align: right; }
.srl-acc-head .prc { font-weight: 700; }
.srl-acc-head .prc u { text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.srl-subbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; margin-bottom: 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); }
.srl-subbar .regions { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.srl-subbar .right { display: flex; align-items: center; gap: 24px; }
.toggle { display: inline-flex; align-items: center; gap: 8px; }
.toggle .track { width: 40px; height: 22px; background: var(--grey-light); border-radius: 99px; position: relative; transition: background .2s; }
.toggle .track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--white); border-radius: 99px; transition: left .2s; }
.toggle.on .track { background: var(--black); }
.toggle.on .track::after { left: 20px; }

.srl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }

/* Listenansicht (Preis-Spalte rechts wie im Figma: Herz oben, dann
   Nächte-Zeile, Preis, Button, Gesamtpreis – alles rechtsbündig) */
.tc-nights-r { display: none; }
.srl-grid.list { display: flex; flex-direction: column; gap: 16px; }
.srl-grid.list .tour-card { position: relative; flex-direction: row; }
.srl-grid.list .tc-media { position: static; width: 280px; flex: none; }
.srl-grid.list .tc-media img { height: 100%; min-height: 200px; }
.srl-grid.list .tc-fav { top: 12px; right: 12px; bottom: auto; box-shadow: none; }
.srl-grid.list .tc-body { flex: 1; padding: 20px 24px; }
.srl-grid.list .tc-sub { display: none; }
.srl-grid.list .tc-footer { flex: none; width: 260px; border-left: 1px solid var(--grey-light);
  padding: 48px 20px 16px; align-items: flex-end; justify-content: center; gap: 2px; }
.srl-grid.list .tc-nights-r { display: block; color: var(--grey-darker); font-size: 14px; margin-bottom: 4px; }
.srl-grid.list .tc-price-row { flex-direction: column; align-items: flex-end; gap: 10px; }
.srl-grid.list .tc-total { margin-top: 4px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 0 32px; }
.pagination .pg { min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--grey-light); border-radius: var(--radius); background: var(--white); font-weight: 400; }
.pagination .pg.active { background: var(--black); color: var(--white); border-color: var(--black); font-weight: 700; }
.pagination .pg.nav { padding: 0 14px; font-weight: 700; display: inline-flex; gap: 6px; }
.pagination .pg.nav svg { width: 14px; height: 14px; }
.pagination .dots { color: var(--grey-darker); }

/* ============ PDP ============ */
.toolbar { background: var(--white); box-shadow: var(--shadow-02); position: relative; z-index: 10; }
.toolbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 44px; }
.toolbar a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.toolbar a svg { width: 16px; height: 16px; }

.pdp-head { padding: 24px 0 0; }
.pdp-breadcrumb { color: var(--grey-darker); margin-bottom: 4px; }
.pdp-head h1 { font-size: 32px; line-height: 40px; font-weight: 700; margin-bottom: 20px; }

.gallery { display: grid; grid-template-columns: 1fr 0.53fr 0.53fr; grid-template-rows: 231px 231px; gap: 8px; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g-main { grid-row: span 2; }
.gallery .g-all { position: absolute; right: 16px; bottom: 16px; background: var(--white); border-radius: var(--radius);
  padding: 8px 14px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-02); }
.gallery .g-all svg { width: 18px; height: 18px; }

.pdp-tabs { background: var(--white); box-shadow: var(--shadow-02); border-radius: var(--radius); display: flex; margin: 24px 0; overflow: hidden; }
.pdp-tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 8px; font-size: 14px; border-bottom: 4px solid transparent; }
.pdp-tab svg { width: 22px; height: 22px; }
.pdp-tab.active { background: var(--yellow); font-weight: 700; }
.pdp-tab:hover:not(.active) { border-bottom-color: var(--yellow); }

.pdp-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; padding-bottom: 56px; }
.pdp-main > .card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); padding: 24px; margin-bottom: 24px; }
.card h2 { font-size: 20px; line-height: 28px; margin-bottom: 12px; }
.card h3.sub { font-size: 16px; color: #b28f00; font-weight: 700; margin: 16px 0 8px; }

.kat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.kat-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--yellow); border-radius: 99px; padding: 4px 12px; font-size: 14px; }
.kat-chip svg { width: 15px; height: 15px; }

.hl-list { margin: 8px 0 4px; }
.hl-list li { position: relative; padding-left: 18px; margin-bottom: 6px; }
.hl-list li::before { content: "•"; position: absolute; left: 4px; }
.ki-note { font-size: 12px; color: var(--grey-dark); margin-top: 10px; }
.hl-head { display: flex; align-items: center; gap: 8px; font-weight: 700; margin: 20px 0 4px; }
.hl-head svg { width: 18px; height: 18px; }

.date-strip-card { padding: 16px 24px 20px; }
.date-strip { display: flex; align-items: stretch; gap: 8px; overflow-x: auto; padding: 4px 0 8px; }
.date-cell { flex: 1 0 92px; text-align: center; }
.date-cell .dc-day { font-size: 14px; padding: 6px 0; white-space: nowrap; }
.date-cell.sel .dc-day { font-weight: 700; }
.date-cell .dc-box { border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 10px 4px; position: relative; background: var(--white); }
.date-cell.sel .dc-box { background: var(--yellow); border-color: var(--yellow); }
.date-cell .dc-box .ab { font-size: 12px; color: var(--grey-darker); }
.date-cell.sel .dc-box .ab { color: var(--black); }
.date-cell .dc-box .pr { font-weight: 700; }
.date-cell .dc-box .pp { display: block; font-size: 11px; color: var(--grey-darker); }
.date-cell.cheap .dc-box::after { content: ""; position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; background: var(--green); border-radius: 2px; }
.strip-legend { display: flex; gap: 24px; margin-top: 10px; font-size: 14px; color: var(--grey-darker); }
.strip-legend .lg { display: inline-flex; align-items: center; gap: 8px; }
.strip-legend .sq { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }
.strip-legend .sq.y { background: var(--yellow); } .strip-legend .sq.g { background: var(--green); }

.itinerary .day { border: 1px solid var(--grey-light); border-radius: var(--radius); margin-bottom: 12px; }
.itinerary .day-head { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; padding: 14px 16px; font-weight: 700; }
.itinerary .day-head svg { width: 18px; height: 18px; transition: transform .2s; }
.itinerary .day.open .day-head svg { transform: rotate(180deg); }
.itinerary .day-body { display: none; padding: 0 16px 16px; }
.itinerary .day.open .day-body { display: block; }
.itinerary .facts { font-size: 14px; margin-bottom: 12px; }
.itinerary .facts b { display: block; color: #b28f00; margin-bottom: 6px; }
.itinerary .facts .fact-row { display: flex; gap: 40px; color: var(--grey-darker); }
.itinerary .db-flex { display: flex; gap: 20px; }
.itinerary .db-flex p { flex: 1; color: var(--black); }
.itinerary .db-flex img { width: 220px; height: 160px; object-fit: cover; border-radius: var(--radius); flex: none; }

.hotel-flex { display: flex; gap: 24px; }
.hotel-info { flex: 1; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 18px; }
.stars small { color: var(--grey-dark); font-size: 11px; letter-spacing: 0; display: block; }
.hotel-name { color: #b28f00; font-size: 18px; font-weight: 700; margin: 6px 0 14px; }
.hotel-info h4 { margin: 12px 0 4px; }
.hotel-note { font-size: 12px; color: var(--grey-dark); margin-top: 12px; }
.am-row { display: flex; gap: 4px; margin-top: 8px; }
.am-row .am { border: 1px solid var(--black); border-radius: 99px; padding: 5px; display: inline-flex; }
.am-row .am svg { width: 16px; height: 16px; }
.hotel-imgs { position: relative; width: 380px; flex: none; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px; gap: 6px; }
.hotel-imgs img { width: 100%; height: 100%; object-fit: cover; }
.hotel-imgs .g-all { position: absolute; right: 8px; bottom: 8px; background: var(--white); border-radius: var(--radius); padding: 6px 10px; font-size: 13px; font-weight: 700; display: inline-flex; gap: 6px; align-items: center; box-shadow: var(--shadow-02); }
.hotel-imgs .g-all svg { width: 16px; height: 16px; }

.included-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.inc-list li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.inc-list li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; }
.member-box { background: linear-gradient(0deg, rgba(255,204,0,.12), rgba(255,204,0,.12)), var(--white); border: 1px solid var(--yellow); }
.member-box h2 { display: flex; align-items: center; gap: 10px; }
.member-box h2 svg { width: 22px; height: 22px; }

.offers-head { display: flex; align-items: center; justify-content: space-between; margin: 32px 0 16px; }
.offers-head h2 { font-size: 20px; }
.offer-row { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); margin-bottom: 16px; overflow: hidden; }
.offer-top { display: flex; align-items: center; gap: 24px; padding: 10px 16px; border-bottom: 1px solid var(--grey-light); font-weight: 700; font-size: 14px; }
.offer-top .ot-item { display: inline-flex; align-items: center; gap: 6px; }
.offer-top .ot-item svg { width: 16px; height: 16px; }
.offer-top .fav { margin-left: auto; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.offer-top .fav svg { width: 18px; height: 18px; }
.offer-row.selected .offer-top { background: var(--yellow); border-bottom-color: var(--yellow); }
.offer-body { display: grid; grid-template-columns: 1fr 1.4fr 0.9fr; gap: 16px; padding: 14px 16px; }
.offer-col-l { font-size: 14px; color: var(--grey-darker); display: flex; flex-direction: column; gap: 6px; }
.offer-col-l .oc-item { display: flex; align-items: flex-start; gap: 8px; }
.offer-col-l .oc-item svg { width: 16px; height: 16px; margin-top: 2px; flex: none; }
.op-logo { background: var(--yellow); color: var(--black); font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 2px; display: inline-block; margin-top: 4px; }
.more-info { font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 400; color: var(--black); }
.more-info svg { width: 15px; height: 15px; }
.offer-col-m { font-size: 14px; border-left: 1px solid var(--grey-light); padding-left: 20px; }
.offer-col-m b.head { display: block; margin-bottom: 8px; font-size: 14px; }
.offer-col-m .alt-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--grey-light); }
.offer-col-m .alt-row:last-child { border-bottom: none; }
.offer-col-r { border-left: 1px solid var(--grey-light); padding-left: 20px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 4px; }
.offer-col-r .ppp { font-size: 14px; color: var(--grey-darker); }
.offer-col-r .ppp b { color: var(--black); font-size: 18px; }
.offer-col-r .total { font-size: 12px; color: var(--grey-darker); margin-bottom: 6px; }

/* PDP Sidebar */
.pdp-side { position: sticky; top: 16px; }
.side-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); overflow: hidden; margin-bottom: 12px; }
.side-card .map-wrap { position: relative; }
.side-card .map-wrap img { width: 100%; height: 260px; object-fit: cover; }
.side-card .map-wrap .tc-fav { bottom: 12px; right: 12px; }
.side-card .sc-body { padding: 16px; }
.side-card .sc-body h3 { font-size: 18px; margin-bottom: 4px; }
.side-card .sc-sub { color: var(--grey-darker); margin-bottom: 8px; }
.side-price { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.side-total { text-align: right; font-size: 12px; color: var(--grey-darker); margin-top: 6px; }
.side-contact { width: 100%; }

.reviews .rev { border-top: 1px solid var(--grey-light); padding: 12px 0; }
.reviews .rev:first-of-type { border-top: none; }
.reviews .rev b { display: block; font-size: 14px; }
.reviews .rev p { color: var(--grey-darker); font-size: 14px; }

/* ============ Buchungsformular ============ */
.bk-header { background: var(--yellow); box-shadow: var(--shadow-02); position: relative; z-index: 50; }
.bk-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 12px; }
.bk-header .right { display: flex; align-items: center; gap: 24px; font-weight: 700; }
.bk-header .phone { display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; }
.bk-header .phone svg { width: 18px; height: 18px; }

.bk-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding: 32px 0 24px; }

.bk-step { display: grid; grid-template-columns: 72px 1fr; }
.bk-rail { position: relative; }
.bk-rail::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; background: var(--grey-light); }
.bk-step:first-child .bk-rail::before { top: 22px; }
.bk-step:last-child .bk-rail::before { bottom: auto; height: 22px; }
.bk-circle { position: relative; z-index: 1; width: 44px; height: 44px; margin: 0 auto; border-radius: 99px;
  background: var(--white); border: 1px solid var(--grey-light); display: flex; align-items: center; justify-content: center;
  font-weight: 700; box-shadow: var(--shadow-02); }
.bk-circle.done { background: var(--yellow); border-color: var(--yellow); }
.bk-circle svg { width: 20px; height: 20px; }

.bk-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-02); margin-bottom: 28px; }
.bk-card-head { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left;
  padding: 15px 20px; font-weight: 700; font-size: 16px; border-bottom: 1px solid var(--grey-light); }
.bk-card-head svg { width: 18px; height: 18px; transition: transform .2s; }
.bk-card.collapsed .bk-card-head svg { transform: rotate(180deg); }
.bk-card.collapsed .bk-card-body { display: none; }
.bk-card-body { padding: 20px; }

.f-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-bottom: 14px; }
.f-grid:last-child { margin-bottom: 0; }
.fi { border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 5px 12px; background: var(--white); min-width: 0; }
.fi label { display: block; font-size: 12px; line-height: 17px; color: var(--grey-darker); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fi input, .fi select { border: none; outline: none; width: 100%; font-family: inherit; font-size: 16px; line-height: 24px;
  background: transparent; padding: 0; color: var(--black); appearance: none; }
.fi select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 16px; padding-right: 22px; }
.c4 { grid-column: span 4; } .c3 { grid-column: span 3; } .c2 { grid-column: span 2; } .c6 { grid-column: span 6; } .c12 { grid-column: span 12; }
.pflicht { text-align: right; font-size: 12px; color: var(--grey-darker); padding-top: 8px; }
.bk-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 6px 0; line-height: 22px; }
.bk-check input { display: none; }
.bk-check .check-box { margin-top: 1px; }
.bk-check small { color: var(--grey-darker); }

.ins-intro { margin-bottom: 16px; }
.ins-option { border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 16px; display: flex; gap: 20px; margin-bottom: 12px; }
.ins-option.selected { border-color: var(--black); }
.ins-main { flex: 1; min-width: 0; }
.ins-title { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ins-title .icon svg { width: 15px; height: 15px; }
.ins-title a { text-decoration: underline; font-weight: 400; font-size: 13px; }
.ins-list { margin-top: 8px; font-size: 13px; line-height: 20px; color: var(--grey-darker); }
.ins-list li { display: flex; gap: 6px; align-items: flex-start; }
.ins-list li svg { width: 14px; height: 14px; margin-top: 3px; flex: none; }
.ins-text { margin-top: 8px; font-size: 13px; line-height: 19px; color: var(--grey-darker); }
.ins-right { display: flex; align-items: center; gap: 14px; flex: none; }
.ins-price { text-align: right; font-size: 12px; line-height: 16px; color: var(--grey-darker); }
.ins-price b { display: block; font-size: 15px; color: var(--black); }
.ins-btn { border: 1px solid var(--black); border-radius: var(--radius); padding: 8px 14px; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; background: var(--white); white-space: nowrap; }
.ins-btn .dot { width: 15px; height: 15px; border: 1.5px solid currentColor; border-radius: 99px; position: relative; flex: none; }
.ins-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.ins-btn.selected .dot::after { content: ""; position: absolute; inset: 3px; background: currentColor; border-radius: 99px; }
.ins-legal { margin-top: 16px; }
.ins-legal h5 { font-size: 14px; margin: 0 0 6px; }

.pay-radios { display: flex; gap: 28px; margin: 6px 0 14px; }
.pay-hint { color: var(--grey-darker); margin-bottom: 16px; }
.pay-mod { font-size: 14px; }
.pay-mod b { display: block; margin-bottom: 4px; }

.legal-text { font-size: 13px; line-height: 19px; color: var(--grey-darker); margin-bottom: 14px; }
.legal-text a { text-decoration: underline; }
.legal-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; text-decoration: underline; margin-bottom: 14px; }
.legal-link svg { width: 16px; height: 16px; flex: none; }
.op-note { font-size: 14px; line-height: 22px; color: var(--grey-darker); margin-bottom: 14px; white-space: pre-line; }

.bk-actions { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 8px; }
.bk-actions .back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.bk-actions .back svg { width: 16px; height: 16px; }

.bk-success { display: none; background: #e7f4e8; border: 1px solid var(--green); color: #1d4d20; border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 24px; font-weight: 700; }
.bk-success.show { display: block; }

/* Buchungs-Sidebar */
.bk-side { position: sticky; top: 16px; }
.bk-side .side-card img.bs-img { width: 100%; height: 180px; object-fit: cover; }
.bs-head { padding: 14px 16px 10px; }
.bs-head .loc { color: var(--grey-darker); font-size: 14px; }
.bs-head h3 { font-size: 17px; margin-top: 2px; }
.bs-row { display: flex; gap: 10px; padding: 11px 16px; border-top: 1px solid var(--grey-light); font-size: 14px; align-items: flex-start; }
.bs-row .icon { margin-top: 1px; }
.bs-row .icon svg { width: 17px; height: 17px; }
.bs-row .op-logo { margin-top: 0; }
.bs-row .grow { flex: 1; }
.bs-price-table { padding: 4px 16px 10px; font-size: 14px; }
.bs-price-table .pr-row { display: flex; justify-content: space-between; padding: 3px 0; }
.bs-total { display: flex; justify-content: space-between; align-items: flex-end; padding: 10px 16px; border-top: 1px solid var(--grey-light); }
.bs-total .lbl { font-size: 12px; color: var(--grey-darker); }
.bs-total b { font-size: 17px; }
.bs-cta { padding: 0 16px 16px; }
.bs-cta .btn { width: 100%; }
.bk-quality { padding: 16px; }
.bk-quality b { display: block; margin-bottom: 6px; }
.bk-quality p { font-size: 13px; color: var(--grey-darker); }

.bk-footer { background: var(--black); color: var(--white); margin-top: 40px; padding: 14px 0; font-size: 14px; }
.bk-footer .wrap { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bk-footer a { font-weight: 700; }
.bk-footer .spacer { flex: 1; }

@media (max-width: 1100px) {
  .bk-layout { grid-template-columns: 1fr; }
  .bk-step { grid-template-columns: 48px 1fr; }
}

/* ============ Footer ============ */
.site-footer { background: var(--black); color: var(--white); margin-top: 56px; }
.footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; padding: 48px 0 32px; }
.footer-cols h4 { color: var(--yellow); font-size: 14px; margin-bottom: 14px; }
.footer-cols a { display: block; font-size: 14px; font-weight: 700; line-height: 20px; padding: 5px 0; color: var(--white); }
.footer-cols a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.2); padding: 16px 0; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .lg { background: var(--yellow); padding: 5px 8px; border-radius: 2px; display: inline-flex; }
.footer-logo .lg img { height: 18px; }
.footer-logo span { font-size: 13px; color: rgba(255,255,255,.7); }
.footer-social { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 700; }
.footer-social .soc { border: 1px solid rgba(255,255,255,.5); border-radius: 99px; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; }
.footer-social .soc svg { width: 16px; height: 16px; }

/* Scrolling sidebar (rechts schwebend) */
.scroll-side { position: fixed; right: 0; top: 60%; z-index: 40; display: flex; flex-direction: column; gap: 2px; }
.scroll-side button { background: var(--black); color: var(--white); font-size: 10px; padding: 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 4px; width: 56px; border-radius: 4px 0 0 4px; }
.scroll-side button svg { width: 18px; height: 18px; }

/* Responsive (grob – Prototyp ist Desktop-first) */
@media (max-width: 1200px) {
  .srl-grid, .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .srl-layout { grid-template-columns: 280px 1fr; gap: 24px; }
  .pdp-layout { grid-template-columns: 1fr; }
  .mainnav .wrap { overflow-x: auto; gap: 24px; justify-content: flex-start; }
  .topbar .wrap { gap: 20px; }
}
@media (max-width: 900px) {
  .search-inputs { flex-wrap: wrap; }
  .search-field { flex: 1 1 45%; }
  .srl-layout { grid-template-columns: 1fr; }
  .tile-grid, .info-3, .teaser-3 { grid-template-columns: 1fr 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gallery .g-main { grid-column: span 2; }
  .hotel-flex { flex-direction: column; }
  .hotel-imgs { width: 100%; }
  .offer-body { grid-template-columns: 1fr; }
  .offer-col-m, .offer-col-r { border-left: none; padding-left: 0; }
}
