:root {

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;



    --bg: #faf7f2;
    --bg-alt: #f0ebe1;
    --text: rgb(30, 54, 71);
    --text-secondary: rgb(206, 222, 235);
    --text-highlight: rgb(228, 239, 247);
    --text-muted: rgba(30, 54, 71, 0.863);
    --accent: rgb(162, 207, 236);
    --accent-light: rgb(198, 222, 236);
    --border: #312c27;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: 0.5s ease-out;

}


html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Montserrat;
    /* set name */
    src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
    /* url of the font */
}

@font-face {
    font-family: GFS-Didot;
    /* set name */
    src: url(../fonts/GFS_Didot/GFSDidot-Regular.ttf);
    /* url of the font */
}

body {
    background-color: rgb(255, 255, 255);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


p {
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
}

.cta {
    color: var(--text);
    background: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.4s ease-out;
    border-radius: var(--radius);
    padding: 0.75rem 3rem;
    backdrop-filter: blur(2px);
    box-shadow: var(--shadow);
}

.cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    background: var(--text-highlight);
}

.cta2 {
    color: var(--text);
    opacity: .5;
    text-decoration: none;
    transition: var(--transition);
}

.cta2:hover {
    opacity: 1;
    text-decoration: underline;
}

.headline {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 2rem;
}

.headline p {
    font-size: 1rem;
    font-weight: 600;
}

a {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text);
}

.headline-line {
    width: 50%;
    max-width: 180px;
    height: 1px;
    background: var(--text);
}

.headline h2 {
    color: var(--text);
    font-family: "GFS-Didot", serif;
    font-size: clamp(1.5rem, 4.25vw, 2rem);
    font-weight: 100;
    text-align: center;
}







/* === HEADER / NAV === */
.nav {
    width: 100%;
    box-sizing: border-box;
    height: 5rem;
    background: rgb(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.2);
    transition: .4s ease-out;
}

.navlogo img {
    height: 3rem;
    transition: .4s ease-out;
    opacity: .5;
}

.navlogo:hover {
    transform: scale(1.075);
    opacity: 1;
    filter: brightness(1.1);
}


.nav a {
    text-align: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    transition: 0.4s ease-out;
}

@media screen and (min-width: 1024px) {
    .nav a {
        min-width: 12rem;
    }
}


.nav a:hover {
    color: var(--accent-hover);
    text-shadow: 1px 1px 16px rgba(255, 255, 255, 0.5);
}


.bars {
    display: none;
}


.cross {
    display: none;
}




