/* ========================================
   GRUNDLAGEN
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #151515;
    line-height: 1.6;
}

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

button,
input,
textarea {
    font-family: inherit;
}


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

.header {
    height: 80px;
    padding: 0 6%;

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

    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
}

.navigation {
    display: flex;
    gap: 35px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.navigation a:hover {
    color: #00a651;
}

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

.header-actions button {
    border: none;
    background: #f5f5f5;
    padding: 10px 13px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}


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

.cart-link {
    position: relative;

    width: 44px;
    height: 44px;

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

    background: #f5f5f5;
    border-radius: 10px;

    font-size: 20px;

    transition: 0.2s;
}

.cart-link:hover {
    background: #eeeeee;
}

#cart-count {
    position: absolute;

    top: -6px;
    right: -6px;

    min-width: 20px;
    height: 20px;

    padding: 0 5px;

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

    background: #00a651;
    color: #ffffff;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 800;
}


/* ========================================
   BUTTONS
======================================== */

.button {
    display: inline-block;

    padding: 15px 25px;

    border-radius: 8px;

    font-weight: 700;

    transition: 0.2s;

    cursor: pointer;
}

.button.primary {
    border: none;

    background: #00a651;
    color: #ffffff;
}

.button.primary:hover {
    background: #008c44;
}

.button.secondary {
    border: 2px solid #151515;

    background: transparent;
    color: #151515;
}

.button.secondary:hover {
    background: #151515;
    color: #ffffff;
}


/* ========================================
   HERO
======================================== */

.hero {
    min-height: 650px;

    padding: 80px 8%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: #f7f7f7;
}

.small-title {
    color: #00a651;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(45px, 5vw, 75px);
    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #00a651;
}

.hero-text {
    max-width: 600px;

    font-size: 18px;
    color: #666666;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* ========================================
   HERO BILD
======================================== */

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-placeholder {
    width: 100%;
    max-width: 550px;
    height: 450px;

    background: #dddddd;

    border-radius: 16px;

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

    text-align: center;
}

.hero-placeholder strong {
    font-size: 55px;
    letter-spacing: 4px;
}

.hero-placeholder span {
    color: #666666;
    margin-top: 10px;
}


/* ========================================
   VORTEILE
======================================== */

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 35px 8%;

    border-bottom: 1px solid #eeeeee;
}

.advantage {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px;
}

.advantage-icon {
    width: 45px;
    height: 45px;

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

    background: #f1f1f1;

    border-radius: 50%;

    font-weight: bold;
}

.advantage h3 {
    font-size: 14px;
}

.advantage p {
    font-size: 12px;
    color: #777777;
}


/* ========================================
   PRODUKTE
======================================== */

.products-section {
    padding: 100px 8%;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2,
.brands-section h2,
.contact-section h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.section-heading > p:last-child {
    color: #777777;
}


/* ========================================
   HAUPTKATEGORIEN
======================================== */

.main-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 35px;
}

.category-button {
    border: 1px solid #dddddd;

    background: #ffffff;

    border-radius: 12px;

    min-height: 110px;

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

    gap: 8px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 700;

    transition: 0.2s;
}

.category-button:hover {
    border-color: #00a651;
    transform: translateY(-2px);
}

.category-button.active {
    background: #00a651;
    color: #ffffff;
    border-color: #00a651;
}

.category-icon {
    font-size: 30px;
}


/* ========================================
   MARKENFILTER
======================================== */

