    /* --------------------------Fonts--------------------------- */
@font-face {
    font-family: 'Yeseva One';
    src: url('../fonts/YesevaOne-Regular.eot');
    src: url('../fonts/YesevaOne-Regular.svg') format('embedded-opentype'),
        url('../fonts/YesevaOne-Regular.woff') format('woff'),
        url('../fonts/YesevaOne-Regular.ttf') format('truetype'),
        url('../fonts/YesevaOne-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.svg') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.ttf') format('woff'),
        url('../fonts/Poppins-Black.woff') format('truetype'),
        url('../fonts/Poppins-Black.eot') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBoldItalic.woff') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.svg') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBoldItalic.eot') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.svg') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.ttf') format('woff'),
        url('../fonts/Poppins-Medium.woff') format('truetype'),
        url('../fonts/Poppins-Medium.eot') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.svg') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.ttf') format('woff'),
        url('../fonts/Poppins-Regular.woff') format('truetype'),
        url('../fonts/Poppins-Regular.eot') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.svg') format('embedded-opentype'),
        url('../fonts/Poppins-Light.ttf') format('woff'),
        url('../fonts/Poppins-Light.woff') format('truetype'),
        url('../fonts/Poppins-Light.eot') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.otf') format('embedded-opentype'),
         url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.otf') format('otf'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open sans';
    src: url('../fonts/OpenSans-Medium.eot');
    src: url('../fonts/OpenSans-Medium.otf') format('embedded-opentype'),
         url('../fonts/OpenSans-Medium.woff') format('woff'),
        url('../fonts/OpenSans-Medium.otf') format('otf'),
        url('../fonts/OpenSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open sans';
    src: url('../fonts/OpenSans-SemiBold.eot');
    src: url('../fonts/OpenSans-SemiBold.otf') format('embedded-opentype'),
         url('../fonts/OpenSans-SemiBold.woff') format('woff'),
        url('../fonts/OpenSans-SemiBold.otf') format('otf'),
        url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open sans';
    src: url('../fonts/OpenSans-Bold.eot');
    src: url('../fonts/OpenSans-Bold.otf') format('embedded-opentype'),

        url('../fonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/OpenSans-Bold.otf') format('otf'),
        url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CocoSharp Trial';
    src: url('../fonts/CocoSharpTrial-Bold.eot');
    src: url('../fonts/CocoSharpTrial-Bold.svg') format('embedded-opentype'),
        url('../fonts/CocoSharpTrial-Bold.woff') format('woff'),
        url('../fonts/CocoSharpTrial-Bold.ttf') format('truetype'),
        url('../fonts/CocoSharpTrial-Bold.svg') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*{
    margin: 0;
    padding: 0;
}


/* ------------------ Common css ----------------------- */

:root {
    --primary-color: #2F4A3F;
    --primary-color-dark: #20362D;

    --secondary-color: #708178;

    --accent-color: #95515D;
    --accent-color-dark: #7E4650;
    --accent-color-light: #D8B8BE;

    --sage-color: #E7EFE9;
    --cream-color: #F4F6F2;

    --dark-color: #202722;
    --muted-color: #66716A;

    --white-color: #FAFBF9;
    --pure-white: #FFFFFF;

    --border-color: #D7DFD9;
}


/* -------------------------------------------------------------------------- */
/* ------------------------------ Global CSS -------------------------------- */
/* -------------------------------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Open sans', sans-serif;

    background-color: var(--white-color);
    color: var(--dark-color);

    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section.padding_top_iterate {
    padding-top: 0;
}


/* Background Variants */

.section_white {
    background-color: var(--pure-white);
}

.section_cream {
    background-color: var(--cream-color);
}

.section_sage {
    background-color: var(--sage-color);
}

.section_dark {
    background-color: var(--primary-color);
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    font-family: 'Poppins', sans-serif;

    color: var(--dark-color);
}

h1 {
    font-size: clamp(4.8rem, 6vw, 8.2rem);
    line-height: 1.03;

    font-weight: 600;
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(3.6rem, 4vw, 5.6rem);
    line-height: 1.08;

    font-weight: 600;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 2.6rem;
    line-height: 1.25;

    font-weight: 600;
}

h4 {
    font-size: 2.1rem;
    line-height: 1.35;

    font-weight: 600;
}

p {
    margin-top: 0;

    font-family: 'Open sans', sans-serif;

    font-size: 1.6rem;
    line-height: 1.75;

    font-weight: 400;

    color: var(--muted-color);
}

img {
    max-width: 100%;
}


/* -------------------------------------------------------------------------- */
/* ----------------------------- Section Header ----------------------------- */
/* -------------------------------------------------------------------------- */

.section_header_info {
    max-width: 72rem;

    margin-bottom: 5.2rem;
}

.section_header_center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section_title {
    margin-bottom: 0;
}

.section_description {
    max-width: 65rem;

    margin-top: 1.8rem;
    margin-bottom: 0;
}

.section_header_center .section_description {
    margin-left: auto;
    margin-right: auto;
}


/* -------------------------------------------------------------------------- */
/* ------------------------------- Buttons ---------------------------------- */
/* -------------------------------------------------------------------------- */

.btn_primary_fill,
.btn_primary_outline,
.btn_white_fill,
.btn_white_outline,
.btn_dark_fill {
    min-height: 50px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.btn_primary_fill:hover,
.btn_primary_outline:hover,
.btn_white_fill:hover,
.btn_white_outline:hover,
.btn_dark_fill:hover {
    transform: translateY(-2px);
}


/* Primary */

.btn_primary_fill {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn_primary_fill:hover {
    background-color: var(--accent-color-dark);
    border-color: var(--accent-color-dark);
}


/* Primary Outline */

.btn_primary_outline {
    background-color: transparent;
    border-color: var(--accent-color);

    color: var(--accent-color) !important;
}

.btn_primary_outline:hover {
    background-color: var(--accent-color);

    color: var(--pure-white) !important;
}


/* White */

.btn_white_fill {
    background-color: var(--pure-white);
    border-color: var(--pure-white);

    color: var(--primary-color) !important;
}

.btn_white_fill:hover {
    background-color: transparent;

    color: var(--pure-white) !important;
}


/* White Outline */

.btn_white_outline {
    background: rgba(20, 36, 29, 0.38);
    border-color: rgba(255, 255, 255, 0.85);

    color: #fff !important;

    backdrop-filter: blur(4px);
}

.btn_white_outline:hover {
    background: #fff;
    border-color: #fff;

    color: var(--primary-color) !important;
}


/* Dark */

.btn_dark_fill {
    background-color: var(--primary-color);
    border-color: var(--primary-color);

    color: var(--pure-white) !important;
}

.btn_dark_fill:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);

    color: var(--pure-white) !important;
}

.btn_primary_fill,
.btn_primary_fill:visited {
    background-color: var(--accent-color);
    border-color: var(--accent-color);

    color: #FFFFFF !important;
    text-decoration: none !important;
}

.btn_primary_fill:hover,
.btn_primary_fill:focus,
.btn_primary_fill:active {
    background-color: var(--accent-color-dark);
    border-color: var(--accent-color-dark);

    color: #FFFFFF !important;
    text-decoration: none !important;
}

.brand_statement_label,
.process_number {
    color: var(--accent-color-light);
}
/* -------------------------------------------------------------------------- */
/* -------------------------------- Hero ------------------------------------ */
/* -------------------------------------------------------------------------- */

.hero_section {
    position: relative;

    width: 100%;
    height: 460px;
    min-height: 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Hero Varianten */

.hero_section_hero {
    height: 590px;
}

.hero_section_small {
    height: 460px;
}


/* Overlay */

.hero_overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.30) 34%,
        rgba(0, 0, 0, 0.10) 62%,
        rgba(0, 0, 0, 0) 82%
    );
}


/* Content */

.hero_content {
    position: relative;
    z-index: 1;

    max-width: 700px;

    padding: 50px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.hero_title {
    max-width: 700px;

    margin: 0 !important;

    font-family: 'Poppins', sans-serif;

    font-size: 58px;
    line-height: 1.06;

    font-weight: 600;
    letter-spacing: -0.035em;

    color: #fff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}


.hero_description,
.hero_description p {
    max-width: 590px;

    margin-top: 20px;
    margin-bottom: 0;

    font-family: 'Open sans', sans-serif;

    font-size: 18px;
    line-height: 1.6;

    font-weight: 400;

    color: #fff !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}


.hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


/* Hero Buttons etwas kompakter */

.hero_buttons .btn_primary_fill,
.hero_buttons .btn_white_outline {
    min-height: 50px;
    padding: 0 28px;
    font-size: 14px;
}


/* -------------------------------------------------------------------------- */
/* ------------------------------- Responsive ------------------------------- */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .hero_section_hero {
        height: 500px;
    }

    .hero_section_small {
        height: 340px;
    }

    .hero_title {
        font-size: 50px;
    }

}


@media (max-width: 767px) {

    .hero_section,
    .hero_section_hero {
        height: 460px;
    }

    .hero_section_small {
        height: 300px;
    }

    .hero_overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero_content {
        padding: 40px 0;
    }

    .hero_title {
        font-size: 39px;
        line-height: 1.08;
    }

    .hero_description,
    .hero_description p {
        margin-top: 16px;

        font-size: 16px;
        line-height: 1.5;
    }

    .hero_buttons {
        margin-top: 22px;

        gap: 10px;
    }

}


@media (max-width: 430px) {

    .hero_section,
    .hero_section_hero {
        height: 390px;
    }

    .hero_section_small {
        height: 250px;
    }

    .hero_title {
        font-size: 34px;
    }

}


/* =========================
   Benefits Section
========================= */

.benefits_section {
    padding: 60px 0 68px;
    background-color: var(--cream-color);
}

.benefits_container {
    max-width: 1240px;
    margin: 0 auto;
}

.benefits_header_info {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.benefits_title {
    margin: 0 0 14px;
    font-size: 52px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark-color);
}

.benefits_description {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--muted-color);
}


.benefits_items_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.benefits_item {
    background-color: var(--pure-white);

    border: 1px solid var(--border-color);
    border-radius: 20px;

    padding: 28px 28px 26px;

    min-height: 225px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.benefits_item:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(31, 53, 45, 0.05);

    border-color: rgba(183, 91, 61, 0.14);
}

.benefits_icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: transparent;
    overflow: visible;
}

.benefits_icon img {
    width: 68px;
    height: 68px;
    max-width: none;

    display: block;
    object-fit: contain;

    transform: scale(1.18);
    transform-origin: center;
}

.benefits_item_title {
    margin: 0 0 10px;

    font-size: 21px;
    line-height: 1.25;

    font-weight: 700;
    letter-spacing: -0.02em;

    color: var(--dark-color);
}

.benefits_item_text {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: var(--muted-color);
}

@media (max-width: 1199px) {
    .benefits_title {
        font-size: 44px;
    }

    .benefits_description {
        font-size: 18px;
    }

    .benefits_item {
        padding: 28px 24px 24px;
        min-height: 240px;
    }

    .benefits_item_title {
        font-size: 20px;
    }

    .benefits_item_text {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .benefits_section {
        padding: 64px 0 72px;
    }

    .benefits_items_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefits_header_info {
        margin-bottom: 32px;
    }

    .benefits_title {
        font-size: 38px;
    }

    .benefits_description {
        font-size: 17px;
    }

    .benefits_item {
        min-height: auto;
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .benefits_section {
        padding: 52px 0 60px;
    }

    .benefits_title {
        font-size: 32px;
    }

    .benefits_description {
        font-size: 16px;
        line-height: 1.6;
    }

    .benefits_item {
        padding: 24px 20px 22px;
    }

    .benefits_icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .benefits_icon img {
        width: 60px;
        height: 60px;
        max-width: none;

        transform: scale(1.15);
    }

    .benefits_item_title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .benefits_item_text {
        font-size: 16px;
        line-height: 1.65;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------------- Cards ------------------------------------ */
/* -------------------------------------------------------------------------- */

.cards_section {
    overflow: hidden;
}

.cards_container {
    display: flex;
    flex-direction: column;

    gap: 5.2rem;
}

.cards_header_info {
    max-width: 72rem;

    margin: 0 auto;

    text-align: center;
}

.cards_text {
    max-width: 62rem;

    margin: 1.6rem auto 0;
}

.cards_grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.4rem;
}

.image_card {
    position: relative;

    min-height: 48rem;

    overflow: hidden;

    border-radius: var(--radius-medium);

    text-decoration: none;

    isolation: isolate;
}

.image_card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(20, 36, 29, 0.9) 0%,
            rgba(20, 36, 29, 0.12) 68%
        );
}

.image_card_image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.image_card:hover .image_card_image {
    transform: scale(1.045);
}

.image_card_content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 3.2rem;
}

.image_card_tag {
    display: block;

    margin-bottom: 0.8rem;

    font-family: 'Poppins', sans-serif;

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.72);
}

.image_card_title {
    margin-bottom: 0 !important;

    font-size: 2.9rem;

    color: var(--pure-white);
}

.image_card_arrow {
    width: 4.4rem;
    height: 4.4rem;

    margin-top: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0.1rem solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    color: var(--pure-white);

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.image_card:hover .image_card_arrow {
    background-color: var(--pure-white);

    color: var(--primary-color);
}


/* -------------------------------------------------------------------------- */
/* --------------------------- Occasion Cards ------------------------------- */
/* -------------------------------------------------------------------------- */

.occasion_cards_section.section {
    padding: 72px 0 82px;
    overflow: hidden;
    background-color: var(--pure-white);
}

.occasion_cards_container {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}


/* Header */

.occasion_cards_header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.occasion_cards_title {
    margin: 0;

    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.occasion_cards_description,
.occasion_cards_description p {
    max-width: 680px;

    margin: 16px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}


/* Grid */

.occasion_cards_grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* Card */

.occasion_card {
    position: relative;

    width: 100%;
    height: 430px;

    display: block;

    overflow: hidden;

    border-radius: 18px;

    color: var(--pure-white);
    text-decoration: none !important;

    isolation: isolate;
}

.occasion_card_image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.occasion_card_overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        to top,
        rgba(17, 30, 25, 0.82) 0%,
        rgba(17, 30, 25, 0.28) 48%,
        rgba(17, 30, 25, 0.02) 78%
    );

    transition: background 0.3s ease;
}


/* Card Content */

.occasion_card_content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 28px;
}

.occasion_card_tag {
    display: block;

    margin-bottom: 9px;

    font-family: 'Poppins', sans-serif;

    font-size: 11px;
    line-height: 1;

    font-weight: 600;
    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.78);
}

.occasion_card_title {
    max-width: 320px;

    margin: 0 !important;

    font-family: 'Poppins', sans-serif;

    font-size: 25px;
    line-height: 1.22;

    font-weight: 600;
    letter-spacing: -0.025em;

    color: var(--pure-white) !important;
}


/* Arrow */

.occasion_card_arrow {
    width: 44px;
    height: 44px;

    margin-top: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    color: var(--pure-white);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.occasion_card_arrow svg {
    width: 19px;
    height: 19px;

    display: block;
}


/* Hover */

.occasion_card:hover .occasion_card_image {
    transform: scale(1.035);
}

.occasion_card:hover .occasion_card_overlay {
    background: linear-gradient(
        to top,
        rgba(17, 30, 25, 0.88) 0%,
        rgba(17, 30, 25, 0.32) 52%,
        rgba(17, 30, 25, 0.04) 80%
    );
}

.occasion_card:hover .occasion_card_arrow {
    background-color: var(--white-color);
    border-color: var(--pure-white);

    color: var(--primary-color);

    transform: translateX(3px);
}


/* Tablet */

@media (max-width: 991px) {

    .occasion_cards_section.section {
        padding: 64px 0 70px;
    }

    .occasion_cards_title {
        font-size: 40px;
    }

    .occasion_cards_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .occasion_card {
        height: 390px;
    }

    .occasion_card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 9px);

        justify-self: center;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .occasion_cards_section.section {
        padding: 54px 0 60px;
    }

    .occasion_cards_header {
        margin-bottom: 30px;
    }

    .occasion_cards_title {
        font-size: 34px;
    }

    .occasion_cards_description,
    .occasion_cards_description p {
        font-size: 16px;
    }

    .occasion_cards_grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .occasion_card,
    .occasion_card:last-child {
        width: 100%;
        height: 340px;

        grid-column: auto;
    }

    .occasion_card_content {
        padding: 24px;
    }

    .occasion_card_title {
        font-size: 23px;
    }
}