@media screen and (max-width: 1024px) {


    .nav a:not(.navlogo, .bars) {
        display: none;
    }


    .navlogo {
        position: absolute;
        top: 1rem;
        left: 0;
        right: 0;
        margin-inline: auto;
    }


    .bars {
        display: block;
        position: absolute;
        right: 0;
        font-size: 2.5rem;
        color: var(--text);
        text-decoration: none;
        opacity: 0.75;
        transition: 0.4s ease-out;
        border-radius: .5rem;
        padding-inline: 2rem;
    }

    .bars:hover {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .nav.responsive {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .nav.responsive .navlogo {
        position: relative;
        left: 0;
        right: 0;
        margin-inline: auto;
        order: 1;
    }

    .nav.responsive a {
        display: block;
        box-sizing: border-box;
        padding-block: 2rem;
        order: 2;
    }

    .nav.responsive .bars {
        display: none;
    }

    .nav.responsive .cross {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        font-size: 2.5rem;
        color: var(--text);
        text-decoration: none;
        padding-inline: 2rem;
        opacity: 0.75;
        transition: 0.4s ease-out;
    }

    .nav.responsive .cross:hover {
        transform: scale(1.05);
        opacity: 1;
        color: var(--accent-hover);
    }
}



/* ===  NAV === */
.nav {
    width: 100%;
    box-sizing: border-box;
    height: 5rem;
    background: rgb(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.2);
    transition: .4s ease-out;
}

.navlogo img {
    height: 3rem;
    transition: .4s ease-out;
    opacity: .5;
}

.navlogo:hover {
    transform: scale(1.075);
    opacity: 1;
    filter: brightness(1.1);
}


.nav a {
    text-align: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    transition: 0.4s ease-out;
}

@media screen and (min-width: 1024px) {
    .nav a {
        min-width: 12rem;
    }
}


.nav a:hover {
    color: var(--accent-hover);
    text-shadow: 1px 1px 16px rgba(255, 255, 255, 0.5);
}


.bars {
    display: none;
}


.cross {
    display: none;
}




@media screen and (max-width: 1024px) {


    .nav a:not(.navlogo, .bars) {
        display: none;
    }


    .navlogo {
        position: absolute;
        top: 1rem;
        left: 0;
        right: 0;
        margin-inline: auto;
    }


    .bars {
        display: block;
        position: absolute;
        right: 0;
        font-size: 2.5rem;
        color: var(--text);
        text-decoration: none;
        opacity: 0.75;
        transition: 0.4s ease-out;
        border-radius: .5rem;
        padding-inline: 2rem;
    }

    .bars:hover {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .nav.responsive {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .nav.responsive .navlogo {
        position: relative;
        left: 0;
        right: 0;
        margin-inline: auto;
        order: 1;
    }

    .nav.responsive a {
        display: block;
        box-sizing: border-box;
        padding-block: 2rem;
        order: 2;
    }

    .nav.responsive .bars {
        display: none;
    }

    .nav.responsive .cross {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        font-size: 2.5rem;
        color: var(--text);
        text-decoration: none;
        padding-inline: 2rem;
        opacity: 0.75;
        transition: 0.4s ease-out;
    }

    .nav.responsive .cross:hover {
        transform: scale(1.05);
        opacity: 1;
        color: var(--accent-hover);
    }
}





/*----------HERO-SECTION-----------------------*/

.hero {
    width: 100%;
    height: clamp(470px, 50vh, 720px);
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 150;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    box-sizing: border-box;
}

.hero-content h1 {
    color: rgb(245, 245, 245);
    letter-spacing: -1px;
    font-weight: 400;
    font-size: clamp(1rem, 7.25vw, 3rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

}


.hero-content p {
    width: 65%;
    max-width: 640px;
    font-weight: 500;
    z-index: 200;
    position: relative;
    font-size: clamp(0.5rem, 4vw, 1.15rem);
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'GFS-Didot', serif;
}



.hero-slide-bg-filter {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -5;
    background-image: linear-gradient(to right, rgba(30, 25, 20, 0), rgba(30, 25, 20, 0.5), rgba(30, 25, 20, 0));

}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -10;
    object-fit: cover;
    filter: saturate(1.75) brightness(1.2);
}

@media screen and (max-width: 720px) {


    .hero-content h1 {
        font-size: clamp(1rem, 6.5vw, 2.5rem);
    }

    .hero-slide-bg-filter {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: -5;
        background-image: linear-gradient(to right, rgba(30, 25, 20, 0.1), rgba(30, 25, 20, 0.6), rgba(30, 25, 20, 0.1));
    }

}

@media screen and (max-width: 540px) {

    .hero-content h1 {
        font-weight: 600;
    }

    .hero-slide-bg-filter {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: -5;
        background-image: linear-gradient(to right, rgba(30, 25, 20, 0), rgba(30, 25, 20, .4), rgba(30, 25, 20, 0)) !important;
        filter: none;
    }

}




/*---intro---*/

.introduction {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-alt);
}

.intro-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg-curve {
    width: 98%;
    height: calc(100% + 8rem);
    max-width: 1360px;
    position: absolute;
    top: 0;
    z-index: 50;
}

.introduction-slogan {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-block: 1.5rem;
    color: var(--color1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}


.introduction-slogan p {
    font-size: .8rem;
    font-weight: 500;
}

.angebot-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.AngebotBox {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/2;
    position: relative;
    z-index: 100;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-out;
}

.AngebotBox a {
    z-index: 200;
    transition: 0.5s ease-out;
    display: none;
    margin-top: 1rem;
}

.AngebotBox h2 {
    font-size: 1.25rem;
    color: white;
    font-family: "GFS-Didot, serif";
    font-weight: 100;
    text-align: center;
    z-index: 200;
    transition: 0.5s ease-out;
}

.AngebotBoxBackground-Gradient {
    width: 100%;
    height: 100%;
    z-index: 50;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(80, 70, 60, 0.5), rgba(0, 0, 0, 0));
    transition: 0.5s ease-out;
}

.AngebotBoxBackgroundFrame {
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    position: absolute;
    z-index: 150;
    box-sizing: border-box;
    border: solid 2px white;
    border-radius: var(--radius-sm);

}


.AngebotBoxBackground {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transform: scale(1);
    transition: .6s ease-out;
}



.AngebotBox:hover .AngebotBoxBackground {
    transform: scale(1.1);
}

.AngebotBox:hover .AngebotBoxBackground-Gradient {
    background-image: linear-gradient(to bottom, rgba(26, 18, 2, 0.4), rgba(26, 18, 2, 0.6), rgba(26, 18, 2, 0.4));
}

.AngebotBox:hover .cta {
    display: block;
    transform: scale(0.75);
}


.introduction-illy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 50;
    padding-top: 4rem;
}

.introduction-illy img {
    border-radius: 50%;
    width: 8rem;
    margin-bottom: -4rem;
    position: relative;
    z-index: 200;
}

.introduction-illy-container {

    width: 100%;
    background: var(--text-highlight);
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 100;
}

.introduction-illy #quoteBy {
    font-size: 1rem;
    font-style: italic;
    color: var(--color1);
    margin-bottom: 1rem;
}

.introduction-illy #personal-message {
    width: 90%;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6rem;
    color: var(--text);
}