.brand-filter-wrapper {
    margin-bottom: 40px;

    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.brand-filter-wrapper > p {
    font-weight: 700;
}

.brand-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-filter {
    padding: 9px 16px;

    border: 1px solid #dddddd;

    background: #ffffff;

    border-radius: 20px;

    cursor: pointer;

    font-size: 13px;

    transition: 0.2s;
}

.brand-filter:hover {
    border-color: #00a651;
    color: #00a651;
}

.brand-filter.active {
    background: #151515;
    color: #ffffff;
    border-color: #151515;
}


/* ========================================
   PRODUKTGRID
======================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* ========================================
   PRODUKTKARTEN
======================================== */

.product-card {
    border: 1px solid #e5e5e5;

    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;

    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 260px;

    background: #f2f2f2;

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

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 20px;
}

.product-info {
    padding: 22px;
}

.brand {
    color: #00a651;

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

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 19px;
    line-height: 1.3;

    margin-bottom: 8px;
}

.product-category {
    font-size: 14px;
    color: #666666;

    margin-bottom: 5px;
}

.article-number {
    font-size: 12px;
    color: #999999;
}

.product-bottom {
    margin-top: 20px;

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

    gap: 15px;
}

.product-bottom strong {
    font-size: 20px;
}

.product-bottom button {
    border: none;

    background: #151515;
    color: #ffffff;

    padding: 9px 15px;

    border-radius: 6px;

    cursor: pointer;
}

.product-bottom button:hover {
    background: #00a651;
}


/* ========================================
   KEINE PRODUKTE
======================================== */

.no-products {
    display: none;

    text-align: center;

    padding: 60px 20px;

    background: #f7f7f7;

    border-radius: 10px;
    border: 1px dashed #cccccc;

    color: #777777;
}


/* ========================================
   MARKEN
======================================== */

.brands-section {
    padding: 90px 8%;

    text-align: center;

    background: #f7f7f7;
}

.brand-text {
    color: #777777;
    margin-bottom: 35px;
}

.brand-grid {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.brand-box {
    min-height: 130px;

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

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 12px;

    padding: 20px;

    font-size: 22px;
    font-weight: 900;
}


/* ========================================
   KONTAKT
======================================== */

.contact-section {
    padding: 100px 8%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-section > div:first-child > p:last-child {
    max-width: 550px;
    color: #666666;
}

.contact-box {
    background: #151515;
    color: #ffffff;

    padding: 40px;

    border-radius: 12px;
}

.contact-box p {
    color: #aaaaaa;
    margin-top: 15px;
}

.contact-box strong {
    font-size: 20px;
}


/* ========================================
   MODERNE PRODUKTDETAILSEITE
======================================== */

.product-detail-modern {
    max-width: 1120px;

    margin: 0 auto;

    padding: 70px 30px 45px;

    display: grid;

    grid-template-columns:
        minmax(320px, 440px)
        minmax(0, 1fr);

    gap: 55px;

    align-items: start;
}


/* PRODUKTBILD-KARTE */

.product-gallery-card {
    width: 100%;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 18px;

    padding: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.05);
}


/* BILDBEREICH */

.modern-image-box,
.product-detail-image {
    width: 100%;
    height: 360px;

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

    background:
        linear-gradient(
            180deg,
            #fafafa 0%,
            #f2f2f2 100%
        );

    border-radius: 14px;

    overflow: hidden;
}


/* DAS EIGENTLICHE PRODUKTBILD */

.modern-image-box img,
.product-detail-image img,
#detail-image {
    width: auto;
    height: auto;

    max-width: 82%;
    max-height: 300px;

    object-fit: contain;

    display: block;

    padding: 0;
}


/* RECHTE PRODUKTINFO */

.product-detail-panel {
    width: 100%;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 18px;

    padding: 34px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.05);
}


/* MARKE + VERFÜGBARKEIT */

.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;
}

