:root {
    --cream: #f7f2eb;
    --cream-light: #fcfaf7;
    --cream-dark: #eee5db;

    --taupe: #b6a18f;
    --taupe-light: #d8cabe;

    --brown: #493a31;
    --brown-soft: #69574a;
    --brown-light: #8b7565;

    --white: #ffffff;

    --line: rgba(91, 71, 58, 0.14);

    --shadow:
        0 18px 55px
        rgba(73, 58, 49, 0.10);

    --shadow-strong:
        0 25px 80px
        rgba(38, 30, 25, 0.25);
}


/* GRUNDLAGEN */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream-light);
    color: var(--brown);

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

body.modal-offen {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.eyebrow {
    margin: 0 0 14px;

    color: var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: bold;
    letter-spacing: 2.4px;
}


/* TOPBAR */

.topbar {
    min-height: 32px;

    padding: 8px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: var(--brown);
    color: var(--cream);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    letter-spacing: 1.5px;
}


/* HEADER */

.haupt-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom:
        1px solid
        var(--line);

    background:
        rgba(252, 250, 247, 0.94);

    backdrop-filter:
        blur(15px);
}

.header-inhalt {
    width:
        min(
            1180px,
            92%
        );

    min-height: 78px;

    margin:
        0
        auto;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 25px;
}

.logo-bereich {
    display: inline-flex;
    flex-direction: column;

    justify-self: start;

    text-decoration: none;
}

.logo-klein {
    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    letter-spacing: 4px;

    color:
        var(--brown-light);
}

.logo-gross {
    margin-top: 4px;

    font-size: 27px;
    font-style: italic;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;
}

nav a {
    position: relative;

    padding: 8px 0;

    color: var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;
    text-decoration: none;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 3px;

    height: 1px;

    background:
        var(--brown);

    transition:
        right
        0.25s ease;
}

nav a:hover::after {
    right: 0;
}

.header-actions {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 10px;
}

.konto-nav,
.warenkorb-nav {
    min-height: 38px;

    padding: 9px 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border:
        1px solid
        var(--line);

    border-radius: 3px;

    background:
        transparent;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    text-decoration: none;

    cursor: pointer;
}

.konto-nav:hover,
.warenkorb-nav:hover {
    background:
        var(--cream);
}

.warenkorb-badge {
    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        var(--brown);

    color: white;

    font-size: 8px;
}

.warenkorb-nav.pulsieren,
.warenkorb-nav.warenkorb-animiert {
    animation:
        pulsieren
        0.5s ease;
}

@keyframes pulsieren {

    50% {
        transform:
            scale(1.08);
    }

}


/* BUTTONS */

.button-primary,
.button-secondary,
.warenkorb-button,
.checkout-button,
.konto-primary-button {
    min-height: 48px;

    padding: 13px 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 3px;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.7px;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform
        0.2s ease,
        background
        0.2s ease;
}

.button-primary,
.warenkorb-button,
.checkout-button,
.konto-primary-button {
    border:
        1px solid
        var(--brown);

    background:
        var(--brown);

    color: white;
}

.button-secondary {
    border:
        1px solid
        var(--brown);

    background:
        transparent;

    color:
        var(--brown);
}

.button-primary:hover,
.warenkorb-button:hover,
.checkout-button:hover,
.konto-primary-button:hover,
.button-secondary:hover {
    transform:
        translateY(-2px);
}

.button-secondary:hover {
    background:
        var(--brown);

    color:
        white;
}

button:disabled {
    opacity: 0.6;
    cursor: wait;
}


/* HERO */

.hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8f2eb 0%,
            #eee3d9 100%
        );
}

.hero-ohne-bild {
    min-height: 620px;

    display: flex;
    align-items: center;
}

.hero-inhalt {
    width:
        min(
            920px,
            90%
        );

    margin:
        0
        auto;

    padding:
        95px
        0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-text {
    width: 100%;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.hero-text h1 {
    max-width: 850px;

    margin: 0;

    font-size:
        clamp(
            46px,
            7vw,
            78px
        );

    font-weight: normal;
    line-height: 0.98;
}

.hero-text h1 span {
    display: block;

    margin-top: 10px;

    font-style: italic;

    color:
        var(--brown-soft);
}

.hero-beschreibung {
    max-width: 650px;

    margin:
        27px
        auto
        32px;

    color:
        var(--brown-soft);

    font-size: 15px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;
}

.hero-vorteile {
    margin-top: 45px;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 45px;
}

.hero-vorteile div {
    display: flex;
    flex-direction: column;
}

.hero-vorteile strong {
    font-size: 14px;
    font-weight: normal;
}

.hero-vorteile span {
    margin-top: 4px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
}


/* TRUST */

.trust-strip {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    border-top:
        1px solid
        var(--line);

    border-bottom:
        1px solid
        var(--line);

    background: white;
}

.trust-item {
    min-height: 95px;

    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-right:
        1px solid
        var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--cream);

    font-size: 13px;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 11px;
    font-weight: normal;
}

.trust-item small {
    margin-top: 4px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
}


/* SECTIONS */

.bereich,
.ablauf-section,
.faq-section,
.kontakt-section {
    padding:
        105px
        5%;
}

.section-heading {
    max-width: 730px;

    margin:
        0
        auto
        55px;

    text-align: center;
}

.section-heading h2 {
    margin: 0;

    font-size:
        clamp(
            36px,
            5vw,
            52px
        );

    font-weight: normal;
}

.section-heading > p:last-child {
    max-width: 570px;

    margin:
        18px
        auto
        0;

    color:
        var(--brown-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* PRODUKTSUCHE */

.produktsuche-bereich {
    width:
        min(
            650px,
            100%
        );

    margin:
        -20px
        auto
        45px;
}

.produktsuche {
    min-height: 58px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    border:
        1px solid
        var(--taupe-light);

    border-radius: 4px;

    background: white;

    box-shadow:
        0 10px 35px
        rgba(
            73,
            58,
            49,
            0.06
        );
}

.produktsuche:focus-within {
    border-color:
        var(--brown);

    box-shadow:
        0 12px 40px
        rgba(
            73,
            58,
            49,
            0.12
        );
}

.such-icon {
    flex-shrink: 0;

    color:
        var(--brown-light);

    font-size: 25px;
}

.produktsuche input {
    width: 100%;

    min-width: 0;

    padding: 17px 0;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;
}

.produktsuche input::placeholder {
    color:
        #a79689;
}

.produktsuche input::-webkit-search-cancel-button {
    display: none;
}

.produktsuche-loeschen {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border: 0;

    border-radius: 50%;

    background:
        var(--cream);

    color:
        var(--brown);

    font-size: 21px;

    cursor: pointer;
}

.suchergebnis-text {
    min-height: 15px;

    margin:
        8px
        5px
        0;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
}

.keine-suchergebnisse {
    width:
        min(
            650px,
            100%
        );

    margin:
        35px
        auto;

    padding:
        55px
        25px;

    border:
        1px solid
        var(--line);

    background:
        var(--cream);

    text-align: center;
}

.keine-suchergebnisse > span {
    display: block;

    margin-bottom: 12px;

    color:
        var(--taupe);

    font-size: 35px;
}

.keine-suchergebnisse h3 {
    margin: 0;

    font-size: 24px;
    font-weight: normal;
}

.keine-suchergebnisse p {
    margin:
        10px
        0
        0;

    color:
        var(--brown-soft);

    font-size: 12px;
}


/* PRODUKTE */

.produkte {
    width:
        min(
            1150px,
            100%
        );

    margin:
        0
        auto;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                280px,
                340px
            )
        );

    justify-content: center;

    gap: 28px;
}

.produkt {
    position: relative;

    overflow: hidden;

    padding: 14px;

    border:
        1px solid
        var(--line);

    background:
        white;

    box-shadow:
        var(--shadow);

    transition:
        transform
        0.3s ease,
        box-shadow
        0.3s ease;
}

.produkt:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 25px 55px
        rgba(
            73,
            58,
            49,
            0.14
        );
}