/* -------------------------------------------------------------------------- */
/* --------------------------- Split Content -------------------------------- */
/* -------------------------------------------------------------------------- */

.split_content_section.section {
    overflow: hidden;

    padding-top: 72px;
    padding-bottom: 72px;

    background-color: var(--pure-white);
}


/* Background Variants */

.split_content_section_white.section {
    background-color: var(--pure-white);
}

.split_content_section_cream.section {
    background-color: var(--cream-color);
}

.split_content_section_dark.section {
    background-color: var(--primary-color);
}

.split_content_section:has(+ .split_content_section) {
    padding-bottom: 12px;
}

.split_content_section + .split_content_section {
    padding-top: 12px;
}


/* -------------------------------------------------------------------------- */
/* Container                                                                  */
/* -------------------------------------------------------------------------- */

.split_content_section .container {
    max-width: 1460px;
}


/* -------------------------------------------------------------------------- */
/* Layout                                                                     */
/* -------------------------------------------------------------------------- */

.split_content_grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 64px;
}


/* Reverse */

.split_content_section_reverse .split_content_media {
    order: 2;
}

.split_content_section_reverse .split_content_details {
    order: 1;
}


/* -------------------------------------------------------------------------- */
/* Image                                                                      */
/* -------------------------------------------------------------------------- */

.split_content_media {
    position: relative;

    width: 100%;
    max-width: 92%;
}


.split_content_section:not(.split_content_section_reverse) .split_content_media {
    justify-self: start;
}

.split_content_section_reverse .split_content_media {
    justify-self: end;
}

.split_content_media img {
    display: block;

    width: 100%;
    height: 580px;

    object-fit: cover;

    border-radius: 18px;
}


/* -------------------------------------------------------------------------- */
/* Content                                                                    */
/* -------------------------------------------------------------------------- */

.split_content_details {
    width: 100%;
    max-width: 560px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.split_content_title {
    margin: 0 !important;

    font-size: 48px;
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.035em;

    color: var(--dark-color);
}


/* Brand Accent */

.split_content_title::after {
    content: "";

    display: block;

    width: 52px;
    height: 3px;

    margin-top: 20px;

    border-radius: 4px;

    background-color: var(--accent-color);
}


/* Text */

.split_content_text {
    margin-top: 24px;

    font-size: 17px;
    line-height: 1.75;

    color: var(--muted-color);
}

.split_content_text p {
    margin: 0 0 14px;

    font-size: inherit;
    line-height: inherit;

    color: inherit;
}

.split_content_text p:last-child {
    margin-bottom: 0;
}


/* Buttons */

.split_content_actions {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* -------------------------------------------------------------------------- */
/* Dark Variant                                                               */
/* -------------------------------------------------------------------------- */

.split_content_section_dark .split_content_title {
    color: var(--pure-white);
}

.split_content_section_dark .split_content_text,
.split_content_section_dark .split_content_text p {
    color: rgba(255, 255, 255, 0.75);
}


/* -------------------------------------------------------------------------- */
/* Tablet                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .split_content_section.section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .split_content_section:has(+ .split_content_section) {
        padding-bottom: 10px;
    }

    .split_content_section + .split_content_section {
        padding-top: 10px;
    }

    .split_content_grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    /*
     * Auf Tablet / Mobile immer:
     * Bild zuerst, danach Text.
     */

    .split_content_section_reverse .split_content_media,
    .split_content_section_reverse .split_content_details {
        order: initial;
    }

    .split_content_media img {
        height: 460px;
    }

    .split_content_details {
        max-width: 680px;
    }

    .split_content_title {
        font-size: 40px;
    }
}


/* -------------------------------------------------------------------------- */
/* Mobile                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {

    .split_content_section.section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .split_content_section:has(+ .split_content_section) {
        padding-bottom: 8px;
    }

    .split_content_section + .split_content_section {
        padding-top: 8px;
    }

    .split_content_grid {
        gap: 30px;
    }

    .split_content_media img {
        height: 350px;

        border-radius: 14px;
    }

    .split_content_title {
        font-size: 34px;
    }

    .split_content_title::after {
        width: 44px;

        margin-top: 16px;
    }

    .split_content_text {
        margin-top: 20px;

        font-size: 16px;
        line-height: 1.65;
    }

    .split_content_actions {
        margin-top: 24px;
    }
}


/* -------------------------------------------------------------------------- */
/* Small Mobile                                                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 430px) {

    .split_content_media img {
        height: 300px;
    }

    .split_content_title {
        font-size: 30px;
    }
}

/* -------------------------------------------------------------------------- */
/* ------------------------------- Process ---------------------------------- */
/* -------------------------------------------------------------------------- */

.process_section.section {
    padding-top: 78px;
    padding-bottom: 82px;

    overflow: hidden;

    background-color: var(--primary-color);
}

.process_container {
    max-width: 1280px;
}

.process_header_info {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.process_title {
    margin: 0;

    font-size: 48px;
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--pure-white);
}

.process_description,
.process_description p {
    max-width: 680px;

    margin: 18px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


/* Steps */

.process_steps_grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process_step {
    min-height: 210px;

    padding: 30px 34px 12px;

    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process_step:first-child {
    padding-left: 0;
}

.process_step:last-child {
    padding-right: 0;

    border-right: 0;
}

.process_step_number {
    display: block;

    margin-bottom: 28px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: 0.14em;

    color: var(--accent-color);
}

.process_step_title {
    margin: 0 !important;

    font-size: 23px;
    line-height: 1.25;

    font-weight: 600;

    color: var(--pure-white);
}

.process_step_text,
.process_step_text p {
    margin: 12px 0 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.64);
}


/* Tablet */

@media (max-width: 991px) {

    .process_section.section {
        padding-top: 66px;
        padding-bottom: 70px;
    }

    .process_title {
        font-size: 40px;
    }

    .process_steps_grid {
        grid-template-columns: 1fr;
    }

    .process_step,
    .process_step:first-child,
    .process_step:last-child {
        min-height: auto;

        padding: 26px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .process_step:last-child {
        border-bottom: 0;
    }

    .process_step_number {
        margin-bottom: 16px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .process_section.section {
        padding-top: 56px;
        padding-bottom: 58px;
    }

    .process_header_info {
        margin-bottom: 34px;
    }

    .process_title {
        font-size: 34px;
    }

    .process_description,
    .process_description p {
        font-size: 16px;
    }

    .process_step_title {
        font-size: 21px;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------- Product Showcase ----------------------------- */
/* -------------------------------------------------------------------------- */

.product_showcase_section.section {
    padding-top: 76px;
    padding-bottom: 82px;

    overflow: hidden;

    background-color: var(--cream-color);
}


/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.product_showcase_header {
    margin-bottom: 40px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.product_showcase_header .section_header_info {
    max-width: 720px;

    margin: 0;
}

.product_showcase_header .section_title {
    margin: 0;

    font-size: 48px;
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.product_showcase_header .section_description {
    max-width: 620px;

    margin: 16px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}


/* -------------------------------------------------------------------------- */
/* Header Link                                                                */
/* -------------------------------------------------------------------------- */

.product_showcase_link {
    flex-shrink: 0;

    padding-bottom: 4px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    border-bottom: 1px solid rgba(35, 38, 33, 0.25);

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 600;

    color: var(--dark-color) !important;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.product_showcase_link svg {
    width: 18px;
    height: 18px;

    transition: transform 0.25s ease;
}

.product_showcase_link:hover {
    color: var(--accent-color) !important;

    border-color: var(--accent-color);
}

.product_showcase_link:hover svg {
    transform: translateX(3px);
}


/* -------------------------------------------------------------------------- */
/* Grid                                                                       */
/* -------------------------------------------------------------------------- */

.products_grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* -------------------------------------------------------------------------- */
/* Product Card                                                               */
/* -------------------------------------------------------------------------- */

.product_card {
    min-width: 0;

    display: block;

    color: inherit !important;

    text-decoration: none !important;
}


/* Image */

.product_card_media {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: 18px;

    background-color: var(--sand-color);
}

.product_card_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.product_card:hover .product_card_image {
    transform: scale(1.025);
}


/* Arrow */

.product_card_arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.92);

    color: var(--primary-color);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.product_card_arrow svg {
    width: 19px;
    height: 19px;

    display: block;
}

.product_card:hover .product_card_arrow {
    background-color: var(--accent-color);

    color: var(--pure-white);

    transform: translateX(3px);
}


/* -------------------------------------------------------------------------- */
/* Product Info                                                               */
/* -------------------------------------------------------------------------- */

.product_card_content {
    padding: 18px 3px 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.product_card_title {
    min-width: 0;

    margin: 0 !important;

    font-size: 21px;
    line-height: 1.35;

    font-weight: 600;
    letter-spacing: -0.02em;

    color: var(--dark-color);
}

.product_card_price {
    flex-shrink: 0;

    padding-top: 2px;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 600;

    color: var(--accent-color);
}


/* Empty */

.product_showcase_empty {
    grid-column: 1 / -1;

    margin: 0;

    text-align: center;
}


/* Mobile Button */

.product_showcase_mobile_action {
    display: none;

    margin-top: 34px;

    text-align: center;
}


/* -------------------------------------------------------------------------- */
/* Tablet                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .product_showcase_section.section {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .product_showcase_header .section_title {
        font-size: 40px;
    }

    .products_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* -------------------------------------------------------------------------- */
/* Mobile                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {

    .product_showcase_section.section {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .product_showcase_header {
        margin-bottom: 30px;
    }

    .product_showcase_header .section_title {
        font-size: 34px;
    }

    .product_showcase_header .section_description {
        font-size: 16px;
    }

    .product_showcase_link {
        display: none;
    }

    .products_grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .product_card_media {
        border-radius: 16px;
    }

    .product_card_content {
        padding-top: 14px;
    }

    .product_card_title {
        font-size: 20px;
    }

    .product_showcase_mobile_action {
        display: block;
    }

}


/* -------------------------------------------------------------------------- */
/* -------------------------------- Gallery --------------------------------- */
/* -------------------------------------------------------------------------- */

.gallery_section {
    overflow: hidden;
}

.gallery_container {
    display: flex;
    flex-direction: column;

    gap: 5.2rem;
}

.gallery_grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 24.5rem;

    gap: 1.6rem;
}

.gallery_item {
    display: block;

    overflow: hidden;

    border-radius: var(--radius-medium);
}

.gallery_item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.gallery_item:hover img {
    transform: scale(1.035);
}

.gallery_item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery_item:nth-child(2),
.gallery_item:nth-child(3) {
    grid-column: span 5;
}

.gallery_item:nth-child(4),
.gallery_item:nth-child(5),
.gallery_item:nth-child(6) {
    grid-column: span 4;
}


/* -------------------------------------------------------------------------- */
/* --------------------------------- CTA ------------------------------------ */
/* -------------------------------------------------------------------------- */

.cta_section.section {
    padding-top: 76px;
    padding-bottom: 88px;

    overflow: hidden;

    background-color: var(--white-color);
}

.cta_card {
    position: relative;

    overflow: hidden;

    padding: 72px 68px;

    border-radius: 24px;

    background-color: var(--primary-color);
}

.cta_content {
    position: relative;

    z-index: 1;

    max-width: 780px;
}

.cta_title {
    margin: 0 !important;

    font-size: 50px;
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--pure-white);
}

.cta_text,
.cta_text p {
    max-width: 670px;

    margin: 18px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}

.cta_actions {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* Tablet */

@media (max-width: 991px) {

    .cta_section.section {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .cta_card {
        padding: 58px 48px;
    }

    .cta_title {
        font-size: 42px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .cta_section.section {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .cta_card {
        padding: 44px 24px;

        border-radius: 18px;
    }

    .cta_title {
        font-size: 34px;
    }

    .cta_text,
    .cta_text p {
        font-size: 16px;
    }

    .cta_actions {
        flex-direction: column;

        margin-top: 26px;
    }

    .cta_actions a {
        width: 100%;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------------- Responsive ------------------------------- */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }


    /* Benefits */

    .benefits_items_grid {
        grid-template-columns: 1fr;
    }

    .benefits_item {
        max-width: 64rem;

        margin-left: auto;
        margin-right: auto;
    }


    /* Cards */

    .cards_grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Products */

    .products_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .container {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    h1 {
        font-size: 4.4rem;
    }

    h2 {
        font-size: 3.4rem;
    }


    /* Hero */

    .hero_section,
    .hero_section_home {
        min-height: 60rem;
    }

    .hero_overlay {
        background:
            linear-gradient(
                to top,
                rgba(20, 36, 29, 0.95) 0%,
                rgba(20, 36, 29, 0.62) 65%,
                rgba(20, 36, 29, 0.28) 100%
            );
    }

    .hero_content {
        padding-top: 9rem;
        padding-bottom: 6rem;
    }

    .hero_title {
        font-size: 4.6rem;
    }

    .hero_description,
    .hero_description p {
        font-size: 1.6rem;
    }

    .hero_buttons {
        width: 100%;

        flex-direction: column;
    }

    .hero_buttons .btn_primary_fill,
    .hero_buttons .btn_white_outline {
        width: 100%;
    }


    /* Cards */

    .cards_grid {
        grid-template-columns: 1fr;
    }

    .image_card {
        min-height: 40rem;
    }
}


@media (max-width: 430px) {

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.1rem;
    }

    .hero_title {
        font-size: 4rem;
    }

    .image_card {
        min-height: 35rem;
    }

    .gallery_item,
    .gallery_item:nth-child(n) {
        height: 24rem;
    }

    .gallery_item:first-child {
        height: 33rem;
    }
}

/* -------------------------------------------------------------------------- */
/* --------------------------- Editorial Intro ------------------------------ */
/* -------------------------------------------------------------------------- */

.editorial_intro_section.section {
    padding: 82px 0 88px;
    background-color: var(--pure-white);
}

.editorial_intro_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 110px;
    align-items: start;
}

.editorial_intro_title {
    max-width: 620px;
    margin: 0;

    font-size: 50px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.editorial_intro_content {
    max-width: 620px;
    padding-top: 7px;
}

.editorial_intro_text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted-color);
}

.editorial_intro_text p {
    margin: 0 0 18px;
}

.editorial_intro_text p:last-child {
    margin-bottom: 0;
}

.editorial_intro_highlight {
    position: relative;

    margin: 30px 0 0;
    padding-left: 36px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;

    color: var(--primary-color);
}

.editorial_intro_highlight::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 24px;
    height: 2px;

    background-color: var(--accent-color);

    transform: translateY(-50%);
}


/* -------------------------------------------------------------------------- */
/* ------------------------------ Image Story ------------------------------- */
/* -------------------------------------------------------------------------- */

.image_story_section.section {
    padding: 78px 0 86px;
    background-color: #F2F5F1;
}

.image_story_header {
    max-width: 720px;
    margin-bottom: 38px;
}

.image_story_title {
    margin: 0;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.image_story_description {
    max-width: 620px;
    margin: 15px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}

.image_story_grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(0, 0.88fr);

    grid-template-rows:
        minmax(0, 265px)
        minmax(0, 265px);

    gap: 20px;
}

.image_story_card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-radius: 18px;

    background-color: var(--primary-color);
}

.image_story_card_1 {
    grid-row: 1 / 3;
}

.image_story_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.image_story_card:hover .image_story_image {
    transform: scale(1.025);
}

.image_story_overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(24, 37, 31, 0.78) 0%,
            rgba(24, 37, 31, 0.2) 50%,
            rgba(24, 37, 31, 0.03) 100%
        );
}

.image_story_card_content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 30px;
}

.image_story_card_title {
    margin: 0;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 600;

    color: var(--pure-white);
}

.image_story_card_text {
    max-width: 480px;

    margin: 7px 0 0;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.82);
}


/* -------------------------------------------------------------------------- */
/* ----------------------------- Brand Statement ---------------------------- */
/* -------------------------------------------------------------------------- */

.brand_statement_section.section {
    padding: 82px 0 84px;

    background-color: var(--primary-color);
}

.brand_statement_content {
    max-width: 1120px;
}

.brand_statement_title {
    max-width: 850px;
    margin: 0;

    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;

    color: var(--pure-white);
}

.brand_statement_description {
    max-width: 780px;

    margin: 26px 0 0;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.76);
}

.brand_statement_labels {
    margin-top: 45px;
    padding-top: 28px;

    display: flex;
    align-items: center;
    gap: 42px;

    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.brand_statement_label {
    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--accent-color);
}


/* -------------------------------------------------------------------------- */
/* --------------------------- Service Principles --------------------------- */
/* -------------------------------------------------------------------------- */

.service_principles_section.section {
    padding: 78px 0 84px;

    background-color: var(--cream-color);
}

.service_principles_header {
    max-width: 760px;
    margin-bottom: 44px;
}

.service_principles_title {
    margin: 0;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.service_principles_description {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}

.service_principles_list {
    border-top: 1px solid var(--border-color);
}

.service_principle {
    display: grid;

    grid-template-columns:
        90px
        minmax(220px, 0.75fr)
        minmax(0, 1.25fr);

    gap: 34px;

    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid var(--border-color);
}

.service_principle_number {
    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.1em;

    color: var(--accent-color);
}

.service_principle_title {
    margin: 0;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 600;

    color: var(--dark-color);
}

.service_principle_text {
    max-width: 620px;
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: var(--muted-color);
}


/* -------------------------------------------------------------------------- */
/* ------------------------------ Responsive -------------------------------- */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .editorial_intro_grid {
        gap: 60px;
    }

    .editorial_intro_title,
    .image_story_title,
    .service_principles_title {
        font-size: 40px;
    }

    .brand_statement_title {
        font-size: 48px;
    }

    .image_story_grid {
        grid-template-rows:
            minmax(0, 230px)
            minmax(0, 230px);
    }

    .service_principle {
        grid-template-columns: 60px minmax(200px, 0.8fr) 1fr;
        gap: 22px;
    }

}


@media (max-width: 767px) {

    .editorial_intro_section.section,
    .image_story_section.section,
    .brand_statement_section.section,
    .service_principles_section.section {
        padding-top: 58px;
        padding-bottom: 62px;
    }


    /* Editorial */

    .editorial_intro_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial_intro_title,
    .image_story_title,
    .service_principles_title {
        font-size: 34px;
    }

    .editorial_intro_content {
        padding-top: 0;
    }


    /* Image Story */

    .image_story_header {
        margin-bottom: 28px;
    }

    .image_story_grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: none;

        gap: 16px;
    }

    .image_story_card_1 {
        grid-row: auto;
        min-height: 360px;
    }

    .image_story_card_2,
    .image_story_card_3 {
        min-height: 260px;
    }

    .image_story_card_content {
        padding: 22px;
    }


    /* Statement */

    .brand_statement_title {
        font-size: 40px;
    }

    .brand_statement_description {
        font-size: 16px;
    }

    .brand_statement_labels {
        margin-top: 32px;
        padding-top: 22px;

        flex-wrap: wrap;

        gap: 15px 28px;
    }


    /* Principles */

    .service_principles_header {
        margin-bottom: 30px;
    }

    .service_principle {
        grid-template-columns: 42px 1fr;

        gap: 8px 16px;

        padding: 23px 0;
    }

    .service_principle_number {
        grid-column: 1;
        grid-row: 1;
    }

    .service_principle_title {
        grid-column: 2;
        grid-row: 1;

        font-size: 20px;
    }

    .service_principle_text {
        grid-column: 2;
        grid-row: 2;

        font-size: 15px;
    }

}

/*--------------------Header-Css---------------------------*/
header { padding: 38px 0 37px 0; }

header .navbar-brand{
    margin:0 auto; max-width: 158px;padding: 0;
    margin-left: -87px;margin-top: -2px;
}

header  .navbar-collapse {justify-content: space-between !important;width: 100%;}

header ul.navbar-nav li.nav-item a {
    position: relative;

    padding: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.2px;

    color: var(--dark-color) !important;

    text-decoration: none;

    transition: color 0.2s ease;
}


/* Hover + aktive Seite */

header ul.navbar-nav li.nav-item a:hover,
header ul.navbar-nav li.nav-item a.active {
    color: var(--accent-color) !important;
}


/* Kleine Linie unter aktivem Menüpunkt */

header .left-nav .nav-link.active::after,
header .right-nav .nav-item:not(.line-item):not(.cart-box) .nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    border-radius: 10px;

    background-color: var(--accent-color);
}

