﻿body {
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-width: 150px;
    padding: 20px;
}

.product {
    flex-basis: 22%; /* Adjust based on the number of items per row you desire */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 10px;
    text-align: center;
}

    .product img {
        max-width: 100%;
        height: auto;
    }

.product-title {
    font-size: 16px;
    margin: 10px 0;
}

.product-price {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/*======= Additioal Braspartner 1 =======*/


.swiper-slide {
    position: relative;
    width: 120px; /* Example width, adjust as needed */
    height: 80px; /* Example height, adjust as needed */
    border-block-color: transparent;
    border-color: transparent;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        border-block-color: transparent;
        border-color: transparent;
        object-fit: cover; /* Ensure the image covers the slide */
    }

.overlay-text {
    position: absolute;
    width: 100%;
    text-align: center;
    vertical-align: bottom;
    border-block-color: transparent;
    border-color: transparent;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Text color */
    font-size: 14px; /* Adjust the text size as needed */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* rgba(0, 0, 0, 0.5); Optional: for better readability */
}


:root {
    --white-color: #fff;
    --dark-color: #222;
    --body-bg-color: #fff;
    --section-bg-color: #262834;
    --navigation-item-hover-color: #3b5378;
    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    --scroll-bar-color: #fff;
    --scroll-thumb-color: #282f4e;
    --scroll-thumb-hover-color: #454f6b;
}

/*======= Additioal Braspartner 2 =======*/




.navigation .nav-item {
    position: relative;
    display: inline-block;
    flex-grow: 1;
}

.navigation .sub-menu, .navigation .sub-menu .sub-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Apply to all submenu items */
    .navigation .sub-menu a {
        white-space: nowrap;
        font-family: 'Roboto', sans-serif; /* Use the imported font */
        font-size: small;
        color: gray !important; /* Set text color */
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change background color on hover */
        .navigation .sub-menu a:hover {
            background-color: #ddd;
            color: #0056b3 !important; /* Darker shade for contrast on hover */
        }


.navigation .sub-menu {
    left: 0;
    top: 100%;
}

    .navigation .sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }

.navigation .nav-item:hover > .sub-menu {
    display: block;
}

.sub-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

    .sub-menu a:hover {
        background-color: #ddd;
    }

.pagination a {
    padding: 8px 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    transition: background-color 0.3s;
}

    .pagination a:hover {
        background-color: #f4f4f4;
        color: #555;
    }

    .pagination a.active {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }



.collapsible {
    color: #444;
    font-weight: bold;
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    position: relative; /* Ensure positioning context is set for the button */
}

.collapsible .sign {
    position: absolute;
    right: 20px; /* Adjust spacing to the right edge */
}

.active, .collapsible:hover {
    background-color: #ccc;
}

.contentCollapse {
    padding: 5px 18px;
    display: none;
    overflow: hidden;
}

.rounded-img {
    border-radius: 20px;
}