@media screen and (max-width: 760px) {
    .introduction-slogan h4 {
        max-width: 300px;
    }

    .bg-curve {
        width: 98%;
        height: 70%;
        max-width: 1160px;
        position: absolute;
        top: 0;
        z-index: -1;
    }

    .angebot-container {
        width: 90%;
        max-width: 1024px;
        margin: 0 auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .AngebotBox {
        width: 90%;
        max-width: 100%;
        aspect-ratio: 3/1.25;
    }



}

@media screen and (max-width: 540px) {
    .AngebotBox h2 {
        font-size: 1rem;
    }
}






/* ================================================================
   NEWS CARDS
   ================================================================ */

.news-container {
    width: 100%;
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--bg);
}

.news-container .cta2 {
    margin-top: 2rem;
}

.news-grid {
    width: 80%;
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.news-card {
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
}


@media screen and (max-width: 760px) {
    .news-card {
        display: flex;
        flex-direction: column;
    }
}

.news-card:hover {
    box-shadow: var(---shadow-hover);
    transform: translateY(-2px);
}

.news-image {
    overflow: hidden;
}

.news-image img {
    height: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}

.news-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .5rem;
}

.news-body h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
}

.news-date {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    font-weight: 600;
    margin-bottom: .5rem;
}

.news-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
}





/*--------------SORTIMENT-------------------*/
.sortiment {
    width: 100%;
    padding-block: 8rem;
    position: relative;
    background: var(--bg-alt);
}

.sortiment-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.sortiment-wrapper .sortiment-intro {
    max-width: 1020px;
    text-align: center;
}

.sortiment-head a {
    text-decoration: underline 1px;
    cursor: pointer;
    color: var(--color1);
    font-weight: 300;
}

.sortiment-head a:hover {
    text-decoration: underline 2px;
}







/* ================================================================
   BRAND SCROLL SELECTOR
   ================================================================ */
.brand-scroll-wrapper {
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-scroll-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
    flex: 1;
}

.brand-scroll-track::-webkit-scrollbar {
    display: none;
}

.brand-scroll-arrow {
    display: none;
    /* shown by JS when scrollable */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pub-border);
    background: #fff;
    color: var(--pub-text-secondary);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--pub-transition);
    box-shadow: var(--pub-shadow);
    z-index: 2;
}