header ul.navbar-nav.ms.left-nav {
    display: flex;
    margin-top: 1px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 515px;
}
ul.navbar-nav.ms.left-nav li.nav-item {
    flex: 1;
    width: 100%;
    padding-right: 10px;
}
ul.navbar-nav.ms.left-nav li.nav-item:first-child{
    padding-right: 0;
}
ul.navbar-nav.ms.left-nav li.nav-item{
    padding-right: 16px;
    text-wrap:nowrap;
}
ul.navbar-nav.ms.left-nav li.nav-item:last-child {
    padding-right: 0;
}
ul.navbar-nav.ms.right-nav {
    display: flex;
/*    margin-left: auto;*/
    max-width: 42%;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
}
ul.navbar-nav.ms.right-nav li:nth-last-child(2) {
    margin-right: 0;
    padding-left: 37px;
    margin-left: 37px;
}
ul.navbar-nav.ms.right-nav li:not(:nth-last-child(2)) {
    padding-left: 37px;
}
.cart-box span.bg-danger,.cart-991 {
    top: -1px !important;
    background-color: var(--accent-color) !important;
    font-size: 14px;
    padding: 4px 7px;
    left: 28px !important;
}
/*.right-nav li.nav-item {
    padding-left: 37px;
}*/
.right-nav .line-item:before {
    position: absolute;
    content: '|';
    left: 0px;
    top: 2px;
    color: rgb(112 112 112 / 20%);
}
/* ------------------ Banner-css ----------------------- */
.banner{
    background-image: url('../images/banner_img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 258px;
    padding-bottom: 258px;
}
.shop-banner{
    background-image: url('../images/header_img.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 125px;
    padding-bottom: 125px;
}
a.btn,button#submit {
    background-color: #E59A24;
    border: 0;
    padding: 12px 42px;
    border-radius: 0;
    font-family: 'CocoSharp Trial';
    color: #fff !important;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 38px;
    margin-top: 38px;
}
a.btn:hover,a.btn:focus-visible,a.btn:active,button#submit:hover{
    background-color: #010104 !important;
}
/* ---------------------------category-Css----------- */
.shop-box{
    padding: 0 30px;
}

.category {
    background-color: rgb(3 3 3 / 2%);
    padding: 37px 0;
}
.category h3{
    font-size: 20px;
    line-height: 34px;
}
.shop-category button {
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open sans';
    color: #010104 !important;
    text-transform: capitalize;
    font-weight: 600;
}
a#shop_btn {
    margin-top: 0;
}
/*.firstActiveItem button.nav-link,*/
.shop-category button.nav-link.active {
    color: #E59A24 !important;
    border-top: 1px solid #E59A24;
    border-bottom: 1px solid #E59A24;
}

#shop-silder .owl-nav {
    position: absolute;
    right: 0;
    top: 15px;
    left: -23px;
    /* margin: 0 auto; */
    justify-content: space-between;
    display: flex;
    gap: 15px;
    width: calc(100% + 50px) !important;
    z-index: -1;
}
#shop-silder span {
    margin-top: -2px !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-category .nav-link {
    border: 0;
    background: none;
    margin: 0 auto;
    padding: 13px 0;
}

#shop-silder .owl-nav button {
    width: 30px;
    height: 30px;
    border: solid 1px #000 !important;
    border-radius: 100%;
}
#shop-silder .owl-nav button:hover{
    background-color: #E59A24;
    border-color: transparent !important;
}
#shop-silder .owl-nav button:hover span{
    color: #fff;
}
.shop-category .nav-item {
    list-style: none;
}
/*ul#pills-tab {
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}*/
#shop-silder {
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 65px;
    padding-left: 15px;
    padding-right: 15px;
}
ul#pills-tab button.nav-link.active,ul#pills-tab button.nav-link:focus-visible{
    border-top: 1px solid #E38613 !important;
    border-bottom: 1px solid #E38613 !important;
    background-color: transparent !important;
    border-radius: 0;
}
ul#pills-tab button.nav-link:focus-visible{
   outline: 0 !important;
}
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    width: 100%;
    margin: 0px auto 0;
}
ul.pagination a,ul.pagination a:hover{
    border: 0;
    background-color: transparent;
}
a.page-link.quantity {
    border: 1px solid #CFCFCF;
    /* margin-left: 30px !important; */
    padding: 11px 20px;
}
a.page-link.quantity:hover,a.page-link.quantity:active {
    border: 1px solid #E38613;
    color: #E38613;
}

ul.pagination a{
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.48px;
    color: #4D4D4F;
}
a.back-arrow,a.next-arrow{
    background-image: url(../images/back_arrow.svg);
    background-repeat: no-repeat;
    width: 46px;
    background-size: cover;
}
a.back-arrow:focus, a.next-arrow:focus{
    box-shadow: none;
}
a.back-arrow{
    background-position: left;

}
a.next-arrow {
    background-position: right;
    transform: rotate(180deg);
}
a.back-arrow:hover, a.next-arrow:hover{
    background-image: url('../images/next_arrow_hover.svg');
    transform: rotate(0deg);
}
a.back-arrow:hover{
    transform: rotate(180deg);
}
/* ---------------------------Welcome-Css----------- */
.welcome,.description{
    padding: 100px 0;
}
.shop-category {
    padding-top: 130px;
    padding-bottom: 100px;
}
.about,.message-us{
    padding-bottom: 75px;
}
.wel-contenr-wrapper {
    padding-left: 100px;
}
.abt-contenr-wrapper{
    padding-right: 101px;
}
.wel-img-box:before,.abt-img-box:after {
    position: absolute;
    content: '';
    border: 2px solid #E59A24;
    width: 351px;
    height: 355px;
    z-index: -1;
}
.wel-img-box:before{
    left: -28px;
    top: -28px;
}
.abt-img-box:after{
    right: -28px;
    bottom: -28px;
}
/* ---------------------------popular-dishes-Css------------------- */
.popular-dishes{
    padding: 100px 0;
    background-color: #FCFBFA;
}
.popular-dishes .container{
    max-width: 1270px;
    width: 100%;
}
.dishes-item span{
    font-size: 22px;
    line-height: 34px;
}
.dishes-item a:hover span{
    color: #E59A24;
}

/* ---------------------------Blogs-Css----------- */
.blogs,.contact,.content-heading,.you-my{
    padding: 100px 0;
}
.blogs .blog-content-wrapper {
    box-shadow: 0px 10px 30px #0000000A;
    padding: 35px 40px 40px 40px;
}

.writer span.name,.writer-date span {
    font-size: 12px;
    font-family: 'Open sans';
    font-weight: 600;
    letter-spacing: 0.12px;
}
.bolg-item a.blog-title,.append-text h4,.add-to-cart-box h4 {
    font-size: 24px;
}
.blog-content-wrapper p {
    line-height: 26px;
    font-weight: 400;
}
/*--------------------------Contact-Css---------------------------*/
.with-us h2,.f-50 {
    font-size: 50px;
    line-height: 64px;
}
.contact .with-us {
    background-color: #FCFBFA;
    height: 100%;
    padding-left: 100px;
    padding-top: 132px;
}
.with-content-wrapper h6 {
    font-size: 20px;
    line-height: 24px;
    font-family: 'Open sans';
    font-weight: 500;
}
.with-content-wrapper a,.with-content-wrapper span {
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    font-weight: 700;
}
.with-content-wrapper a:hover{
    color: #0000008a;
}
.payment-method-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 20px;
}
.get-in-touch-main input.form-control, textarea.form-control {
    border-radius: 0;
    margin-bottom: 30px;
    border: 1px solid #D6D6D6;
    font-family: 'Open sans';
    font-weight: 600;
}
.get-in-touch-main input.form-control::placeholder, textarea.form-control::placeholder{
    color: #8C8C8C;
}
.get-in-touch-main input.form-control:active::placeholder, textarea.form-control:active::placeholder,
.get-in-touch-main input.form-control:focus::placeholder, textarea.form-control:focus::placeholder{
    color: #010104 !important;

}
.get-in-touch-main input.form-control:active, textarea.form-control:active,
.get-in-touch-main input.form-control:hover, textarea.form-control:hover{
    border-color: #010104 !important;
    background: transparent;
}
.get-in-touch-main input.form-control:focus, textarea.form-control:focus{
   box-shadow: none;
   outline: 0;
   background: transparent;
}
.get-in-touch-main input.form-control{
    height: 62px;
}
textarea.form-control {
    height: 230px;
}
.get-in-touch-main .ps-sm-3{
    padding-left: 0.9rem!important;
}
.get-in-touch-main .pe-sm-3{
    padding-right: 0.9rem!important;
}
button#submit {
    margin-top: 0px;
    padding: 11px 116px;
}
.italic-wrapper {
    background-color: #FCFBFA;
    padding: 40px 52px;
}
.content-heading .col-12 {
    padding-left: 13px;
    padding-right: 45px;
}

/*------------------------------Delicious-Salad-Css-------------------------*/
.delicious {
    padding-top: 100px;
    padding-bottom: 30px;
    border-top: 1px solid #000;
}
.delicious h2.price.text-end {
    color: #E59A24;
}
.img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.product-items{
    display:flex;
    flex-direction: column;
    align-items:center;
  }
  .product-items .main-img {
    display: flex;
    width: 562px;
    height: 100%;
    min-height: 562px;
    background:url("../images/salad_1.png") center/cover;
    overflow: hidden;
    perspective: 600px;
}
.product-items .images {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    column-gap: 25px;
}
.images img {
    border: 1px solid transparent;
    padding: 7px;
}
.images img.active {
    border: 1px solid #E59A24;
}
  .product-items span{
    display:block;
    width:100%;
    height:auto;
    background-position:center !important;
    background-size:cover;
  }

.product-section,.choos-product{
    padding-bottom: 100px;
}

/*--------------------------Description-Css---------------------------*/
.description {
    background-color: #FCFBFA;
}
.desc-wrapper p.fst-italic.fw-bold,.content-heading p.fst-italic {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.2px;
}
.desc-wrapper h2 {
    margin-bottom: 32px !important;
}
.desc-wrapper p.fst-italic.fw-bold{
    color: #E59A24;
}

/*--------------------------Choos-Product---------------------------*/
.choos-product .product-box {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
}
.choos-product h5 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 30px !important;
}
.product-slider-item img {
    border: 1px solid #EBEBEB;
    border-radius: 100%;
    margin: 0 auto;
    width: 150px !important;
    height: 150px;
}
.product-slider-item img:hover{
    border: 1px solid #E59A24;
}

#product-slider .owl-nav.disabled {
    display: block !important;
}
#product-slider .owl-nav button span{
    font-size: 0;
}
#product-slider .owl-nav button.owl-next{
    float: right;
    right: -55px;

}
#product-slider .owl-nav button.owl-prev{
    transform: rotate(0deg) !important;
    left: -55px;
    float: left;

}

#product-slider .owl-nav button.owl-next,#product-slider .owl-nav button.owl-prev {
    position: absolute;
    background-image: url('../images/back_arrow.svg');
    background-repeat: no-repeat;
    transform: rotate(180deg);
    width: 35px;
    height: 14px;
    top: 25%;

}
#product-slider .owl-nav button.owl-next:hover,#product-slider .owl-nav button.owl-prev:hover{
    background-image: url('../images/next_hover.svg');
}
#product-slider .owl-nav button.owl-prev:hover{
    transform: rotate(180deg) !important;
}
#product-slider .owl-nav button.owl-next:hover{
    transform: rotate(0deg) !important;
}
.pro-quantity span {cursor:pointer; }

