/* ============================================================
██╗   ██╗██╗  ██╗██████╗     ██████╗ ███████╗███████╗██╗ ██████╗ ███╗   ██╗
██║   ██║╚██╗██╔╝██╔══██╗    ██╔══██╗██╔════╝██╔════╝██║██╔════╝ ████╗  ██║
██║   ██║ ╚███╔╝ ██████╔╝    ██║  ██║█████╗  ███████╗██║██║  ███╗██╔██╗ ██║
██║   ██║ ██╔██╗ ██╔══██╗    ██║  ██║██╔══╝  ╚════██║██║██║   ██║██║╚██╗██║
╚██████╔╝██╔╝ ██╗██████╔╝    ██████╔╝███████╗███████║██║╚██████╔╝██║ ╚████║
 ╚═════╝ ╚═╝  ╚═╝╚═════╝     ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝
   CSS Page (styles.css)
   Author: Bernd
   ============================================================ */

/* ===============================
   Chalet Kasper frontend styling
   =============================== */
* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Inter, Arial, sans-serif;
    color: #23363b;
    background: #fbf4ea;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

main {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 244, 0.96);
    border-bottom: 1px solid rgba(35, 54, 59, 0.1);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    color: #20383d;
}

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

.brand span {
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 750;
    color: #43585d;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: #cf8067;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: #20383d;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

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

.lang-button,
.menu-button {
    border: 0;
    cursor: pointer;
}

.lang-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(32, 56, 61, 0.12);
}

.lang-button img {
    width: 30px;
    height: 30px;
    border-radius: 999px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: #ffffff;
    background: #20383d;
    font-size: 1.25rem;
}

.hero {
    position: relative;
    padding: clamp(76px, 8vw, 118px) 0 72px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff6e9 0%, #e5f1ef 52%, #f4dfcf 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.36));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: #b86552;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: #1d353a;
    line-height: 1.1;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    letter-spacing: -0.06em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

p {
    margin-top: 0;
}

.lead {
    max-width: 690px;
    color: #50656a;
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 850;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: #c87660;
    box-shadow: 0 18px 36px rgba(200, 118, 96, 0.27);
}

.btn-secondary {
    color: #20383d;
    background: #ffffff;
    border-color: rgba(32, 56, 61, 0.14);
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.image-card,
.hero-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(32, 56, 61, 0.18);
}

.image-card img,
.hero-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: 260px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(32, 56, 61, 0.14);
}

.hero-badge strong {
    display: block;
    margin-bottom: 4px;
    color: #1d353a;
}

.hero-badge span {
    color: #50656a;
    font-size: 0.94rem;
}

