/* ========================================
   LRM RESERVIERUNGSSEITE
======================================== */

.reservation-body {
    margin: 0;

    background:
        linear-gradient(
            180deg,
            #11171c 0px,
            #161d21 340px,
            #eef0ed 760px,
            #f5f5f3 100%
        );

    color: #151515;
}


/* ========================================
   HEADER
======================================== */

.reservation-header {
    position: relative;

    width: 100%;
    height: 96px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #0d1317;

    color: #ffffff;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.reservation-brand {
    display: flex;
    align-items: center;

    gap: 16px;
}


.reservation-brand-lrm {
    color: #f4b51c;

    font-size: 42px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.reservation-brand-text {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-size: 12px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.reservation-navigation {
    display: flex;
    align-items: center;

    gap: 30px;
}


.reservation-navigation a {
    color:
        rgba(255, 255, 255, 0.86);

    font-size: 13px;
    font-weight: 700;
}


.reservation-navigation a:hover {
    color: #f4b51c;
}


.reservation-header .cart-link {
    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;
}


/* ========================================
   HAUPTBEREICH
======================================== */

.reservation-page {
    max-width: 1180px;

    margin: 0 auto;

    padding:
        85px 30px 120px;
}


/* ========================================
   TITEL
======================================== */

.reservation-page-heading {
    max-width: 760px;

    margin-bottom: 55px;

    color: #ffffff;
}


.reservation-page-heading .small-title {
    color: #f4b51c;
}


.reservation-page-heading h1 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 850;

    letter-spacing: -1.5px;
}


.reservation-page-heading > p:last-child {
    max-width: 680px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 17px;

    line-height: 1.65;
}


/* ========================================
   WARENKORB
======================================== */

.reservation-cart {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.reservation-cart-item {
    position: relative;

    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr)
        auto;

    gap: 26px;

    align-items: center;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, 0.08);

    border-radius: 14px;

    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


.reservation-cart-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #f4b51c;
}


.reservation-cart-image {
    width: 150px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #fafafa,
            #eeeeec
        );

    border-radius: 10px;

    overflow: hidden;
}


.reservation-cart-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 10px;
}


.reservation-cart-info .brand {
    color: #c78c00;
}


.reservation-cart-info h2 {
    margin-bottom: 7px;

    color: #151515;

    font-size: 22px;
}


.reservation-cart-info .article-number {
    color: #999999;
}


.reservation-variants span {
    background: #f1f1ef;

    border:
        1px solid #e4e4e0;

    color: #444444;
}


/* ========================================
   MENGE / ENTFERNEN
======================================== */

.reservation-cart-actions {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 14px;
}


.quantity-control {
    border:
        1px solid #d7d7d4;

    background: #ffffff;

    border-radius: 7px;
}


.quantity-control button {
    background: #f1f1ef;

    color: #111111;
}


.quantity-control button:hover {
    background: #f4b51c;
}


.remove-item {
    color: #9b2020;

    font-size: 13px;
}


.remove-item:hover {
    text-decoration: underline;
}


/* ========================================
   LEERER WARENKORB
======================================== */

.empty-cart {
    padding: 60px 30px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.10);

    text-align: center;
}


.empty-cart h2 {
    margin-bottom: 10px;

    font-size: 30px;
}


.empty-cart p {
    color: #666666;
}


.empty-cart .button.primary {
    margin-top: 25px;

    background: #f4b51c;

    color: #111111;
}


/* ========================================
   CHECKOUT / FORMULAR
======================================== */

.reservation-checkout {
    margin-top: 55px;

    padding: 42px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.12);
}


.reservation-checkout h2 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 34px;

    line-height: 1.1;
}


.reservation-checkout > p {
    margin-bottom: 32px;

    color: #666666;
}


/* ========================================
   FORMULARE
======================================== */

.reservation-checkout .form-group label {
    color: #222222;
}