.pro-quantity .minus, .pro-quantity .plus {
    width: 22px;
    height: 22px;
    background: #E18513;
    border-radius: 100px;
    padding: 3px 5px 6px 5px;
    border: 1px solid #ddd;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 25px;
    justify-content: center;
    align-items: center;
}
.pro-quantity input {
    width: 35px;
    text-align: center;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    border: 0;
    font-family: 'Yeseva One';
    color: #fff;
}

.pro-quantity {
    max-width: 114px;
    width: 100%;
    margin: 0 auto;
    background-color: #E59A24;
    padding: 6px 13px;
    border-radius: 100px;
    position: relative;
    top: -168px;
    z-index: 9;
    visibility: hidden;
}
.product-slider-item .iner-item:hover .pro-quantity {
    visibility: visible;
}
.name-price h5.pro-name.mb-0,.name-price p.price,.order-sumry h5.sumry-title {
    font-size: 18px;
    line-height: 24px;
    font-family: 'Open sans';
    margin-bottom: 0 !important;
}
.name-price h5.pro-name.mb-0{
    margin-top: 23px;
}
.product-slider-item .iner-item {
    cursor: pointer;
}
.product-slider-item .iner-item:hover p.price{
    color: #E59A24;
}
.product-slider-item img .active{
    border: 1px solid #E59A24;
}
.append-text {
    min-height: inherit;
    padding: 35px 0px 24px;
    margin-top: -10px;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}
.append-text ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.append-text ul li {
    margin-right: 10px;
    margin-bottom: 0px;
}
.append-text p {
    text-decoration: none !important;
    color: #000;
    font-family: 'Open sans',sans-serif;
    font-size: 18px;
    line-height: 24px;
    border: 1px solid #D6D6D6;
    padding: 7px 20px;
    background: #FFFFFF6E;
    position: relative;
}
.append-text ul li span.remove {
    position: absolute;
    top: -8px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: #fff url('../images/close_icn.svg') no-repeat;
    border-radius: 50%;
    background-position: center;
    background-size: 100%;
    cursor: pointer;
}
.add-to-cart-box form.adt-form {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
#adt-btn {
    border: 0;
    background-color: #E59A24;
    border: 1px solid #EBEBEB !important;
    padding: 17px 0;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.9px;
    font-family: 'CocoSharp Trial';
    margin-top: 40px;
    width: 386px;
    max-width: 100%;
    height: 66px;
}
#adt-btn:hover{
    background-color: #000;
}
#adt-btn2 {
    border: 0;
    background-color: #754f11;
    border: 1px solid #EBEBEB !important;
    padding: 17px 0;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.9px;
    font-family: 'CocoSharp Trial';
    margin-top: 40px;
    width: 386px;
    max-width: 100%;
    height: 66px;
}
#adt-btn2:hover{
    background-color: #000;
}
/* .add-to-cart-box input.form-control,.product-form-price .price-tag {
    padding: 16px 20px;
    border-radius: 0;
    border: 1px solid #EBEBEB !important;
    font-size: 26px;
    line-height: 34px;
    font-family: 'Yeseva One';
} */
.product-form-price .price-tag {
    border-top: 1px solid #EBEBEB !important;
    border-bottom: 1px solid #EBEBEB !important;
    border-left: 0 !important;
    border-right: 0 !important;
    font-family: 'Yeseva One';
    padding: 16px 0;
    font-size: 26px;
    line-height: 34px;
    color: #E59A24;
    width: 386px;
    max-width: 100%;
}

/* .add-to-cart-box input::placeholder{
    color: #010104;
}
.form-control:focus{
    box-shadow: none;
    outline: 0;

} */
.add-to-cart-box .input-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 600px;
    width: 100%;
    height: 70px;
  }
/*.add-to-cart-box .input-box:before {
    position: absolute;
    content: '';
    background-image: url(../images/quantity_arrow.svg);
    background-color: #fff !important;
    background-repeat: no-repeat;
    width: 21px;
    height: 40px;
    right: 17px;
    top: 11px;
    pointer-events: none !important;
    background-position: top 10px left 0;
}*/
  .add-to-cart-box .input-box .input {
    border: 1px solid #EBEBEB;
    border-radius: 0;
    padding: 20px 20px 20px 20px;
    height: 65px;
    max-width: 386px;
    width: 100%;
    font-size: 26px !important;
    letter-spacing: 1.3px !important;
    font-family: 'Yeseva One';
    font-weight: 700 !important;
    /* -webkit-appearance: none; */
}
.add-to-cart-box .input-box .input:focus {
    outline: none;
  }

  /*---------------------Cart-Page------------------------*/
.cart-table {
    padding: 60px 0 35px 0;
}
.cart-table .product-content span {
    font-size: 18px;
    font-family: 'Yeseva One';
    font-weight: 500;
    color: #000;
    line-height: 30px;
    letter-spacing: -0.73px;
}
.cart-table .product-content p {
    font-size: 20px;
    font-family: 'Open sans';
    font-weight: 700;
    color: #000;
    line-height: 30px;
}
.pro_thumb  img.order-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 25px;
}
.cart-table .product-details td {
    font-family: 'Audrey';
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 50px 15px;
    vertical-align: middle;
}
.pro_thumb  a {
    font-size: 16px;
    color: #607E90;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.price-cart {
    font-weight: 500;
    color: #839CAB;
    text-decoration: line-through;
    white-space: nowrap;
}
.qty-container .input-qty {
    text-align: center;
    border: 1px solid #C2C2C2;
    padding: 6px 10px;
    max-width: 54px;
    background-color: #F7F7F7;
    min-height: 43px;
    background-color: #FFF;
}
.qty-container .qty-btn-minus, .qty-container .qty-btn-plus {
    padding: 10px 13px;
    font-size: 10px;
    border: 1px solid #C2C2C2;
    height: 38px;
    width: 38px;
    transition: 0.3s;
    min-height: 43px;
    background-color: #FFF
}
.quantity-btn-block .wrap .count,
.quantity-btn-block .wrap .add,
.quantity-btn-block .wrap .sub {
    width: 42px;
    height: 43px;
    border: 1px solid #E1E1E1;
    background: #fff;
}
.quantity-btn-block .wrap .sub {
    border-right: none;
}
.quantity-btn-block .wrap .add{
    border-left: none;
}
.quantity-btn-block .wrap .count {
    width: 54px;
    text-align: center;
    line-height: 21px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Audrey';
    padding-top: 6px;
}
.cart-table .quantity-btn-wrapper .qty-icon {
    width: 30px;
}

.price-dis {
    color: #EC431F;
}
.table>:not(caption)>*>* {
    border-color: #6b899b29;
}
.cart-total {
    background-color: #000;
    padding: 40px 30px 60px 30px;
}
.cart-total h2,.my-account h2{
    font-size: 40px;
    line-height: 70px;
}

.cart-total a.button.btn {
    background: #E59A24;
    border: 1px solid #E59A24;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}
.cart-total a.button.btn:hover {
    border: 1px solid;
}
.cart-total .border-top {
    border-color: rgb(255 255 255 / 30%) !important;
}
.tabel-cart-box td.pro_thumb {
    width: 400px;
    min-width: 330px;
}
.tabel-cart-box .clos-icon.float-end {
    padding-left: 20px;
}

/*----------------------------Footer-Css---------------------------*/
footer {
    padding-top: 115px;
    background-color: #FFFBF7;
}
.footer-bottom {
    background-color: #683917;
    padding: 18px 15px;
    margin-top: 90px;
}
.footer-item figure.f-figure {
    position: relative;
}
.footer-item figure.f-figure:before{
    content: '|';
    position: absolute;
    left: 45px;
    top: 2px;
    color: #E3BB1B;
    font-weight: 400;
}
.footer-item .gap {
    column-gap: 55px;
}
.footer-item .f-icon{
    column-gap: 30px;
}
.footer-item .f-icon {
    margin-top: 2.3rem !important;
}
footer .f-icon a {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

}
footer .f-icon a:hover{
    filter: brightness(2.5); right: 0px;
    box-shadow: none;
    border: 0 !important;
}
.email-form input {
    color: #010104 !important;
    font-size: 12px;
    line-height: 24px;
    background: transparent;

}
.email-form input:focus{
    box-shadow: none;
    background: transparent;
}
.email-form input::placeholder {
    color: #010104 !important;
}
.email-form {
    border: 1px solid;
    padding: 10px;
    margin-top: 27px;
}
button#email-btn {
    background: #E38613;
    border-radius: 100px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
}
button#email-btn:hover {
    background-color: #683917;
}
.icon-content p,.icon-content a,p.open-sans,.copy-right p {
    font-family: 'Open sans',sans-serif;
}
footer.footer-bottom {
    background-color: #683917;
    padding-top: 18px;
    padding-bottom: 17px;
}
p.open-sans {
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
}
.copy-right p{
    letter-spacing: 1.4px;
    font-weight: 500;
    font-size: 14px;
}
.footer-logo-block {
    padding-left: 75px !important;
}
.f-email {
    padding-left: 67px !important;
    padding-right: 10px !important;
}
a.footer-link {
    color: #010104;
    font-size: 16px;
    margin-left: -3px;
}
a.footer-link:hover {
    color: #E38613;
}
.icon-content p.fw-normal {
    margin-top: -6px;
}

/* ------------------ responsive-Css ----------------------- */
@media(max-width: 1440px){
    .banner {
        padding-top: 200px;
        padding-bottom: 200px;
    }
    .shop-banner{
        background-position: center right -110px;
        padding-top: 115px;
        padding-bottom: 115px;
    }
}
@media(max-width: 1300px){
    ul.navbar-nav.ms.right-nav {
       margin-right: 15px;
    }

}

@media(max-width: 1240px){
    h3,.category h3 {
        font-size: 18px;
        line-height: 24px;
    }
}
@media(max-width: 1199px){
    a#shop_btn {
        margin-top: 25px;
    }
    .banner {
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .wel-contenr-wrapper {
        padding-left: 60px;
    }
    .content-heading .col-12 {
    padding: 0 15px 0 13px;
    }
    .abt-contenr-wrapper {
        padding-right: 60px;
    }
    .popular-dishes,.blogs,.contact,
    .content-heading,.description,.you-my,.delicious {
        padding: 80px 0;
    }
    .shop-category{
        padding-top: 110px;
        padding-bottom: 80px;
    }
    .about,.message-us,.product-section,.choos-product {
        padding-bottom: 80px;
    }
    .contact .with-us {
        padding-left: 90px;
        padding-top: 100px;
    }
 /*   .right-nav .line-item:before{
        left: -37px;
    }*/
     footer{
        padding-top: 80px;
    }
    .footer-bottom {
        margin-top: 70px;
    }
    div#shop-silder {
        margin-bottom: 50px;
    }
}
@media(max-width: 1140px){
    h3 {
        font-size: 16px;
   }
   h1 {
        font-size: 80px;
        line-height: 90px;
    }
    header ul.navbar-nav li.nav-item a{
        font-size: 14px;
    }

}
@media(max-width: 1100px){
     ul.navbar-nav.ms.right-nav li:not(:nth-last-child(2)) {
        padding-left: 21px;
    }
    ul.navbar-nav.ms.right-nav li:nth-last-child(2) {
        margin-right: 0;
        padding-left: 26px;
        margin-left: 21px;
    }
    ul.navbar-nav.ms.left-nav li.nav-item {
        padding-right: 9px;
    }
    header ul.navbar-nav.ms.left-nav {
       max-width: 435px;
    }

    .popular-dishes, .blogs,.contact,
    .content-heading,.description,.you-,.delicious {
        padding: 50px 0;
    }
    .shop-category{
            padding-bottom: 50px;
    }
    footer{
        padding-top: 50px;
    }
     .footer-bottom {
        margin-top: 40px;
    }
    .about,.message-us,.choos-product {
        padding-bottom: 50px;
    }
    .wel-contenr-wrapper {
        padding-left: 30px;
    }
    .abt-contenr-wrapper {
        padding-right: 30px;
    }
    .category .cate-icon-box img{
        width: 18% !important;
    }
    h3,.category h3 {
        font-size: 15px;
    }
    .category {
        background-color: rgb(3 3 3 / 2%);
        padding: 20px 0;
    }
}
@media(max-width: 1024px){
    header ul.navbar-nav.ms.left-nav {
        max-width: 375px;
    }
    .choos-product .product-box {
        padding: 0 70px;
    }
    button#adt-btn{
        margin-top: 31px;
    }
    .product-section{
        padding-bottom: 50px;
    }
    .banner {
        padding-top: 130px;
        padding-bottom: 130px;
    }
    h1 {
        font-size: 60px;
        line-height: 70px;
    }
 /*    .right-nav .line-item:before{
        left: -30px;
    }*/
    .shop-banner{
        padding-top: 100px;
        padding-bottom: 100px;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }
    .with-us h2, .f-50{
        font-size: 35px;
        line-height: 45px;
    }
    a.btn {
        padding: 10px 35px;
        font-size: 16px;
        line-height: 35px;
        margin-top: 15px;
    }
    h4 {
        font-size: 22px;
        line-height: 25px;
    }
    .dishes-item span {
        font-size: 18px;
        line-height: 28px;
    }
    .contact .with-us {
        padding-top: 70px;
    }
    .with-content-wrapper h6 {
        font-size: 18px;
        line-height: 22px;
    }
    .with-content-wrapper a, .with-content-wrapper span {
        text-decoration: none;
        font-size: 20px;
        line-height: 20px;
    }
    .desc-wrapper p.fst-italic.fw-bold, .content-heading p.fst-italic {
        font-size: 18px;
        line-height: 25px;
    }
    .italic-wrapper {
        background-color: #FCFBFA;
        padding: 25px 30px;
    }
       .footer-bottom {
        margin-top: 20px;
    }
    img.footer-logo {
        width: 185px;
    }
    .footer-logo-block .gap {
        column-gap: 15px;
    }
    .footer-logo-block {
        padding-left: 60px !important;
    }
    .f-email {
        padding-left: 45px !important;
    }
    .choos-product h5 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 30px !important;
    }
    .cart-total h2,.my-account h2 {
        font-size: 30px;
        line-height: 45px;
    }
    .cart-total a.button.btn {
        padding: 12px;
        font-size: 16px;
    }
}

