/* ============================================================
   BRIESCOM CUSTOM CSS
   Wird per Header-Override eingebunden (kein SCSS-Compiler noetig)
   Primaerfarbe: #203763  |  Hover-Blau: #162745
   ============================================================ */

/* === Schriftart Raleway von Google Fonts laden === */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

/* === Funktionale Ausblendungen === */
a[aria-label="Mein Konto"] {
    display: none !important;
}
a[aria-label*="Warenkorb"] {
    display: none !important;
}
.withdrawal-link {
    display: none !important;
}
.item-slider-price {
    display: none !important;
}
.footnote-vat {
    display: none !important;
}

/* === Schrift === */
h1, h2, h3,
button, .btn,
a {
    font-family: 'Raleway', sans-serif;
}
h1 { font-size: 32px; font-weight: bold; }
h2 { font-size: 28px; font-weight: bold; }
h3 { font-size: 24px; font-weight: bold; }

a:hover:not(.btn):not(.nav-item.active .nav-link) {
    color: #203763;
}

/* === Buttons === */
.btn-primary {
    background-color: #203763;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 2rem;
}
.btn-primary:hover {
    background-color: #162745;
}
.btn-outline-primary {
    border: 3px solid #203763;
    border-radius: 8px;
    padding: 0.5rem 2rem;
    color: #080C11;
}
.btn-outline-primary:hover {
    background-color: #fff;
    border-color: #162745;
}
.btn-secondary {
    background-color: #080C11;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 2rem;
}
.btn-secondary:hover {
    background-color: #373737;
}
.btn-warning {
    background-color: #F8BF00;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 2rem;
    border: 0;
}
.btn-warning:hover {
    background-color: #E8B301;
    color: #fff;
}

/* === "Weitere Nummern" Button (Artikelnummer/HAN) === */
.additionalNumbers {
    justify-content: center !important;
    padding: 0.25rem 0.5rem;
    border: 1px solid #c9c9c9;
    border-radius: 20px;
    font-size: 14px;
    margin-inline: 0.5rem;
    text-decoration: none;
}

/* === Artikelnummer/HAN unter Produktname (Listen) === */
.productbox-artnr,
.productbox-han,
.item-slider-artnr,
.item-slider-han {
    font-size: 0.85em;
    color: #888;
    line-height: 1.3;
}
.productbox-artnr,
.item-slider-artnr {
    margin-top: 3px;
}

/* === "Preis auf Anfrage" Text in Briescom-Blau === */
.price_label.price_on_application {
    font-family: 'Raleway', 'Open Sans';
    font-weight: bold;
    color: #203763;
    margin-top: 1rem;
}

/* === Suchfeld im Header === */
header .search-wrapper .input-group input {
    border: 1px solid #707070;
    border-radius: 5px 0 0 5px;
}
header .input-group-append .btn.btn-secondary {
    padding: 0.5rem 0.75rem;
    background-color: #203763;
    border: 1px solid #707070;
    border-radius: 0 5px 5px 0 !important;
}
header .input-group-append .btn.btn-secondary:hover {
    background-color: #162745;
}

/* === Navigation: aktiver Menuepunkt in Blau (ab lg) === */
@media (min-width: 992px) {
    header .navbar-nav > li.nav-item {
        padding-inline: 0.25rem;
    }
    header .navbar-nav > li.nav-item.active {
        display: flex;
        align-items: center;
    }
    header .navbar-nav > li.nav-item.active > .nav-link {
        padding: 0.5rem 1rem;
        background-color: #203763;
        border-radius: 8px;
        color: #fff;
    }
    header .navbar-nav > li.nav-item.active > .nav-link:hover {
        color: #fff;
    }
    header .navbar-nav > li.nav-item.active > .nav-link:before {
        content: none;
    }
}

/* === Mobile Navigation: graue Nav-Kacheln (bis md) === */
@media (max-width: 991.98px) {
    header #shop-nav li {
        margin-inline: 0.25rem;
        padding: 0.25rem;
    }
    header #shop-nav li a.nav-link {
        background-color: #EEEEEE;
        border-radius: 7px;
        padding: 6px 10px;
    }
    header #shop-nav li i.nav-link {
        padding: 10px 12px;
        background-color: #EEEEEE;
        border-radius: 7px;
    }
}

/* === Produkt-Boxen Hover-Schatten === */
.slick-list .product-wrapper,
.slick-list .product-box,
.slick-lazy .product-wrapper,
.slick-lazy .product-box {
    box-shadow: 0 0 0 rgba(0,0,0,0.0);
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 5px;
    padding-bottom: 1rem;
    margin: 0.75rem;
    position: relative;
}
.slick-list .product-wrapper:hover,
.slick-list .product-box:hover,
.slick-lazy .product-wrapper:hover,
.slick-lazy .product-box:hover {
    box-shadow: 3px 3px 8px 2px rgb(0 0 0 / 10%);
}
.slick-list .product-wrapper a,
.slick-lazy .product-wrapper a {
    text-decoration: none;
}
.slick-list .product-wrapper .item-slider-desc,
.slick-lazy .product-wrapper .item-slider-desc {
    color: #404040;
}




/* === Footer in Dunkelblau === */
#footer {
    background-color: #000634;
}
#footer * {
    text-decoration: none;
    color: #fff;
}
#footer #copyright {
    background-color: #000;
}
#footer #copyright a {
    font-size: 12px;
}