.produkt-top {
    position: absolute;

    top: 25px;
    left: 25px;
    right: 25px;

    z-index: 5;

    display: flex;
    justify-content: space-between;

    pointer-events: none;
}

.produkt-label {
    padding: 6px 9px;

    background:
        rgba(
            250,
            247,
            242,
            0.92
        );

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
    letter-spacing: 1.5px;
}

.produkt-herz {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(
            250,
            247,
            242,
            0.92
        );
}

.produkt-oeffnen {
    width: 100%;

    padding: 0;

    border: 0;

    background:
        transparent;

    text-align: left;

    cursor: pointer;
}

.produkt-hauptbild {
    position: relative;

    aspect-ratio:
        4 / 5;

    overflow: hidden;

    background:
        var(--cream);
}

.produkt-hauptbild img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.45s ease;
}

.produkt:hover
.produkt-hauptbild img {
    transform:
        scale(1.035);
}

.produkt-overlay {
    position: absolute;

    inset:
        auto
        0
        0;

    padding: 14px;

    background:
        rgba(
            73,
            58,
            49,
            0.82
        );

    color: white;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    text-align: center;

    opacity: 0;

    transition:
        opacity
        0.25s ease;
}

.produkt:hover
.produkt-overlay {
    opacity: 1;
}

.produkt-titel-bereich {
    padding:
        22px
        3px
        0;
}

.produkt-kategorie {
    margin:
        0
        0
        8px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    letter-spacing: 1.7px;
}

.produkt-titel-bereich h3 {
    margin: 0;

    font-size: 27px;
    font-weight: normal;
}

.material {
    min-height: 30px;

    margin:
        9px
        3px
        17px;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    line-height: 1.6;
}

.produkt-preis-zeile {
    margin:
        0
        3px
        17px;

    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 15px;
}

.preis {
    margin: 0;
    font-size: 21px;
}

.produkt-preis-zeile span {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    text-align: right;
}

.produkt
.warenkorb-button {
    width: 100%;
}

.produkt-hinweis {
    margin:
        10px
        0
        2px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    text-align: center;
}


/* ABLAUF */

.ablauf-section {
    background:
        var(--cream);
}

.ablauf-grid {
    width:
        min(
            950px,
            100%
        );

    margin:
        0
        auto;

    display: grid;

    grid-template-columns:
        1fr
        70px
        1fr
        70px
        1fr;

    align-items: start;

    gap: 15px;
}

.ablauf-schritt {
    text-align: center;
}

.ablauf-schritt > span {
    width: 43px;
    height: 43px;

    margin:
        0
        auto
        18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--taupe);

    border-radius: 50%;

    font-size: 13px;
}

.ablauf-schritt h3 {
    margin:
        0
        0
        11px;

    font-size: 21px;
    font-weight: normal;
}

.ablauf-schritt p {
    margin: 0;

    color:
        var(--brown-soft);

    font-size: 12px;
    line-height: 1.75;
}

.ablauf-linie {
    height: 1px;

    margin-top: 21px;

    background:
        var(--taupe-light);
}


/* ÜBER UNS */

.ueber-section {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    background:
        #eee5db;
}

.ueber-visual {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #c7b6a7,
            #e5d8cd
        );
}

.ueber-form {
    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );

    border-radius: 50%;
}

.ueber-form-1 {
    width: 380px;
    height: 380px;

    left: -120px;
    top: 50px;
}

.ueber-form-2 {
    width: 480px;
    height: 480px;

    right: -220px;
    bottom: -140px;
}

.ueber-zitat {
    position: absolute;

    left: 10%;
    right: 10%;
    top: 50%;

    transform:
        translateY(-50%);

    padding: 35px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.5
        );

    background:
        rgba(
            255,
            255,
            255,
            0.45
        );

    backdrop-filter:
        blur(14px);

    box-shadow:
        var(--shadow);
}