@media(max-width:991px){
    #shop-silder .owl-nav{
        top: 10px;
    }
    ul.navbar-nav.ms.right-nav li:nth-last-child(2),
    ul.navbar-nav.ms.right-nav li:not(:nth-last-child(2)){
        margin-left: 0;
        padding-right: 0;
        margin-right: 0;
        padding-left: 0;
    }
    ul.navbar-nav.ms.left-nav li.nav-item,.right-nav li.nav-item {
        padding-left: 0;
    }
    ul.navbar-nav.ms.left-nav li.nav-item {
        padding-right: 0;
    }
    header ul.navbar-nav.ms.left-nav {
        max-width: 100%;
    }
   .cart-table {
        padding: 60px 0 60px 0;
    }
    .start-50 {
        left: 15px !important;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon {
        background: url('../images/toggle.svg') no-repeat;
        background-size: contain; width: 27px; height: 27px;
        background-repeat: no-repeat; background-position: center;
    }
    .navbar-toggler .navbar-toggler-icon {
        background: url('../images/close.svg') no-repeat;
        background-repeat: no-repeat;background-position: center;
        background-size: contain; width: 27px; height: 27px;
    }
    button.navbar-toggler:focus,.button.navbar-toggler.collapsed:focus{
        outline: 0;box-shadow: none;
    }
    button.navbar-toggler,.button.navbar-toggler.collapsed{
       border: 0;
    }
    header .navbar-brand{
        margin-left: 0px; max-width: 120px;
    }
    header .navbar-brand img{ max-width: 105%; }
    ul.navbar-nav.ms.left-nav, ul.navbar-nav.ms.right-nav{
        margin-left: 0;
    }
     header .navbar-collapse, header .navbar-collapse.show {
        background-color: var(--primary-color);
        max-width: calc(100% - 22px);
        top: calc(100% + 25px);
        border-radius: 0 0 15px 15px;
        padding-bottom: 14px;
        padding-top: 12px;
    }
    header .navbar{ padding: 0; }
    .navbar-collapse {
        position: absolute;
        content: '';
        width: 97.5%;
        background: aliceblue;
        border-radius: 0px;

    }
    ul.navbar-nav.ms.right-nav li:nth-child(1){
        margin-right: 0;
    }
    ul.navbar-nav.ms.right-nav {
        position: relative;
        max-width: 100%;
    }
    ul.navbar-nav.ms.left-nav {
        position: relative;
        z-index: 99;
    }
   button.navbar-toggler {
    margin-left: 25px;
    padding-right: 5px;
    }
    .right-nav .line-item:before {
        display: none;
    }
    header {
        padding: 25px 0;
    }
    ul.navbar-nav.ms.right-nav {
        margin-right: 0px;
    }
   .navbar-collapse .nav-item a.nav-link {
       padding: 8px 0px 8px 20px !important;
    }
   /* .navbar-collapse .nav-item a.nav-link:last-child {
        padding: 0px !important;
    }*/
    .navbar-collapse .nav-item a.nav-link:hover{
/*    background-color: #000;*/
    color: #fff !important;
    }
    header ul.navbar-nav li.nav-item a,header ul.navbar-nav li.nav-item a.active{
        color: #fff !important;
    }
    h1 {
        font-size: 45px;
        line-height: 55px;
    }

    .category .cate-icon-box {
        margin-bottom: 30px;
    }
    .category .cate-icon-box img {
        width: 9% !important;
    }
   p,a.footer-link{
    font-size: 15px;
    line-height: 26px;
   }
    .category{
        padding-bottom: 0 !important;
    }
    .f-icon.d-flex.gap.list-unstyled.mt-5 {
        column-gap: 20px;
    }

    .wel-contenr-wrapper {
        padding-left: 15px;
    }
    .abt-contenr-wrapper {
        padding-right: 15px;
    }
    .blogs .blog-content-wrapper {
        padding: 20px 15px;
    }
    .content-heading .col-12 {
        padding: 0 15px;
    }
    .footer-item figure.f-figure:before {
        left: 34px;
    }
    .f-contact-box .gap {
        column-gap: 30px;
    }
    .footer-bottom {
        margin-top: 40px;
    }
    .shop-category button {
        font-size: 16px;
        line-height: 24px;
   }
   .get-in-touch-main input.form-control {
       height: 55px;
    }

   figure.dishes {
        /*margin-bottom: -6px;*/
    }

}
@media(max-width:880px){
    .contact .with-us {
        padding-top: 40px;
        padding-left: 62px;
    }
    .italic-wrapper {
    background-color: #FCFBFA;
    padding: 25px 20px;
    }
    .footer-logo-block {
        padding-left: 45px !important;
    }
    .f-email {
        padding-left: 25px !important;
    }
    p.open-sans {
        line-height: 22px;
        font-size: 12px;
    }
    .email-form {
        padding: 5px;
    }
}
@media(max-width: 879px){
    .banner {
       padding-top: 85px;
       padding-bottom: 85px;
    }
    .banner-wrapper br {
        display: none;
    }
    .wel-img-box:before, .abt-img-box:after {
        width: 250px;
        height: 280px;
    }
}
@media(max-width: 767px){
    .welcome {
        padding-top: 80px;
        padding-bottom: 50px;
    }
   #shop-silder .owl-nav {
        top: -65px;
        left: 0px;
        width: calc(100% + 0px) !important;
        justify-content: end;
    }
    .shop-box {
        padding: 0 10px;
    }
   .shop-category {
        padding-top: 90px;
    }
    button#adt-btn,.add-to-cart-box .input-box .input,.product-form-price .price-tag,
    .add-to-cart-box .input-box,.my-account .ship-box,.my-account .bil-box{
        width: 100% ;
        max-width: 100%;
    }
    .shop-banner {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    #shop-silder{
        margin-top: 20px;
    }

    .with-us h2, .f-50 {
    font-size: 28px;
    }
    .with-content-wrapper a,.payment-method-section .text-wrapper h4{
        font-size: 18px;
    }
    .product-items span {
        background-size: contain !important;
        background-repeat: no-repeat !important;
    }
    .with-content-wrapper h6 {
    font-size: 16px;
    line-height: 18px;
    }
    .product-items .main-img {
        width: 100%;
        height: 100%;
        min-height: 380px;
        background-size: contain;
        background-repeat: no-repeat
    }

    .navbar-toggler.collapsed .navbar-toggler-icon,.navbar-toggler .navbar-toggler-icon,
    header a.position-relative.d-lg-none img {
        width: 21px;
        height: 21px;
    }
    .cart-991 {
        top: 1px !important;
        font-size: 10px;
        padding: 3px 5px;
        left: 21px !important;
    }
    button.navbar-toggler {
        margin-left: 15px;
    }
    a.navbar-brand img {
        width: 113px;
    }
    .navbar-collapse .nav-item a.nav-link {
       padding: 10px 0px 10px 20px !important;
    }
    header ul.navbar-nav li.nav-item a{
        line-height: 17px;
    }
    header .navbar-collapse, header .navbar-collapse.show {
       top: calc(100% + 25px);
    }
    .banner-wrapper br {
        display: none;
    }
    h1 {
        font-size: 38px;
        line-height: 50px;
        word-wrap: break-word;
    }
    h2 {
        font-size: 28px;
        line-height: 35px;
    }
    .banner {
        padding-top: 88px;
        padding-bottom: 88px;
    }
    .f-icon {
        margin: 30px 0;
    }
    .wel-contenr-wrapper {
        padding-left: 0px;
    }
    .abt-contenr-wrapper {
        padding-right: 0px;
        margin-top: 60px;
    }
    .category .cate-icon-box img {
        width: 10% !important;
    }
    .wel-img-box img {
        width: 100%;
        margin-bottom: 40px;
    }
    .contact .with-us {
        padding-top: 40px;
        padding-bottom: 50px;
        padding-left: 0;
        text-align: center;
    }
    .get-in-touch-main input.form-control {
        height: 52px;
    }
    .get-in-touch-main input.form-control, textarea.form-control{
        margin-bottom: 15px;
        font-size: 15px;
    }
    textarea.form-control {
        height: 200px;
    }
    button#submit {
        padding: 11px 100px;
    }
    .footer-logo-block,.f-email {
        padding: 0px !important;
    }
    footer {
       padding-top: 40px;
    }

    .icon-content p.fw-normal {
        margin-top: 0;
    }
    .cart-table .tabel-cart-box td.pro_thumb {
        width: 100%;
        min-width: 100%;
    }
    .cart-table .tabel-cart-box {
        border-left: 20px solid #f8f9fa;
        border-right: 20px solid #f8f9fa;
    }
    .cart-table .product-details tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #e3e3e3;
        padding: 30px 0;
    }
    .cart-table .product-details td {
        padding: 0px 0px 0px 0;
        display: block;
        border: 0;
    }
    .cart-table .pro_thumb a {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 15px;
        margin-top: -20px;
    }
    .delivery-btn .btn-primary, .delivery-btn .btn-primary-outline {
        width: 100% !important;
    }
    .price-order.font-24 {
    font-size: 20px;
    line-height: 23px;
    }
    .order-sumry h5.sumry-title{
        font-size: 16px;
    }
    .payment-method-form{
        display: block !important;
    }
    .pe-sm-2,.ps-sm-2 {
        padding: 0 !important;
    }
    .payment-method-form .input-container {
        width: 100%;
    }
    .payment-method-form .radio-tile-group{
        flex-direction: column !important;
        row-gap: 30px !important;
    }
    .cart-total h2, .my-account h2 {
        font-size: 23px;
        line-height: 35px;
    }
   button#submit,.cart-total a.button.btn {
        font-size: 15px !important;
    }

    table.table.account-table thead tr {
        text-wrap: nowrap;
    }
    .pro-quantity {
        margin: 0 auto;
    }
    .cart-total a.button.btn {
        padding: 5px 15px;
        font-size: 16px;
    }
    .wel-img-box:before, .abt-img-box:after {
        width: 351px;
        height: 355px;
    }
}
@media(max-width: 680px){
    .my-account .tab-scroll {
        overflow: scroll !important;
    }
    .account-table tbody td{
        text-wrap: nowrap;
    }

}
@media(max-width:575px){
    .banner {
        padding-bottom: 60px;
        padding-top: 60px;
    }
    .banner-wrapper {
        max-width: 330px;
        width: 100%;
    }
    .product-items .images {
        column-gap: 5px;
    }
    a#shop_btn {
        margin-top: 10px;
    }
    .category .cate-icon-box img {
        width: 6% !important;
    }
   .shop-banner {
        background-position: center right -150px;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .product-items .images img {
        width: 55px;
        height: 55px;
    }
    .product-items .main-img {
        min-height: 300px;
    }
    .delicious h2.price.text-end,.delic-wrapper {
        text-align: center !important;
    }
    .product-details td.close-btn-wrapper {
        order: -1 !important;
    }
    .cart-total {
        background-color: #000;
        padding: 30px 20px 50px 20px;
    }
    .price-block{
        display: block !important;
    }
    .visa-icon figure.figure:after {
        right: -25%;
        top: -24px;
    }
    button#submit {
        padding: 8px 30px;
    }
    .wel-img-box:before, .abt-img-box:after {
       width: 300px;
       height: 325px;
    }
}
@media(max-width: 480px){
    .shop-banner {
    background-position: center right -280px;
}
.wel-img-box:before, .abt-img-box:after {
       width: 250px;
       height: 280px;
    }
}
@media(max-width: 399px){
    .wel-img-box:before, .abt-img-box:after {
        width: 200px;
        height: 230px;
    }
}
@media(max-width: 360px){
    a.page-link.quantity {
        padding: 11px 15px;
    }
    ul.pagination a {
        font-size: 18px;
        line-height: 16px;
    }
    a.back-arrow, a.next-arrow{
        background-size: 85% !important;
    }
  .wel-img-box:before, .abt-img-box:after {
    width: 170px;
    height: 190px;
}
}
/* -------------------------------------------------------------------------- */
/* ------------------------------- Zaia Shop -------------------------------- */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.shop_hero {
    padding: 64px 0 34px;
    background-color: var(--pure-white);
}

.shop_hero_content {
    max-width: 760px;
}

.shop_hero_title {
    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: var(--dark-color);
}

.shop_hero_text {
    max-width: 670px;

    margin: 18px 0 0;

    font-size: 18px;
    line-height: 1.65;

    color: var(--muted-color);
}


/* -------------------------------------------------------------------------- */
/* Small Benefits                                                             */
/* -------------------------------------------------------------------------- */

.shop_benefits {
    background-color: var(--pure-white);
}

.shop_benefits_inner {
    padding: 20px 0 24px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px 42px;

    border-top: 1px solid var(--border-color);
}

.shop_benefit {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--muted-color);
}

.shop_benefit_dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: var(--accent-color);
}


/* -------------------------------------------------------------------------- */
/* Catalog                                                                    */
/* -------------------------------------------------------------------------- */

.shop_catalog_section {
    padding: 28px 0 88px;

    background-color: var(--pure-white);
}


/* -------------------------------------------------------------------------- */
/* Category Navigation                                                        */
/* -------------------------------------------------------------------------- */

.shop_category_navigation {
    position: relative;

    margin-bottom: 56px;

    padding: 15px 52px;

    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}


/* altes Shop-/Owl-CSS überschreiben */

#shop-silder {
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}

#shop-silder .item {
    display: flex;
    justify-content: center;
}

#shop-silder .nav-item {
    width: 100%;

    list-style: none;
}


/* -------------------------------------------------------------------------- */
/* Category Buttons                                                           */
/* -------------------------------------------------------------------------- */

#shop-silder .shop_category_button {
    position: relative;

    width: auto;

    margin: 0 auto;
    padding: 10px 4px 12px;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--muted-color) !important;

    white-space: nowrap;

    box-shadow: none !important;

    transition: color 0.2s ease;
}

#shop-silder .shop_category_button::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 1px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background-color: var(--accent-color);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

#shop-silder .shop_category_button:hover {
    color: var(--dark-color) !important;
}

#shop-silder .shop_category_button.active {
    color: var(--dark-color) !important;
}

#shop-silder .shop_category_button.active::after {
    width: 100%;
}

#shop-silder .shop_category_button:focus,
#shop-silder .shop_category_button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


/* -------------------------------------------------------------------------- */
/* Owl Navigation                                                             */
/* -------------------------------------------------------------------------- */

#shop-silder .owl-nav {
    position: absolute !important;

    top: 50% !important;
    left: -44px !important;
    right: -44px !important;

    width: auto !important;

    margin: 0 !important;

    display: flex !important;
    justify-content: space-between !important;

    pointer-events: none;

    transform: translateY(-50%);

    z-index: 3;
}

#shop-silder .owl-nav button {
    width: 36px !important;
    height: 36px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color) !important;
    border-radius: 50% !important;

    background: var(--pure-white) !important;

    color: var(--dark-color) !important;

    pointer-events: auto;

    box-shadow: none !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#shop-silder .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;

    color: var(--pure-white) !important;
}

#shop-silder .owl-nav button span {
    margin: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px !important;
    line-height: 1 !important;

    color: inherit !important;
}


/* -------------------------------------------------------------------------- */
/* Tabs                                                                       */
/* -------------------------------------------------------------------------- */

.shop_tab_content {
    width: 100%;
}

.shop_tab_content > .tab-pane {
    width: 100%;
}


/* -------------------------------------------------------------------------- */
/* Category Header                                                            */
/* -------------------------------------------------------------------------- */

.shop_category_header {
    margin-bottom: 28px;

    display: flex;
    align-items: baseline;

    gap: 14px;
}

.shop_category_title {
    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;

    letter-spacing: -0.025em;

    color: var(--dark-color);
}

.shop_category_count {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--muted-color);
}


/* -------------------------------------------------------------------------- */
/* Product Grid                                                               */
/* -------------------------------------------------------------------------- */

.shop_products_grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 42px 26px;
}


/* -------------------------------------------------------------------------- */
/* Product Card                                                               */
/* -------------------------------------------------------------------------- */

.shop_product_card {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* -------------------------------------------------------------------------- */
/* Product Image                                                              */
/* -------------------------------------------------------------------------- */

.shop_product_media {
    position: relative;

    width: 100%;

    display: block;

    overflow: hidden;

    aspect-ratio: 5 / 4;

    border-radius: 18px;

    background-color: var(--cream-color);

    color: inherit !important;
    text-decoration: none !important;

    isolation: isolate;
}

.shop_product_media:visited,
.shop_product_media:focus {
    color: inherit !important;
    text-decoration: none !important;
}

.shop_product_media:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.shop_product_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}

.shop_product_media:hover .shop_product_image {
    transform: scale(1.025);
}


/* -------------------------------------------------------------------------- */
/* Product Arrow                                                              */
/* -------------------------------------------------------------------------- */

.shop_product_arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.94);

    color: var(--primary-color);

    box-shadow: 0 4px 16px rgba(22, 35, 29, 0.07);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.shop_product_arrow svg {
    width: 19px;
    height: 19px;

    display: block;
}

.shop_product_media:hover .shop_product_arrow {
    background-color: var(--accent-color);

    color: var(--pure-white);

    transform: translateX(3px);
}


/* -------------------------------------------------------------------------- */
/* Product Information                                                        */
/* -------------------------------------------------------------------------- */

.shop_product_content {
    width: 100%;
    padding: 16px 3px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop_product_title {
    width: 100%;

    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.32;
    font-weight: 600;

    letter-spacing: -0.025em;

    color: var(--dark-color);
}

.shop_product_price {
    margin-top: 3px;

    display: inline-block;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--accent-color);
}


/* -------------------------------------------------------------------------- */
/* Empty                                                                      */
/* -------------------------------------------------------------------------- */

.shop_empty {
    width: 100%;

    padding: 50px 0;

    text-align: center;
}

.shop_empty p {
    margin: 0;
}


