/* animierten bottom border anpassen */
header {
    box-shadow: none;
    border-bottom: 1px solid var(--gray-medium);
    background-color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
}

div.modal-backdrop + header {
    background-color: white;
}

@media (min-width: 992px) {
    header .navbar-nav>.nav-item>.nav-link::before {
        left: 0;
        transform: none;
        border-width: 0 0 2px;
        transition: width 0.4s ease;
    }
}

.tab-navigation .nav-link::after {
    left: 0;
    transform: none;
    border-width: 0 0 2px;
    transition: width 0.4s ease;
}



#footer a:not(.btn) {
    color: rgba(173, 173, 173);
}

#footer .productlist-filter-headline {
    color: var(--primary);
}

/* wegen dunklerer primärfarbe schrift im button hell machen */
.btn-primary {
    color: white;
}
 .btn-primary:hover {
    color: white;
    background-color: color-mix(in oklab, var(--primary) 90%, black)!important;
}
 .btn-primary:active {
    color: white!important;
    background-color: color-mix(in oklab, var(--primary) 80%, black)!important;

}


/* styles die in der landing page genutzt werden (alle elemente auf root level haben die klasse ds2026) */
.ds2026 {
    h1 {
        font-size: clamp(40px, 4.6vw, 68px);
        margin-bottom: 22px;
    }

    h2 {
        font-size: clamp(30px, 3.4vw, 44px);
        max-width: 600px;
    }

    h4 {
        font-size: 18.5px;
        font-family: 'Inter';
        font-weight: 600;
        margin-bottom: 11px;
    }

    h1,
    h2,
    h3 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.05;
    }

    .condensed-grid>div {
        /* padding: 2px; */
        /* padding-top: 2px; */
        /* padding-bottom: 2px; */
        margin-left: -2px;
        margin-right: -2px;
        padding: 2px 4px 2px 4px;


        /* Zoom-Effect for Container Background on Hover */
        & .opc-Container {
            position: relative;
            overflow: hidden;
        }

        & .opc-Container::before {
            content: "";
            position: absolute;
            inset: 0;
            background: inherit;
            /* copies the background-image */
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
            z-index: 0;
        }

        & .opc-Container:hover::before {
            transform: scale(1.08);
        }

        /* Keep content above the background */
        & .opc-Container>* {
            position: relative;
            z-index: 1;
        }

    }

    .border-grid {
        background-color: var(--gray-light);
        padding-top: 4px;
        padding-bottom: 4px;

        &>div {
            padding-top: 8px;
            padding-bottom: 8px;


            &>.opc-Container {
                background-color: rgb(255, 255, 255);
                transition: background-color 0.3s ease;
            }

            &>.opc-Container:hover {
                background-color: #f5f1ea;
            }
        }
    }

    .border-grid .opc-Container:hover .why-icon {
        transform: translateY(-3px);
    }

    .why-icon {
        width: 52px;
        height: 52px;
        border: 1px solid #EFE3C8;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 30%, #EFE3C8 0%, rgba(239, 227, 200, 0.25) 70%);
        box-shadow: 0 4px 14px -6px rgba(201, 160, 75, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        transition: transform 0.3s ease;
    }

    .why-icon svg {
        width: 23px;
        height: 23px;
        stroke: var(--primary);
    }
}


@font-face {
    font-family: "Inter";
    font-style: normal;
    src: url("../../fonts/Inter-VariableFont_opsz\,wght.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    src: url("../../fonts/Inter-Italic-VariableFont_opsz\,wght.ttf") format("truetype");
}

@font-face {
    font-family: "Bricolage Grotesque";
    font-style: normal;
    src: url("../../fonts/BricolageGrotesque-VariableFont_opsz\,wdth\,wght.ttf") format("truetype");
}

.detail-amazon a{
    background: #171717;
    display: flex;
    padding: 12px 81px;
    border-radius: 4px;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    align-items: end;
    gap: 15px;
}
.detail-amazon img {
  filter: brightness(0) invert(1);
  max-height: 26px;
}

.detail-amazon {
  margin-bottom: 15px;
}