@font-face {
    font-family: 'Poppins';
    src: url(font/Poppins-Bold.html);
    font-weight: 700;
}
@font-face {
    font-family: 'Poppins';
    src: url(font/Poppins-Medium.html);
    font-weight: 500;
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-SemiBold.html');
    font-weight: 600;
}
/* Farben und Variablen */
:root {
    --primary-color: #ffffff;
    --accent-color: #606060;
    --hover-color: #ffffff;
}

/* Animation keyframes */
@keyframes glideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Fade animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

/* Element reveal animations */
.work-process-rectangle, 
.new-rectangle, 
.feedback-box, 
.rectangle, 
.work-process-rectangle-two, 
.work-process-rectangle-four, 
.work-process-rectangle-three,
.larger-text, 
.larger-text-two, 
.larger-text-three, 
.larger-text-four,
.faq-item, 
.view-all-button {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Reveal class for animations */
.work-process-rectangle.reveal, 
.new-rectangle.reveal, 
.feedback-box.reveal, 
.rectangle.reveal, 
.work-process-rectangle-two.reveal, 
.work-process-rectangle-four.reveal, 
.work-process-rectangle-three.reveal,
.larger-text.reveal, 
.larger-text-two.reveal, 
.larger-text-three.reveal, 
.larger-text-four.reveal,
.faq-item.reveal, 
.view-all-button.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Wrapper animation */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
    animation: fadeIn 1s ease-in;
}