/* -------------------------------------------------------------------------- */
/* Shop Catering CTA                                                          */
/* -------------------------------------------------------------------------- */

.shop_catering_cta {
    padding: 0 0 86px;

    background-color: var(--pure-white);
}

.shop_catering_cta_card {
    position: relative;

    overflow: hidden;

    padding: 58px 64px;

    border-radius: 22px;

    background-color: var(--primary-color);
}

.shop_catering_cta_content {
    max-width: 830px;
}

.shop_catering_cta_label {
    display: block;

    margin-bottom: 12px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--accent-color-light);
}

.shop_catering_cta_title {
    max-width: 760px;

    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.035em;

    color: var(--pure-white) !important;
}

.shop_catering_cta_text {
    max-width: 720px;

    margin: 18px 0 28px;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.76);
}

.shop_catering_cta .btn_primary_fill {
    margin: 0;

    background-color: var(--accent-color);
    border-color: var(--accent-color);

    color: var(--pure-white) !important;
}

.shop_catering_cta .btn_primary_fill:hover {
    background-color: var(--accent-color-dark);
    border-color: var(--accent-color-dark);

    color: var(--pure-white) !important;
}

.product_detail_actions {
    width: 320px;
    max-width: 100%;

    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.product_detail_cart_jump,
.product_detail_info_link {
    width: 100%;
    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    box-sizing: border-box;

    border-radius: 9px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none !important;

    cursor: pointer;
}

.product_detail_cart_jump svg,
.product_detail_info_link svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}


/* Hauptaktion */

.product_detail_cart_jump {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);

    color: var(--pure-white) !important;
}

.product_detail_cart_jump:hover {
    background-color: var(--accent-color-dark);
    border-color: var(--accent-color-dark);

    color: var(--pure-white) !important;
}


/* Sekundäre Aktion */

.product_detail_info_link {
    background-color: transparent;

    border: 1px solid var(--border-color);

    color: var(--primary-color) !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.product_detail_info_link:hover {
    background-color: var(--cream-color);

    border-color: var(--primary-color);

    color: var(--primary-color) !important;
}


/* Pfeile */

.product_detail_cart_jump:hover svg,
.product_detail_info_link:hover svg {
    transform: translateY(3px);
}

@media (max-width: 767px) {
    .product_detail_actions {
        align-items: stretch;
    }

    .product_detail_cart_jump {
        width: 100%;
        justify-content: center;
    }

    .product_detail_info_link {
        width: fit-content;
    }
}

/* -------------------------------------------------------------------------- */
/* Tablet                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .shop_hero {
        padding-top: 54px;
    }

    .shop_hero_title {
        font-size: 46px;
    }

    .shop_category_navigation {
        padding-left: 48px;
        padding-right: 48px;
    }

    .shop_products_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 42px 22px;
    }

    .shop_catering_cta_card {
        padding: 50px 44px;
    }

    .shop_catering_cta_title {
        font-size: 38px;
    }
    
    header .navbar-collapse .nav-item a.nav-link:hover,
    header .navbar-collapse .nav-item a.nav-link.active {
        color: var(--accent-color-light) !important;
    }

    header .left-nav .nav-link.active::after,
    header .right-nav .nav-item:not(.line-item):not(.cart-box) .nav-link.active::after {
        display: none;
    }

}


/* -------------------------------------------------------------------------- */
/* Mobile                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {

    .shop_hero {
        padding: 44px 0 28px;
    }

    .shop_hero_title {
        font-size: 38px;
    }

    .shop_hero_text {
        margin-top: 14px;

        font-size: 16px;
    }

    .shop_benefits_inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;

        padding: 18px 0 20px;
    }

    .shop_catalog_section {
        padding-top: 20px;
        padding-bottom: 64px;
    }

    .shop_category_navigation {
        margin-bottom: 40px;

        padding: 12px 42px;
    }

    #shop-silder .owl-nav {
        top: 50% !important;
        left: -36px !important;
        right: -36px !important;

        justify-content: space-between !important;
    }

    #shop-silder .owl-nav button {
        width: 32px !important;
        height: 32px !important;
    }

    #shop-silder .shop_category_button {
        font-size: 13px;
    }

    .shop_category_header {
        margin-bottom: 22px;
    }

    .shop_category_title {
        font-size: 30px;
    }

    .shop_products_grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .shop_product_media {
        border-radius: 16px;
    }

    .shop_product_content {
        padding-top: 14px;
    }

    .shop_product_title {
        min-height: 0;

        font-size: 20px;
    }

    .shop_product_price {
        margin-top: 6px;
    }

    .shop_catering_cta {
        padding-bottom: 60px;
    }

    .shop_catering_cta_card {
        padding: 38px 24px;

        border-radius: 18px;
    }

    .shop_catering_cta_title {
        font-size: 32px;
    }

    .shop_catering_cta_text {
        margin-top: 15px;
        margin-bottom: 24px;

        font-size: 16px;
    }

}


/* -------------------------------------------------------------------------- */
/* Small Mobile                                                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 430px) {

    .shop_hero_title {
        font-size: 34px;
    }

    .shop_category_navigation {
        padding-left: 36px;
        padding-right: 36px;
    }

    .shop_product_arrow {
        right: 14px;
        bottom: 14px;

        width: 40px;
        height: 40px;
    }

    .shop_catering_cta_title {
        font-size: 29px;
    }

}

/* -------------------------------------------------------------------------- */
/* -------------------------- Zaia Product Detail --------------------------- */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* Main Product                                                               */
/* -------------------------------------------------------------------------- */

.product_detail_section {
    padding: 72px 0 82px;
    border-top: 1px solid var(--border-color);
    background-color: var(--pure-white);
}

.product_detail_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    gap: 72px;
    align-items: center;
}

.product_detail_grid_single {
    grid-template-columns: minmax(0, 760px);
}

.product_detail_media {
    min-width: 0;
}


/* Gallery */

.product_detail_gallery.product-items {
    width: 100%;
    display: block;
}

.product_detail_gallery .product_detail_main_image {
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 20px;

    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;

    box-shadow: none;
}

.product_detail_gallery .bg-img {
    width: 100%;
    height: 100%;
}

.product_detail_thumbnails.images {
    margin-top: 16px;

    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.product_detail_thumbnails.images img {
    width: 76px !important;
    height: 76px;

    margin: 0;
    padding: 0;

    display: block;

    border: 1px solid var(--border-color);
    border-radius: 12px;

    object-fit: cover;

    cursor: pointer;

    opacity: 0.7;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product_detail_thumbnails.images img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.product_detail_thumbnails.images img.active {
    opacity: 1;
    border-color: var(--accent-color);
}


/* -------------------------------------------------------------------------- */
/* Product Information                                                        */
/* -------------------------------------------------------------------------- */

.product_detail_info {
    max-width: 520px;
}

.product_detail_back {
    margin-bottom: 26px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--muted-color) !important;
    text-decoration: none !important;

    transition: color 0.2s ease;
}

.product_detail_back svg {
    width: 17px;
    height: 17px;

    transition: transform 0.2s ease;
}

.product_detail_back:hover {
    color: var(--accent-color) !important;
}

.product_detail_back:hover svg {
    transform: translateX(-3px);
}

.product_detail_title {
    max-width: 520px;

    margin: 0 !important;

    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: var(--dark-color);
}

.product_detail_short_description {
    max-width: 500px;

    margin-top: 22px;
}

.product_detail_short_description,
.product_detail_short_description p {
    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}

.product_detail_short_description p {
    margin: 0 0 12px;
}

.product_detail_short_description p:last-child {
    margin-bottom: 0;
}

.product_detail_price {
    margin-top: 28px;

    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: -0.02em;

    color: var(--accent-color);
}

.product_detail_meta {
    margin-top: 18px;
    padding-top: 18px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    border-top: 1px solid var(--border-color);

    font-size: 13px;
    line-height: 1.6;

    color: var(--muted-color);
}

.product_detail_note {
    margin-top: 26px;

    display: flex;
    align-items: center;
    gap: 11px;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;

    color: var(--primary-color);
}

.product_detail_note span {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: var(--accent-color);
}

/* Product Cart Jump */

.product_detail_cart_jump {
    margin-top: 26px;

    min-width: 210px;

    gap: 9px;
}

.product_detail_cart_jump svg {
    width: 17px;
    height: 17px;

    transition: transform 0.2s ease;
}

.product_detail_cart_jump:hover svg {
    transform: translateY(3px);
}

.product_detail_info_link {
    margin-top: 18px;
}

#warenkorb {
    scroll-margin-top: 30px;
}

/* -------------------------------------------------------------------------- */
/* Product Detail Actions                                                     */
/* -------------------------------------------------------------------------- */

.product_detail_actions {
    width: 270px;

    margin-top: 30px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 10px;
}


/* Primary Action */

.product_detail_cart_jump {
    width: 100%;
    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 9px;

    font-size: 14px;

    text-decoration: none !important;
}

.product_detail_cart_jump svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}

.product_detail_cart_jump:hover svg {
    transform: translateY(3px);
}


/* Secondary Action */

.product_detail_info_link {
    width: 100%;
    min-height: 42px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--primary-color) !important;

    text-decoration: none !important;

    border-radius: 8px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.product_detail_info_link svg {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}

.product_detail_info_link:hover {
    background-color: var(--cream-color);

    color: var(--accent-color) !important;
}

.product_detail_info_link:hover svg {
    transform: translateY(3px);
}

/* -------------------------------------------------------------------------- */
/* General Product Section Label                                              */
/* -------------------------------------------------------------------------- */

.product_section_label {
    display: block;

    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: var(--accent-color);
}


/* -------------------------------------------------------------------------- */
/* Addons                                                                     */
/* -------------------------------------------------------------------------- */

.product_addons_section {
    padding: 74px 0 64px;
    background-color: var(--cream-color);
}

.product_addons_header {
    max-width: 700px;

    margin-bottom: 38px;
}

.product_addons_title {
    margin: 0 !important;

    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.product_addons_description {
    max-width: 600px;

    margin: 14px 0 0;

    font-size: 16px;
    line-height: 1.7;

    color: var(--muted-color);
}


/* Slider */

.product_addons_slider.product-box {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0 46px;
}

.product_addons_slider .product-slider-item {
    padding: 2px 8px 4px;
}

.product_addons_slider .iner-item {
    height: 100%;
    padding: 14px;

    border: 1px solid var(--border-color);
    border-radius: 18px;

    background-color: var(--pure-white);

    cursor: default;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.product_addons_slider .iner-item:hover {
    transform: translateY(-2px);

    border-color: rgba(149, 81, 93, 0.28);

    box-shadow: 0 8px 24px rgba(35, 38, 33, 0.06);
}

.product_addon_image_wrap {
    overflow: hidden;

    aspect-ratio: 1 / 0.82;

    border-radius: 13px;

    background-color: var(--cream-color);
}

.product_addons_slider .product-slider-item img {
    width: 100% !important;
    height: 100% !important;

    margin: 0;

    display: block;

    border: 0 !important;
    border-radius: 0;

    object-fit: cover;
}

.product_addons_slider .product-slider-item img:hover {
    border: 0 !important;
}

.product_addon_content {
    padding: 17px 3px 5px;
    text-align: left !important;
}

.product_addon_content h5.pro-name.mb-0 {
    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;

    color: var(--dark-color);
}

.product_addon_content p.price {
    margin: 7px 0 0;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--accent-color);
}

.product_addons_slider .product_addon_content p.price,
.product_addons_slider .iner-item:hover .product_addon_content p.price {
    color: var(--accent-color) !important;
}

/* Addon Quantity */

.product_addons_slider .pro-quantity {
    position: static;

    width: auto;
    max-width: none;

    margin: 8px 3px 3px;
    padding: 0;

    visibility: visible;

    background: transparent;
}

.product_addons_slider .pro-quantity .number {
    width: 100%;

    display: grid;
    grid-template-columns: 38px 1fr 38px;

    align-items: center;

    overflow: hidden;

    border: 1px solid var(--border-color);
    border-radius: 9px;

    background-color: var(--pure-white);
}

.product_addons_slider .pro-quantity .minus,
.product_addons_slider .pro-quantity .plus {
    width: 38px;
    height: 38px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 0;

    background-color: transparent;

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1;

    color: var(--primary-color);

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

#product-slider .owl-prev,
#product-slider .owl-next {
    cursor: pointer;
}

.product_addons_slider .pro-quantity .minus:hover,
.product_addons_slider .pro-quantity .plus:hover {
    background-color: var(--primary-color);
    color: var(--pure-white);
}

.product_addons_slider .pro-quantity input {
    width: 100%;

    padding: 0;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 38px;
    font-weight: 500;

    color: var(--dark-color);

    background: transparent;
}


/* Selected Addons */

.product_selected_addons.append-text {
    min-height: 0;

    margin: 28px 0 0;
    padding: 22px 0 0;

    border-top: 1px solid var(--border-color);
    border-bottom: 0;
}

.product_selected_addons h4 {
    margin: 0 0 16px !important;

    font-size: 18px;
}

.product_selected_addons ul {
    gap: 12px;
}

.product_selected_addons.append-text p {
    margin: 0;

    padding: 8px 16px;

    border: 1px solid var(--border-color);
    border-radius: 50px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;

    color: var(--dark-color);

    background-color: var(--pure-white);
}


/* -------------------------------------------------------------------------- */
/* Purchase                                                                   */
/* -------------------------------------------------------------------------- */

.product_purchase_section {
    padding: 76px 0 82px;

    background-color: var(--pure-white);
}

.product_purchase_card.add-to-cart-box {
    margin: 0;
    padding: 48px 52px;

    border: 1px solid var(--border-color);
    border-radius: 22px;

    background-color: var(--sage-color);
}

.product_purchase_intro {
    margin-bottom: 34px;
}

.product_purchase_title {
    margin: 0 !important;

    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.03em;

    color: var(--dark-color);
}

.product_purchase_card .payment-method-form {
    padding: 0;
}

.product_purchase_grid {
    display: grid;
    grid-template-columns:
        minmax(160px, 0.8fr)
        minmax(160px, 0.8fr)
        minmax(220px, 1fr)
        minmax(220px, 1fr);

    gap: 20px;

    align-items: end;
}

.product_purchase_field label {
    margin-bottom: 9px;

    display: block;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--muted-color);
}

.product_purchase_field select,
.product_purchase_card .input-box .input {
    width: 100%;
    max-width: none;
    height: 52px;

    margin: 0;
    padding: 0 16px;

    position: static;

    border: 1px solid var(--border-color);
    border-radius: 9px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;

    letter-spacing: 0 !important;

    color: var(--dark-color);

    background-color: var(--pure-white);
}

.product_purchase_card .input-box {
    position: static;

    width: 100%;
    max-width: none;
    height: auto;

    margin: 0;
}

.product_purchase_card .product-form-price .price-tag,
.product_purchase_base_price {
    width: 100%;
    max-width: none;
    min-height: 52px;

    padding: 14px 16px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    border: 1px solid var(--border-color) !important;
    border-radius: 9px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--accent-color);

    background-color: var(--pure-white);
}

.product_price_calculation {
    font-size: 12px;
    font-weight: 500;

    color: var(--muted-color);
}

.product_purchase_submit {
    width: 100%;
}

.product_purchase_card #adt-btn,
.product_purchase_card #adt-btn2 {
    width: 100%;
    max-width: none;
    height: 52px;

    margin: 0;
    padding: 0 20px;

    border: 1px solid var(--accent-color) !important;
    border-radius: 9px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 0;

    color: var(--pure-white);

    background-color: var(--accent-color);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product_purchase_card #adt-btn:hover,
.product_purchase_card #adt-btn2:hover {
    background-color: var(--accent-color-dark);
    border-color: var(--accent-color-dark) !important;

    transform: translateY(-1px);
}

/* Product Info Anchor */

.product_detail_info_link {
    width: fit-content;

    margin-top: 20px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding-bottom: 4px;

    border-bottom: 1px solid rgba(32, 39, 34, 0.22);

    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--primary-color) !important;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.product_detail_info_link svg {
    width: 16px;
    height: 16px;

    transition: transform 0.2s ease;
}

