/* =====================================================
   SCHUH-RESERVIERUNG
===================================================== */

.reservation-page {
    background: #f8f8f8;
}

.reservation-hero {
    padding: 88px 0 72px;
    background: #fff;
    text-align: center;
}

.reservation-hero .container {
    max-width: 820px;
}

.reservation-hero h1 {
    margin: 0 0 20px;
    color: #222;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 800;
}

.reservation-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #666;
    font-size: 19px;
    line-height: 1.7;
}

.reservation-content {
    padding: 72px 0 110px;
}

.reservation-card {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
    gap: 64px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 54px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
}

.reservation-product {
    align-self: start;
}

.reservation-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    margin-bottom: 34px;
    padding: 20px;
    border-radius: 22px;
    background: #fafafa;
}

.reservation-product-image img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .12));
}

.reservation-product h2,
.reservation-form h2 {
    margin: 0 0 16px;
    color: #222;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 800;
}

.reservation-price {
    margin-bottom: 30px;
    color: #222;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.reservation-info {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 4px solid #c99a2a;
    border-radius: 12px;
    background: #fff8e8;
}

.reservation-info strong {
    color: #222;
    font-size: 17px;
}

.reservation-info p {
    margin: 6px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.55;
}

.reservation-form {
    padding-left: 44px;
    border-left: 1px solid #ececec;
}

.reservation-form-intro {
    margin: 0 0 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.reservation-size-picker {
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.reservation-size-picker legend {
    margin-bottom: 12px;
    padding: 0;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.reservation-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reservation-size-option {
    position: relative;
    cursor: pointer;
}

.reservation-size-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.reservation-size-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 50px;
    padding: 10px 15px;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    background: #fff;
    color: #222;
    font-size: 17px;
    font-weight: 700;
    transition: .2s ease;
}

.reservation-size-option:hover span {
    border-color: #c99a2a;
    transform: translateY(-1px);
}

.reservation-size-option input:checked + span {
    border-color: #c99a2a;
    background: #c99a2a;
    color: #fff;
    box-shadow: 0 5px 15px rgba(201, 154, 42, .22);
}

.reservation-size-option input:focus-visible + span {
    outline: 3px solid rgba(201, 154, 42, .25);
    outline-offset: 2px;
}

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

.reservation-field label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.reservation-field input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: #fff;
    color: #222;
    font: inherit;
    box-sizing: border-box;
}

.reservation-field input:focus {
    outline: none;
    border-color: #c99a2a;
    box-shadow: 0 0 0 3px rgba(201, 154, 42, .15);
}

.reservation-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 10px 0 22px;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
}

.reservation-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #c99a2a;
}

.reservation-consent a {
    color: #9a731d;
    font-weight: 700;
    text-decoration: underline;
}

.reservation-submit {
    width: auto;
    min-height: 54px;
    padding: 15px 28px;
    border: 0;
    border-radius: 50px;
    background: #c99a2a;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.reservation-footnote {
    margin: 18px 0 0;
    color: #888;
    font-size: 13px;
    line-height: 1.55;
}

.reservation-status {
    max-width: 1080px;
    margin: 0 auto 28px;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.6;
}

.reservation-status.is-success {
    background: #edf8ee;
    color: #216b2a;
    border: 1px solid #bfe4c4;
}

.reservation-status.is-error {
    background: #fff0ee;
    color: #8b2d20;
    border: 1px solid #efc4bd;
}

.reservation-empty {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff8e8;
    color: #555;
}

@media (max-width: 900px) {
    .reservation-card {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .reservation-form {
        padding-left: 0;
        padding-top: 44px;
        border-left: 0;
        border-top: 1px solid #ececec;
    }
}

@media (max-width: 620px) {
    .reservation-hero {
        padding: 65px 0 50px;
    }

    .reservation-content {
        padding: 50px 0 80px;
    }

    .reservation-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .reservation-product h2,
    .reservation-form h2 {
        font-size: 30px;
    }

    .reservation-price {
        font-size: 34px;
    }

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