.detail-brand-modern {
    margin: 0;

    color: #00a651;

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

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.availability-badge {
    padding: 7px 12px;

    background: #eaf8ef;
    color: #146b36;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


/* PRODUKTNAME */

.product-detail-panel h1 {
    margin: 0 0 12px;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.08;
}


/* KATEGORIE */

.detail-category-modern {
    margin-bottom: 5px;

    color: #555555;

    font-size: 16px;
}


/* ARTIKELNUMMER */

.detail-article-modern {
    margin-bottom: 25px;

    color: #999999;

    font-size: 13px;
}


/* PREIS */

.detail-price-modern {
    padding: 18px 0;

    margin-bottom: 22px;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.price-value {
    display: block;

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

    color: #111111;
}

.delivery-info {
    display: block;

    margin-top: 4px;

    color: #777777;

    font-size: 13px;
}


/* ========================================
   GRÖSSEN / FARBEN
======================================== */

.product-options {
    margin: 24px 0 26px;
}

.option-group {
    margin-bottom: 20px;
}

.option-title {
    margin-bottom: 9px;

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

.option-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.option-button {
    min-width: 46px;

    padding: 9px 14px;

    border: 1px solid #cccccc;

    border-radius: 7px;

    background: #ffffff;
    color: #222222;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.15s;
}

.option-button:hover {
    border-color: #111111;
}

.option-button.selected,
.size-option.selected,
.color-option.selected {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}


/* ========================================
   BESCHREIBUNG
======================================== */

.detail-description-modern {
    margin-top: 22px;
}

.detail-description-modern h2 {
    margin-bottom: 8px;

    font-size: 19px;
}

.detail-description-modern p {
    margin: 0;

    color: #555555;

    font-size: 15px;
    line-height: 1.7;
}


/* ========================================
   PRODUKTAKTIONEN
======================================== */

.product-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.modern-primary {
    flex: 1;

    min-width: 230px;

    text-align: center;

    border-radius: 9px;
}

.modern-secondary {
    border-radius: 9px;
}


/* ========================================
   TECHNISCHE DATEN
======================================== */

.modern-tech-section,
.technical-section {
    max-width: 1120px;

    margin: 0 auto;

    padding: 25px 30px 90px;
}

.modern-tech-section .section-heading,
.technical-section .section-heading {
    text-align: left;

    margin-bottom: 25px;
}

.modern-tech-data,
.technical-data {
    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

.technical-row {
    display: grid;

    grid-template-columns: minmax(180px, 1fr) 2fr;

    gap: 25px;

    padding: 16px 20px;

    border-bottom: 1px solid #eeeeee;
}

.technical-row:last-child {
    border-bottom: none;
}

.technical-row:nth-child(even) {
    background: #fafafa;
}

.technical-name {
    font-weight: 700;
}

.technical-value {
    color: #555555;
}


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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

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

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #cccccc;

    border-radius: 7px;

    background: #ffffff;

    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #00a651;

    box-shadow:
        0 0 0 3px rgba(0, 166, 81, 0.08);
}

.reservation-submit {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 7px;

    background: #00a651;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.reservation-submit:hover {
    background: #008c44;
}

.reservation-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.reservation-error {
    margin-bottom: 15px;

    color: #c40000;

    font-weight: 700;
}

.reservation-success {
    margin-bottom: 15px;

    padding: 12px 14px;

    background: #e9f8ef;
    color: #176b37;

    border-radius: 7px;

    font-weight: 700;
}

.reservation-success:empty,
.reservation-error:empty {
    display: none;
}


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

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

    margin: 0 auto;

    padding: 80px 30px 100px;
}

.reservation-page-heading {
    margin-bottom: 45px;
}

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

    margin-bottom: 15px;
}

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

    color: #666666;
}

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

    gap: 20px;
}

.reservation-cart-item {
    display: grid;

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

    gap: 24px;

    align-items: center;

    padding: 20px;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    background: #ffffff;
}

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

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

    background: #f5f5f5;

    border-radius: 9px;

    overflow: hidden;
}

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

    object-fit: contain;
}

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

    font-size: 22px;
}

.reservation-variants {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin: 10px 0 15px;
}

.reservation-variants span {
    padding: 6px 10px;

    background: #f3f3f3;

    border-radius: 5px;

    font-size: 13px;
}

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

    align-items: center;

    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;

    border: 1px solid #dddddd;

    border-radius: 7px;

    overflow: hidden;
}