.ueber-zitat span {
    color:
        var(--taupe);

    font-size: 50px;
}

.ueber-zitat p {
    margin:
        10px
        0
        0;

    font-size: 25px;
    font-style: italic;
    line-height: 1.45;
}

.ueber-text {
    padding:
        75px
        9%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.ueber-text h2 {
    margin:
        0
        0
        24px;

    font-size: 48px;
    font-weight: normal;
}

.ueber-text > p:not(.eyebrow) {
    margin:
        0
        0
        17px;

    color:
        var(--brown-soft);

    font-size: 13px;
    line-height: 1.85;
}


/* SOCIAL MEDIA */

.social-bereich {
    margin-top: 18px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(
            73,
            58,
            49,
            0.15
        );
}

.social-ueberschrift {
    margin:
        0
        0
        13px !important;

    color:
        var(--brown-light) !important;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px !important;

    font-weight: bold;

    letter-spacing: 2px;

    line-height: 1.4 !important;
}

.social-links {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;
}

.social-link {
    min-width: 0;

    padding: 14px;

    display: grid;

    grid-template-columns:
        35px
        minmax(
            0,
            1fr
        )
        auto;

    align-items: center;

    gap: 11px;

    border:
        1px solid
        rgba(
            73,
            58,
            49,
            0.18
        );

    background:
        rgba(
            255,
            255,
            255,
            0.35
        );

    text-decoration: none;

    transition:
        transform
        0.2s ease,
        background
        0.2s ease,
        border-color
        0.2s ease,
        box-shadow
        0.2s ease;
}

.social-link:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--brown);

    background:
        rgba(
            255,
            255,
            255,
            0.7
        );

    box-shadow:
        0 10px 25px
        rgba(
            73,
            58,
            49,
            0.08
        );
}

.social-symbol {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--brown);

    color:
        white;

    font-family:
        Arial,
        sans-serif;

    font-size: 16px;
}

.social-link-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.social-link-text small {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.5px;
}

.social-link-text strong {
    overflow: hidden;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: normal;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.social-pfeil {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;
}

.social-hinweis {
    margin:
        12px
        0
        0 !important;

    color:
        var(--brown-light) !important;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px !important;

    line-height: 1.6 !important;
}

.ueber-signatur {
    margin-top: 25px;

    display: flex;
    flex-direction: column;
}

.ueber-signatur span {
    font-size: 25px;
    font-style: italic;
}

.ueber-signatur small {
    margin-top: 4px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
    letter-spacing: 3px;
}


/* =========================================
   WARENKORB
========================================= */

.warenkorb-section {
    background:
        var(--cream-light);
}

.warenkorb-container {
    width:
        min(
            800px,
            100%
        );

    margin:
        0
        auto;
}

.warenkorb-sync-info {
    margin-bottom: 22px;

    padding:
        16px
        18px;

    display: flex;

    align-items: center;

    gap: 12px;

    border:
        1px solid
        var(--line);

    border-radius: 4px;

    background:
        var(--cream);
}

.warenkorb-sync-info > span {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        white;

    color:
        var(--brown-light);

    font-size: 12px;
}

.warenkorb-sync-info p {
    flex: 1;

    margin: 0;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    line-height: 1.6;
}

.warenkorb-sync-info button {
    padding:
        8px
        13px;

    border:
        1px solid
        var(--brown);

    border-radius: 3px;

    background:
        transparent;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    cursor: pointer;
}

.warenkorb-leer-box {
    padding:
        50px
        20px;

    border:
        1px solid
        var(--line);

    background: white;

    text-align: center;

    box-shadow:
        0 12px 35px
        rgba(
            73,
            58,
            49,
            0.05
        );
}

.warenkorb-leer-box > span {
    display: block;

    margin-bottom: 12px;

    color:
        var(--taupe);

    font-size: 31px;
}

.warenkorb-leer-box p {
    margin: 0;

    color:
        var(--brown-soft);
}

.warenkorb-leer-box a {
    display: inline-block;

    margin-top: 15px;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
}


/* NEUE WARENKORB-KARTEN */

.warenkorb-item {
    position: relative;

    margin-bottom: 14px;

    padding:
        24px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap:
        25px;

    border:
        1px solid
        var(--line);

    border-radius: 6px;

    background:
        white;

    box-shadow:
        0 13px 38px
        rgba(
            73,
            58,
            49,
            0.07
        );

    transition:
        transform
        0.2s ease,
        box-shadow
        0.2s ease;
}

.warenkorb-item:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 45px
        rgba(
            73,
            58,
            49,
            0.10
        );
}

.warenkorb-item-info {
    min-width: 0;
}

.warenkorb-item-info strong {
    display: block;

    margin-bottom: 9px;

    font-size: 22px;
    font-weight: normal;
    line-height: 1.25;
}

.warenkorb-item-info p {
    margin:
        0
        0
        10px;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;
    line-height: 1.7;
}

.warenkorb-item-info small {
    display: block;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.5;
}

.warenkorb-item-aktionen {
    min-width: 170px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}

.warenkorb-item-aktionen > strong {
    font-size: 18px;
    font-weight: normal;
}

.mengensteuerung {
    height: 38px;

    display: inline-grid;

    grid-template-columns:
        38px
        42px
        38px;

    align-items: center;

    border:
        1px solid
        var(--taupe-light);

    border-radius: 30px;

    overflow: hidden;

    background:
        var(--cream-light);
}

.mengensteuerung button {
    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background:
        transparent;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 17px;

    cursor: pointer;

    transition:
        background
        0.2s ease,
        color
        0.2s ease;
}

.mengensteuerung button:hover {
    background:
        var(--brown);

    color:
        white;
}

.mengensteuerung span {
    display: flex;

    align-items: center;
    justify-content: center;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: bold;

    border-left:
        1px solid
        var(--line);

    border-right:
        1px solid
        var(--line);
}