.product_detail_info_link:hover {
    color: var(--accent-color) !important;
    border-color: var(--accent-color);
}

.product_detail_info_link:hover svg {
    transform: translateY(2px);
}
/* -------------------------------------------------------------------------- */
/* Description                                                                */
/* -------------------------------------------------------------------------- */

.product_description_section {
    padding: 58px 0 64px;

    background-color: var(--cream-color);
}

.product_description_grid {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 72px;

    align-items: start;
}


/* Left Side */

.product_description_intro {
    max-width: 350px;
}

.product_description_title {
    margin: 0 !important;

    font-family: 'Poppins', sans-serif;

    font-size: 36px;
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.03em;

    color: var(--dark-color);
}

.product_description_intro_text {
    max-width: 330px;

    margin: 16px 0 0;

    font-family: 'Open sans', sans-serif;

    font-size: 15px;
    line-height: 1.65;

    color: var(--muted-color);
}


/* Right Side / Backend Content */

.product_description_content {
    width: 100%;
    max-width: 650px;

    padding-left: 34px;

    border-left: 1px solid var(--border-color);
}

.product_description_content > *:first-child {
    margin-top: 0 !important;
}

.product_description_content > *:last-child {
    margin-bottom: 0 !important;
}


/* Backend Headings */

.product_description_content h1,
.product_description_content h2,
.product_description_content h3,
.product_description_content h4,
.product_description_content h5,
.product_description_content h6 {
    margin: 0 0 18px !important;

    font-family: 'Poppins', sans-serif;

    font-size: 21px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;

    letter-spacing: -0.02em !important;

    color: var(--dark-color) !important;
}


/* Backend Paragraphs */

.product_description_content p {
    margin: 0 0 12px !important;

    font-family: 'Open sans', sans-serif;

    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;

    color: var(--muted-color) !important;
}


/* Backend Strong Text */

.product_description_content strong,
.product_description_content b {
    font-weight: 600 !important;

    color: var(--dark-color) !important;
}


/* Backend Lists */

.product_description_content ul,
.product_description_content ol {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none;
}

.product_description_content li {
    position: relative;

    margin: 0 0 12px !important;
    padding-left: 21px;

    font-family: 'Open sans', sans-serif;

    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;

    color: var(--dark-color) !important;
}

.product_description_content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.8em;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background-color: var(--accent-color);

    transform: translateY(-50%);
}

.product_description_content li:last-child {
    margin-bottom: 0 !important;
}


/* Remove excessive backend editor spacing */

.product_description_content br + br {
    display: none;
}


/* Tablet */

@media (max-width: 991px) {

    .product_description_grid {
        gap: 46px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .product_description_section {
        padding: 48px 0 54px;
    }

    .product_description_grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .product_description_intro {
        max-width: 520px;
    }

    .product_description_title {
        font-size: 30px;
    }

    .product_description_intro_text {
        margin-top: 12px;
    }

    .product_description_content {
        max-width: none;

        padding-top: 26px;
        padding-left: 0;

        border-top: 1px solid var(--border-color);
        border-left: 0;
    }

    .product_description_content h1,
    .product_description_content h2,
    .product_description_content h3,
    .product_description_content h4,
    .product_description_content h5,
    .product_description_content h6 {
        font-size: 20px !important;
    }

    .product_description_content li {
        font-size: 15px !important;
    }

}

/* ========================================================================== */
/* ======================= FINAL MOBILE FIXES ================================ */
/* ========================================================================== */

/*
 * Dieser Block bleibt vorerst ganz unten.
 * Er überschreibt alte Legacy-Regeln, ohne Desktop kaputtzumachen.
 */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* ========================================================================== */
/* PRODUCT DETAIL - TABLET                                                    */
/* ========================================================================== */

@media (max-width: 991px) {

    /* Hauptprodukt nicht mehr in zwei erzwungenen Spalten */
    .product_detail_grid,
    .product_detail_grid_single {
        width: 100%;
        max-width: 100%;

        grid-template-columns: minmax(0, 1fr);

        gap: 40px;

        align-items: start;
    }

    .product_detail_media,
    .product_detail_info {
        width: 100%;
        max-width: none;
        min-width: 0;
    }


    /* Warenkorb */
    .product_purchase_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product_purchase_field,
    .product_purchase_submit {
        min-width: 0;
    }
}


/* ========================================================================== */
/* PRODUCT DETAIL - MOBILE                                                    */
/* ========================================================================== */

@media (max-width: 767px) {

    /*
     * Allgemein
     */

    .product_detail_section .container,
    .product_addons_section .container,
    .product_purchase_section .container,
    .product_description_section .container {
        width: 100%;
        max-width: 100%;

        padding-left: 18px;
        padding-right: 18px;
    }


    /* ---------------------------------------------------------------------- */
    /* Hauptprodukt                                                           */
    /* ---------------------------------------------------------------------- */

    .product_detail_section {
        width: 100%;

        padding: 32px 0 48px;

        overflow: hidden;
    }

    .product_detail_grid,
    .product_detail_grid_single {
        width: 100%;
        max-width: 100%;

        grid-template-columns: minmax(0, 1fr);

        gap: 28px;
    }

    .product_detail_media,
    .product_detail_info,
    .product_detail_gallery {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* Produktbild */

    .product_detail_gallery .product_detail_main_image {
        width: 100%;
        max-width: 100%;

        min-height: 0 !important;

        aspect-ratio: 1 / 1;

        border-radius: 16px;

        background-size: cover !important;
        background-position: center !important;
    }


    /* Thumbnails */

    .product_detail_thumbnails.images {
        width: 100%;

        margin-top: 10px;

        justify-content: flex-start;

        gap: 8px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
    }

    .product_detail_thumbnails.images::-webkit-scrollbar {
        display: none;
    }

    .product_detail_thumbnails.images img {
        width: 60px !important;
        height: 60px;

        flex: 0 0 60px;

        border-radius: 10px;
    }


    /* ---------------------------------------------------------------------- */
    /* Produktinformationen                                                   */
    /* ---------------------------------------------------------------------- */

    .product_detail_info {
        width: 100%;

        padding: 0;

        overflow: hidden;
    }

    .product_detail_back {
        max-width: 100%;

        margin-bottom: 16px;

        font-size: 12px;

        white-space: normal;
    }

    .product_detail_title {
        width: 100%;
        max-width: 100%;

        font-size: 34px;
        line-height: 1.08;

        letter-spacing: -0.035em;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .product_detail_short_description {
        width: 100%;
        max-width: 100%;

        margin-top: 16px;
    }

    .product_detail_short_description,
    .product_detail_short_description p {
        font-size: 15px;
        line-height: 1.65;

        overflow-wrap: anywhere;
    }

    .product_detail_price {
        margin-top: 20px;

        font-size: 26px;
    }

    .product_detail_meta {
        margin-top: 16px;
        padding-top: 16px;
    }

    .product_detail_note {
        width: 100%;

        margin-top: 18px;

        align-items: flex-start;

        font-size: 12px;
        line-height: 1.5;
    }


    /* ---------------------------------------------------------------------- */
    /* Produkt Buttons                                                        */
    /* ---------------------------------------------------------------------- */

    .product_detail_actions {
        width: 100%;
        max-width: 100%;

        margin-top: 24px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 9px;
    }

    .product_detail_cart_jump,
    .product_detail_info_link {
        width: 100% !important;
        max-width: 100%;

        min-width: 0 !important;
        min-height: 52px;

        margin: 0 !important;

        justify-content: center;

        box-sizing: border-box;
    }

    .product_detail_info_link {
        padding: 0 18px;

        border: 1px solid var(--border-color);
        border-radius: 9px;

        background-color: transparent;
    }


    /* ---------------------------------------------------------------------- */
    /* Addons                                                                 */
    /* ---------------------------------------------------------------------- */

    .product_addons_section {
        width: 100%;

        padding: 50px 0 52px;

        overflow: hidden;
    }

    .product_addons_header {
        width: 100%;
        max-width: 100%;

        margin-bottom: 26px;
    }

    .product_addons_title {
        font-size: 30px;
        line-height: 1.12;
    }

    .product_addons_description {
        margin-top: 10px;

        font-size: 15px;
        line-height: 1.6;
    }


    /* Owl Slider darf nicht breiter als Handy werden */

    .product_addons_slider.product-box {
        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 0 !important;
    }

    #product-slider {
        width: 100%;
        max-width: 100%;

        margin: 0;
    }

    #product-slider .owl-stage-outer {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .product_addons_slider .product-slider-item {
        padding: 2px 0 4px;
    }


    /* Addon Card */

    .product_addons_slider .iner-item {
        width: 100%;
        max-width: 100%;

        padding: 12px;

        border-radius: 15px;
    }

    .product_addon_image_wrap {
        border-radius: 11px;
    }

    .product_addon_content {
        padding: 14px 2px 4px;
    }

    .product_addon_content h5.pro-name.mb-0 {
        font-size: 16px;
    }

    .product_addon_content p.price {
        font-size: 14px;
    }


    /* Addon +/- */

    .product_addons_slider .pro-quantity {
        width: 100%;

        margin: 8px 0 0;
    }


    /*
     * Sliderpfeile NICHT mehr außerhalb des Viewports.
     * Dadurch verschwindet eine weitere Ursache für horizontalen Scroll.
     */

    #product-slider .owl-nav button.owl-prev {
        left: 10px !important;
    }

    #product-slider .owl-nav button.owl-next {
        right: 10px !important;
    }

    #product-slider .owl-nav button.owl-prev,
    #product-slider .owl-nav button.owl-next {
        top: 38% !important;

        width: 36px !important;
        height: 36px !important;

        border: 1px solid var(--border-color) !important;
        border-radius: 50% !important;

        background-color: rgba(255, 255, 255, 0.94) !important;
        background-position: center !important;
        background-size: 18px auto !important;

        box-shadow: 0 4px 14px rgba(32, 39, 34, 0.08);
    }


    /* ---------------------------------------------------------------------- */
    /* Gewählte Addons                                                        */
    /* ---------------------------------------------------------------------- */

    .product_selected_addons.append-text {
        width: 100%;

        margin-top: 24px;
        padding-top: 20px;
    }

    .product_selected_addons ul {
        width: 100%;

        gap: 10px;
    }

    .product_selected_addons.append-text p {
        max-width: 100%;

        font-size: 12px;

        overflow-wrap: anywhere;
    }


    /* ---------------------------------------------------------------------- */
    /* Warenkorb                                                              */
    /* ---------------------------------------------------------------------- */

    .product_purchase_section {
        width: 100%;

        padding: 50px 0 56px;

        overflow: hidden;
    }

    .product_purchase_card.add-to-cart-box {
        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 28px 18px;

        border-radius: 16px;
    }

    .product_purchase_intro {
        margin-bottom: 24px;
    }

    .product_purchase_title {
        font-size: 30px;
        line-height: 1.15;
    }

    .product_purchase_grid {
        width: 100%;

        grid-template-columns: minmax(0, 1fr);

        gap: 15px;
    }

    .product_purchase_field,
    .product_purchase_submit,
    .product-form-price {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .product_purchase_field select,
    .product_purchase_card .input-box,
    .product_purchase_card .input-box .input,
    .product_purchase_card .product-form-price .price-tag,
    .product_purchase_base_price,
    .product_purchase_card #adt-btn,
    .product_purchase_card #adt-btn2 {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box;
    }

    .product_purchase_card #adt-btn,
    .product_purchase_card #adt-btn2 {
        min-height: 52px;
    }


    /* ---------------------------------------------------------------------- */
    /* Beschreibung / Allergene                                               */
    /* ---------------------------------------------------------------------- */

    .product_description_section {
        width: 100%;

        padding: 48px 0 52px;

        overflow: hidden;
    }

    .product_description_grid {
        width: 100%;

        grid-template-columns: minmax(0, 1fr);

        gap: 26px;
    }

    .product_description_intro,
    .product_description_content {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .product_description_title {
        font-size: 30px;
        line-height: 1.12;
    }

    .product_description_intro_text {
        font-size: 15px;
    }

    .product_description_content {
        padding-top: 24px;
        padding-left: 0;

        border-top: 1px solid var(--border-color);
        border-left: 0;
    }

    .product_description_content h1,
    .product_description_content h2,
    .product_description_content h3,
    .product_description_content h4,
    .product_description_content h5,
    .product_description_content h6 {
        font-size: 20px !important;

        overflow-wrap: anywhere;
    }

    .product_description_content p,
    .product_description_content li {
        font-size: 15px !important;

        overflow-wrap: anywhere;
    }


    /* ---------------------------------------------------------------------- */
    /* Related Products - falls vorhanden                                     */
    /* ---------------------------------------------------------------------- */

    .you-my {
        padding: 48px 0;
        overflow: hidden;
    }

    .you-my h2 {
        font-size: 30px;
        line-height: 1.15;
    }
}


/* ========================================================================== */
/* VERY SMALL MOBILE                                                          */
/* ========================================================================== */

@media (max-width: 430px) {

    .product_detail_section .container,
    .product_addons_section .container,
    .product_purchase_section .container,
    .product_description_section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product_detail_title {
        font-size: 31px;
    }

    .product_addons_title,
    .product_purchase_title,
    .product_description_title {
        font-size: 28px;
    }

    .product_detail_actions {
        margin-top: 22px;
    }
}


/* ========================================================================== */
/* HERO - FINAL MOBILE OVERRIDE                                               */
/* ========================================================================== */

@media (max-width: 767px) {

    .hero_section,
    .hero_section_hero,
    .hero_section_home {
        width: 100%;
        max-width: 100%;

        height: auto !important;
        min-height: 460px !important;

        overflow: hidden;

        display: flex;
        align-items: center;

        background-size: cover;
        background-position: center;
    }

    .hero_section_small {
        height: auto !important;
        min-height: 300px !important;
    }

    .hero_overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.46) 0%,
                rgba(0, 0, 0, 0.28) 65%,
                rgba(0, 0, 0, 0.18) 100%
            );
    }

    .hero_content {
        width: 100%;
        max-width: 100%;

        padding: 52px 0 !important;
    }

    .hero_title {
        width: 100%;
        max-width: 100%;

        font-size: 36px !important;
        line-height: 1.08;

        overflow-wrap: anywhere;
    }

    .hero_description,
    .hero_description p {
        width: 100%;
        max-width: 100%;

        margin-top: 15px;

        font-size: 16px !important;
        line-height: 1.55;
    }

    .hero_buttons {
        width: 100%;

        margin-top: 22px;

        display: flex;
        flex-direction: column;

        gap: 10px;
    }

    .hero_buttons .btn_primary_fill,
    .hero_buttons .btn_white_outline {
        width: 100%;

        min-height: 50px;

        margin: 0;
    }
}


@media (max-width: 430px) {

    .hero_section,
    .hero_section_hero,
    .hero_section_home {
        min-height: 420px !important;
    }

    .hero_section_small {
        min-height: 260px !important;
    }

    .hero_content {
        padding: 44px 0 !important;
    }

    .hero_title {
        font-size: 32px !important;
    }
}

/* ========================================================================== */
/* FINAL NAVBAR FIX                                                           */
/* ========================================================================== */


/* -------------------------------------------------------------------------- */
/* Desktop                                                                    */
/* -------------------------------------------------------------------------- */

@media (min-width: 992px) {

    header ul.navbar-nav li.nav-item a {
        width: fit-content;
        font-weight: 600;
    }


    /* Aktive Seite */

    header .left-nav .nav-link.active::after,
    header .right-nav .nav-item:not(.line-item):not(.cart-box) .nav-link.active::after {
        left: 50%;
        bottom: -8px;

        width: 28px;
        height: 2px;

        transform: translateX(-50%);

        border-radius: 10px;

        background-color: var(--accent-color);
    }

}