.quantity-control button {
    width: 38px;
    height: 38px;

    border: none;

    background: #f5f5f5;

    cursor: pointer;

    font-size: 20px;
}

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

.quantity-control span {
    min-width: 40px;

    text-align: center;

    font-weight: 700;
}

.remove-item {
    border: none;

    background: transparent;

    color: #b00020;

    cursor: pointer;

    font-weight: 600;
}

.empty-cart {
    display: none;

    padding: 60px 30px;

    text-align: center;

    background: #f7f7f7;

    border-radius: 12px;
}

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

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

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

    padding: 35px;

    background: #f7f7f7;

    border-radius: 12px;
}

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

    font-size: 30px;
}

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

    color: #666666;
}


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

footer {
    background: #111111;
    color: #ffffff;

    padding: 60px 8%;

    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

footer > p {
    color: #999999;
}

.footer-links {
    display: flex;
    justify-content: center;

    gap: 25px;

    margin: 25px 0;

    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #00a651;
}

.copyright {
    font-size: 12px;
}


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

@media (max-width: 1000px) {

    .navigation {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 850px) {

    .product-detail-modern {
        grid-template-columns: 1fr;

        max-width: 680px;

        gap: 22px;

        padding: 45px 20px 35px;
    }


    .product-gallery-card {
        padding: 18px;
    }


    .modern-image-box,
    .product-detail-image {
        height: 330px;
    }


    .modern-image-box img,
    .product-detail-image img,
    #detail-image {
        max-width: 80%;
        max-height: 275px;
    }


    .product-detail-panel {
        padding: 26px;
    }


    .modern-tech-section,
    .technical-section {
        max-width: 680px;

        padding: 10px 20px 65px;
    }

}


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

@media (max-width: 750px) {

    .reservation-page {
        padding: 70px 20px;
    }


    .reservation-cart-item {
        grid-template-columns: 100px 1fr;
    }


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


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

        flex-direction: row;

        justify-content: space-between;
    }


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

}


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

@media (max-width: 600px) {

    .header {
        padding: 0 5%;
    }


    .logo {
        font-size: 27px;
    }


    .hero {
        padding: 60px 5%;
    }


    .hero h1 {
        font-size: 42px;
    }


    .products-section,
    .brands-section,
    .contact-section {
        padding-left: 5%;
        padding-right: 5%;
    }


    .main-categories {
        grid-template-columns: 1fr;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .advantages {
        grid-template-columns: 1fr;

        padding-left: 5%;
        padding-right: 5%;
    }


    .brand-grid {
        grid-template-columns: 1fr;
    }


    .section-heading h2,
    .brands-section h2,
    .contact-section h2 {
        font-size: 32px;
    }


    .brand-filter-wrapper {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .product-gallery-card {
        border-radius: 14px;
    }


    .modern-image-box,
    .product-detail-image {
        height: 285px;
    }


    .modern-image-box img,
    .product-detail-image img,
    #detail-image {
        max-width: 82%;
        max-height: 235px;
    }


    .product-detail-panel {
        padding: 22px;

        border-radius: 14px;
    }


    .product-topline {
        flex-direction: column;

        align-items: flex-start;
    }


    .product-detail-panel h1 {
        font-size: 31px;
    }


    .price-value {
        font-size: 27px;
    }


    .product-actions {
        flex-direction: column;
    }


    .modern-primary,
    .modern-secondary {
        width: 100%;

        min-width: 0;

        text-align: center;
    }


    .technical-row {
        grid-template-columns: 1fr;

        gap: 4px;

        padding: 14px 16px;
    }


    .reservation-page-heading h1 {
        font-size: 36px;
    }
}
/* ========================================
   KUNDENTYP – MODERNE AUSWAHL
======================================== */

.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: #ffffff;

    border: 2px solid #dddddd;
    border-radius: 10px;

    cursor: pointer;

    font-weight: 700;
    line-height: 1.2;

    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
}


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