.warenkorb-entfernen {
    padding: 0;

    border: 0;

    border-bottom:
        1px solid
        transparent;

    background:
        transparent;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    cursor: pointer;

    transition:
        color
        0.2s ease,
        border-color
        0.2s ease;
}

.warenkorb-entfernen:hover {
    color:
        var(--brown);

    border-bottom-color:
        var(--brown);
}

.warenkorb-abschluss {
    margin-top: 22px;

    padding:
        25px;

    border:
        1px solid
        var(--line);

    border-radius: 6px;

    background:
        var(--cream);

    box-shadow:
        0 12px 35px
        rgba(
            73,
            58,
            49,
            0.05
        );
}

.warenkorb-gesamt-zeile {
    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 19px;
}

.warenkorb-gesamt-zeile strong {
    font-size: 23px;
    font-weight: normal;
}

.warenkorb-abschluss
.checkout-button {
    width: 100%;
}


/* FAQ */

.faq-section {
    background:
        var(--cream);
}

.faq-grid {
    width:
        min(
            820px,
            100%
        );

    margin:
        0
        auto;

    border-top:
        1px solid
        var(--line);
}

.faq-grid details {
    border-bottom:
        1px solid
        var(--line);
}

.faq-grid summary {
    padding: 21px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 17px;

    cursor: pointer;

    list-style: none;
}

.faq-grid
summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: "+";

    font-family:
        Arial,
        sans-serif;

    font-size: 20px;
}

.faq-grid
details[open]
summary::after {
    content: "−";
}

.faq-grid details p {
    max-width: 700px;

    margin:
        -4px
        0
        22px;

    color:
        var(--brown-soft);

    font-size: 12px;
    line-height: 1.8;
}


/* KONTAKT */

.kontakt-section {
    background:
        var(--cream-light);
}

.kontakt-box {
    width:
        min(
            800px,
            100%
        );

    margin:
        0
        auto;

    padding:
        65px
        8%;

    border:
        1px solid
        var(--line);

    background: white;

    text-align: center;

    box-shadow:
        var(--shadow);
}

.kontakt-box h2 {
    margin: 0;

    font-size: 48px;
    font-weight: normal;
}

.kontakt-box > p:not(.eyebrow) {
    max-width: 540px;

    margin:
        20px
        auto
        27px;

    color:
        var(--brown-soft);

    font-size: 13px;
    line-height: 1.8;
}

.kontakt-buttons {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;
}


/* FOOTER */

footer {
    padding:
        55px
        5%;

    background:
        var(--brown);

    color:
        var(--cream);

    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    font-size: 28px;
    font-style: italic;
    font-weight: normal;
}

.footer-logo span {
    margin-top: 4px;

    color:
        var(--taupe-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
    letter-spacing: 4px;
}

footer p {
    color:
        var(--taupe-light);

    font-size: 11px;
}

.footer-linie {
    width: 55px;
    height: 1px;

    margin:
        25px
        auto;

    background:
        rgba(
            255,
            255,
            255,
            0.22
        );
}

footer small {
    color:
        var(--taupe-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
}


/* OVERLAY */

.overlay {
    position: fixed;
    inset: 0;

    z-index: 10000;

    padding: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(
            38,
            30,
            25,
            0.70
        );

    backdrop-filter:
        blur(7px);
}

.modal-box {
    position: relative;

    width:
        min(
            930px,
            100%
        );

    max-height: 92vh;

    overflow-y: auto;

    padding: 42px;

    background:
        var(--cream-light);

    box-shadow:
        var(--shadow-strong);
}

.modal-schliessen {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 20;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--line);

    border-radius: 50%;

    background: white;

    font-size: 22px;

    cursor: pointer;
}


/* KONTO */

.konto-box {
    width:
        min(
            600px,
            100%
        );
}

.konto-kopf {
    text-align: center;
}

.konto-kopf h2 {
    margin: 0;

    font-size: 38px;
    font-weight: normal;
}

.konto-kopf > p:last-child {
    margin:
        12px
        0
        25px;

    color:
        var(--brown-soft);

    font-size: 12px;
}

.auth-tabs {
    margin-bottom: 22px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    border-bottom:
        1px solid
        var(--line);
}

.auth-tab {
    padding: 13px;

    border: 0;

    border-bottom:
        2px solid
        transparent;

    background:
        transparent;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    cursor: pointer;
}

.auth-tab.aktiv {
    border-bottom-color:
        var(--brown);

    font-weight: bold;
}

.auth-form {
    display: grid;

    gap: 15px;
}

.auth-form label > span,
.checkout-formular label > span {
    display: block;

    margin-bottom: 6px;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: bold;
}

.auth-form input,
.checkout-formular input,
.checkout-formular select {
    width: 100%;

    min-height: 46px;

    padding: 11px 13px;

    border:
        1px solid
        var(--taupe-light);

    outline: 0;

    background: white;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;
}

.auth-form input:focus,
.checkout-formular input:focus,
.checkout-formular select:focus {
    border-color:
        var(--brown);
}

.konto-primary-button {
    width: 100%;
}

.passwort-vergessen {
    padding: 8px;

    border: 0;

    background:
        transparent;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    cursor: pointer;
}

.formular-fehler {
    margin:
        5px
        0;

    padding: 10px;

    background:
        #f3dfdb;

    color:
        #794137;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    line-height: 1.6;
}

.konto-erfolg-icon {
    width: 52px;
    height: 52px;

    margin:
        0
        auto
        18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--brown);

    color: white;

    font-size: 18px;
}

.konto-info-karte {
    margin:
        20px
        0;

    padding: 17px;

    border:
        1px solid
        var(--line);

    background:
        var(--cream);
}

.konto-info-karte div {
    display: flex;

    justify-content: space-between;

    gap: 15px;
}

.konto-info-karte span {
    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
}

.konto-info-karte strong {
    font-size: 11px;
    font-weight: normal;
}


/* BESTELLUNGEN IM KONTO */