.reservation-checkout
.form-group input,
.reservation-checkout
.form-group textarea,
.reservation-checkout
.form-group select {
    border:
        1px solid #d8d8d5;

    background: #fafafa;

    border-radius: 8px;
}


.reservation-checkout
.form-group input:focus,
.reservation-checkout
.form-group textarea:focus,
.reservation-checkout
.form-group select:focus {
    border-color: #f4b51c;

    box-shadow:
        0 0 0 3px
        rgba(244, 181, 28, 0.12);
}


/* ========================================
   KUNDENTYP
======================================== */

.customer-type-selection {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 8px;
}


.customer-type-option {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    background: #fafafa;

    border:
        2px solid #ddddda;

    border-radius: 9px;

    cursor: pointer;

    font-weight: 800;

    transition: 0.2s;
}


.customer-type-option:hover {
    border-color: #f4b51c;
}


.customer-type-option.selected {
    border-color: #f4b51c;

    background: #fff8e5;

    box-shadow:
        0 0 0 3px
        rgba(244, 181, 28, 0.10);
}


.customer-type-option
input[type="radio"] {
    width: 18px;
    height: 18px;

    margin: 0;

    flex:
        0 0 18px;

    accent-color: #f4b51c;
}


/* ========================================
   BEDRUCKUNG
======================================== */

.printing-request {
    margin: 28px 0;

    padding: 22px;

    background: #f5f5f3;

    border:
        1px solid #dededb;

    border-radius: 10px;
}


.printing-checkbox {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #151515;

    font-weight: 800;

    cursor: pointer;
}


.printing-checkbox
input[type="checkbox"] {
    width: 19px;
    height: 19px;

    margin: 0;

    flex:
        0 0 19px;

    accent-color: #f4b51c;
}


.printing-details {
    margin-top: 22px;

    padding-top: 22px;

    border-top:
        1px solid #ddddda;
}


.printing-info {
    color: #666666;
}


/* ========================================
   ABSENDEN
======================================== */

.reservation-submit {
    min-height: 55px;

    border-radius: 8px;

    background: #f4b51c;

    color: #111111;

    font-size: 16px;

    font-weight: 900;

    transition:
        background 0.2s,
        transform 0.2s;
}


.reservation-submit:hover {
    background: #ffc42d;

    transform:
        translateY(-1px);
}


/* ========================================
   MELDUNGEN
======================================== */

.reservation-success {
    background: #eff8ef;

    color: #28622e;

    border-left:
        4px solid #4c9b51;
}


.reservation-error {
    padding: 10px 0;

    color: #a92828;
}


/* ========================================
   FOOTER
======================================== */

.reservation-body footer {
    background: #0d1317;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .reservation-navigation {
        display: none;
    }


    .reservation-cart-item {
        grid-template-columns:
            120px
            minmax(0, 1fr);
    }


    .reservation-cart-actions {
        grid-column:
            1 / -1;

        flex-direction: row;

        justify-content:
            space-between;
    }


    .reservation-cart-image {
        width: 120px;
        height: 110px;
    }

}


/* ========================================
   HANDY
======================================== */

@media (max-width: 600px) {

    .reservation-header {
        height: 82px;

        padding:
            0 20px;
    }


    .reservation-brand-lrm {
        font-size: 34px;
    }


    .reservation-brand-text {
        display: none;
    }


    .reservation-page {
        padding:
            60px 18px 80px;
    }


    .reservation-page-heading h1 {
        font-size: 40px;
    }


    .reservation-cart-item {
        grid-template-columns:
            85px
            minmax(0, 1fr);

        gap: 15px;

        padding: 17px;
    }


    .reservation-cart-image {
        width: 85px;
        height: 85px;
    }


    .reservation-cart-info h2 {
        font-size: 18px;
    }


    .reservation-checkout {
        padding:
            25px 18px;
    }


    .customer-type-selection {
        grid-template-columns:
            1fr;
    }

}