/* Radio-Button */

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

    margin: 0;
    padding: 0;

    flex: 0 0 18px;

    accent-color: #00a651;

    cursor: pointer;
}


/* JavaScript setzt diese Klasse */

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

    background: #f0faf4;

    box-shadow:
        0 0 0 3px rgba(0, 166, 81, 0.08);
}


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

.printing-request {
    margin: 25px 0;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 10px;
}


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

    cursor: pointer;

    font-weight: 700;
}


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

    margin: 0;
    padding: 0;

    flex: 0 0 19px;

    accent-color: #00a651;

    cursor: pointer;
}


.printing-checkbox span {
    margin: 0;

    line-height: 1.3;
}


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

    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}


.printing-info {
    margin-bottom: 20px;

    color: #666666;

    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   IMPRESSUM / DATENSCHUTZ
======================================== */

.legal-page {
    padding: 150px 25px 100px;
    min-height: 75vh;
}

.legal-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    margin: 0 0 45px;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1;
}

.legal-box {
    padding: 45px;
    border-radius: 20px;
    background: #f5f5f5;
}

.legal-box h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    margin: 0 0 18px;
    line-height: 1.7;
}

.legal-box a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 700px) {

    .legal-page {
        padding: 120px 18px 70px;
    }

    .legal-box {
        padding: 28px 22px;
    }

}
/* ========================================
   KUNDENTYP AUF HANDY
======================================== */

@media (max-width: 600px) {

    .customer-type-selection {
        grid-template-columns: 1fr;
    }
/* ========================================
   LRM NEUER HEADER
======================================== */

.lrm-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 105px;

    padding: 0 3%;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 40px;

    background:
        rgba(8, 14, 18, 0.62);

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

    color: #ffffff;

    z-index: 1000;
}


/* ========================================
   LOGO
======================================== */

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

    gap: 18px;
}


.lrm-brand-logo {
    color: #f5b51b;

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

    line-height: 1;

    letter-spacing: -3px;
}


.lrm-brand-name {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: 1.5px;
}


/* ========================================
   NAVIGATION
======================================== */

.lrm-navigation {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 42px;
}


.lrm-navigation a {
    position: relative;

    padding: 40px 0 28px;

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

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

    letter-spacing: 0.3px;

    transition: 0.2s;
}


.lrm-navigation a:hover {
    color: #ffffff;
}


.lrm-navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 20px;

    height: 2px;

    background: #f5b51b;
}


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

.lrm-header-right {
    display: flex;
    align-items: center;

    gap: 32px;
}


.lrm-account-link,
.lrm-cart-link {
    position: relative;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 14px;

    white-space: nowrap;
}


.header-icon {
    font-size: 21px;
}


.lrm-cart-link #cart-count {
    position: absolute;

    top: -15px;
    left: 13px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

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

    background: #f5b51b;

    color: #111111;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 900;
}


/* ========================================
   HERO
======================================== */

.lrm-hero {
    position: relative;

    width: 100%;

    min-height: 880px;

    display: flex;

    align-items: center;

    background-image:
        url("images/lrm-hero.jpg");

    background-size: cover;

    background-position:
        center center;

    color: #ffffff;

    overflow: hidden;
}


/* ========================================
   DUNKLER VERLAUF
======================================== */

.lrm-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,

            rgba(0, 0, 0, 0.94) 0%,

            rgba(0, 0, 0, 0.82) 19%,

            rgba(0, 0, 0, 0.52) 39%,

            rgba(0, 0, 0, 0.10) 65%,

            rgba(0, 0, 0, 0.02) 100%
        );

    z-index: 1;
}


/* ========================================
   HERO INHALT
======================================== */

.lrm-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 880px;

    padding:
        200px 5% 55px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}


.lrm-hero-main {
    max-width: 710px;

    margin-top: 45px;
}