.item {
    width: 100px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.item:hover {
    opacity: 1;
}

.item1 { background-image: url('../images/stockx.png'); }
.item2 { background-image: url('../images/goat.png'); }
.item3 { background-image: url('../images/klarna.png'); }
.item4 { background-image: url('../images/paypal.png'); }
.item5 { background-image: url('../images/affirm.png'); }
.item6 { background-image: url('../images/afterpay.png'); }
.item7 { background-image: url('../images/quadpay.png'); }
.item8 { background-image: url('../images/sezzle.png'); }

/* Globales Styling */
body {
    background-color: #08090A;
    color: #FFF;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}
* { margin: 0 auto; }

::-webkit-scrollbar {
    display: none;
}
  
::selection {
background-color: #6464642d; /* Grau als Hintergrundfarbe */
}
/* Stelle sicher, dass die Elemente standardmäßig unsichtbar sind */
/* Standard-Stile für die Container, die animiert werden */
/* Standard-Stile für alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile für alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile für alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile für alle Elemente, bevor sie sichtbar werden */
.work-process-rectangle, .new-rectangle, .feedback-box, .rectangle, 
.work-process-rectangle-two, .work-process-rectangle-four, .work-process-rectangle-three,
.larger-text, .larger-text-two, .larger-text-three, .larger-text-four,
.faq-item, .view-all-button {
    opacity: 0;
    transform: translateY(50px); /* Alle Elemente leicht nach unten verschoben */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Animation langsamer machen */
}

/* Reveal-Klasse, die nach Sichtbarkeit hinzugefügt wird */
.work-process-rectangle.reveal, .new-rectangle.reveal, .feedback-box.reveal, .rectangle.reveal, 
.work-process-rectangle-two.reveal, .work-process-rectangle-four.reveal, .work-process-rectangle-three.reveal,
.larger-text.reveal, .larger-text-two.reveal, .larger-text-three.reveal, .larger-text-four.reveal,
.faq-item.reveal, .view-all-button.reveal {
    opacity: 1;
    transform: translateY(0); /* Elemente werden an ihre normale Position verschoben */
}

/* Glass effect style for all boxes */
.header-container,
.work-process-rectangle,
.work-process-rectangle-two,
.work-process-rectangle-three,
.work-process-rectangle-four,
.new-rectangle,
.feedback-box,
.faq-item,
.rectangle {
    /* Remove previous background properties */
    background: rgba(8, 10, 8, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Remove all individual background definitions */
.work-process-rectangle,
.work-process-rectangle-two,
.work-process-rectangle-three,
.work-process-rectangle-four,
.new-rectangle,
.feedback-box,
.faq-item,
.rectangle {
    background: rgba(8, 10, 8, 0.2);
}

/* Desktop header styles (default) */
.header-container {
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin: 40px auto 0;
    transition: all 0.3s ease;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    background-color: transparent;
    padding: 0 20px;
    animation: glideInFromBottom 1s ease forwards;
}

.logo-title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.logo {
    width: 22px;
    height: auto;
    user-select: none;
    z-index: 1001;
    cursor: pointer;
}

.header-title {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

/* Desktop navigation styles (default) */
.nav {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.nav a {
    color: #dadada;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 28px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    text-transform: none;
}

/* Line effect under links */
.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFF;
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 60%;
}

/* Mobile styles */
@media (max-width: 770px) {
    .header-container {
        padding: 15px;
        width: 100%;
        max-width: 350px;
        margin: 30px auto;
        border-radius: 30px;
        left: 50%;
        transform: translateX(-50%);
        position: fixed;
    }

    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

    .logo-title-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        gap: 15px;
        margin: 0;
    }

    .header-title {
        font-size: 17px;
        line-height: 1;
        white-space: nowrap;
        margin: 0;
        padding: 0;
        color: #FFF;
        font-weight: 500;
        text-align: left;
    }

    .nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        gap: 15px;
        margin: 0;
        padding: 0;
    }

    .nav a {
        font-size: 15px;
        padding: 8px 12px;
        margin: 0;
        white-space: nowrap;
        color: #dadada;
    }
}

/* Remove all other mobile-specific media queries */

.main-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgb(250, 250, 250);
    font-size: 50px;
    text-align: center;
    margin: 330px auto;
    line-height: 1.5;
    position: relative;
    user-select: none;
    
}

/* Responsive Design Adjustments */
@media (max-width: 615px) {
    .main-text {
        font-size: 36px;
        line-height: 7.1vh;
        margin: 300px auto;
        user-select: none;
    }
}

/* Ausgangszustand */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Fade-in */
body.fade-in {
    opacity: 1;
}

/* Fade-out */
body.fade-out {
    opacity: 0;
}

/* Icons (menu button) for mobile */
.icons {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #FFF;
    position: relative;
    z-index: 1001;
}

/* Responsive Design for Mobile */
@media (max-width: 616px) {
    .header-container {
        padding: 15px;
        width: 100%;
        max-width: 350px;
        margin: 30px auto;
        border-radius: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    header {
        justify-content: space-between;
    }

    /* Keep other mobile menu styles */
    .icons {
        display: block;
    }

    /* Hide nav by default on mobile */
    /* Mobile Menü - initial verstecken */
.nav {
    visibility: hidden;
    opacity: 0;
    position: absolute; /* Fixieren, damit Blur besser sichtbar wird */
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    background-color: rgb(8, 9, 10); /* Halbtransparent für den Hintergrund */
    z-index: 1000; /* Sicherstellen, dass der Hintergrund über anderen Inhalten liegt */

}

/* Klasse zur Anzeige des Menüs */
.nav.mobile-shown {
    visibility: visible;
    opacity: 1;
}

/* Menü-Link-Design für mobile Ansicht */
.nav a {
    font-size: 15px;
    color: #dadada;
    margin: 10px 0;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

/* Effekt beim Hover über Links */
.nav a:hover {
    color: #ffffff;
}

/* Icon im Header sichtbar in der mobilen Ansicht */
@media (max-width: 616px) {
    .icons {
        display: block;
    }
}
}

        * {
            box-sizing: border-box;
        }

        * {
            margin: 0;
        }

        .wrapper {
            width: 80%;
            max-width: 1506px;
            margin-inline: auto;
            position: relative;
            height: 150px; /* Adjusted height to fit the logos */
            margin-top: 10rem;
            overflow: hidden;
            mask-image: linear-gradient(
                to right,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 1) 20%,
                rgba(0, 0, 0, 1) 80%,
                rgba(0, 0, 0, 0)
            );
        }

        @keyframes scrollLeft {
            to {
                left: -200px;
            }
        }

        .item {
            width: 40px; /* Adjusted the width */
            height: 80px; /* Adjusted the height */
            background-size: contain; /* Ensures that the logo scales without stretching */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-position: center; /* Ensures the image is centered */
            border-radius: 6px;
            position: absolute;
            background-color: #0b0d0e00;
            left: max(calc(150px * 8), 100%);
            animation-name: scrollLeft;
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            opacity: 0.3; /* Sehr niedrige Opazität für die Bilder */
            transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease; /* Übergang für sanftes Ein- und Ausblenden inklusive Skalierung */
        }
        /* CSS für Hover-Farbänderung */
/* Hover-Effekt mit Farbe #a3f361 */
/* Hover-Effekt mit der Farbe #A3F361 */
/* Standard-Stil für die Logos */
.item {
    opacity: 0.3; /* Anfangs niedrigere Sichtbarkeit */
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease; /* Übergang für sanftes Ein- und Ausblenden inklusive Skalierung */
}

/* Hover-Effekt mit der Farbe #A3F361 und höherer Deckkraft */
.item:hover {
    opacity: 1; /* Volle Sichtbarkeit beim Hover */
    transform: scale(1.5); /* Icons werden 50% größer beim Hover */
}
        .item1 {
            background-image: url('../images/stockx.png');
            animation-delay: calc(30s / 8 * (8 - 1) * -1);
        }

        .item2 {
            background-image: url('../images/nike.png');
            animation-delay: calc(30s / 8 * (8 - 2) * -1);
        }

        .item3 {
            background-image: url('../images/rl.png');
            animation-delay: calc(30s / 8 * (8 - 3) * -1);
        }

        .item4 {
            background-image: url('../images/farfetchtwo.png');
            animation-delay: calc(30s / 8 * (8 - 4) * -1);
        }

        .item5 {
            background-image: url('../images/apple.png');
            animation-delay: calc(30s / 8 * (8 - 5) * -1);
        }

        .item6 {
            background-image: url('../images/monclizzy.png');
            animation-delay: calc(30s / 8 * (8 - 6) * -1);
        }

        .item7 {
            background-image: url('../images/bape.png');
            animation-delay: calc(30s / 8 * (8 - 7) * -1);
        }

        .item8 {
            background-image: url('../images/canadagoose.png');
            animation-delay: calc(30s / 8 * (8 - 8) * -1);
        }
        .item9 {
            background-image: url('../images/corteiz.html');
            animation-delay: calc(30s / 8 * (8 - 9) * -1);
        }      
                .item10 {
            background-image: url('../images/spider.html');
            animation-delay: calc(30s / 8 * (8 - 10) * -1);
        }     
        
        .main-text {
            font-family: 'Poppins', sans-serif;
            font-size: 50px;
            text-align: center;
            margin: 300px auto 20px;
        }

        .caption-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #7F7F7F;
            font-size: 17px;
            text-align: center;
            margin: 0 auto 50px;
            line-height: 1.6;
            max-width: 80%;
            user-select: none;
        }
.work-process-container {
    text-align: center;
    margin-top: 120px;
}

.work-process-rectangle, 
.work-process-rectangle-two, 
.work-process-rectangle-three,
.work-process-rectangle-four {
    display: inline-block;
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 210px;
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 100;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}

/* Stil für den größeren Text unter dem Rechteck */
.larger-text {
    font-size: 27px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 2%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text {
        font-size: 25px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.new-rectangle-container {
    display: flex;  
    justify-content: center;
    gap: 20px;  
    text-align: center;
    margin-top: 50px;
    flex-wrap: wrap; 
}

.new-rectangle {
    display: inline-block;
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 390px;
    height: 290px;
    line-height: 60px;
    padding-top: 130px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    color: #DFDFDF;
    user-select: none;
}

@media (max-width: 400px) {
    .new-rectangle {
        width: 355px;
        height: 280px;
    }
}

.rectangle-title {
    font-size: 21px;
    font-weight: normal;
    color: #DFDFDF;
    padding-top: 10px;
    margin-bottom: 15px;
}
@media (max-width: 615px) {
    .rectangle-title {
        font-size: 20px;
        line-height: 1.5;
        max-width: 100%;
    }
}

.rectangle-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7F7F7F;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -15px;
    line-height: 1.4;
}
@media (max-width: 615px) {
    .rectangle-subtext {
        font-size: 15px;
        margin-left: 30px;
    }
}
.icon-circle {
    position: absolute; /* Kann durch 'fixed' ersetzt werden, falls es auf dem gesamten Bildschirm zentriert bleiben soll */
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%); /* Verschiebt das Element um die Hlfte seiner Breite und Hhe */
    width: 65px;
    height: 65px;
    background-color: #ffffff2f;
    border-radius: 50%;
    opacity: 1;
    border: 0.1px solid #6A6A6A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 19;
}

.icon-circle i {
    color: #FFF;
    font-size: 30px;
    z-index: 20;
}


/* Mobile-first Anpassungen */
@media (max-width: 768px) {
    .new-rectangle-container {
        flex-direction: column; 
        align-items: center; 
    }
}
.work-process-rectangle-two {
    display: inline-block;
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 150px;
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-two {
    font-size: 25px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-two {
        font-size: 23px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.feedback-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DFDFDF;
}

.feedback-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.feedback-box {
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 390px;
    height: 250px;
    padding-top: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #DFDFDF;
    position: relative;
}
.stars {
    color: #FFF;
    margin-bottom: 15px;
    font-size: 18px;
    user-select: none;
}

.feedback-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #DFDFDF;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
    margin-bottom: 10px;
    user-select: none;
}
.feedback-author {
    font-size: 15px;
    font-weight: 500;
    color: #7F7F7F; 
    margin-top: 5px;
    user-select: none;
}

@media (max-width: 615px) {
    .feedback-box {
        width: 350px;
        height: 230px;
    }
    .feedback-text {
        font-size: 15px;
    }
    .feedback-author {
        font-size: 16px;
    }
}
.work-container {
    text-align: center;
    margin-top: 85px;
}
.work-process-rectangle-three {
    display: inline-block;
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 120px;
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-three {
    font-size: 23px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-three {
        font-size: 23px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.work-process-rectangle-four {
    display: inline-block;
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 200px;
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-four {
    font-size: 23px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-four {
        font-size: 22px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.faq-section {
    padding: 55px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DFDFDF;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-item {
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 700px;
    padding-top: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #DFDFDF;
    position: relative;
    overflow: hidden;
    height: 90px;
    min-height: 90px;
    transition: height 0.4s ease, transform 0.4s ease;
}

@media (max-width: 400px) {
    .faq-item {
        background-color: #080a0867;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 350px;
        padding-top: 20px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid #222;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #DFDFDF;
        position: relative;
        overflow: hidden;
        height: 90px;
        min-height: 90px;
        transition: height 0.4s ease, transform 0.4s ease;
    }
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    margin: 10px 30px 0;
    user-select: none;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    margin-top: 15px;
    padding: 0 30px;
    color: #888;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    text-align: left;
    transform: translateY(-20px);
    user-select: none;
    transition: all 0.2s ease-out;
}

/* When the faq-item is open */
.faq-item.open {
    height: 150px;
}

.faq-answer.open {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Plus Icon */
.faq-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-toggle-btn::before,
.faq-toggle-btn::after {
    content: '';
    position: absolute;
    background-color: #DFDFDF;
    transition: transform 0.3s ease;
}

.faq-toggle-btn::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 0;
    background-color: #DFDFDF;
    transform: translateY(-50%);
}

.faq-toggle-btn::after {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-toggle-btn.open {
    transform: rotate(45deg);
}

.faq-toggle-btn.open::before,
.faq-toggle-btn.open::after {
    background-color: #FFF; 
}

/* Ensure better responsive handling on mobile */
@media (max-width: 768px) {
    .faq-item {
        width: 95%;
        padding: 15px;
    }

    .faq-answer {
        font-size: 14px; /* Reduce font size on smaller screens */
    }

    .faq-question {
        font-size: 16px;
    }
    .faq-toggle-btn {
    background: none;
    border: none;
    font-size: 2px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}
}
/* Container für das Rechteck und die Produktinformationen */
/* Allgemeine Einstellungen für die Produkt-Reihe */
/* Allgemeine Einstellungen für die Produkt-Reihe */
.product-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 15px;
}

/* Rechteck-Container Einstellungen */
.rectangle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    gap: 10px; /* Abstand zwischen Rechteck und Produktinfos */
    padding-top: 5vh;
    margin-bottom: 40px;
}

/* Stil der Rechtecke */
.rectangle {
    background-color: #080a0867;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 250px;
    height: 230px;
    border-radius: 40px;
    border: 1px solid #1E1E1E;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    opacity: 1;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Sichtbare Rechtecke mit Animation */
.rectangle.visible {
    opacity: 1;
}

/* Bild innerhalb des Rechtecks */
.rectangle-image {
    max-width: 80%;
    max-height: 40%;
    object-fit: contain;
    user-select: none;
}

/* Produktinfo unterhalb des Rechtecks */
.product-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    padding: 0 10px;
    margin-top: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

/* Responsive Anpassungen für Tablets und Mobilgeräte */
/* Responsive Anpassungen für Tablets und Mobilgeräte */
@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
        align-items: center;
        gap: 5px; /* Weniger Abstand zwischen den Produkten */
        margin-top: 5px; /* Reduzierter Abstand nach oben */
    }
    .rectangle-container {
        gap: 3px; /* Weniger Abstand zwischen Rechteck und Produktinfos */
        margin-bottom: -10px; /* Noch weniger Abstand nach unten */
    }
}
/* Styling für den Button unter den Produkten */
/* Styling für den Button unter den Produkten */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-button {
    display: inline-block;
    color: white; /* Textfarbe Standard */
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid transparent; /* Transparenter Rand, bis zum Hover */
    transition: all 0.3s ease; /* Übergang für alle Effekte */
}

/* Hover-Effekt */
.view-all-button:hover {
    border: 1px solid #222222; /* Rand beim Hover */
}
.gif-overlay {
    position: fixed; /* Das Bild bleibt auch beim Scrollen sichtbar */
    top: 50%;         /* Positioniert das Bild vertikal in der Mitte */
    left: 0;          /* Startet auf der linken Seite des Bildschirms */
    z-index: 9999;    /* Stellt sicher, dass das GIFber allen anderen Elementen liegt */
    pointer-events: none; /* Verhindert, dass das GIF mit anderen Elementen interagiert */
    animation: moveAcross 8s linear forwards; /* Animation luft nur einmal und bleibt am Ende in der Endposition */
}

.gif-overlay img {
    width: 150px;     /* Setzt die Breite des GIFs */
    height: auto;     /* Stellt sicher, dass das Seitenverhltnis beibehalten wird */
}

/* Invert colors for items (icons) inside the wrapper */
.wrapper .item {
  filter: invert(100%);
}

/* Additional styles for even smaller screens */
@media (max-width: 616px) {
    header > :first-child {
        gap: 15px;
    }

    .nav {
        display: flex !important;
        flex-direction: row !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        height: auto;
        background-color: transparent;
        gap: 15px;
    }
}

/* Force original case for header nav links */
header nav a {
  text-transform: none !important;
}