.page-hero {
    padding: 76px 0 48px;
    background: linear-gradient(135deg, #fff6e9, #eaf3f0);
}

.section {
    padding: clamp(62px, 7vw, 96px) 0;
}

.section-soft {
    background: #fffaf3;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.form-card,
.review-card,
.info-card,
.legal-card {
    border: 1px solid rgba(32, 56, 61, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(32, 56, 61, 0.08);
}

.feature-card,
.info-card,
.review-card,
.legal-card {
    padding: 28px;
}

.feature-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 22px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: center;
}

.split-layout.reverse .image-card {
    order: 2;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #4f6267;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #9fc8bd;
    box-shadow: inset 0 0 0 3px #e9f4f1;
}

.form-card {
    padding: clamp(24px, 4vw, 34px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field.full,
.booking-steps,
.price-panel,
.terms-field {
    grid-column: 1 / -1;
}

label {
    color: #2b4247;
    font-weight: 800;
}

.lazy-sunday-field {
    padding: 16px;
    border-radius: 18px;
    background: #fff4ea;
    border: 1px solid rgba(200, 118, 96, 0.18);
}

.lazy-sunday-field.is-hidden {
    display: none;
}

.lazy-sunday-field strong {
    color: #1d353a;
}

.lazy-sunday-field.is-hidden {
    display: none;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(32, 56, 61, 0.16);
    border-radius: 16px;
    color: #20383d;
    background: #ffffff;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #87bcb1;
    box-shadow: 0 0 0 4px rgba(135, 188, 177, 0.18);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.hidden-field {
    position: absolute;
    left: -10000px;
}

.form-card .btn {
    margin-top: 22px;
}

.notice {
    display: none;
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    color: #20383d;
    background: #eaf3f0;
}

.notice.show {
    display: block;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 28px;
    align-items: start;
}

.booking-panel {
    display: grid;
    gap: 22px;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.step-card {
    padding: 18px;
    border: 1px solid rgba(32, 56, 61, 0.1);
    border-radius: 22px;
    background: #fffaf3;
}

.step-card strong {
    display: block;
    color: #1d353a;
}

.step-card span {
    color: #607178;
    font-size: 0.94rem;
}

.arrangement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.arrangement-option {
    display: block;
    height: 100%;
}

.arrangement-card {
    height: 100%;
    min-height: 170px;
    padding-top: 18px;
    padding-bottom: 18px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
    align-content: start;
    border: 1px solid rgba(32, 56, 61, 0.13);
    border-radius: 22px;
    background: #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    text-align: center;
}

.arrangement-card strong {
    min-height: 28px;
    display: block;
    color: #1d353a;
    font-size: 1.08rem;
    line-height: 1.25;
}

.arrangement-card span {
    display: block;
    color: #5d7076;
    font-size: 0.94rem;
    line-height: 1.55;
}

.arrangement-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.arrangement-card strong {
    color: #1d353a;
    font-size: 1.08rem;
    text-align: center;
}

.arrangement-card span {
    color: #5d7076;
    font-size: 0.94rem;
}

.arrangement-option input:checked+.arrangement-card {
    border-color: #c87660;
    box-shadow: 0 18px 36px rgba(200, 118, 96, 0.16);
    transform: translateY(-2px);
}

.calendar {
    padding: 24px;
    border: 1px solid rgba(32, 56, 61, 0.1);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(32, 56, 61, 0.08);
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.calendar-head h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.day-name {
    padding: 8px 4px;
    color: #708187;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.day-cell {
    position: relative;
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(32, 56, 61, 0.08);
    border-radius: 15px;
    color: #23363b;
    background: #f8fbf9;
    font-weight: 800;
}

.day-cell.selectable {
    cursor: pointer;
    background: #cfe8e2;
    border-color: #6faaa0;
}

.day-cell.selectable:hover,
.day-cell.selected {
    color: #ffffff;
    background: #3f8276;
    border-color: #3f8276;
}

.day-cell.in-range {
    background: #b9ddd5;
    border-color: #5f9f93;
}

.day-cell.pending {
    color: #6d4600;
    background: #ffd978;
    border-color: #e0a400;
}

.day-cell.confirmed {
    color: #ffffff;
    background: #d96c6c;
    border-color: #b84f4f;
}

.day-cell.blocked {
    color: #ffffff;
    background: #7b858b;
    border-color: #5f676c;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 20px;
    color: #5a6f75;
    font-size: 0.9rem;
}

.legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend i {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 999px;
    background: #cfe8e2;
    border: 1px solid #6faaa0;
}

.legend .pending i {
    background: #ffd978;
    border-color: #e0a400;
}

.legend .confirmed i {
    background: #d96c6c;
    border-color: #b84f4f;
}

.legend .blocked i {
    background: #7b858b;
    border-color: #5f676c;
}

.price-panel {
    display: none;
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: #fff4ea;
    border: 1px solid rgba(200, 118, 96, 0.18);
}

.price-panel.show {
    display: block;
}

.price-panel strong {
    display: block;
    margin-top: 4px;
    color: #1d353a;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1;
}

.price-panel small {
    color: #607178;
}

.terms-field {
    margin-top: 4px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fbf9;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: #4c6066;
    font-weight: 650;
}

.checkbox-row input {
    min-height: 22px;
    height: 22px;
    margin-top: 3px;
}

.checkbox-row a {
    color: #b86552;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(32, 56, 61, 0.1);
}

.gallery-grid img {
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        filter 220ms ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 42px rgba(29, 53, 58, 0.18);
    filter: brightness(1.04);
}

.review-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.stars {
    color: #c87660;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
}

.legal-content {
    display: grid;
    gap: 22px;
}

.legal-card h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.legal-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.site-footer {
    flex-shrink: 0;
    padding: 34px 0;
    color: #d8e5e2;
    background: #20383d;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer-inner p {
    margin: 0;
}

.site-footer a {
    color: #ffffff;
    font-weight: 750;
}


@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        inset: 76px 18px auto 18px;
        display: none;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 60px rgba(32, 56, 61, 0.18);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 12px 8px;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .hero-grid,
    .split-layout,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse .image-card {
        order: 0;
    }

    .card-grid,
    .review-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-steps,
    .arrangement-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand span {
        font-size: 0.98rem;
    }

    .hero,
    .page-hero {
        padding-top: 58px;
    }

    .card-grid,
    .review-list,
    .form-grid,
    .booking-steps,
    .arrangement-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .calendar {
        padding: 16px;
        border-radius: 24px;
    }

    .day-cell {
        min-height: 40px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

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

.review-card .review-text {
    margin-bottom: 0.9rem;
    line-height: 1.65;
}

.review-card .review-text.is-collapsed {
    display: -webkit-box;
    max-height: calc(1.65em * 5);
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.review-card .review-read-more {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    color: #c87660;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.review-card .review-read-more:hover,
.review-card .review-read-more:focus-visible {
    text-decoration: underline;
    outline: none;
}


/* Reviews: paginering */

.reviews-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.reviews-page-button {
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #1d353a;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.reviews-page-button:hover:not(:disabled),
.reviews-page-button:focus-visible:not(:disabled) {
    background: #c87660;
    transform: translateY(-1px);
    outline: none;
}

.reviews-page-button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.reviews-page-info {
    color: #607178;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 520px) {
    .reviews-pagination {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .reviews-page-button {
        width: 100%;
    }

    .reviews-page-info {
        order: -1;
    }

    .brand img {
        height: 40px;
    }
}

/* Gallery lightbox */

.gallery-grid img.is-clickable-gallery-image {
    cursor: zoom-in;
}

body.ck-lightbox-active {
    overflow: hidden;
}

.ck-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(15, 31, 35, 0.9);
}

.ck-lightbox.is-open {
    display: flex;
}

.ck-lightbox-dialog {
    position: relative;
    width: min(100%, 1200px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.ck-lightbox-close,
.ck-lightbox-nav {
    position: fixed;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    color: #1d353a;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ck-lightbox-close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

.ck-lightbox-nav {
    top: 50%;
    width: 50px;
    height: 60px;
    border-radius: 999px;
    font-size: 2.5rem;
    padding-bottom: 4px;
    line-height: 1;
    transform: translateY(-50%);
}

.ck-lightbox-prev {
    left: 24px;
    padding-left: 4px;
}

.ck-lightbox-next {
    right: 24px;
    padding-right: 4px;
}

.ck-lightbox-close:hover,
.ck-lightbox-nav:hover,
.ck-lightbox-close:focus-visible,
.ck-lightbox-nav:focus-visible {
    background: #c87660;
    color: #ffffff;
    outline: none;
}

@media (max-width: 720px) {
    .ck-lightbox {
        padding: 18px;
    }

    .ck-lightbox-image {
        max-height: 76vh;
        border-radius: 16px;
    }

    .ck-lightbox-caption {
        bottom: -34px;
        font-size: 0.88rem;
    }

    .ck-lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }

    .ck-lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 46px;
        height: 46px;
        font-size: 2rem;
        transform: none;
    }

    .ck-lightbox-prev {
        left: calc(50% - 58px);
    }

    .ck-lightbox-next {
        right: calc(50% - 58px);
    }
}

@media (max-width: 768px) {
    .hero-card {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-card img {
        width: 100%;
        display: block;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hero-badge {
        position: static;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 22px;
        border-radius: 24px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .hero-badge strong {
        display: block;
        margin-bottom: 8px;
    }

    .hero-badge span {
        display: block;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 980px) {
    .booking-layout {
        display: flex;
        flex-direction: column;
    }

    .form-card {
        order: 1;
    }

    .booking-panel {
        order: 2;
    }

    .booking-panel .calendar {
        margin-top: 28px;
    }

    .booking-panel .info-card {
        margin-top: 22px;
    }
}

@media (max-width: 980px) {
    .booking-layout {
        display: flex;
        flex-direction: column;
    }

    .booking-panel {
        display: contents;
    }

    .booking-panel .info-card {
        order: 1;
        margin-bottom: 22px;
    }

    .form-card {
        order: 2;
    }

    .booking-panel .calendar {
        order: 3;
        margin-top: 28px;
    }
}