.brand-scroll-arrow:hover {
    border-color: var(--pub-accent);
    color: var(--pub-accent);
    box-shadow: var(--pub-shadow-hover);
}

.brand-scroll-arrow.visible {
    display: flex;
}

/* Brand Box */
.brand-box {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 110px;
    border-radius: 1rem;
    border: 3px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: all var(--transition);
}

.brand-box:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.brand-box--active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18), var(--pub-shadow-hover);
}

.brand-box-banner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}

.brand-box-banner--empty {
    background: linear-gradient(135deg, #eef0f5 0%, #dde0ea 100%);
}

.brand-box-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(0, 0, 0, 0.4);
    object-fit: cover;
    padding: 5px;
}

.brand-box-logo--text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pub-accent);
    text-transform: uppercase;
}

/* Brand Detail Panel */
.brand-detail-container {
    width: 100%;
    max-width: 1300px;
    position: relative;
    min-height: 80px;
    background: var(--bg);
    box-sizing: border-box;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.brand-detail {
    display: none;
    animation: brandFadeIn 0.35s ease;
}

.brand-detail--active {
    display: block;
}

@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-detail-header {
    margin-bottom: 0.75rem;
}

.brand-detail-header h3 {
    font-family: 'GFS-Didot', serif;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.brand-detail-desc {
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.brand-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.brand-image-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-alt);
}

.brand-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.brand-image-item:hover img {
    transform: scale(1.04);
}


@media screen and (max-width: 760px) {
    .brand-image-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-image-item:nth-child(1) {
        grid-column: 1/3;
        grid-row: 1/2;
    }

    .brand-image-item:nth-child(2) {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .brand-image-item:nth-child(3) {
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .brand-image-item:nth-child(4) {
        grid-column: 1/3;
        grid-row: 3/4;
    }

    .brand-image-item:nth-child(5) {
        grid-column: 1/2;
        grid-row: 4/5;
    }

    .brand-image-item:nth-child(6) {
        grid-column: 2/3;
        grid-row: 4/5;
    }
}




/* ================================================================
   PRODUCT CARDS / GRID
   ================================================================ */
.product-container {
    background: var(--bg);
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    margin-top: 6rem;
    border-radius: var(--radius);
}

.product-container h3 {
    font-family: 'GFS-Didot', serif;
    color: var(--text);
}


.sort-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
}

.sort-bar label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sort-bar select {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text);
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

@media screen and (max-width: 760px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-alt);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}


.product-no-image-sm {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--bg-alt);
}

.product-card-body {
    padding: 1rem;
    flex: 1;
}

.product-card-body h4 {
    font-weight: 300;
    font-family: 'GFS-Didot', serif;
    margin-bottom: 0.3rem;
    line-height: 1.6;
    color: var(--text);
}

.product-card-price {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    opacity: 0;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}


.product-card:hover .product-card-price {
    opacity: 1;
}


/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-page {
    padding: 2rem 1.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--pub-text-secondary);
}

.back-link:hover {
    color: var(--pub-accent);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-main-image {
    border-radius: var(--pub-radius);
    overflow: hidden;
    background: var(--pub-bg-alt);
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.product-no-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pub-text-muted);
}

.product-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.product-thumbs .thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--pub-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--pub-transition);
}

.product-thumbs .thumb:hover,
.product-thumbs .thumb.active {
    border-color: var(--pub-accent);
}

.product-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pub-accent);
    margin-bottom: 1.5rem;
}

.product-meta-table {
    width: 100%;
    border-collapse: collapse;
}

.product-meta-table th,
.product-meta-table td {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--pub-border);
    font-size: 0.9rem;
}

.product-meta-table th {
    text-align: left;
    font-weight: 500;
    color: var(--pub-text-muted);
    width: 40%;
}

.product-meta-table td {
    color: var(--pub-text);
}

/* ================================================================
   PRODUCT BRAND NAME
   ================================================================ */
.product-card-brand {
    display: block;
    font-size: 0.78rem;
    color: var(--pub-text-muted);
    font-weight: 400;
    margin-bottom: 0.25rem;
}








