@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

/*navbar*/
.logo {
    margin-left: -17px;
    padding-bottom: 10px;
}

.container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding-bottom: 10px;
    }

    .logo img {
        max-width: 250px;
        height: auto;
    }
}

.navbar {
    padding: 25px 0;
    padding-inline-start: 10px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 2px 8px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px;
    width: 250px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.search-icon {
    cursor: pointer;
    margin-left: 45px;
    width: 40px;
    height: 40px;
    transform: scale(1.6);
}

.nav-links {
    display: flex;
    gap: 10px;
    position: relative;
    color: black;
}

.nav-links a,
.dropdown-btn {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.nav-links a:hover,
.dropdown-btn:hover {
    color: #0023c4;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

.dropdown-btn i {
    margin-left: 5px;
}

.icons {
    display: flex;
    gap: 2px;
}

.icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.icons img:hover {
    opacity: 0.7;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    left: 17px;
    top: 28%;
    transform: translateY(-50%);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    left: 0;
    width: 250px;
}

.close-btn {
    font-size: 25px;
    cursor: pointer;
    text-align: left;
}

.sidebar .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-top: 35px;
}

.sidebar .icons {
    margin-top: -35px;
    display: flex;
    justify-content: right;
    gap: 10px;
}

@media not all and (min-width: 1025px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links,
    .icons {
        display: none;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 107, 151, 0.5);
    backdrop-filter: blur(0px);
    z-index: 999;
    display: none;
}

.sidebar.active~.overlay {
    display: block;
}




/*pagepro*/
.slider-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    display: none;
    height: 100%;
    margin-top: 10px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    width: 80%;
}

.text-overlay h1 {
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    margin-left: -50px;
}

.text-overlay p {
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
    margin-left: -50px;
}

.btn {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: none;
    margin-left: -50px;
}

.btn:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.btn img {
    width: 30px;
    height: auto;
    margin-left: 25px;
}

.navigation-wrapper {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    border-radius: 15px 0 15px 0;
    gap: 10px;
    width: 60px;
    position: absolute;
    top: 390px;
    right: -4px;
}

.navigation-wrapper::after {
    content: '';
    background: transparent;
    height: 28px;
    width: 17px;
    position: absolute;
    top: -28px;
    right: 0;
    border-radius: 0 0 50px 0;
    box-shadow: 0 16px 0 0 #ffffff;
}

.navigation-wrapper::before {
    content: '';
    background: transparent;
    height: 28px;
    width: 17px;
    position: absolute;
    top: 82px;
    right: 57px;
    border-radius: 0 0 50px 0;
    box-shadow: 0 16px 0 0 #ffffff;
}

.prev,
.next {
    background-color: white;
    color: gray;
    border: 1px solid #eee;
    ;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover,
.next:hover {
    background-color: #0023c4;
    color: rgb(255, 247, 247);
}

@media (max-width: 768px) {
    .text-overlay {
        top: 50%;
        left: 0;
        transform: translateY(-50%) scale(0.7);
        width: 90%;
        text-align: left;
    }

    .text-overlay h1,
    .text-overlay p,
    .btn {
        margin-left: 0;
    }

    .btn {
        justify-content: flex-start;
    }

    .navigation-wrapper {
        position: absolute;
        top: 403px;
        right: -10px;
        transform: scale(0.8);
        border: none;
    }

    .navigation-wrapper::after,
    .navigation-wrapper::before {
        display: none;
    }
}




/*Catégories*/
.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.categories-container {
    margin-top: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: none;
    padding: 20px;
}

.categories-container h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
}

.categories {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    min-height: 230px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.category-item {
    background-color: #ffffff;
    border-radius: 30px;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.category-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 10px;
}

.category-item p {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #333;
    margin: 0;
    font-size: 18px;
}

.category-item:nth-child(1) {
    background-color: #0023c4;
    color: white;
}

.category-item:nth-child(1) p {
    font-weight: bold;
    font-size: 25px;
}

.category-item:nth-child(1):hover {
    background-color: #0023c4;
}

.yellow-text {
    color: yellow;
}

.white-text {
    color: white;
}

@media (max-width: 768px) {
    .categories-container h2 {
        text-align: center;
    }
}





/*cards*/
.cards-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.header-container h2 {
    font-size: 2rem;
    color: #000;
    margin: 0;
}

.arrows {
    display: flex;
    gap: 10px;
}

.arrows i {
    font-size: 20px;
    color: #636363;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.arrows i:hover {
    opacity: 0.7;
}

.cards-wrapper {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    width: 100%;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.card {
    width: 130px;
    height: 500px;
    background-color: #fafafa;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    border: none;
    position: relative;
    overflow: hidden;
}

.card.open {
    width: 400px;
    height: 500px;
    border: none;
}

.card h3 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    padding-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card:not(.open) h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    justify-content: end;
    padding-bottom: 30px;
}

.card:not(.open) h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(10px);
    top: 0;
    width: 1px;
    height: 175px;
    background-color: #d4d4d4;
    transform: translate(-50%, 50%);
}

.card.open h3 {
    padding-top: 30px;
    padding-left: 30px;
    writing-mode: horizontal-tb;
    justify-content: flex-start;
    color: #0023c4;
    font-size: 26px;
    height: fit-content;
}

.card.open h3::after {
    content: none;
}

.card p {
    font-size: 14px;
    text-align: center;
    width: 80%;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: visibility 0s, opacity 5s linear;
}

.card.open img.profile-image {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.card.open p {
    display: block;
    visibility: visible;
    margin-bottom: 0;
    opacity: 1;
}

.card img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    display: none;
}

.card.open img {
    display: block;
    width: 40px;
    height: 40px;
    bottom: 30px;
}

.btn-toggle {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 27px;
    display: block !important;
}

.card.open .toggle-container .btn-toggle {
    /*background-color: #ffffff;*/
    border-radius: 0 15px 0 15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    position: relative;
}

.header-container h2 {
    font-size: 2rem;
    color: #000;
    margin: 0;
}

.arrows {
    display: flex;
    gap: 10px;
}

.arrows i {
    font-size: 20px;
    color: #636363;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.arrows i:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .card.open {
        width: 300px;
    }

    .cards-wrapper {
        gap: 10px;
    }

    .header-container {
        justify-content: center;
        text-align: center;
    }

    .arrows {
        position: absolute;
        width: 115%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
    }
}