.bestellungen-konto {
    margin-top: 25px;
}

.bestellungen-kopf {
    margin-bottom: 14px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.bestellungen-kopf h3 {
    margin: 0;

    font-size: 23px;
    font-weight: normal;
}

.bestellungen-kopf button {
    width: 34px;
    height: 34px;

    border:
        1px solid
        var(--line);

    border-radius: 50%;

    background: white;

    cursor: pointer;
}

.bestellung-karte {
    margin-bottom: 12px;

    overflow: hidden;

    border:
        1px solid
        var(--line);

    border-radius: 5px;

    background: white;
}

.bestellung-karte-kopf {
    padding:
        16px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background:
        var(--cream-light);
}

.bestellung-karte-kopf > div {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.bestellung-karte-kopf small {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
    letter-spacing: 0.5px;
}

.bestellung-karte-kopf strong {
    font-size: 12px;
}

.bestellung-status {
    flex-shrink: 0;

    padding:
        6px
        10px;

    border-radius: 20px;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
}

.bestellung-status.bezahlt {
    background:
        #e8eee6;

    color:
        #4d6247;
}

.bestellung-artikel-liste {
    padding:
        0
        16px;
}

.bestellung-artikel {
    padding:
        14px
        0;

    border-bottom:
        1px solid
        var(--line);
}

.bestellung-artikel:last-child {
    border-bottom: 0;
}

.bestellung-artikel strong {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;
    font-weight: normal;
}

.bestellung-artikel p {
    margin:
        4px
        0;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.6;
}

.bestellung-artikel small {
    display: block;

    margin-top: 6px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
}

.bestellung-karte-fuss {
    padding:
        14px
        16px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid
        var(--line);

    background:
        var(--cream);
}

.bestellung-karte-fuss span {
    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
}

.bestellung-karte-fuss strong {
    font-size: 15px;
    font-weight: normal;
}

.bestellungen-leer,
.bestellungen-laden,
.keine-bestellungen,
.bestellungen-fehler {
    padding: 25px;

    border:
        1px solid
        var(--line);

    background: white;

    color:
        var(--brown-soft);

    text-align: center;

    font-size: 11px;
}

.konto-logout-button {
    width: 100%;

    margin-top: 22px;

    padding: 13px;

    border:
        1px solid
        var(--brown);

    background:
        transparent;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;

    cursor: pointer;
}


/* PRODUKT MODAL */

.produkt-modal-box {
    width:
        min(
            960px,
            100%
        );
}

.modal-kopf {
    margin-bottom: 28px;

    text-align: center;
}

.modal-kopf h2 {
    margin: 0;

    font-size: 43px;
    font-weight: normal;
}

.modal-kopf > p:last-child {
    margin:
        10px
        0
        0;

    color:
        var(--brown-soft);

    font-size: 11px;
}

.produkt-detail-bilder {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.vier-bilder {
    grid-template-columns:
        1fr
        1fr;
}

.zoom-bild-button {
    padding: 0;

    border: 0;

    background:
        var(--cream);

    cursor: zoom-in;

    overflow: hidden;
}

.zoom-bild-button img {
    width: 100%;

    aspect-ratio:
        4 / 5;

    object-fit: cover;

    transition:
        transform
        0.3s ease;
}

.zoom-bild-button:hover img {
    transform:
        scale(1.025);
}

.modal-produkt-info {
    margin-top: 25px;
}

.modal-preis-zeile {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.modal-preis-zeile strong {
    font-size: 25px;
    font-weight: normal;
}

.modal-preis-zeile > span {
    font-size: 21px;
}


/* FARBAUSWAHL */

.farben-auswahl {
    margin:
        24px
        0;

    padding: 25px;

    border:
        1px solid
        var(--line);

    background: white;
}

.farben-auswahl h3 {
    margin:
        0
        0
        9px;

    font-size: 25px;
    font-weight: normal;
}

.farben-hinweis {
    margin:
        0
        0
        20px;

    color:
        var(--brown-soft);

    font-size: 12px;
    line-height: 1.7;
}

.farben-grid {
    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(
                0,
                1fr
            )
        );

    gap: 10px;
}

.farbe-option {
    min-width: 0;

    padding: 7px;

    border:
        1px solid
        var(--taupe-light);

    border-radius: 3px;

    background:
        var(--cream-light);

    cursor: pointer;

    transition:
        transform
        0.2s ease,
        border-color
        0.2s ease,
        box-shadow
        0.2s ease;
}

.farbe-option:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--brown);
}

.farbe-option.aktiv {
    border:
        2px solid
        var(--brown);

    padding: 6px;

    box-shadow:
        0 8px 22px
        rgba(
            73,
            58,
            49,
            0.15
        );
}

.farbe-bild {
    position: relative;

    display: block;

    overflow: hidden;

    background:
        var(--cream);
}

.farbe-bild img {
    width: 100%;

    aspect-ratio:
        1 / 1;

    object-fit: cover;
}

.farbe-check {
    position: absolute;

    top: 6px;
    right: 6px;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--brown);

    color: white;

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;

    opacity: 0;

    transform:
        scale(0.7);

    transition:
        0.2s ease;
}

.farbe-option.aktiv
.farbe-check {
    opacity: 1;

    transform:
        scale(1);
}

.farbe-name {
    display: block;

    min-height: 28px;

    padding:
        9px
        2px
        2px;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    font-weight: bold;
    line-height: 1.4;

    text-align: center;
}

.gewaehlte-farbe {
    margin:
        16px
        0
        0;

    padding:
        10px
        12px;

    background:
        var(--cream);

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    text-align: center;
}


/* STOFF */

.stoff-info,
.mass-auswahl {
    margin:
        22px
        0;

    padding: 25px;

    border:
        1px solid
        var(--line);

    background: white;
}

.stoff-info h3,
.mass-auswahl h3 {
    margin:
        0
        0
        14px;

    font-size: 25px;
    font-weight: normal;
}