/*--------------IG-FEED------------------*/

.Instagram-Feed {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    background-image: linear-gradient(to right bottom, var(--text), var(--text-muted));
    margin-bottom: 2rem;
    padding-top: 3rem;
}

.Intagram-Feed-Wrapper {
    width: 90%;
    max-width: 1300px;
    min-height: 600px;
    margin: 0 auto;
    border-radius: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.Intagram-Feed-Wrapper .headline-line {
    background: white;
}

.Intagram-Feed-Wrapper h2 {
    color: white;
    height: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.Intagram-Feed-Wrapper-Headline-Icon {
    height: 100%;
    margin-right: 1rem;
}

.Intagram-Feed-Wrapper p {
    color: rgb(205, 205, 215);
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}


.elfsight-feed {
    margin-block: 4rem;
}

.eapps-instagram-feed-posts-grid .eapps-instagram-feed-posts-item {
    border-radius: 8px;
}

.eapps-instagram-feed-posts-grid-load-more-container {
    display: none !important;
}



@media screen and (max-width: 760px) {

    .Instagram-Feed {
        padding-top: 0;
    }

    .Intagram-Feed-Wrapper {
        width: 90%;
        max-width: 1366px;
        min-height: 600px;
        margin: 0 auto;
        border-radius: 1rem;
        padding-top: 3rem;
        box-sizing: border-box;
        position: relative;
    }


    .Intagram-Feed-Wrapper .instagram-box {
        position: absolute;
        width: 100%;
        height: 3rem;
        background: var(--color1);
        bottom: 0;
        right: 0;
        z-index: 100000;
    }
}








/*--------------FAQ------------------*/

.FAQ {
    width: 100%;
    margin-block: 12rem;
}



.FAQ-wrapper {
    width: 90%;
    max-width: 1300px;
    height: auto;
    margin: 0 auto;
}

.FAQ-Question-Box {
    width: 100%;
    border-bottom: var(--text-secondary) 1px solid;
    cursor: pointer;
}


.FAQ-question {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 1.25rem;
    transition: 0.4s ease-out;
}

.arrow-indicator {
    width: 2rem;
    height: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

.arrow-indicator p {
    transform: rotate(90deg);
    font-size: 2rem;
    transition: 0.2s ease-out;
}


.active2,
.FAQ-question:hover {
    background-color: rgb(245, 245, 245);
}

.active2 .arrow-indicator p {
    transform: rotate(-90deg);
}

.content {
    padding: 1.25rem;
    display: none;
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    line-height: 1.6;
}


.content a {
    color: var(--color1);
    font-weight: 300;
}

@media screen and (max-width: 760px) {
    .content a {
        font-size: 1rem;
    }
}




/*---------------------------------------------
---------------KONTAKT-SEKTION-----------------
---------------------------------------------*/

.contact {
    background: var(--bg-alt);
    padding-block: 4rem;
}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media screen and (max-width: 760px){
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-container-box {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    gap: 3rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: var(--bg);
}

.contact-container-box *:not(h3) {
    width: 100%;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-container-box .contact-sub-heading {
    width: 100%;
    font-size: 1rem;
    font-family: 'GFS-Didot', serif;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-container-box table tbody tr {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;

}

.contact-container-box table tbody tr:not(:last-child) {
    border-bottom: 1.5px solid var(--text-secondary);
    margin-bottom: 1rem;
}


.contact-container-box table tbody tr .time-cell {
    justify-self: flex-end;
    max-width: 150px;
}


.Adressdaten p {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1rem;
}

.Adressdaten p img {
    height: 1rem;
    width: 1rem;
    opacity: .75;
    margin-top: .3rem;
}



.contact-field {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.contact-field label{
    font-size: .85rem;
    color: var(--text-muted);
    margin: .25rem .5rem;
}

.contact-field input,
.contact-field textarea {
    box-sizing: border-box;
    padding: .5rem;
    border-radius: var(--radius-sm);
    border: none;
}

.contact-container-box form .contact-submit {
    border: none;
    color: var(--text);
    background: var(--text-secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    box-sizing: border-box;
    padding: .5rem;
    border-radius: var(--radius-sm);

}

.contact-container-box form .contact-submit:hover {
    border: none;
    color: var(--text);
    background: var(--text-highlight);
    box-shadow: var(--shadow-hover);
}





/*--------------------------------------------------------about-Seite--------------------------------------------------------*/

.about-container {
    width: 100%;
    height: 90vh;
    min-height: 600px;
    padding-top: 5rem;
}

.about-container-wrapper {
    width: 90%;
    max-width: 1900px;
    margin-inline: auto;
    padding-top: 6rem;
}



/*--------------------------------------------------------about-Seite--------------------------------------------------------*/

.imprint-container {
    width: 100%;
    padding-top: 4rem;
}



.imprint-container-wrapper {
    width: 90%;
    max-width: 1900px;
    margin-inline: auto;
    padding-top: 4rem;
}

.imprint-container-wrapper h3 {
    font-family: "GFS-Didot";
    color: var(--color1);
    font-size: clamp(1.25rem, 8vw, 2rem);
    margin-bottom: 2rem;
}

#imp-subheading {
    font-weight: 500;
}







/*--------------------------------------------------------Katalog-Seite--------------------------------------------------------*/

.kataloge-container {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(250, 247, 243));
}

.katalog-box-container-wrapper {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 12rem;
}

.katalog-box-wrapper {
    width: 90%;
    max-width: 1900px;
    margin-inline: auto;
    box-sizing: border-box;
    padding: 6rem 0;
}


.katalog-box-wrapper-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.katalog-box-wrapper-flex a {
    text-decoration: none;
}

.katalog-box {
    width: 100%;
    background: rgba(130, 115, 90, 0.1);
    box-shadow: 1px 2px 8px 0 rgba(60, 50, 40, 0.05);
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.4s ease-out;
    overflow: hidden;
}

.katalog-box-wrapper a:hover .katalog-box {
    box-shadow: 1px 2px 8px 0 rgba(60, 50, 40, 0.1);
    transform: scale(1.01);
    background: rgba(130, 115, 90, 0.3);
}

.katalog-box img {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 4px;
}

.katalog-box p {
    font-weight: 300;
    padding-left: 3rem;
    color: var(--color1);
}


@media screen and (max-width: 760px) {
    .katalog-box-wrapper-flex {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}



.archive-section{
    min-height: 95vh;
    background: var(--bg-alt); 
    display: flex; 
    flex-direction: column;
    margin-top: 4rem;
}



















/*--------------FOOTER-----------------*/


.footer {
    width: 100%;
    background: var(--text);
    padding-block: 2rem;
    overflow: hidden;
    z-index: 1000;
}

.footer-container {
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: white;
    gap: 1rem;
}

.footer-container * {
    color: white;
    text-decoration: none;
    transition: 0.4s ease-out;
}


.footer-container a:hover {
    color: var(205, 205, 205);
    text-decoration: underline 2px white;
}

.footer-social-links {
    padding-right: 2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.footer-social-links a {
    width: 2rem;
    height: 2rem;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: inline-block;
    overflow: hidden;
    border-radius: 2rem;
    opacity: 1;
    cursor: pointer;
    transition: .4s ease-out;
}

.footer-social-links a:hover {
    opacity: .5;
}

.footer-social-links a img {
    width: 1.5rem;
    position: relative;
}

@media screen and (max-width: 760px) {
    .footer-container {
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        color: white;
        gap: 2rem;
    }

    .footer-container span {
        display: none;
    }

    .footer-social-links {
        padding-right: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
    }
}






/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    animation: cookieSlideUp 0.4s ease;
}

.cookie-content {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
    color: #2e3038;
    padding: 1.25rem 1.5rem;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    line-height: 1.5;
    min-width: 200px;
}

.cookie-content a {
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--text-secondary);
    color: #252525;
}

.cookie-accept:hover {
    background: var(--accent-light);
}

.cookie-reject {
    background: transparent;
    color: #9ca3b4;
    border: 1px solid var(--text-secondary);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e8eaf0;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}