/* -------------------------------------------------------------------------- */
/* Mobile / Tablet                                                            */
/* -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    /* Header */

    header {
        position: relative;
        z-index: 1000;

        padding: 16px 0;

        background-color: var(--pure-white);
    }

    header .navbar {
        position: relative;

        padding: 0;
    }


    /* Logo */

    header .navbar-brand {
        max-width: 120px;

        margin: 0 !important;
        padding: 0;
    }

    header .navbar-brand img {
        width: 110px;
        max-width: 100%;

        display: block;
    }


    /* Dropdown */

    header .navbar-collapse,
    header .navbar-collapse.show {
        position: absolute !important;

        top: calc(100% + 16px) !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 14px 0 16px !important;

        overflow: hidden;

        border-radius: 0 0 16px 16px;

        background-color: var(--primary-color) !important;

        box-shadow: 0 14px 28px rgba(32, 54, 45, 0.16);

        z-index: 9999;
    }


    /* Nav Listen */

    header .navbar-collapse .navbar-nav,
    header ul.navbar-nav.ms.left-nav,
    header ul.navbar-nav.ms.right-nav {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }


    /* Nav Items */

    header .navbar-collapse .nav-item,
    header ul.navbar-nav.ms.left-nav li.nav-item,
    header ul.navbar-nav.ms.right-nav li.nav-item {
        width: 100% !important;
        flex: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* Links */

    header .navbar-collapse .nav-item a.nav-link {
        width: 100% !important;

        padding: 12px 20px !important;

        display: block;

        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 600;

        color: var(--pure-white) !important;

        text-decoration: none;

        transition:
            background-color 0.2s ease,
            color 0.2s ease;
    }


    /* Hover + aktiv */

    header .navbar-collapse .nav-item a.nav-link:hover,
    header .navbar-collapse .nav-item a.nav-link.active {
        color: var(--accent-color-light) !important;

        background-color: rgba(255, 255, 255, 0.06);
    }


    /* Desktop Active Line auf Mobile weg */

    header .left-nav .nav-link.active::after,
    header .right-nav .nav-item:not(.line-item):not(.cart-box) .nav-link.active::after {
        display: none !important;
    }


    /* Alte Trennlinie weg */

    header .right-nav .line-item::before {
        display: none !important;
    }


    /* Mobile Button */

    button.navbar-toggler {
        margin-left: 14px;
        padding: 4px;

        border: 0;

        box-shadow: none !important;
    }

}


/* -------------------------------------------------------------------------- */
/* Small Mobile                                                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 430px) {

    header {
        padding: 14px 0;
    }

    header .navbar-brand img {
        width: 96px;
    }

    header .navbar-collapse,
    header .navbar-collapse.show {
        top: calc(100% + 14px) !important;

        border-radius: 0 0 14px 14px;
    }

    header .navbar-collapse .nav-item a.nav-link {
        padding: 11px 18px !important;

        font-size: 14px;
    }

}

/* -------------------------------------------------------------------------- */
/* ---------------------------- Zaia Auth / Account ------------------------- */
/* -------------------------------------------------------------------------- */


/* ========================================================================== */
/* Login                                                                      */
/* ========================================================================== */

.auth_section {
    padding: 82px 0 94px;
    background-color: var(--pure-white);
}

.auth_layout {
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.7fr);

    gap: 100px;

    align-items: center;
}


/* Intro */

.auth_intro {
    max-width: 500px;
}

.auth_label,
.account_page_label,
.account_panel_label,
.account_sidebar_label {
    display: block;

    margin-bottom: 12px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--accent-color);
}

.auth_title {
    margin: 0 !important;

    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: var(--dark-color);
}

.auth_description {
    max-width: 470px;

    margin: 20px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted-color);
}


/* Login Card */

.auth_card {
    padding: 42px;

    border: 1px solid var(--border-color);
    border-radius: 20px;

    background-color: var(--cream-color);
}

.auth_card_header {
    margin-bottom: 30px;
}

.auth_card_header h2 {
    margin: 0 !important;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.auth_card_header p {
    margin: 9px 0 0;

    font-size: 15px;
    line-height: 1.6;
}


/* Fields */

.auth_form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.auth_field label {
    display: block;

    margin-bottom: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--dark-color);
}

.auth_field input {
    width: 100%;
    height: 54px;

    padding: 0 16px;

    border: 1px solid var(--border-color);
    border-radius: 9px;

    outline: none;

    font-family: 'Open sans', sans-serif;
    font-size: 15px;

    color: var(--dark-color);

    background-color: var(--pure-white);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.auth_field input:focus {
    border-color: var(--primary-color);

    box-shadow: 0 0 0 3px rgba(47, 74, 63, 0.08);
}


/* Login Button */

.auth_submit#submit {
    width: 100%;
    height: 54px;

    margin: 6px 0 0 !important;
    padding: 0 24px !important;

    border: 1px solid var(--accent-color) !important;
    border-radius: 9px !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    color: var(--pure-white) !important;

    background-color: var(--accent-color) !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.auth_submit#submit:hover {
    background-color: var(--accent-color-dark) !important;
    border-color: var(--accent-color-dark) !important;

    transform: translateY(-1px);
}


/* Login Error */

.auth_alert {
    margin-bottom: 22px;
    padding: 13px 15px;

    border-radius: 8px;

    font-size: 14px;
    line-height: 1.5;
}

.auth_alert_error {
    border: 1px solid rgba(149, 81, 93, 0.25);

    color: var(--accent-color-dark);

    background-color: rgba(149, 81, 93, 0.08);
}


/* Register */

.auth_register {
    margin-top: 25px;
    padding-top: 22px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 6px;

    border-top: 1px solid var(--border-color);

    font-size: 13px;

    color: var(--muted-color);
}

.auth_register a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;

    color: var(--primary-color) !important;

    text-decoration: none !important;
}

.auth_register a:hover {
    color: var(--accent-color) !important;
}


/* ========================================================================== */
/* Account                                                                    */
/* ========================================================================== */

.account_page_section {
    padding: 68px 0 94px;

    background-color: var(--pure-white);
}

.account_page_header {
    max-width: 700px;

    margin-bottom: 46px;
}

.account_page_title {
    margin: 0 !important;

    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: var(--dark-color);
}

.account_page_description {
    margin: 15px 0 0;

    font-size: 16px;
    line-height: 1.7;

    color: var(--muted-color);
}


/* Layout */

.account_layout {
    display: grid;

    grid-template-columns: 270px minmax(0, 1fr);

    gap: 42px;

    align-items: start;
}


/* ========================================================================== */
/* Sidebar                                                                    */
/* ========================================================================== */

.account_sidebar {
    overflow: hidden;

    border: 1px solid var(--border-color);
    border-radius: 16px;

    background-color: var(--cream-color);
}

.account_sidebar_header {
    padding: 24px 22px 20px;

    border-bottom: 1px solid var(--border-color);
}

.account_sidebar_label {
    margin-bottom: 5px;
}

.account_sidebar_user {
    display: block;

    overflow: hidden;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;

    color: var(--muted-color);

    text-overflow: ellipsis;
    white-space: nowrap;
}

.account_navigation {
    padding: 10px;
}

.account_nav_link {
    min-height: 52px;

    padding: 0 13px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-radius: 9px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;

    color: var(--dark-color) !important;

    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.account_nav_link:hover {
    background-color: rgba(47, 74, 63, 0.06);
}

.account_nav_link.active {
    color: var(--primary-color) !important;

    background-color: var(--sage-color);
}

.account_nav_icon {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.account_nav_icon img {
    width: 20px;
    height: 20px;

    object-fit: contain;
}

.account_nav_logout {
    margin-top: 6px;
    padding-top: 0;

    color: var(--muted-color) !important;
}


/* ========================================================================== */
/* Content Panel                                                              */
/* ========================================================================== */

.account_panel {
    min-width: 0;

    padding: 34px;

    border: 1px solid var(--border-color);
    border-radius: 16px;

    background-color: var(--pure-white);
}

.account_panel_header {
    margin-bottom: 27px;
}

.account_panel_header h2 {
    margin: 0 !important;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.03em;

    color: var(--dark-color);
}

.account_panel_label {
    margin-bottom: 8px;
}


/* ========================================================================== */
/* Orders Table                                                               */
/* ========================================================================== */

.account_table_wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.account_orders_table {
    width: 100%;

    border-collapse: collapse;

    background-color: var(--pure-white);
}

.account_orders_table th,
.account_orders_table td {
    padding: 17px 18px;

    text-align: left;

    border-bottom: 1px solid var(--border-color);

    white-space: nowrap;
}

.account_orders_table th {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--muted-color);

    background-color: var(--cream-color);
}

.account_orders_table td {
    font-size: 14px;
    line-height: 1.5;

    color: var(--dark-color);
}

.account_orders_table tbody tr:last-child td {
    border-bottom: 0;
}

.account_orders_table tbody tr {
    transition: background-color 0.2s ease;
}

.account_orders_table tbody tr:hover {
    background-color: rgba(47, 74, 63, 0.025);
}

.account_status {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 50px;

    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;

    color: var(--primary-color);

    background-color: var(--sage-color);
}


/* Empty */

.account_empty {
    padding: 52px 24px;

    text-align: center;

    border: 1px dashed var(--border-color);
    border-radius: 12px;

    background-color: var(--cream-color);
}

.account_empty h3 {
    margin: 0;

    font-size: 21px;
}

.account_empty p {
    max-width: 460px;

    margin: 10px auto 24px;

    font-size: 14px;
}


/* ========================================================================== */
/* Tablet                                                                     */
/* ========================================================================== */

@media (max-width: 991px) {

    .auth_layout {
        grid-template-columns: 1fr;

        max-width: 680px;

        gap: 42px;
    }

    .auth_intro {
        max-width: 580px;
    }

    .auth_title {
        font-size: 44px;
    }


    .account_layout {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .account_navigation {
        display: flex;

        gap: 4px;

        overflow-x: auto;
    }

    .account_nav_link {
        flex: 0 0 auto;

        padding-left: 16px;
        padding-right: 16px;
    }

    .account_nav_logout {
        margin-top: 0;
    }

}


/* ========================================================================== */
/* Mobile                                                                     */
/* ========================================================================== */

@media (max-width: 767px) {

    .auth_section {
        padding: 48px 0 60px;
    }

    .auth_title {
        font-size: 36px;
    }

    .auth_description {
        font-size: 16px;
    }

    .auth_card {
        padding: 28px 20px;

        border-radius: 16px;
    }

    .auth_card_header h2 {
        font-size: 26px;
    }


    .account_page_section {
        padding: 46px 0 60px;
    }

    .account_page_header {
        margin-bottom: 30px;
    }

    .account_page_title {
        font-size: 36px;
    }

    .account_sidebar_header {
        padding: 20px 18px 16px;
    }

    .account_navigation {
        padding: 8px;
    }

    .account_nav_icon {
        display: none;
    }

    .account_nav_link {
        min-height: 42px;

        padding: 0 13px;

        font-size: 13px;
    }

    .account_panel {
        padding: 24px 18px;

        border-radius: 14px;
    }

    .account_panel_header h2 {
        font-size: 26px;
    }

    .account_orders_table th,
    .account_orders_table td {
        padding: 14px;
    }

}

/* ========================================================================== */
/* ACCOUNT FORMS                                                              */
/* ========================================================================== */

.account_content_column {
    min-width: 0;
}

.account_panel_description {
    max-width: 650px;

    margin: 10px 0 0;

    font-size: 15px;
    line-height: 1.65;

    color: var(--muted-color);
}


/* -------------------------------------------------------------------------- */
/* Forms                                                                      */
/* -------------------------------------------------------------------------- */

.account_form_wrapper {
    width: 100%;
}

.account_profile_form,
.account_password_form {
    width: 100%;
}

.account_profile_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.account_profile_grid_address {
    grid-template-columns: minmax(0, 1fr) 150px;
}

.account_profile_field {
    width: 100%;

    margin-bottom: 20px;
}

.account_profile_field label {
    display: block;

    margin-bottom: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    color: var(--dark-color);
}

.account_profile_field .form-control {
    width: 100%;
    min-height: 52px;

    margin: 0;
    padding: 0 15px;

    border: 1px solid var(--border-color);
    border-radius: 9px;

    outline: none;

    box-shadow: none;

    font-family: 'Open sans', sans-serif;
    font-size: 14px;

    color: var(--dark-color);

    background-color: var(--pure-white);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.account_profile_field textarea.form-control {
    min-height: 140px;

    padding-top: 14px;
    padding-bottom: 14px;

    resize: vertical;
}

.account_profile_field select.form-control {
    cursor: pointer;
}

.account_profile_field .form-control:hover {
    border-color: var(--secondary-color);
}

.account_profile_field .form-control:focus {
    border-color: var(--primary-color);

    box-shadow:
        0 0 0 3px rgba(47, 74, 63, 0.07);
}


/* Password form */

.account_password_form {
    max-width: 620px;

    display: flex !important;
    flex-direction: column;

    gap: 0;
}


/* -------------------------------------------------------------------------- */
/* Account Messages                                                           */
/* -------------------------------------------------------------------------- */

.account_message {
    margin-bottom: 22px;
    padding: 13px 15px;

    border-radius: 9px;

    font-size: 13px;
    line-height: 1.55;
}

.account_message_error {
    border: 1px solid rgba(149, 81, 93, 0.22);

    color: var(--accent-color-dark);

    background-color: rgba(149, 81, 93, 0.07);
}

.account_message_success {
    border: 1px solid rgba(47, 74, 63, 0.18);

    color: var(--primary-color);

    background-color: var(--sage-color);
}


/* -------------------------------------------------------------------------- */
/* Save Button                                                                */
/* -------------------------------------------------------------------------- */

.account_profile_action {
    margin-top: 8px;
}

.account_profile_submit#submit {
    width: auto;
    min-width: 180px;
    min-height: 52px;

    margin: 0 !important;
    padding: 0 28px !important;

    border: 1px solid var(--accent-color) !important;
    border-radius: 9px !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    color: var(--pure-white) !important;

    background-color: var(--accent-color) !important;

    box-shadow: none !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.account_profile_submit#submit:hover {
    background-color: var(--accent-color-dark) !important;
    border-color: var(--accent-color-dark) !important;

    transform: translateY(-1px);
}


/* ========================================================================== */
/* LOGOUT                                                                     */
/* ========================================================================== */

.account_logout_section {
    padding: 90px 0 105px;

    background-color: var(--cream-color);
}

.account_logout_card {
    max-width: 620px;

    margin: 0 auto;
    padding: 62px 48px;

    border: 1px solid var(--border-color);
    border-radius: 22px;

    text-align: center;

    background-color: var(--pure-white);
}

.account_logout_icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--primary-color);

    background-color: var(--sage-color);
}

.account_logout_icon svg {
    width: 28px;
    height: 28px;
}

.account_logout_label {
    display: block;

    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--accent-color);
}

.account_logout_title {
    margin: 0 !important;

    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.035em;

    color: var(--dark-color);
}

.account_logout_text {
    margin: 16px 0 28px;

    font-size: 16px;
    line-height: 1.65;

    color: var(--muted-color);
}

.account_logout_button {
    min-width: 190px;
}


/* ========================================================================== */
/* ACCOUNT MOBILE                                                             */
/* ========================================================================== */

@media (max-width: 767px) {

    .account_profile_grid,
    .account_profile_grid_address {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .account_profile_field {
        margin-bottom: 16px;
    }

    .account_profile_submit#submit {
        width: 100%;
    }


    .account_logout_section {
        padding: 54px 0 64px;
    }

    .account_logout_card {
        padding: 44px 22px;

        border-radius: 17px;
    }

    .account_logout_title {
        font-size: 31px;
    }

    .account_logout_button {
        width: 100%;
    }

}

/* Addons → Warenkorb */

#addons {
    scroll-margin-top: 30px;
}

.product_addons_actions {
    margin-top: 32px;

    display: flex;
    justify-content: flex-end;
}

.product_addons_cart_jump {
    min-width: 230px;

    gap: 10px;
}

.product_addons_cart_jump svg {
    width: 18px;
    height: 18px;

    transition: transform 0.2s ease;
}

.product_addons_cart_jump:hover svg {
    transform: translateY(3px);
}

@media (max-width: 767px) {

    .product_addons_actions {
        justify-content: stretch;
    }

    .product_addons_cart_jump {
        width: 100%;
    }

}