.stoff-info > p:not(.eyebrow),
.mass-beschreibung {
    color:
        var(--brown-soft);

    font-size: 12px;
    line-height: 1.8;
}

.produkt-beschreibungsblock {
    margin-top: 21px;

    padding: 18px;

    background:
        var(--cream-light);

    border-left:
        2px solid
        var(--taupe);
}

.produkt-beschreibungsblock h4 {
    margin:
        0
        0
        8px;

    font-size: 16px;
    font-weight: normal;
}

.produkt-beschreibungsblock p {
    margin: 0;

    color:
        var(--brown-soft);

    font-size: 11px;
    line-height: 1.8;
}

.stoff-vorteile-grid {
    margin:
        20px
        0;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 8px;
}

.stoff-vorteile-grid span {
    padding: 11px;

    background:
        var(--cream);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    line-height: 1.5;
}

.stoff-details {
    margin-top: 20px;

    padding-top: 18px;

    border-top:
        1px solid
        var(--line);
}

.stoff-details-zweispaltig {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 18px;
}

.stoff-detail-block {
    min-width: 0;

    padding: 18px;

    background:
        var(--cream-light);

    border:
        1px solid
        var(--line);
}

.stoff-detail-block h4 {
    margin:
        0
        0
        13px;

    font-size: 14px;
}

.stoff-detail-block p {
    margin:
        7px
        0;

    color:
        var(--brown-soft);

    font-size: 11px;
    line-height: 1.6;
}

.stoff-detail-block p strong {
    color:
        var(--brown);
}

.produktbild-masse {
    background:
        var(--cream);
}

.produktbild-masse small {
    display: block;

    margin-top: 13px;

    padding-top: 11px;

    border-top:
        1px solid
        var(--line);

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.6;
}


/* MAẞE */

.mass-beschreibung {
    margin:
        12px
        0
        20px;
}

.mass-felder {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.mass-felder-eins {
    grid-template-columns:
        minmax(
            0,
            430px
        );
}

.mass-auswahl label > span {
    display: block;

    margin-bottom: 7px;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;
    font-weight: bold;
}

.mass-auswahl label > small {
    display: block;

    margin-top: 6px;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
}

.mass-input {
    display: flex;

    align-items: center;

    border:
        1px solid
        var(--taupe-light);

    background: white;
}

.mass-input:focus-within {
    border-color:
        var(--brown);

    box-shadow:
        0 0 0 1px
        rgba(
            73,
            58,
            49,
            0.05
        );
}

.mass-input input {
    width: 100%;

    min-width: 0;

    padding: 14px;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;
}

.mass-input > span {
    padding:
        0
        13px;

    margin: 0 !important;

    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: normal !important;
}


/* ABAYA + HIJAB MAẞE */

.abaya-masse-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 18px;

    align-items: start;
}

.abaya-masse-layout > label {
    min-width: 0;

    padding: 18px;

    border:
        1px solid
        var(--line);

    background:
        var(--cream-light);
}

.abaya-hijab-masse {
    min-width: 0;

    padding: 18px;

    display: grid;

    gap: 17px;

    border:
        1px solid
        var(--line);

    background:
        var(--cream);
}

.abaya-hijab-masse label {
    min-width: 0;
}

.abaya-hijab-masse label + label {
    padding-top: 17px;

    border-top:
        1px solid
        var(--line);
}

.modal-warenkorb {
    width: 100%;
}


/* ZOOM */

.bild-zoom {
    position: fixed;
    inset: 0;

    z-index: 20000;

    padding: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        rgba(
            25,
            20,
            17,
            0.92
        );
}

.zoom-schliessen {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: white;

    color:
        var(--brown);

    font-size: 24px;

    cursor: pointer;
}

.zoom-bild-bereich {
    max-width: 90vw;
    max-height: 75vh;

    overflow: auto;

    display: flex;

    align-items: center;
    justify-content: center;
}

.zoom-bild-bereich img {
    max-width: 100%;
    max-height: 72vh;

    object-fit: contain;

    transform-origin: center;

    transition:
        transform
        0.2s ease;
}

.zoom-steuerung {
    margin-top: 17px;

    padding:
        7px
        11px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-radius: 30px;

    background: white;
}

.zoom-steuerung button {
    width: 36px;
    height: 36px;

    border: 0;

    border-radius: 50%;

    background:
        var(--brown);

    color: white;

    cursor: pointer;
}

#zoom-anzeige {
    min-width: 50px;

    color:
        var(--brown);

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    text-align: center;
}


/* CHECKOUT */

.checkout-box {
    width:
        min(
            1050px,
            100%
        );
}

.checkout-kopf {
    margin-bottom: 30px;

    text-align: center;
}

.checkout-kopf h2 {
    margin: 0;

    font-size: 40px;
    font-weight: normal;
}

.checkout-kopf > p:last-child {
    color:
        var(--brown-soft);

    font-size: 11px;
}

.checkout-layout {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 30px;
}

.checkout-formular h3,
.checkout-zusammenfassung h3 {
    margin:
        0
        0
        18px;

    font-size: 23px;
    font-weight: normal;
}

.checkout-zwischenueberschrift {
    margin-top:
        30px !important;
}

.checkout-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 13px;
}

.volle-breite {
    grid-column:
        1 / -1;
}

.checkout-formular
.checkout-button {
    width: 100%;

    margin-top: 20px;
}

.checkout-zusammenfassung {
    align-self: start;

    padding: 22px;

    border:
        1px solid
        var(--line);

    background:
        var(--cream);

    position: sticky;
    top: 0;
}

.checkout-artikel-item {
    padding:
        14px
        0;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    border-bottom:
        1px solid
        var(--line);
}

.checkout-artikel-item > div {
    min-width: 0;
}

.checkout-artikel-item strong {
    font-size: 12px;
    font-weight: normal;
}

.checkout-artikel-item p {
    margin:
        6px
        0;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.6;
}

