html {
    overflow-x: hidden;
}

.reservation-page-body {
    background: #f6f7fb;
    color: #111827;
    min-height: 100%;
    overflow-x: hidden;
    width: 100%;
}

.reservation-page-body,
.reservation-page-body input,
.reservation-page-body select,
.reservation-page-body textarea,
.reservation-page-body button {
    font-family: "Lato", Arial, sans-serif;
}

.reservation-page-body *,
.reservation-page-body *::before,
.reservation-page-body *::after {
    box-sizing: border-box;
}

.reservation-page-body::before,
.reservation-page-body::after {
    display: none;
}

.reservation-page-body .whatsapp-float {
    align-items: center;
    background: #25d366;
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
    display: flex;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 22px;
    width: 58px;
    z-index: 50;
}

.reservation-page-body .whatsapp-float img {
    display: block;
    height: 34px;
    width: 34px;
}

.reservation-app {
    max-width: 100vw;
    overflow-x: hidden;
    padding: 18px 0 64px;
}

.reservation-shell {
    margin: 0 auto;
    max-width: 760px;
    padding: 0 22px;
    width: 100vw;
}

.reservation-topbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.reservation-logo {
    align-items: center;
    display: inline-flex;
}

.reservation-logo img {
    display: block;
    max-height: 44px;
    width: auto;
}

.reservation-actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.reservation-action {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e4e7ee;
    border-radius: 8px;
    color: #556070;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    min-width: 38px;
    padding: 0 12px;
}

.reservation-action.is-active,
.reservation-action:hover,
.reservation-action:focus {
    border-color: #5366ff;
    color: #5366ff;
}

.reservation-home {
    font-size: 17px;
}

.reservation-hero {
    margin-bottom: 18px;
}

.reservation-kicker {
    color: #ca3d26;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.reservation-hero h1 {
    color: #5366ff;
    font-family: "Lato", Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 4px;
}

.reservation-hero p {
    color: #667085;
    font-size: 16px;
    margin: 0;
}

.reservation-alert {
    align-items: center;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    margin: 0 0 14px;
    padding: 14px 16px;
}

.reservation-alert-success {
    background: #edf8f0;
    border: 1px solid #75bf84;
    color: #226b35;
}

.reservation-alert-error {
    background: #fff0ed;
    border: 1px solid #e39b91;
    color: #9e3021;
}

.reservation-flow {
    display: grid;
    gap: 12px;
}

.reservation-hp {
    left: -9999px;
    opacity: 0;
    position: absolute;
}

.reservation-panel {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.035);
    min-width: 0;
    padding: 26px 30px;
    width: 100%;
}

.reservation-panel-strong {
    border-color: #5366ff;
    box-shadow: 0 18px 42px rgba(83, 102, 255, 0.09);
}

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

.reservation-panel-head,
.reservation-inline-label {
    align-items: center;
    color: #151923;
    display: flex;
    gap: 14px;
    margin: 0 0 22px;
}

.reservation-panel-head > div {
    flex: 1;
}

.reservation-panel-head h2 {
    color: #151923;
    font-family: "Lato", Arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.reservation-panel-head p {
    color: #8b95a5;
    font-size: 13px;
    line-height: 1.4;
    margin: 4px 0 0;
}

.reservation-panel-head strong {
    color: #c9ced8;
    font-family: "PT Sans Narrow", Arial, sans-serif;
    font-size: 18px;
}

.reservation-panel-icon {
    align-items: center;
    color: #111827;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 25px;
    justify-content: center;
}

.reservation-inline-label {
    font-size: 19px;
    font-weight: 500;
}

.reservation-guest-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
}

.reservation-guest-grid label {
    display: block;
    margin: 0;
}

.reservation-guest-grid input {
    opacity: 0;
    position: absolute;
}

.reservation-guest-grid span {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 9px;
    color: #06101f;
    cursor: pointer;
    display: flex;
    font-size: 22px;
    font-weight: 500;
    height: 56px;
    justify-content: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reservation-guest-grid input:checked + span,
.reservation-guest-grid span:hover {
    border-color: #5366ff;
    box-shadow: 0 10px 22px rgba(83, 102, 255, 0.15);
    color: #5366ff;
    transform: translateY(-1px);
}

.reservation-note {
    align-items: flex-start;
    border: 1px solid #7684ff;
    border-radius: 9px;
    color: #536174;
    display: block;
    font-size: 13px;
    gap: 0;
    line-height: 1.55;
    margin: 34px 0 0;
    overflow-wrap: anywhere;
    padding: 12px 14px;
    word-break: normal;
}

.reservation-note i,
.reservation-note a {
    color: #5366ff;
}

.reservation-note i {
    margin-right: 7px;
}

.reservation-panel input,
.reservation-panel select,
.reservation-panel textarea {
    background: #f1f3f8;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #151923;
    font-size: 15px;
    min-height: 50px;
    outline: none;
    padding: 0 16px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.reservation-panel textarea {
    line-height: 1.6;
    min-height: 118px;
    padding: 14px 16px;
    resize: vertical;
}

.reservation-panel input:focus,
.reservation-panel select:focus,
.reservation-panel textarea:focus {
    background: #ffffff;
    border-color: #5366ff;
    box-shadow: 0 0 0 3px rgba(83, 102, 255, 0.13);
}

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

.reservation-form-grid label {
    color: #8790a2;
    display: grid;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.2px;
    margin: 0;
}

.reservation-phone-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 88px 1fr;
}

.reservation-phone-row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7c8598 50%), linear-gradient(135deg, #7c8598 50%, transparent 50%);
    background-position: calc(100% - 18px) 23px, calc(100% - 12px) 23px;
    background-repeat: no-repeat;
    background-size: 6px 6px;
    padding-right: 30px;
}

.reservation-small-print {
    color: #687385;
    font-size: 12px;
    line-height: 1.6;
    margin: 18px 0 28px;
}

.reservation-rules {
    display: grid;
    gap: 10px;
}

.reservation-rule {
    border: 1px solid #f1b363;
    border-radius: 9px;
    padding: 16px 18px 14px;
}

.reservation-rule strong {
    color: #2d3445;
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}

.reservation-rule strong i {
    color: #f5a742;
    margin-right: 8px;
}

.reservation-rule ul {
    color: #3f485d;
    line-height: 1.6;
    margin: 0 0 0 28px;
    padding: 0;
}

.reservation-submit {
    align-items: center;
    background: #ca3d26;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reservation-submit:hover,
.reservation-submit:focus {
    background: #a92f1e;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .reservation-app {
        padding: 12px 0 38px;
    }

    .reservation-shell {
        margin-left: 14px;
        margin-right: auto;
        max-width: 362px;
        padding: 0;
        width: calc(100vw - 28px);
    }

    .reservation-topbar {
        margin-bottom: 20px;
    }

    .reservation-logo img {
        max-height: 36px;
    }

    .reservation-action {
        height: 36px;
        min-width: 36px;
        padding: 0 9px;
    }

    .reservation-hero h1 {
        font-size: 26px;
    }

    .reservation-hero p {
        font-size: 14px;
    }

    .reservation-panel {
        border-radius: 18px;
        padding: 22px 18px;
    }

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

    .reservation-panel-head,
    .reservation-inline-label {
        gap: 12px;
        margin-bottom: 18px;
    }

    .reservation-panel-head h2,
    .reservation-inline-label {
        font-size: 18px;
    }

    .reservation-panel-head p,
    .reservation-panel-head strong {
        display: none;
    }

    .reservation-guest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reservation-submit {
        width: 100%;
    }
}
