@font-face {
    font-family: 'ShopzoneFont';
    src: url('../fonts/Segoe UI.ttf') format('ttf'),
        url('../fonts/Segoe UI Bold.ttf') format('ttf');
    /* Add more font formats if necessary */
    /* You can also specify font-weight and font-style if needed */
}

* {
    font-family: 'ShopzoneFont', sans-serif;
}
footer a:hover{
    color: #e6452e!important;
}
footer button:hover{
    color: #e6452e!important;
}
.logo-header-2 {
    max-width: 150px;
}
.favicon-size{
    height: 50px;
    width: 50px;
}
.size-img-70{
    height: 70px!important;
    width: 70px!important;
}
.size-img-80{
    height: 80px!important;
    width: 80px!important;
}

.w-max{
    width: max-content!important;
}

.w-min{
    width: min-content!important;
}

.res-width-550{
    width: 550px;
    max-width: 100%;
}

.res-width-800{
    width: 800px;
    max-width: 100%;
}

.res-width-900{
    width: 900px;
    max-width: 100%;
}

.text-orange {
    color: #e6452e !important;
}

.text-blue {
    color: #2c5aa1 !important;
}

.bg-orange {
    background-color: #e6452e !important;
}

.bg-blue {
    background-color: #2c5aa1 !important;
}

.main-bg {
    position: fixed;
    background: url('../images/fond rouge.jpg') no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
   /*background-color: rgba(230, 69, 46, 0.8);*/
    /*background-color: rgba(0, 0, 0, 1);*/
   /* background: linear-gradient(to top right, rgba(254, 53, 11, .9), rgba(0, 90, 153, .9)); */
    z-index: -1;
}

.overlay-dark{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.fs-7 {
    font-size: 15px!important;
}

.fs-8 {
    font-size: 12px!important;
}

.header-searchbar {
    height: 40px;
}

.no-outline {
    outline: none !important;
}

.dropdown-menu>li>a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.dropdown-menu>li>a:hover {
    background-color: rgb(219, 219, 219);
}

.menu {
    width: 100%;
    position: relative;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu a {
    display: block;
    padding: 8px;
    background-color: #ffffff;
    text-decoration: none;
}

.menu a:hover{
    color: #e6452e!important;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    padding: 8px;
    z-index: 9999999;
}

@media (max-width: 768px) {
    .submenu {
        left: auto;
        right: 0;
    }
}

.menu li:hover .submenu {
    display: block;
}

.menu-category{
    height: 100px;
    width: 100px;
}
/* PRODUCT CSS */
.div-product{
    box-shadow: 0px solid grey;
    cursor: pointer;
    transition: 2s;
    -webkit-transition: 2s;
    -moz-transition: 2s;
    -ms-transition: 2s;
    -o-transition: 2s;
}
.div-product:hover{
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}
.page-product-image{
    height: 350px;
}
.page-product-gallery{
    height: 20px;
    width: 20px;
}
.product-image{
    height: 210px;
}
.products-container {
    transition: scroll 1s ease-in-out;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.products-container::-webkit-scrollbar {
    display: none;
}

.products-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.products-container::-webkit-scrollbar-thumb {
    background-color: transparent;
}
.products-container-buttons{
    visibility: hidden;
}
.products-container:hover .products-container-buttons{
    visibility: visible;
}
.article-restant-p{
    color: red!important;
}
/* /PRODUCT CSS */

/* Cart CSS */
.cart-image{
    height: 100px;
    width: 100px;
}

/* /Cart CSS */

/* OFFRE CSS */
.div-offre{
    height: 300px;
    box-shadow: 0px solid black;
    cursor: pointer;
}
.div-offre:hover{
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.4);
}
/* /OFFRE CSS */

/* BOUTIQUE CSS */
.div-boutique{
    height: 400px;
    box-shadow: 0px solid black;
    cursor: pointer;
}
.div-boutique:hover{
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.4);
}
/* /BOUTIQUE CSS */
.text-limiter-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-limiter {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.long-limiter {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    /* number of lines to show */
    line-clamp: 12;
    -webkit-box-orient: vertical;
}

.sh-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    /* Three columns of different sizes */
    grid-gap: 10px;
    max-width: 100%;
    margin: 0 auto;
}