/*PagePub*/
.pagepub-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
}

.pagepub-container h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
    width: 100%;
}

.sliderpub {
    position: relative;
}

.pagepub {
    display: none;
    margin-top: 50px;
    overflow: hidden;
}

.pagepub img {
    width: 100%;
    height: auto;
    border-radius: 50px;
    display: block;
    overflow: hidden;
    position: relative;

}

.sliderpub-wrapper {
    display: flex;
    flex-direction: row;
    background-color: white;
    padding: 10px;
    border-radius: 0 15px 0 15px;
    gap: 10px;
    width: auto;
    position: absolute;
    top: 480px;
    left: -4px;
    right: auto;
}

.prev-1,
.next-1 {
    background-color: white;
    color: gray;
    border: 1px solid #eee;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-1:hover,
.next-1:hover {
    background-color: #0023c4;
    color: rgb(255, 247, 247);
}

@media (max-width: 768px) {
    .pagepub img {
        height: 300px;
    }

    .pagepub-container h2 {
        text-align: center;
    }
}

@media not all and (min-width: 1025px) {
    .sliderpub-wrapper {
        flex-direction: column;
        top: auto;
        bottom: 0px;
        right: 0px;
        left: auto;
        gap: 5px;
        border-radius: 0;
    }
}





/*Productshop*/
.d-flex {
    display: flex;
    align-items: center;
    margin: 50px auto 0;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
}

.product-container {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.title-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.title-btn h2 {
    margin-right: -45px;
}

.scroll-btn {
    background-color: #ffffff;
    color: rgb(156, 156, 156);
    border: none;
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s;
}

.scroll-btn:hover {
    background-color: #ffffff;
}

.product-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-list {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    white-space: nowrap;
}

.product-container h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
    width: 100%;
}

.product-card {
    background: #fafafa;
    border-radius: 30px;
    padding: 10px;
    width: 180px;
    text-align: left;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
    padding-top: 10px;
}

.product-card p {
    font-size: 13px;
    margin: 0;
    padding-bottom: 5px;
    padding-left: 14px;
    margin-top: -10px;
}

.product-card img {
    width: 45%;
    display: block;
    margin: auto;
    align-self: center;
    padding-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    text-decoration-color: red;
    color: rgb(0, 0, 0);
    font-size: 12px !important;
}

.new-price {
    color: #375cff;
    font-size: 15px !important;
    font-weight: bold;
}

.cart-a {
    display: inline-block;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    position: absolute;
    bottom: -20px;
    right: -15px;
    cursor: pointer;
    background: transparent;
}

.cart-a img {
    width: 115px;
    height: 115px;
}

@media (max-width: 768px) {
    .product-list {
        gap: 20px;
        padding-left: 18px;
    }

    .product-card {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .title-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-btn h2 {
        flex: 1;
        text-align: center;
        margin: 0;
    }

    .scroll-btn {
        font-size: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .left-btn {
        left: 0;
    }

    .right-btn {
        right: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-list {
        gap: 20px;
        padding-left: 18px;
    }

    .product-card {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .title-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-btn h2 {
        flex: 1;
        text-align: center;
        margin: 0;
    }

    .scroll-btn {
        font-size: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .left-btn {
        left: 0;
    }

    .right-btn {
        right: 0;
    }
}

/*bigcart*/
.big-card-container {
    position: relative;
    z-index: 5;
}

.big-card {
    position: absolute;
    width: 470px;
    height: 620px;
    background: #0023c4;
    color: white;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    top: -438px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 30px solid white;
}

.big-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.big-card-content h3 {
    font-size: 33px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    display: inline-block;
    padding-bottom: 30px;
}

.big-card-icon {
    width: 50px;
}

.city {
    font-size: 30px;
    font-weight: bold;
    color: #ffd700;
}

.location-btn {
    background: white;
    color: #000;
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-btn img {
    width: 30px;
    height: 30px;
}

.local-a img {
    width: 300px;
    height: 200px;
}

@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .product-container h2 {
        text-align: center;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .big-card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .big-card {
        position: static;
        width: 90%;
        max-width: 100%;
        outline: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .product-container h2 {
        text-align: center;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .big-card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .big-card {
        position: static;
        width: 90%;
        max-width: 100%;
        outline: none;
    }
}








/*b2b-content*/
.b2b-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
}

.b2b-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: #fafafa;
    border-radius: 50px;
    padding: 30px;
}

.b2b-content {
    flex: 1;
    padding-right: 40px;
}

.b2b-content h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
    width: 100%;
    background: none;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding-top: 30px;
}

.b2b-menu {
    flex: 1;
    margin-top: -13px;
}

.b2b-menu ul {
    list-style: none;
}

.b2b-menu li {
    font-size: 17px;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s;
}

.b2b-menu li:last-child {
    border-bottom: none;
}

.b2b-menu li:hover {
    color: #0023c4;
}

@media (max-width: 768px) {
    .b2b-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .b2b-content {
        padding-right: 0;
        text-align: left;
    }

    .b2b-content h2 {
        text-align: center;
    }

    .b2b-menu {
        margin-top: 8px;
    }

    .b2b-menu ul {
        padding: 0;
    }

    .b2b-menu li {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 0;
        text-align: left;
    }
}




/*newsletter-content*/
.newsletter-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.newsletter-content {
    width: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.newsletter-card {
    width: 40%;
    min-height: 535px;
    padding: 30px;
    border-radius: 50px;
    color: white;
    background-color: #0023c4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.newsletter-card .icon {
    width: 350px;
    margin-top: -150px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-card h2 {
    font-size: 35px;
    font-weight: bold;
    margin-top: 100px;
    padding-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 30px;
}

.newsletter-card h2 span {
    color: #FFD700;
}

.newsletter-form {
    display: flex;
    background: white;
    border-radius: 30px;
    padding: 2px;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.newsletter-form input {
    border: none;
    outline: none;
    padding: 12px;
    flex: 1;
    border-radius: 30px;
    font-size: 16px;
}

.newsletter-form button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 70px;
    height: 60px;
}

.newsletter-form button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-card {
    width: 60%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card .offer-image {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

@media (max-width: 1205px) {
    .newsletter-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .newsletter-card {
        width: 90%;
        min-height: auto;
        padding-bottom: 40px;
        border-radius: 40px;
        background-color: #0023c4;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .newsletter-card .icon {
        width: 220px;
        margin-top: -40px;
        position: relative;
        transform: none;
        left: auto;
        padding-right: 0;
    }

    .newsletter-card h2 {
        font-size: 28px;
        margin: 10px 0;
        padding-bottom: 15px;
        margin-top: 60px;
    }

    .newsletter-form {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .newsletter-form input {
        padding: 10px;
        font-size: 14px;
        text-align: left;
    }

    .newsletter-form button {
        font-size: 18px;
    }

    .offer-card {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .offer-card .offer-image {
        width: 100%;
        height: auto;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .newsletter-card {
        width: 100%;
        padding: 20px;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .newsletter-card .icon {
        width: 250px;
        margin-bottom: 5px;
        padding-right: 50px;
    }

    .newsletter-card h2 {
        font-size: 24px;
        margin-top: -50px;
        padding-bottom: 10px;
    }

    .newsletter-form {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .offer-card {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .offer-card .offer-image {
        width: 100%;
        border-radius: 30px;
    }
}

@media screen and (max-width: 768px) {
    .offer-card .offer-image {
        content: url("/assets/img/carte-previllegeMobile.jpg");
    }
}

#errorMsg {
    display: none;
    padding: 10px;
    margin-top: 5px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}







/*brands-section*/
.brands-section {
    background-color: #fafafa;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.brands-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.brands-images {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: center;
}

.brands-container img {
    width: 150px;
    margin: 0 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brands-container img:hover {
    transform: scale(1.1);
}

.arrow {
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: #9c9c9c;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

@media (max-width: 768px) {
    .brands-section {
        width: 95%;
        padding: 10px;
    }

    .brands-container {
        justify-content: center;
        overflow: hidden;
    }

    .brands-images {
        display: flex;
        justify-content: center;
        transition: transform 0.5s ease;
    }

    .brands-container img {
        margin: 0 10px;
    }

    .arrow {
        font-size: 16px;
        padding: 8px;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 5px;
    }
}

@media (min-width: 444px) and (max-width: 741px) {
    .brands-images {
        width: calc(2 * 150px + 2 * 15px);
    }
}









/*footer*/
footer {
    background-color: #fafafa;
    margin-top: 100px;
    text-align: left;
    padding-top: 80px;
}

@media (max-width: 767px) {
    .footer-section {
        margin-left: 30px;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-section {
        width: 22%;
    }

    .footer-section:nth-child(2),
    .footer-section:nth-child(4) {
        position: relative;
        padding-left: 50px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
        list-style-type: disc;
        list-style-position: inside;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-section {
        width: 48%;
        margin-bottom: 30px;
    }

    .footer-section:nth-child(2),
    .footer-section:nth-child(4) {
        padding-left: 0;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 15px;
    }

    .payment-icons img {
        width: 250px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section .section1 p {
        font-size: 14px;
    }
}

.footer-section h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    margin-left: -8px;
    list-style-type: disc;
    list-style-position: inside;
}

.footer-section ul li::marker {
    color: #0023c4;
}

.footer-section ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #0023c4;
}

.footer-section p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.footer-section h6 {
    font-size: 14px;
    margin-bottom: -5px;
}

.footer-section img.icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.footer-section .section1 p {
    font-size: 13px;
    padding-left: 20px;
}

.footer-section .section2 p:first-of-type strong {
    padding-left: 0;
}

.footer-section .section2 p:not(:first-of-type) strong {
    padding-left: 30px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    margin-top: -18px;
}

.payment-icons img {
    width: 300px;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #0023c4;
    border-radius: 50%;
    overflow: hidden;
}

.social-icons img {
    width: 200%;
    height: 200%;
    transition: transform 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 5px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #000000;
}

/*footer-arrow*/
.footer-arrow {
    display: none;
}

@media only screen and (max-width: 560px) {
    .footer-arrow {
        display: inline-block;
        margin-left: 10px;
        cursor: pointer;
    }

    .footer-section ul,
    .footer-section .section1>h6,
    .footer-section .section1>p {
        display: none;
    }

    .footer-section.active ul,
    .footer-section.active .section1>h6,
    .footer-section.active .section1>p {
        display: block;
    }

    .payment-icons,
    .footer-section .section1>h3:last-child {
        display: block !important;
    }

    .footer-arrow-icon {
        transition: transform 0.3s ease;
    }

    .footer-section.active .footer-arrow-icon {
        transform: rotate(180deg);
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        position: relative;
        padding-right: 30px;
        margin-bottom: 15px;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}



/*------------------------------------

Page nouveautes

------------------------------------*/
.image-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.nouveautes-container {
    padding: 20px;
    margin-top: -35px;
}

.nouveautes-container h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    gap: 25px;
    padding-top: 20px;
}

.single-image,
.gallery-container {
    position: relative;
}

.single-image img,
.gallery img {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 30px;
}

.single-image {
    position: relative;
    width: 40%;
}

.single-image img {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 30px;
}

.single-image .slide-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

/*gallery*/
.gallery-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.gallery a {
    flex: 0 0 100%;
}

.gallery img {
    width: 100%;
    flex-shrink: 0;
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    border-radius: 15px 0 15px 0;
    gap: 10px;
    width: 60px;
    position: absolute;
    top: 345px;
    right: -4px;
}

.gallery-controls::after {
    content: '';
    background: transparent;
    height: 28px;
    width: 17px;
    position: absolute;
    top: -28px;
    right: 0;
    border-radius: 0 0 50px 0;
    box-shadow: 0 16px 0 0 #ffffff;
}

.gallery-controls::before {
    content: '';
    background: transparent;
    height: 28px;
    width: 17px;
    position: absolute;
    top: 82px;
    right: 57px;
    border-radius: 0 0 50px 0;
    box-shadow: 0 16px 0 0 #ffffff;
}

.previos,
.nextios {
    background-color: white;
    color: gray;
    border: 1px solid #eee;
    ;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.previos:hover,
.nextios:hover {
    background-color: #0023c4;
    color: rgb(255, 247, 247);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nouveautes-container h2 {
        text-align: center;
    }

    .single-image,
    .gallery-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 0;
    }

    .single-image img,
    .gallery img {
        width: 100% !important;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .single-image .slide-btn {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 50px !important;
        height: 50px;
        cursor: pointer;
        z-index: 10;
    }

    .gallery-controls {
        position: absolute;
        top: 80%;
        right: -5px;
        transform: translateY(-50%);
        flex-direction: column;
        width: 60px;
        border: none;
    }

    .gallery-controls::after,
    .gallery-controls::before {
        display: none;
    }
}

@media (min-width: 496px) {
    .gallery-controls {
        position: absolute;
        top: 90%;
        right: -5px;
        transform: translateY(-50%);
        flex-direction: column;
        width: 60px;
        border: none;
    }

}





/*cover*/
.cover-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px 0 20px;
    position: relative;
}

.cover-container img {
    width: 100%;
    height: 350px;
    display: block;
    border-radius: 30px;
}

.cover-btn {
    position: absolute;
    bottom: 0;
    right: 15px;
    cursor: pointer;
    max-width: 100px;
    max-height: 100px;
}





/*jbl-pub*/
.container-jbl {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 550px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.headphone {
    position: absolute;
    top: -50px;
    width: 250px;
    border-radius: 30px;
    z-index: 3;
    overflow: hidden;
}

.content {
    padding-left: 300px;
    padding-bottom: 60px;
    background: #fafafa;
    border-radius: 30px;
    margin-bottom: 60px;
}

.title {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0;
    padding-top: 60px;
}

.desc {
    color: #000000;
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: -18px;
    padding-right: 90px;
}

.btn1 {
    display: inline-block;
    padding: 12px 30px;
    font-size: 13px;
    color: #333;
    border: 1px solid #a3a3a3;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.jbl-btn {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 0 -70px 0;
    padding-top: 30px;
}

/*canon*/
.canon-image {
    position: relative;
    width: 500px;
    margin-left: 22px;
}

.canon-main {
    width: 100%;
    border-radius: 20px;
    height: 322px;
    margin-bottom: 60px;
}

.canon-btn {
    position: absolute;
    bottom: 55px;
    right: -5px;
    width: 100px;
    height: auto;
    cursor: pointer;
}

.container-jbl {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 1024px) {
    .container-jbl {
        flex-direction: column;
        align-items: center;
    }

    .product {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: right;
        width: 100%;
    }

    .headphone {
        position: absolute;
        width: 40%;
        margin-right: 300px;
        max-width: 300px;
        margin-top: 80px;
        z-index: 3;
        animation: none;
        box-shadow: none;
    }

    .content {
        width: 100%;
        padding: 50px 30px;
        position: relative;
        z-index: 2;
    }

    .jbl-btn {
        margin-left: auto;
        margin-right: 160px;
        display: block;
    }

    .desc {
        padding-right: 30px;
        font-size: 20px;
    }

    .canon-main {
        margin-top: 20px;
    }

    .canon-image {
        width: 100%;
        max-width: 800px;
        margin-left: 0;
    }

    .canon-btn {
        width: 80px;
    }
}

@media (max-width: 625px) {
    .headphone {
        position: absolute;
        width: 30%;
        margin-right: 200px;
        max-width: 300px;
        margin-top: 150px;
        z-index: 3;
    }

    .content {
        width: 100%;
        padding: 50px 0px 50px 0px;
        position: relative;
        z-index: 2;
    }

    .title {
        font-size: 25px;
        font-weight: bold;
        margin: 20px 20px 20px 0;
        padding-top: 60px;
    }

    .desc {
        color: #000000;
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: -18px;
    }

    .btn1 {
        display: inline-block;
        padding: 12px 30px;
        margin-right: 20px;
        font-size: 13px;
        color: #333;
        border: 1px solid #a3a3a3;
        border-radius: 25px;
        text-decoration: none;
        transition: 0.3s;
    }
}

@media (max-width: 443px) {
    .headphone {
        position: absolute;
        width: 20%;
        margin-right: 200px;
        max-width: 300px;
        margin-top: 200px;
        z-index: 3;
    }

    .content {
        width: 100%;
        padding: 50px 0px 50px 0px;
        position: relative;
        z-index: 2;
    }

    .title {
        font-size: 25px;
        font-weight: bold;
        margin: 20px 20px 20px 0;
        padding-top: 60px;
    }

    .desc {
        color: #000000;
        font-size: 18px;
        margin-bottom: 20px;
        margin-top: -18px;
    }

    .btn1 {
        display: inline-block;
        padding: 12px 30px;
        margin-right: 20px;
        font-size: 13px;
        color: #333;
        border: 1px solid #a3a3a3;
        border-radius: 25px;
        text-decoration: none;
        transition: 0.3s;
    }
}

@media (min-width: 690px) and (max-width: 1216px) {
    .headphone {
        position: absolute;
        width: 26%;
        margin-right: 300px;
        max-width: 300px;
        margin-top: 80px;
        z-index: 3;
    }

    .content {
        width: 100%;
        padding: 50px 30px;
        position: relative;
        z-index: 2;
    }

    .jbl-btn {
        margin-left: auto;
        margin-right: 160px;
        display: block;
    }

    .desc {
        padding-right: 30px;
        font-size: 20px;
    }
}



/*------------------------------------

  Page Promtions

------------------------------------*/
.promo-container {
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-container h2 {
    font-size: 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #000;
    margin-bottom: 20px;
    flex: 1;
}

.chevron {
    display: flex;
    gap: 10px;
    transform: translateX(-35px);
    padding-bottom: 10px;
}

.chevron i {
    font-size: 20px;
    color: #636363;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.promo-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-top: 20px;
}

.promo-categories {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-category-box {
    background: #fafafa;
    padding: 25px 20px 2px 20px;
    border-radius: 30px;
    border: none;
    margin-bottom: 20px;
}

.promo-category-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: bold;
}

.promo-category-box label {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
}

.promo {
    display: block;
}

.icon-dropdown i {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.icon-dropdown i.fa-chevron-up {
    transform: rotate(180deg);
}

/*range-prix*/
.filter-container {
    background: #fafafa;
    padding: 25px 20px 10px 20px;
    border-radius: 30px;
    border: none;
    margin-bottom: 20px;
}

.filter-header {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.icon-dropdown {
    font-size: 14px;
    color: #666;
}

.range-wrapper {
    position: relative;
    margin: 20px 0;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
}

.range-track {
    position: absolute;
    height: 6px;
    background: #0023c4;
    border-radius: 5px;
    top: 0;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #0023c4;
    border: 3px solid white;
    border-radius: 50%;
    cursor: grab;
    pointer-events: all;
    position: relative;
    z-index: 2;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0023c4;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

/*deals*/
.deal-card {
    background: #0023c4;
    padding: 25px 20px 25px 20px;
    border-radius: 30px;
    border: none;
    margin-bottom: 20px;
    text-align: center;
    height: 450px;
}

.deal-icon {
    width: 180px;
    margin-bottom: 10px;
}

.deal-header h2 {
    font-size: 30px;
    margin: 0;
    color: white;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
    border-bottom: solid 1px white;
}

.highlight {
    color: yellow;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
}

.time-box {
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    background: #0023c4;
    color: white;
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 100px;
}

.time-box p {
    font-size: 12px;
    margin: 5px 0 0;
    color: white;
}

/*promo-CARD*/
.promo-items {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.promo-card {
    background: #fafafa;
    padding: 15px;
    border-radius: 30px;
    width: 440px;
    text-align: left;
    position: relative;
}

.promo-card h3 {
    font-size: 22px;
    font-weight: bold;
    padding: 15px 0 0 10px;
}

.promo-card p {
    font-size: 15px;
    padding: 0 0 0 12px;
    margin-top: -8px;
    margin-bottom: 25px;
}

.promo-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: auto;
    padding-bottom: 15px;
}

.promo-old-price {
    text-decoration: line-through;
    text-decoration-color: red;
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.promo-new-price {
    color: #0023c4;
    font-size: 17px !important;
    font-weight: bold;
    margin-top: -25px !important;
}

.promo-buy-btn {
    display: inline-block;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    position: absolute;
    bottom: -40px;
    right: -20px;
    cursor: pointer;
    background: transparent;
}

.promo-buy-btn img {
    width: 150px;
    height: 150px;
}

.promo-badges {
    position: absolute;
    margin-top: -80px;
    right: 20px;
    display: flex;
    flex-direction: colum;
}

.promo-badges img {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.filter-mobile {
    display: none;
}

@media (max-width: 768px) {
    .filter-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 15px;
        background-color: #fafafa;
        border-radius: 10px;
        width: 90%;
        max-width: 1200px;
        margin: auto;
        align-items: flex-start;
    }

    .filter-mobile h3 {
        font-size: 20px;
        font-weight: bold;
        margin-top: 20px;
        color: #000;
    }

    .filter-a img {
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .filter-a img:hover {
        transform: scale(1.1);
    }

    .promo-content {
        flex-direction: column;
    }

    .promo-categories {
        display: none;
        width: 100%;
        order: 1;
    }

    .promo-categories.active {
        display: block;
    }

    .promo-items {
        order: 2;
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .promo-card {
        width: 100%;
    }

    .promo-container {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promo-container h2 {
        text-align: center;
        flex: 1;
    }

    .chevron {
        position: absolute;
        width: 100%;
        transform: translateY(-50%);
    }

    .arrow-left {
        position: absolute;
        left: 20px;
        margin-top: -15px;
    }

    .arrow-right {
        position: absolute;
        right: 20px;
        margin-top: -15px;
    }
}

@media (max-width: 400px) {
    .promo-badges {
        margin-top: -60px;
        right: 10px;
    }

    .promo-badges img {
        width: 20px;
    }
}