.checkout-artikel-item small {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
}

.checkout-artikel-item > strong {
    flex-shrink: 0;

    font-size: 12px;
}

.checkout-summe {
    padding-top: 18px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    font-size: 17px;
}


/* BESTELLPRÜFUNG */

.pruefung-box {
    width:
        min(
            700px,
            100%
        );
}

.pruefung-box > h2 {
    margin: 0;

    font-size: 38px;
    font-weight: normal;
}

.pruefung-block {
    margin-top: 20px;

    padding: 18px;

    border:
        1px solid
        var(--line);

    background: white;
}

.pruefung-block h3 {
    margin:
        0
        0
        12px;

    font-size: 17px;
    font-weight: normal;
}

.pruefung-block > p {
    margin:
        5px
        0;

    color:
        var(--brown-soft);

    font-size: 11px;
    line-height: 1.5;
}

.pruefung-artikel {
    padding:
        12px
        0;

    border-bottom:
        1px solid
        var(--line);
}

.pruefung-artikel:last-child {
    border-bottom: 0;
}

.pruefung-artikel strong {
    display: block;

    font-size: 12px;
    font-weight: normal;
}

.pruefung-artikel p {
    margin:
        5px
        0;

    color:
        var(--brown-soft);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
    line-height: 1.6;
}

.pruefung-artikel small {
    color:
        var(--brown-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;
}

.pruefung-gesamt {
    margin-top: 20px;

    padding: 18px;

    display: flex;

    justify-content: space-between;

    background:
        var(--brown);

    color: white;

    font-size: 18px;
}

.bestellhinweis {
    margin:
        20px
        0;

    padding: 16px;

    background:
        var(--cream);

    color:
        var(--brown-soft);

    font-size: 11px;
    line-height: 1.7;
}

.bestellhinweis strong {
    color:
        var(--brown);
}

.bestellhinweis p {
    margin:
        7px
        0
        0;
}

.pruefung-box
.checkout-button {
    width: 100%;
}


/* BESTÄTIGUNG */

.bestaetigung-box {
    width:
        min(
            530px,
            100%
        );

    text-align: center;
}

.bestaetigung-check {
    width: 58px;
    height: 58px;

    margin:
        0
        auto
        18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--brown);

    color: white;

    font-size: 20px;
}

.bestaetigung-box h2 {
    margin: 0;

    font-size: 37px;
    font-weight: normal;
}

.bestaetigung-box > p {
    color:
        var(--brown-soft);

    font-size: 12px;
    line-height: 1.7;
}

.bestellnummer-box {
    margin:
        20px
        0;

    padding: 18px;

    display: flex;

    flex-direction: column;

    gap: 7px;

    background:
        var(--cream);
}

.bestellnummer-box span {
    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
}

.bestellnummer-box strong {
    font-size: 21px;
}

.bestaetigung-box
.checkout-button {
    width: 100%;
}


/* TOAST */

.warenkorb-toast {
    position: fixed;

    z-index: 30000;

    right: 25px;
    bottom: 25px;

    max-width: 360px;

    padding:
        15px
        18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        var(--brown);

    color: white;

    box-shadow:
        var(--shadow-strong);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        0.25s ease;
}

.warenkorb-toast.anzeigen,
.warenkorb-toast.sichtbar {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.toast-check {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.35
        );

    border-radius: 50%;
}

.toast-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.toast-text strong {
    font-size: 11px;
}