.lrm-hero-main h1 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size:
        clamp(54px, 5.3vw, 82px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2px;
}


.lrm-hero-subtitle {
    margin-bottom: 40px;

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

    font-size:
        clamp(20px, 1.7vw, 28px);

    line-height: 1.45;
}


/* ========================================
   HERO BUTTONS
======================================== */

.lrm-hero-actions {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;
}


.hero-button {
    min-height: 66px;

    padding: 0 30px;

    display: inline-flex;

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

    gap: 15px;

    border-radius: 7px;

    font-size: 18px;

    font-weight: 800;

    transition:
        transform 0.2s,
        background 0.2s;
}


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


.hero-button-primary {
    background: #f5b51b;

    color: #111111;

    border: 2px solid #f5b51b;
}


.hero-button-primary:hover {
    background: #ffc62e;

    border-color: #ffc62e;
}


.hero-button-secondary {
    border:
        2px solid rgba(255, 255, 255, 0.8);

    background:
        rgba(0, 0, 0, 0.15);

    color: #ffffff;

    backdrop-filter: blur(3px);
}


.hero-button-secondary:hover {
    background:
        rgba(255, 255, 255, 0.12);
}


.hero-button-icon {
    font-size: 23px;
}


/* ========================================
   VORTEILE UNTEN
======================================== */

.lrm-hero-benefits {
    width: 100%;

    max-width: 720px;

    padding-top: 25px;

    display: flex;
    align-items: center;

    gap: 30px;

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


.hero-benefit {
    display: flex;
    align-items: center;

    gap: 14px;

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

    font-size: 14px;

    line-height: 1.25;
}


.hero-benefit-icon {
    color: #f5b51b;

    font-size: 30px;
}


.hero-benefit-divider {
    width: 1px;
    height: 45px;

    background:
        rgba(255, 255, 255, 0.35);
}


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

@media (max-width: 1100px) {

    .lrm-navigation {
        gap: 20px;
    }


    .lrm-navigation a {
        font-size: 11px;
    }


    .lrm-header-right span:not(
        .header-icon,
        #cart-count
    ) {
        display: none;
    }

}


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

@media (max-width: 800px) {

    .lrm-header {
        height: 82px;

        grid-template-columns:
            auto auto;

        padding: 0 20px;
    }


    .lrm-brand-logo {
        font-size: 39px;
    }


    .lrm-brand-name {
        font-size: 10px;
    }


    .lrm-navigation {
        display: none;
    }


    .lrm-header-right {
        justify-content: flex-end;

        gap: 18px;
    }


    .lrm-hero {
        min-height: 780px;

        background-position:
            62% center;
    }


    .lrm-hero-overlay {
        background:
            linear-gradient(
                90deg,

                rgba(0, 0, 0, 0.92) 0%,

                rgba(0, 0, 0, 0.72) 65%,

                rgba(0, 0, 0, 0.25) 100%
            );
    }


    .lrm-hero-content {
        min-height: 780px;

        padding:
            150px 24px 35px;
    }


    .lrm-hero-main {
        margin-top: 0;

        max-width: 570px;
    }


    .lrm-hero-main h1 {
        font-size: 48px;
    }


    .lrm-hero-subtitle {
        font-size: 20px;
    }


    .lrm-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-button {
        width: 100%;
    }


    .lrm-hero-benefits {
        gap: 15px;
    }


    .hero-benefit {
        font-size: 11px;
    }


    .hero-benefit-icon {
        font-size: 23px;
    }


    .hero-benefit-divider {
        display: none;
    }

}


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

@media (max-width: 520px) {

    .lrm-brand-name {
        display: none;
    }


    .lrm-hero-main h1 {
        font-size: 40px;
    }


    .lrm-hero-subtitle {
        font-size: 18px;
    }


    .lrm-hero-benefits {
        flex-direction: column;

        align-items: flex-start;
    }

}

}