.toast-text span {
    color:
        var(--taupe-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;
}


/* TABLET */

@media (max-width: 950px) {

    .header-inhalt {
        grid-template-columns:
            1fr
            auto;
    }

    nav {
        display: none;
    }

    .trust-strip {
        grid-template-columns:
            1fr
            1fr;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom:
            1px solid
            var(--line);
    }

    .ablauf-grid {
        grid-template-columns:
            1fr;
    }

    .ablauf-linie {
        width: 1px;
        height: 35px;

        margin:
            0
            auto;

        background:
            var(--taupe-light);
    }

    .ueber-section {
        grid-template-columns:
            1fr;
    }

    .ueber-visual {
        min-height: 400px;
    }

    .checkout-layout {
        grid-template-columns:
            1fr;
    }

    .checkout-zusammenfassung {
        position: static;
    }

    .farben-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

}


/* HANDY */

@media (max-width: 650px) {

    .topbar {
        justify-content: center;

        min-height: 30px;

        font-size: 7px;
    }

    .topbar span:first-child,
    .topbar span:last-child {
        display: none;
    }

    .header-inhalt {
        width: 94%;
        min-height: 68px;

        gap: 8px;
    }

    .logo-klein {
        font-size: 6px;
        letter-spacing: 2.5px;
    }

    .logo-gross {
        font-size: 19px;
    }

    .header-actions {
        gap: 5px;
    }

    .konto-nav,
    .warenkorb-nav {
        padding: 8px;

        font-size: 8px;
    }

    .warenkorb-symbol,
    .warenkorb-text {
        display: none;
    }


    .hero-ohne-bild {
        min-height: 540px;
    }

    .hero-inhalt {
        width: 92%;

        padding:
            70px
            0;
    }

    .hero-text h1 {
        font-size: 43px;
        line-height: 1.02;
    }

    .hero-beschreibung {
        margin:
            23px
            auto
            27px;

        font-size: 13px;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-vorteile {
        margin-top: 35px;

        gap: 24px;
    }

    .hero-vorteile strong {
        font-size: 11px;
    }

    .hero-vorteile span {
        font-size: 7px;
    }


    .trust-item {
        min-height: 78px;

        padding: 12px;

        gap: 8px;
    }

    .trust-icon {
        width: 28px;
        height: 28px;

        font-size: 11px;
    }

    .trust-item strong {
        font-size: 9px;
    }

    .trust-item small {
        font-size: 7px;
    }


    .bereich,
    .ablauf-section,
    .faq-section,
    .kontakt-section {
        padding:
            75px
            4%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 35px;
    }


    .produktsuche-bereich {
        margin:
            -10px
            auto
            30px;
    }

    .produktsuche {
        min-height: 53px;
    }

    .produktsuche input {
        padding:
            14px
            0;

        font-size: 11px;
    }


    /* PRODUKTE AUF HANDY: 2 NEBENEINANDER */

    .produkte {
        width: 100%;

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 10px;

        align-items: stretch;
    }

    .produkt {
        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 8px;

        box-shadow:
            0 8px 22px
            rgba(
                73,
                58,
                49,
                0.08
            );
    }

    .produkt:hover {
        transform: none;
    }

    .produkt-top {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .produkt-label {
        padding:
            4px
            5px;

        font-size: 5px;

        letter-spacing: 0.8px;
    }

    .produkt-herz {
        width: 24px;
        height: 24px;

        font-size: 11px;
    }

    .produkt-hauptbild {
        aspect-ratio:
            4 / 5;
    }

    .produkt-overlay {
        display: none;
    }

    .produkt-titel-bereich {
        padding:
            12px
            1px
            0;
    }

    .produkt-kategorie {
        margin-bottom: 5px;

        font-size: 6px;

        letter-spacing: 0.8px;

        line-height: 1.4;
    }

    .produkt-titel-bereich h3 {
        font-size: 17px;

        line-height: 1.1;
    }

    .material {
        min-height: 35px;

        margin:
            6px
            1px
            8px;

        font-size: 7px;

        line-height: 1.45;
    }

    .produkt-preis-zeile {
        margin:
            0
            1px
            9px;

        display: block;
    }

    .preis {
        font-size: 17px;
    }

    .produkt-preis-zeile span {
        display: block;

        margin-top: 3px;

        font-size: 6px;

        line-height: 1.35;

        text-align: left;
    }

    .produkt
    .warenkorb-button {
        min-height: 40px;

        padding:
            8px
            5px;

        font-size: 7px;

        line-height: 1.3;

        letter-spacing: 0.2px;

        text-align: center;
    }

    .produkt-hinweis {
        margin:
            6px
            0
            0;

        font-size: 6px;

        line-height: 1.35;
    }


    .ueber-visual {
        min-height: 350px;
    }

    .ueber-zitat {
        left: 7%;
        right: 7%;

        padding: 25px;
    }

    .ueber-zitat p {
        font-size: 21px;
    }

    .ueber-text {
        padding:
            60px
            7%;
    }

    .ueber-text h2 {
        font-size: 38px;
    }


    /* SOCIAL */

    .social-links {
        grid-template-columns:
            1fr;
    }

    .social-link {
        padding: 13px;
    }

    .social-link-text strong {
        font-size: 9px;
    }


    /* WARENKORB HANDY */

    .warenkorb-sync-info {
        align-items: flex-start;

        flex-wrap: wrap;

        padding: 14px;
    }

    .warenkorb-sync-info p {
        min-width: calc(100% - 50px);
    }

    .warenkorb-item {
        padding:
            18px;

        grid-template-columns:
            1fr;

        gap:
            18px;
    }

    .warenkorb-item:hover {
        transform: none;
    }

    .warenkorb-item-info strong {
        font-size: 19px;
    }

    .warenkorb-item-info p {
        font-size: 9px;
    }

    .warenkorb-item-aktionen {
        width: 100%;
        min-width: 0;

        padding-top: 15px;

        display: grid;

        grid-template-columns:
            auto
            1fr;

        align-items: center;

        border-top:
            1px solid
            var(--line);
    }

    .mengensteuerung {
        justify-self: start;
    }

    .warenkorb-item-aktionen > strong {
        justify-self: end;

        font-size: 17px;
    }

    .warenkorb-entfernen {
        grid-column:
            1 / -1;

        justify-self: start;

        margin-top: 2px;

        font-size: 8px;
    }

    .warenkorb-abschluss {
        padding: 18px;
    }

    .warenkorb-gesamt-zeile {
        font-size: 16px;
    }

    .warenkorb-gesamt-zeile strong {
        font-size: 20px;
    }


    .kontakt-box {
        padding:
            45px
            7%;
    }

    .kontakt-box h2 {
        font-size: 37px;
    }

    .kontakt-buttons {
        flex-direction: column;
    }

    .kontakt-buttons a {
        width: 100%;
    }


    .overlay {
        padding: 7px;
    }

    .modal-box {
        width: 100%;
        max-height: 95dvh;

        padding:
            48px
            15px
            24px;
    }

    .konto-kopf h2 {
        font-size: 29px;
    }

    .modal-kopf h2 {
        font-size: 33px;
    }


    .produkt-detail-bilder,
    .vier-bilder {
        grid-template-columns:
            1fr
            1fr;

        gap: 6px;
    }

    .zoom-bild-button img {
        aspect-ratio:
            3 / 4;
    }


    .farben-auswahl {
        padding: 17px;
    }

    .farben-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap: 10px;
    }

    .farbe-name {
        font-size: 9px;
    }


    .stoff-info,
    .mass-auswahl {
        padding: 17px;
    }

    .stoff-vorteile-grid {
        grid-template-columns:
            1fr;
    }

    .stoff-details-zweispaltig {
        grid-template-columns:
            1fr;
    }


    .mass-felder,
    .mass-felder-eins {
        grid-template-columns:
            1fr;
    }


    .abaya-masse-layout {
        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .abaya-masse-layout > label,
    .abaya-hijab-masse {
        padding: 14px;
    }


    .checkout-grid {
        grid-template-columns:
            1fr;
    }

    .volle-breite {
        grid-column:
            auto;
    }

    .checkout-kopf h2 {
        font-size: 31px;
    }

    .checkout-artikel-item {
        gap: 10px;
    }


    .bestellung-karte-kopf {
        align-items: flex-start;
    }

    .bestellung-artikel {
        padding:
            12px
            0;
    }


    .warenkorb-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;

        max-width: none;
    }

}
