:root {
    --primary-orange: #fa8041;
    --light-gray: #F4F4F4;
    --dark-gray: #4A4A4A;
    --text-dark: #2c2a27;
}

* {
    font-family: 'Lato', sans-serif;
}

body {
    color: var(--text-dark);
    overflow-x: hidden;
}
a:hover,a:focus{
   color:white !important;
}
/* Top Announcement Bar */
.top-announcement {
    background: var(--text-dark) url('../images/icon-right.png') no-repeat right center;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f2f1f1;
    padding: 12px 0;
}

.breadcrumb-nav {
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none !important;
}
.breadcrumb li:not(:last-child):after{
    display: none !important;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #c4c4c4;
    margin: 0 8px;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #c4c4c4;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-orange);
}

.breadcrumb-icon {
    font-size: 14px;
    margin-right: 0;
}

.breadcrumb-text {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.breadcrumb-item.active .breadcrumb-text {
    color: #2c2a27;
    font-weight: 500;
}

/* Hero Banner Section */
.hero-banner {
    background-color: #fff;
    padding: 0 0;
    position: relative;
    overflow: hidden;
    display: inline;
}
/* .banner-image { */
    /* position: relative; */
    /* overflow: hidden; */
/* } */
/*  */
/* .banner-image img { */
    /* width: 100%; */
/* } */

.banner-image {
    position: relative;
    overflow: hidden;
    height: 300px; /* zone fixe */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    object-fit: contain;   /* toute l'image visible sans déformation */
    object-position: center;
    transition: transform 0.3s ease-in-out;
}

.banner-image:hover img {
    transform: scale(1.05);
}


.banner-content {
    padding: 20px 0 20px 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.banner-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon img {
    filter: brightness(0) saturate(100%);
}

.banner-text-content {
    flex: 1;
}
.hero-banner .col-lg-4{
    padding: 0;
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2a27;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.7;
}

.banner-description, .banner-text-content p {
    font-size: 1.4rem;
    color: #2c2a27;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 55%;
}
#products .product-section .swiper-slide{
    
        border: 1px solid #e4e4e4 !important;
    
}
/* Filters Section */
.filters-section {
    background-color: #fff;
    padding: 0 0;
    border-bottom: 1px solid #e6e6e6;
}

.filters-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.filters-row {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    margin-bottom: 0;
    border-top: 1px solid #e6e6e6;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #e0e0e0;
    height: 70px;
    background-color: #f2f1f1;
    padding: 0 70px;
}

.filter-icon {
    color: var(--primary-orange);
    font-size: 16px;
}

.filter-text {
    font-size: 16px;
    font-weight: 700;
    color: #2c2a27;
    margin-right: 5px;
}

.reset-btn {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 0 ;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    height: 70px;
    width: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-btn::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #e0e0e0;
}

.reset-btn:hover {
    background-color: #e55a1a;
    border-color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(250, 128, 65, 0.3);
}

.filter-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    flex: 1;
}

.filter-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #fff;
    border: none;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 70px;
    width:15%;
}


.filter-tab:last-child {
    border-right: none;
}

.filter-tab:hover {
    background-color: #f8f8f8;
}

.filter-tab.active {
   
    color: var(--primary-orange);
    border-color: #e0e0e0;
    z-index: 1;
}

.filter-tab:not(.active) {
    background-color: #fff;
    color: #2c2a27;
    border-color: #e0e0e0;
}

.tab-text {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.tab-arrow {
    font-size: 12px;
    color: inherit;
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}
.page-authentication .page-header, .page-registration .page-header{
    text-align: left;
   
}
.filter-tab.active .tab-arrow {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.filter-tab:not(.active) .tab-arrow {
    color: #2c2a27;
}
.active_filters .filter-block{
    background-color: var(--primary-orange);
    color: #fff;
}
.filter-options {
    background-color: #f2f1f1;
    padding: 25px 20px 30px 20px;
    border: 1px solid #e0e0e0;
    border-top: none;
    display: none;
    text-align: center;
    position: absolute;
    top: 71px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.filter-options.active {
    display: block;
}

.filter-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px 15px 0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.filter-option:hover {
    background-color: rgba(250, 128, 65, 0.1);
}

.filter-option:last-child {
    margin-right: 0;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 2px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: all 0.3s ease;
}

.filter-option input[type="checkbox"]:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.filter-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-option label {
    font-size: 14px;
    color: #2c2a27;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0 !important;
}

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.product-detail-section .container {
    max-width: 1500px;
}

.product-detail-section .row {
    align-items: flex-start;
}

.product-detail-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

/* Force sticky to work */
.product-detail-section .col-lg-6:first-child {
    position: relative;
}

.product-detail-section .col-lg-6:first-child .desktop-gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.product-detail-section .col-lg-6:last-child {
    position: relative;
}

.product-detail-section .col-lg-6:last-child .product-info-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

/* Product Images Container */
.product-images-container {
    padding-right: 30px;
}
.product-description-short{
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.main-product-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.main-product-image img {
    width: 100%;
    object-fit: contain;
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-icon:hover {
    background-color: var(--primary-orange);
    color: white;
}

.zoom-icon i {
    font-size: 16px;
    color: #666;
}

.zoom-icon:hover i {
    color: white;
}

/* Thumbnail Images */
.thumbnail-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
}

.thumbnail-item {
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary-orange);
}

.thumbnail-item img {
    width: 100%;
    object-fit: contain;
}

/* Product Info Container */
.product-info-container {
    padding-left: 30px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
    align-self: flex-start;
}

/* Product Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    gap: 10px;
}

.reference-tag {
    background-color: #f2f1f1;
    color: #2c2a27;
    padding: 6px 12px;
    font-size: 1.3rem;
    font-weight: 500;
}

.product-info-container .promo-tag {
    background-color: white;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 6px 12px;
    font-size: 1.6rem;
    font-weight: 600;
}
.product-info-container .product-flag.discount{
    display: none;
}
.heart-icon {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart-icon:hover {
    background-color: var(--primary-orange);
    color: white;
}

.heart-icon i {
    font-size: 16px;
    color: #f6f6f6;
}

.heart-icon:hover i {
    color: white;
}

.product-title {
    font-size: 2rem;
    font-weight: 900;
    color: #2c2a27;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.7;
}

.product-subtitle {
    font-size: 1rem;
    color: #2c2a27;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Color Indicators */
.color-indicators {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.color-dot {
    width: 5px;
    height: 5px;
}

.color-dot.orange {
    background-color: var(--primary-orange);
}

.color-dot.black {
    background-color: #2c2a27;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 0.9rem;
    color: #2c2a27;
    font-weight: 400;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.original-price {
    font-size: 1.2rem;
    color: #2c2a27;
    text-decoration: line-through;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    margin-left: 15px;
}

.stock-status i {
    color: #3da43f;
    font-size: 16px;
}

.stock-text {
    color: #3da43f;
    font-weight: 500;
    font-size: 1.6rem;
}

/* Bundle Offer */
.bundle-offer {
    background-color: white;
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    /* padding-left: 70px; */
}

.bundle-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2a27;
    margin-bottom: 15px;
    float: left;
    background: #fff;
    position: absolute;
    top: -12px;
    padding: 0 10px;
    left: 25px;
}

.bundle-content {
    position: relative;
    overflow: hidden;
}

/* Bundle Swiper Styles */
.bundle-swiper {
    width: 100%;
    height: auto;
    /* padding: 0 40px 30px 0; */
}

.bundle-swiper .swiper-slide {
    display: flex;
    align-items: center;
    gap: 15px;
    height: auto;
}

.bundle-swiper .bundle-info {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    padding-top: 20px;
}

.bundle-swiper .bundle-add-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    z-index: 10;
}

.bundle-offer .add-to-cart-or-refresh .add-cart:hover{
    color: var(--primary-orange) !important;
}
/* Bundle Swiper Pagination */
.bundle-pagination.swiper-pagination {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    display: flex;
    gap: 0;
    width: auto;
    left: auto;
    transform: none;
    bottom: auto;
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    right: -67px !important;
    left: auto !important;
    height: 30px;
    
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
     width: 10px !important;
     height: 10px !important;
}
.bundle-pagination.swiper-pagination-horizontal {
    flex-direction: row;
}

.bundle-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 0;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0;
}

.bundle-pagination .swiper-pagination-bullet-active {
    background: #2c2a27;
    transform: none;
}

/* Bundle Swiper Mobile Responsive */
@media (max-width: 768px) {

 #_desktop_cart{
        display: block !important;
    }


    .bundle-swiper {
        padding: 0 30px 25px 0;
    }
    #products .product-section .swiper-slide{
        margin-bottom: 20px;
    }
    .bundle-swiper .swiper-slide {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .banner-description, .banner-text-content p{
        max-width: 100%;
    }
    
    .bundle-swiper .bundle-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-top: 0;
    }
    
    .bundle-swiper .bundle-image {
        width: 70px;
        height: 70px;
    }
    
    .bundle-swiper .bundle-add-btn {
        bottom: 0;
        right: 0;
    }
    .bundle-offer{
        padding-left: 20px;
    }
    
    .bundle-pagination.swiper-pagination {
        top: 10px;
        right: 10px;
    }
    
    .bundle-pagination .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }
    /* Ensure inner content spans full width on mobile */
    .mega-menu .mega-menu-content,
    .mega-menu-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 15px 16px !important;
    }

    .mega-menu .products-grid {
        width: 100% !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
}

.bundle-info {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    padding-top: 20px;
}

.bundle-image {
    width: 70px;
    object-fit: contain;
}

.bundle-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bundle-name {
    font-size: 1.5rem;
    color: #2c2a27;
    font-weight: 600;
    display: block;
    text-align: left;
}

.bundle-description {
    font-size: 1.3rem;
    color: #2c2a27;
    font-weight: 400;
    display: block;
    text-align: left;
}

.bundle-price {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 10px;
    display: block;
    text-align: left;
}

.bundle-add-btn {
    background-color: transparent;
    color: #2c2a27;
    border: none;
    padding: 10px 15px;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 75px;
}

.bundle-add-btn:hover {
    color: var(--primary-orange);
}

.bundle-add-btn i {
    font-size: 16px;
    font-weight: 600;
}

.bundle-dots {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 2px;
}

.dot.active {
    background-color: #2c2a27;
}

/* Dimensions Selector */
.dimensions-selector {
    margin-bottom: 25px;
}

.dimensions-selector label {
    display: block;
   font-size: 1rem;
       font-weight: 600;
       color: #2c2a27;
    margin-bottom: 10px;
}

.dimensions-dropdown {
    position: relative;
    width: 100%;
}

.dimensions-select {
    width: 100%;
    height: 70px;
    border: 1px solid var(--primary-orange);
    padding: 0 40px 0 15px;
    font-size: 1rem;
    color: #2c2a27;
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.selected-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dimension-text {
    text-align: left;
}

.price-text {
    text-align: right;
}

.dimensions-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid var(--primary-orange);
    border-top: none;
    z-index: 1000;
    display: none;
}

.dimensions-options.active {
    display: block;
}

.dimension-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dimension-option:hover {
    background-color: #f8f8f8;
}

.dimensions-select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.dimensions-dropdown i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

/* Quantity and Cart Section */
.quantity-cart-section {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: #f2f1f1;
    border-radius: 0;
    overflow: hidden;
    width: 25%;
    height: 70px;
}

.quantity-btn {
    width: 40px;
    height: 70px;
    border: none;
    background-color: transparent;
    color: #2c2a27;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-form-container-panier .product-name{
    font-size: 1.8rem !important;
}
.checkout-form-container-panier .current-price{
    font-size: 2rem !important;
}


.quantity-input {
    flex: 1;
    height: 70px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c2a27;
    background-color: transparent;
    width: 100%;
    margin-right: 20px;
    text-align: center;
    padding-left: 36px;
}

.quantity-input:focus {
    outline: none;
}

/* Add to Cart Button */
.product-info-container .add-to-cart-btn {
    width: 74%;
    height: 70px;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    margin-left: 20px;
    margin-top: 27px;
}

.product-info-container .add-to-cart-btn:hover {
    background-color: #e55a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(250, 128, 65, 0.3);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-plus {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Product Info Sections */
.product-info-sections {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.info-section {
    border-bottom: 1px solid #e0e0e0;
}

.info-section:last-child {
    border-bottom: none;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}


.info-header img {
    object-fit: contain;
}

.info-header span {
    flex: 1;
    font-size: 1.3rem;
    color: #2c2a27;
    font-weight: 500;
}

.info-line {
    width: 1px;
    height: 20px;
    background-color: #e0e0e0;
    margin-left: auto;
}

.info-toggle {
    font-size: 16px;
    color: #2c2a27;
    margin-left: 10px;
    transition: transform 0.3s ease;
    margin-right: 20px;
}

.info-content {
    display: none;
    padding: 15px 0 20px 0;
    border-top: 1px solid #f0f0f0;
}
.open .info-content{
    display: block;
}

.info-content.active {
    display: block;
}

.info-section.active .info-toggle {
    transform: rotate(45deg);
}

/* Image Zoom Modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zoom-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoomed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #fff;
}
#products .products-section{
   padding-top: 140px;
}

.products-section .container {
   max-width: 1500px !important;
}
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Search Block */
.search-block {
    background: #fcfafa;
    /* background: #fff; */
    padding: 0;
    /* border-bottom: 1px solid #e9ecef; */
    position: relative;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
}
.img-fluid {
    width: 90%;
    height: auto;
}
.search-block.show {
    transform: translateY(0);
    opacity: 1;
    max-height: 200px;
}
.navbar-nav .fas.fa-chevron-right.menu-arrow {
    display: none !important;
}

/* Animation de la navigation inspirée de LXH Brand */
.search-block.show~.main-header {
    background-color: rgba(253, 253, 253, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(238, 238, 238, 0.8);
}

.search-block.show~.main-header .navbar-brand {
    transform: scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-block.show~.main-header .nav-link {
    opacity: 0.8;
    transform: translateY(2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-block.show~.main-header .btn-search,
.search-block.show~.main-header .btn-panier {
    transform: scale(0.95);
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}
#search_widget{
    width: 100%;
}
.search-input-container {
    display: flex;
    align-items: center;
    flex: 1;
    background: #fcfafa;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
    background: #fcfafa;
    margin-left: 10px;
}

.search-input::placeholder {
    color: #2c2a27;
}

/* Search buttons removed for cleaner design */

.btn-close-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 5px;
    color: #2c2a27;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Mobile layout pour les boutons */
.mobile-buttons {
    display: none;
}

.mobile-buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 0 0;
}
.bundle-offer .add-to-cart-or-refresh  .add-cart{
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: #2c2a27 !important;
    float: right;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    cursor: pointer;
}
.blog-section {
    background: #f5f5f5 !important;
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
    #_desktop_search_bar{
        display: block !important;
    }
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .products-title {
        font-size: 1.8rem;
    }

    .mySwiper {
        padding: 0 20px;
    }

    .mySwiper .swiper-slide {
        width: 280px;
    }

    .product-card {
        margin: 0 10px;
    }

    .newsletter-content {
        gap: 30px;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .footer-main {
        padding: 50px 0 35px;
    }

    .brand-logo {
        font-size: 2.2rem;
    }

    /* Services Section Tablet */
    .bg-light-section .col-lg-2 {
        width: 20%;
        margin-bottom: 20px;
    }

    .service-item {
        padding: 25px 15px;
        height: 140px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 20px;
    }

    /* Collections Section Tablet */
    .collections-swiper-container {
        padding: 0 30px;
    }

    .collection-card {
        height: 200px;
    }

    .collection-overlay h5 {
        font-size: 1.1rem;
    }

    /* Brand Story Section Tablet */
    .brand-story {
        padding: 60px 0;
    }

    .brand-story h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .brand-story p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Values Section Tablet */
    .values-section {
        padding: 60px 0;
    }

    .value-item {
        padding: 25px 15px;
        text-align: center;
    }

    .value-item h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .value-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Blog Section Tablet */
    .blog-section {
        padding: 60px 0;
    }

    .blog-card {
        height: 350px;
    }

    .blog-card .card-body {
        padding: 15px;
    }

    .blog-card h6 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .blog-card .category {
        font-size: 0.8rem;
    }

    /* FAQ Section Tablet */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        max-width: 700px;
    }

    .faq-question {
        padding: 18px 22px;
    }

    .faq-text {
        font-size: 1.3rem;
    }

    .faq-answer p {
        padding: 18px 22px;
        font-size: 0.9rem;
    }
}

/* Desktop - hide mobile icons, show desktop icons */
.mobile-icons {
    display: none !important;
}

.desktop-icons {
    display: flex !important;
}

/* Hide mobile menu actions on desktop */
.mobile-menu-actions {
    display: none !important;
}

/* Mobile adjustments for top-announcement */
@media (max-width: 768px) {
    .products-section .products-grid {
        display: block;
    }
    .cart-item .product-image img{
        width: 60px;
        height: 60px;
        object-fit: cover;
    }
    /* Show mobile icons on mobile, hide desktop icons */
    .mobile-icons {
        display: flex !important;
    }
    
    .desktop-icons {
        display: none !important;
    }

    /* Mobile Menu Actions */
    .mobile-menu-actions {
        display: block !important;
        background-color: #2c2a27;
        margin-top: 20px;
        padding: 0;
        border-top: 1px solid #413f3d;
    }
.border-bottom{
    border-top: 1px solid #413f3d !important;
}
    .mobile-menu-item {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-bottom: 1px solid #413f3d;
    }
    .product-image-menu{
        margin: 0 !important;
    }
    .mobile-menu-item:last-child {
        border-bottom: none;
    }

    /* Remove hover effects on mobile menu items */
    .mobile-menu-item:hover {
        background-color: transparent;
    }

    .mobile-menu-icon {
        width: 32px;
        height: 32px;
        background-color: transparent;
        border: 1px solid var(--primary-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .mobile-menu-icon img {
        filter: brightness(0) invert(1);
        width: 16px;
        height: 16px;
    }

    .mobile-menu-text {
        font-size: 16px;
        font-weight: 500;
        color: white;
    }
    .faq-image {
        margin: 10px 0 0 0;
        width: 100%;
    }
    .follow-text{
        font-size: 1.9rem !important;
        text-align: left !important;
    }

    .brand-content {
        width: 100% !important;
    }

    .btn-discover {
        margin-top: 20px !important;
    }

    /* Logo mobile styles */
    .brand-container {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .brand-container img {
        width: 180px !important;
        height: auto !important;
        max-width: 100%;
    }


    /* Mobile navbar layout */
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        height: 100px;
    }

    /* Make header/ navbar positioning context */
    .main-header,
    .navbar {
        position: relative;
    }

    /* Overlay the collapsed menu above the page */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #f0f0f0;
        z-index: 9999;
        padding: 10px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-top: 1px solid #ddd;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    /* MOBILE MENU - Simplified logic */
    
    /* Hide menu by default (when collapsed or menu-closed) */
    .navbar-collapse:not(.show):not(.menu-open),
    .navbar-collapse.collapse:not(.show),
    .navbar-collapse.menu-closed:not(.show) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        max-height: 0 !important;
    }
    .navbar-toggler-icon{
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    /* Show menu when .show OR .menu-open class is present */
    .navbar-collapse.show,
    .navbar-collapse.menu-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
        max-height: calc(100vh - 64px) !important;
        animation: slideDown 0.3s ease-out;
        top: 60px;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-brand {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0 !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .navbar-toggler {
        order: 1;
        margin-right: 15px;
        z-index: 2;
        border: none;
        color: #2c2a27 !important;
    }
    .navbar-toggler-icon{
        color: #2c2a27 !important;
    }
    .navbar-toggler .navbar-toggler-icon,
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(44,42,39,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
    .navbar-toggler.show .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(44,42,39,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 8l14 14M22 8L8 22'/%3E%3C/svg%3E") !important;
    }

    @media (max-width: 768px) {
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(44,42,39,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
        .navbar-toggler.show .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(44,42,39,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 8l14 14M22 8L8 22'/%3E%3C/svg%3E") !important;
        }
    }
    .navbar-toggler:focus {
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .navbar-nav.ms-auto {
        order: 3;
        display: flex !important;
        flex-direction: row;
        gap: 15px;
        margin-left: auto;
        z-index: 2;
    }

    .navbar-nav.ms-auto .nav-item {
        margin: 0;
    }
    .navbar-nav{
        margin: 10px !important;
    }
    /* Mobile menu navigation links styling */
    .navbar-nav .nav-link {
        color: #000000 !important;
        font-size: 16px !important;
        font-weight: 500;
        padding: 12px 10px;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Remove hover effects on mobile */
    @media (max-width: 768px) {
        .navbar-nav .nav-link:hover {
            color: #000000 !important;
            background-color: transparent;
        }
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .menu-arrow {
        font-size: 12px;
        color: #2c2a27;
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    @media (max-width: 768px) {
        .navbar-nav .nav-link:hover .menu-arrow {
            color: #2c2a27;
        }
    }

    .dropdown.show .menu-arrow,
    .nav-item.dropdown.active .menu-arrow {
        transform: rotate(90deg);
        position: absolute;
        left: 8px;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
    }

    .nav-item.dropdown.active .mega-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mega-menu {
        background: #f8f8f8 !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
    }

    .nav-item.dropdown:not(.active) .mega-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .mega-menu-content {
        padding: 15px 20px !important;
        max-height: 418px !important;
        overflow-y: auto !important;
    }

    @media (max-width: 768px) {
        .mega-menu .products-grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 8px !important;
            margin-bottom: 15px !important;
            padding: 0 !important;
        }

        .mega-menu .product-card-menu {
            display: flex !important;
            align-items: center !important;
            background: none !important;
            border-radius: 0 !important;
            padding: 4px 0 15px 0 !important;
            box-shadow: none !important;
            border: none !important;
            border-bottom: 1px solid #dfdfdf !important;
            width: 100% !important;
            margin: 0 !important;
            transition: all 0.2s ease !important;
        }

        .mega-menu .product-card-menu:hover {
            background: none !important;
        }

        .mega-menu .product-image-menu {
            width: 110px !important;
            height: 110px !important;
            margin-right: 12px !important;
            margin-bottom: 0 !important;
            flex-shrink: 0 !important;
        }

        .mega-menu .product-text-content {
            flex: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: flex-start !important;
            width: 100% !important;
            height: 100% !important;
            margin-left: 15px !important;
        }

        .mega-menu .product-image-menu img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            border-radius: 4px !important;
        }

        .mega-menu .product-title {
            font-size: 14px !important;
            font-weight: 600 !important;
            margin-bottom: 4px !important;
            color: #000 !important;
            line-height: 1.2 !important;
            width: 100% !important;
        }

        .mega-menu .product-subtitle {
            font-size: 12px !important;
            color: #666 !important;
            line-height: 1.2 !important;
            margin: 0 !important;
            width: 100% !important;
        }
    }

    .mega-menu-footer {
        position: absolute;
        top: -50px;
         right: 36px;
    }

    .navbar-nav .fas.fa-chevron-right.menu-arrow {
        display: block !important;
    }
    

    .view-all-btn {
        display: inline-flex
;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid #2b2927;
    color: #2b2927;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s 
ease;
    font-family: 'Inter', sans-serif;
    }

    .view-all-btn:hover {
        background: #e9e9e9 !important;
        border-color: #ccc !important;
    }

    .view-all-btn i {
        font-size: 12px !important;
    }

    /* Icons section mobile */
    .mobile-icons {
        order: 3;
        display: flex !important;
        gap: 10px;
        z-index: 2;
        margin-left: auto !important;
        position: relative;
        right: 0;
    }

    .btn-search,
    .btn-panier {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
    }

    .btn-search img,
    .btn-panier img {
        width: 28px !important;
        height: 28px !important;
    }

    .cart-icon {
        position: relative;
        display: flex !important;
        margin-right: 10px !important;
    }

    .cart-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--primary-orange);
        color: white;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        font-size: 9px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-weight: 600;
    }

    .values-section {
        padding: 40px 0 !important;
    }

    .value-item {
        padding: 20px 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    .value-item h5 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .value-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .btn-discover {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .brand-story .col-lg-6:last-child {
        padding: 70px 40px !important;
    }

    /* Brand Story Section Mobile */
    .brand-story {
        padding: 40px 0;
    }

    .brand-story h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .brand-story p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 15px;
    }

    .brand-story .container {
        padding: 0 20px;
    }

    .top-announcement {
        padding: 12px 0;
        font-size: 12px;
        text-align: center;
    }

    .top-announcement .row {
        flex-direction: column;
        gap: 8px;
    }

    .top-announcement .col-md-4 {
        width: 100%;
        text-align: center;
    }

    .top-announcement .col-md-4:first-child {
        order: 2;
    }

    .top-announcement .col-md-4:nth-child(2) {
        order: 1;
    }

    .top-announcement .col-md-4:last-child {
        order: 3;
    }

    /* Masquer les boutons desktop et afficher les boutons mobile */
    .top-announcement .col-md-4:first-child,
    .top-announcement .col-md-4:last-child {
        display: none !important;
    }

    .mobile-buttons {
        display: block !important;
        order: 2;
    }

    .top-announcement .col-md-4:nth-child(2) {
        order: 1;
    }

    /* Breadcrumb Mobile */
    .breadcrumb-section {
        padding: 8px 0;
    }

    .breadcrumb-text {
        font-size: 13px;
    }

    .breadcrumb-icon {
        font-size: 12px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 6px;
        font-size: 12px;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding:  0;
    }

    .banner-content {
        padding: 30px 0 0 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .banner-image {
        margin-bottom: 30px;
    }

    .banner-image img {
        height: 300px;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
    }
    .banner-icon img{
        height: 35px;
        width: 35px;
    }

    .banner-text-content {
        text-align: center;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .banner-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 15px;
    }

    /* Filters Mobile */
    .filters-section {
        padding: 20px 0;
        background-color: #fff;
    }

    .filters-container {
        padding: 0 15px;
    }

    .filters-row {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        border-top: none;
    }

    .filter-label {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        height: auto;
        background-color: #f2f1f1;
        justify-content: flex-start;
        gap: 8px;
    }

    .filter-text {
        font-size: 16px;
        font-weight: 600;
    }

    .filter-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 10px;
    }

    .filter-tab {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        height: auto;
        min-height: 50px;
        transition: all 0.3s ease;
        width: 100%;
    }

    .filter-tab:hover {
        background-color: #f8f8f8;
        border-color: var(--primary-orange);
    }

    .filter-tab.active {
        background-color: #f2f1f1;
        border-color: var(--primary-orange);
        color: var(--primary-orange);
    }

    .tab-text {
        font-size: 14px;
        font-weight: 500;
    }

    .tab-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .filter-tab.active .tab-arrow {
        transform: rotate(180deg);
        color: var(--primary-orange);
    }

    .reset-btn {
        margin: 15px 10px 0 10px;
        height: 50px;
        width: auto;
        font-size: 14px;
        font-weight: 600;
        background-color: var(--primary-orange);
        color: white;
        border: none;
        padding: 0 20px;
    }

    .reset-btn::before {
        display: none;
    }

    .reset-btn:hover {
        background-color: #e55a1a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(250, 128, 65, 0.3);
    }

    .filter-options {
        padding: 20px 15px;
        text-align: center;
        background-color: #f2f1f1;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 8px 8px;
        margin: 0 10px;
    }

    .filter-option {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0 8px 12px 0;
        padding: 8px 12px;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .filter-option:hover {
        background-color: rgba(250, 128, 65, 0.1);
        border-color: var(--primary-orange);
    }

    .filter-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 2px solid #ddd;
        border-radius: 2px;
        background-color: white;
        cursor: pointer;
        appearance: none;
        position: relative;
        transition: all 0.3s ease;
    }

    .filter-option input[type="checkbox"]:checked {
        background-color: var(--primary-orange);
        border-color: var(--primary-orange);
    }

    .filter-option input[type="checkbox"]:checked::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 10px;
        font-weight: bold;
    }

    .filter-option label {
        font-size: 13px;
        color: #2c2a27;
        cursor: pointer;
        user-select: none;
        font-weight: 500;
    }

    /* Products Grid Mobile */
    .products-section {
        padding: 40px 0;
    }

    .products-section .container {
        max-width: 100% !important;
        padding: 0 15px;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
        max-width: 100%;
    }

    .product-card.liste-product {
        max-width: 350px;
        width: 100%;
        margin: 15px auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .reset-btn {
        padding: 12px;
        font-size: 16px;
    }

    /* Product Detail Mobile */
    .product-detail-section {
        padding: 40px 0;
    }

    .product-images-container {
        padding-right: 0;
        margin-bottom: 30px;
    }

    /* Hide desktop gallery on mobile */
    .desktop-gallery {
        display: none;
    }

    /* Show mobile gallery on mobile */
    .mobile-gallery {
        display: block;
    }

    /* Main Swiper Styles */
    .product-main-swiper {
        width: 100%;
        height: 300px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .product-main-swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .product-main-swiper .main-product-image {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 0;
        margin: 0;
    }

    .product-main-swiper .main-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0%;
    }

    .product-main-swiper .zoom-icon {
        display: none;
    }

    /* Thumbnail Swiper Styles */
    .product-thumbs-swiper {
        width: 100%;
        height: 80px;
        padding: 0 20px;
    }

    .product-thumbs-swiper .swiper-slide {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .product-thumbs-swiper .thumbnail-item {
        width: 80px;
        height: 80px;
        border-radius: 0%;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        /* border: 2px solid transparent; */
    }


    .product-thumbs-swiper .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .product-thumbs-swiper .thumbnail-item:hover img {
        transform: scale(1.1);
    }

    /* Swiper Pagination */
    .swiper-pagination {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-orange);
    }

    /* Desktop gallery styles */
    .main-product-image {
        padding: 15px;
        margin-bottom: 15px;
    }

    .zoom-icon {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .zoom-icon i {
        font-size: 14px;
    }
}

/* Desktop Gallery Styles */
@media (min-width: 769px) {
    .desktop-gallery {
        display: block;
        height: 100vh;
        overflow-y: auto;
        padding-right: 10px;
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    .mobile-gallery {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Mobile Swiper - Small Screens */
    .product-main-swiper {
        height: 250px;
        margin-bottom: 12px;
    }

    .product-thumbs-swiper {
        height: 70px;
        padding: 0 15px;
    }

    .product-thumbs-swiper .swiper-slide {
        width: 70px;
        height: 70px;
    }

    .product-thumbs-swiper .thumbnail-item {
        width: 70px;
        height: 70px;
        /* border-radius: 6px; */
    }

    .product-main-swiper .zoom-icon {
        display: none;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

    .thumbnail-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(1, 1fr);
        gap: 10px;
    }

    .thumbnail-item img {
        width: 100%;
        object-fit: contain;
    }

    .product-detail-section .row {
        align-items: stretch;
    }
    
    .product-detail-section .col-lg-6 {
        display: block;
    }
    
    .product-info-container {
        padding-left: 0;
        position: static;
        height: auto;
        overflow-y: visible;
        z-index: auto;
        align-self: auto;
    }
    
    .desktop-gallery {
        height: auto;
        overflow-y: visible;
        padding-right: 0;
        position: static;
        top: auto;
        align-self: auto;
    }

    .product-info-container .product-title {
        font-size: 2.8rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        line-height: 40px;
    }
    .product-info-container .product-subtitle{
         display: none;
       }
    .product-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .addon-product {
        padding: 15px;
        margin-bottom: 25px;
    }

    .addon-image {
        width: 50px;
        height: 50px;
    }

    .addon-text {
        font-size: 0.8rem;
    }

    .addon-price {
        font-size: 1rem;
    }

    .quantity-input-group {
        width: 100px;
    }

    .cart-item .quantity-btn {
        width: 35px;
        height: 50px;
        font-size: 14px;
        font-weight: 300;
    }
    .cart-item .quantity-btn:hover {
        color: var(--primary-orange) !important;
    }

    .quantity-input {
        height: 35px;
        font-size: 14px;
    }

    .add-to-cart-btn {
        height: 50px;
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .info-header {
        padding: 12px 15px;
    }

    .info-header span {
        font-size: 1.3rem;
    }

    .info-header img {
        width: 18px;
        height: 18px;
    }

.expert-icon,
.account-icon {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expert-icon:hover,
.account-icon:hover {
    background-color: var(--primary-orange);
    transform: scale(1.1);
}

.expert-text,
.account-text {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 4px;
    display: inline-block;
}

.expert-text:hover,
.account-text:hover {
    color: var(--primary-orange);
}

.promo-text {
    color: #fa8041;
    font-weight: 400;
}

/* Promo Slider */
.promo-slider {
    height: 24px;
    overflow: hidden;
    position: relative;
}

.promoSwiper {
    height: 100%;
}

.promoSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.promoSwiper .swiper-slide .promo-text {
    white-space: nowrap;
    font-size: 14px;
}

/* Promo Navigation Arrows */
.promo-prev,
.promo-next {
    position: absolute;
    top: 145%;
    transform: translateY(-50%);
    color: #9b9b9b;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0 6px;
    line-height: 1;
    background: transparent;
    font-weight: bold;
}

.promo-prev:hover,
.promo-next:hover {
    color: var(--primary-orange);
}

.promo-prev {
    left: 50px;
}

.promo-next {
    right: 50px;
}

.promo-prev i,
.promo-next i {
    font-size: 12px;
}

/* Reduce default Swiper pseudo-arrow size for promo bar */
.promo-slider .swiper-button-next:after,
.promo-slider .swiper-button-prev:after {
    font-size: 8px !important;
}

.bg-right {
    background: url('../images/icon-right.png') no-repeat right center;
    padding-right: 50px;
}


.btn-search {
    border: none;
    cursor: pointer;
    margin-right: 5px;
    background: none;
}

.btn-panier {
    border: none;
    cursor: pointer;
    background: none;
}





/* Header */
.main-header {
    background-color: #fdfdfd;
    color: var(--text-dark);
    padding: 20px  0;
   
}

.brand-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.brand-squares {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.square {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-nav {
    margin-left: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.brand-tagline {
    font-size: 12px;
    color: var(--dark-gray);
    font-weight: 400;
    margin-top: 2px;
}

.navbar-brand {
    color: var(--text-dark) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Méga menu */
/* .navbar-nav .nav-item { */
    /* position: relative; */
/* } */
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center{
    position: static;
}

.navbar-nav .nav-item.dropdown {
    position: static;
}

.navbar-nav .nav-item {
    position: relative;
}


.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    animation: slideInFromTop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 20px;
}

/* Desktop hover - with !important */
@media (min-width: 769px) {
    .navbar-nav .nav-item:hover .dropdown-menu.mega-menu,
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu.mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        animation: slideInFromTop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .main-header {
        height: 100px;
    }
}

/* Mobile - no hover, controlled by JavaScript */
@media (max-width: 768px) {
    .navbar-nav .nav-item:hover .dropdown-menu.mega-menu,
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu.mega-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: none;
    padding: 0;
    z-index: 1000;
    margin-top: 15px;
    min-width: 800px;
}

/* Desktop default mega menu styles */
@media (min-width: 769px) {
    .dropdown-menu.mega-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        margin-left: 0 !important;
        transform: translateY(-10px);
        background: #f0f0f0;
        position: fixed !important;
        top: 89px !important;
        z-index: 1000;
        margin-top: 0;
        min-width: 100%;
    }
    
    .mega-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Desktop-only slide down/up for mega menu */
@media (min-width: 769px) {
    .dropdown-menu.mega-menu {
        display: block; /* keep in flow for measurement */
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    }

    .nav-item.dropdown.is-open > .dropdown-menu.mega-menu {
        max-height: 800px; /* large enough for content */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.35s ease;
    }
}

/* Mobile-only mega menu - Override desktop styles */
@media (max-width: 768px) {
    .dropdown-menu.mega-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        background: #f8f8f8 !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        pointer-events: auto !important;
        z-index: 1000 !important;
    }
    
    /* Force display when active class is present */
    .nav-item.dropdown.active .dropdown-menu.mega-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Zone tampon transparente pour combler l'espace */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 45px;
    background: transparent;
    z-index: 1;
}

.mega-menu-content {
    background: #f0f0f0;
    padding: 0px 20px;
    margin: 0 auto 20px auto;
    width: 1340px;
    max-width: 100%;
}

.mega-menu .products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    justify-content: flex-start;
    border-bottom: none;
    width: 100%;
}

.mega-menu .product-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-menu .product-card-menu {
    width: 100%;
    margin: 0;
    cursor: pointer;
}



.mega-menu .product-image-menu {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

/* Design du produit matelas avec packaging */
.mattress-product {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.mattress-white {
    width: 60%;
    height: 80%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-2deg);
}

.mattress-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.02) 2px,
        rgba(0, 0, 0, 0.02) 4px
    );
    border-radius: 8px;
}



.brand-name {
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.brand-tagline {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 6px;
    color: #666;
    text-align: center;
    line-height: 1.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}



.mega-menu .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c2a27;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: left;
}

.mega-menu .product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: left;
}

.mega-menu-footer {
    text-align: right;
}

.mega-menu .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #2b2927;
    color: #2b2927;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.mega-menu .view-all-btn:hover {
    background: #2c2a27;
    color: white;
    border-color: #2c2a27;
    transform: translateY(-2px);
}

.mega-menu .view-all-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mega-menu .view-all-btn:hover::after {
    transform: translateX(4px);
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour méga menu */
@media (max-width: 1200px) {
    .mega-menu-content {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .mega-menu .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .mega-menu-content {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .mega-menu .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        display: block;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 0;
        min-width: auto;
        width: 100%;
    }
    
    .mega-menu {
        left: 0;
        right: 0;
        width: 100%;
        position: static;
        transform: none;
    }
    
    .mega-menu .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: flex-start;
    }
    
    .mega-menu-content {
        max-width: 100%;
        padding: 20px;
    }
    .mega-menu-footer {
        text-align: center;
    }
    
    .mega-menu .view-all-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-item:hover .dropdown-menu,
    .navbar-nav .nav-item .dropdown-menu { 
        display: none; 
    }
    
    .navbar-nav .nav-item.active .dropdown-menu { 
        display: block; 
        position: relative !important;
    }
}

/* Responsive breakpoints pour le mega menu */
@media (max-width: 1400px) {
    .mega-menu .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 1200px) {
    .mega-menu .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .mega-menu .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .mega-menu .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .mega-menu .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: flex-start;
    }
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.heroSwiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;   /* occupe toute la largeur de l'écran */
    margin-left: 0 !important;
    margin-top: 0;
    border: none;
    border-radius: 0;
    position: fixed !important;
    top: 143px !important;
}
.hero-content h1 {
    font-size: 4.7rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); */
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    letter-spacing: 0.5px;
    white-space: normal;
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 2.1rem;
    color: var(--primary-orange);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); */
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.4s forwards;
    font-weight: 100;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.6s forwards;
    font-weight: 200;
}

/* Animations pour les slides */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation d'entrée pour chaque slide */
.hero-slide.swiper-slide-active .hero-content h1 {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide.swiper-slide-active .hero-content p {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide.swiper-slide-active .hero-content .btn {
    animation: slideInUp 0.8s ease-out 0.6s forwards;
}

/* Animation de sortie pour les slides précédentes */
.hero-slide:not(.swiper-slide-active) .hero-content h1,
.hero-slide:not(.swiper-slide-active) .hero-content p,
.hero-slide:not(.swiper-slide-active) .hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease-out;
}

/* Animation d'entrée avec effet de rebond */
@keyframes slideInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation de glissement latéral */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation de rotation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Appliquer différentes animations selon l'index de la slide */
.hero-slide:nth-child(1).swiper-slide-active .hero-content h1 {
    animation: slideInUpBounce 1s ease-out 0.2s forwards;
}

.hero-slide:nth-child(1).swiper-slide-active .hero-content p {
    animation: slideInLeft 0.8s ease-out 0.4s forwards;
}

.hero-slide:nth-child(1).swiper-slide-active .hero-content .btn {
    animation: slideInRight 1s ease-out 0.2s forwards;
}

.hero-slide:nth-child(2).swiper-slide-active .hero-content h1 {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.hero-slide:nth-child(2).swiper-slide-active .hero-content p {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide:nth-child(2).swiper-slide-active .hero-content .btn {
    animation: slideInRight 1s ease-out 0.2s forwards;
}

.hero-slide:nth-child(3).swiper-slide-active .hero-content h1 {
    animation: slideInRight 0.8s ease-out 0.2s forwards;
}

.hero-slide:nth-child(3).swiper-slide-active .hero-content p {
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

.hero-slide:nth-child(3).swiper-slide-active .hero-content .btn {
    animation: slideInRight 1s ease-out 0.2s forwards;
}

/* Hero Navigation - Désactivée */
.hero-next,
.hero-prev {
    display: none !important;
}

/* Hero Pagination - Points carrés */
.hero-pagination {
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    transform: scale(1.3) !important;
    /* box-shadow: 0 0 10px rgba(242, 100, 33, 0.5) !important; */
}

/* Masquer les pseudo-éléments Swiper par défaut */
.hero-next:after,
.hero-prev:after {
    display: none !important;
}
.ismobile{
    display: none;
}
.moncompte a{
    text-decoration: none;
    color: #fff !important;
}
/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    .ismobile{
        display: block;
    }
    .customerName{
        display: none;
    }
    
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        top: 0 !important;
    }
    .hero-content {
        bottom: 40px;
        padding: 0 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 400px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        font-weight: 100;
        white-space: normal;
        text-align: center;
        width: 100%;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        max-width: 350px;
        text-align: center;
        width: 100%;
        line-height: 1.3;
    }

    .hero-pagination {
        bottom: 20px !important;
        right: 20px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
    }

    /* Animations plus rapides sur mobile */
    .hero-content h1 {
        animation-duration: 0.6s;
    }

    .hero-content p {
        animation-duration: 0.6s;
    }

    .hero-content .btn {
        animation-duration: 0.6s;
    }

    /* Désactiver la pulsation sur mobile pour les performances */
    .hero-slide:nth-child(1).swiper-slide-active .btn-primary-custom {
        animation: slideInUpBounce 0.6s ease-out 0.6s forwards;
    }
}

/* Très petits écrans mobiles */
@media (max-width: 480px) {
    .faq-image {
        margin-top: 10px !important;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
    }

    .brand-content {
        width: 100%;
    }

    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        max-width: 300px;
        line-height: 1.2;
    }

    .hero-content .btn {
        padding: 10px 25px;
        font-size: 1.6rem;
    }

    .hero-content {
        bottom: 30px;
        padding: 0 15px;
    }
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    border: none;
    color: black;
    /* border: 1px solid var(--primary-orange); */
    padding: 12px 60px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 2rem;
    font-family: 'Lato', sans-serif;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}
.bundle-image {
    width: 100px;
    height: 100px;
}
.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background-color: #e55a1a;
    transform: translateY(-2px) scale(1.05);
    /* box-shadow: 0 8px 25px rgba(242, 100, 33, 0.3); */
}

.btn-primary-custom:active {
    transform: translateY(0) scale(0.98);
}

/* Animation de pulsation pour attirer l'attention */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 100, 33, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(242, 100, 33, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 100, 33, 0);
    }
}

/* Appliquer la pulsation au bouton de la première slide */
.hero-slide:nth-child(1).swiper-slide-active .btn-primary-custom {
    animation: slideInUpBounce 1s ease-out 0.6s forwards, pulse 2s ease-in-out 2s infinite;
}

/* Products Header Responsive */
@media (max-width: 768px) {
    .products-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem;
    }

    .products-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .flag-line {
        width: 50px;
        height: 2px;
    }

    .mySwiper {
        padding: 0 15px;
    }

    .mySwiper .swiper-slide {
        width: 250px;
    }

    .product-card {
        margin: 0 5px;
    }

    .product-image img {
        /* height: 200px; */
    }

    .add-to-cart-section {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Product Cards Mobile */

    .card-body {
        padding: 15px;
    }

    .card-body h5 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .card-body p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .price {
        font-size: 1.2rem;
    }

    .color-dot {
        width: 10px;
        height: 10px;
    }

    .product-card .promo-tag {
        font-size: 0.6rem;
        padding: 4px 8px;
        min-width: 50px;
        border-width: 0.5px;
    }

    .product-card .heart-icon {
        width: 28px;
        height: 28px;
    }

    /* Add to Cart Mobile */
    .add-to-cart-section {
        padding: 12px 15px;
    }

    .add-to-cart-text {
        font-size: 0.8rem;
    }

    .add-to-cart-icon {
        font-size: 1rem;
    }

    .add-to-cart-icon::after {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
        top: -6px;
        right: -6px;
    }

    /* Products Swiper Mobile */
    .mySwiper {
        padding: 0 50px;
    }

    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .mySwiper .swiper-button-next {
        right: 5px;
    }

    .mySwiper .swiper-button-prev {
        left: 5px;
    }

    .mySwiper .swiper-button-next i,
    .mySwiper .swiper-button-prev i {
        font-size: 14px;
    }
}

/* Products Header */
.products-header {
    margin-bottom: 3rem;
}

.products-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.products-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c2a27;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flag-line {
    width: 80px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(to right, #000 33%, #ff0000 33%, #ff0000 66%, #ffd700 66%);
    border-radius: 2px;
}

.swiper-backface-hidden .swiper-slide {
    /* background: white !important; */
    height: auto;
}
.add-cart.font-cart{
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center !important;
    justify-content: left;
    z-index: 10;
    cursor: pointer;
}
.add-to-cart-section img{
position: absolute;
right: 20px;

}
.add-cart.font-cart:before{
    display: none;
}
.mySwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-shrink: 0;
    width: 420px !important;
    align-items: stretch;
}

/* Product Cards */
.product-card {
     background: white; 
    border-radius: 0;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.product-card:hover {
    border: 1px solid var(--primary-orange);
}
.product-card-menu:hover {
    border: none;
}


.product-card:hover .promo-tag {
    transform: scale(1.05);
}

.product-card:hover .heart-icon i {
    color: white;
}

.product-card:hover .price {
    color: #e67e22;
}

/* Add to Cart Section */
.add-to-cart-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-orange);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    min-height: 25px;
}
#products .add-to-cart-section{
    padding: 40px 20px;
}
.add-to-cart-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-icon {
    color: white;
    font-size: 1.1rem;
    position: relative;
}

.add-to-cart-icon::after {
    content: '+';
    position: absolute;
    top: -8px;
    right: -8px;
    background: white;
    color: var(--primary-orange);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.product-card:hover .add-to-cart-section {
    transform: translateY(0);
}

/* Product Image */
.product-image {
    position: relative;
    /* padding: 20px; */
    /* background: #f8f9fa; */
    text-align: center;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.product-image-menu {
    position: relative;
    /* padding: 20px; */
    /* background: #f8f9fa; */
    text-align: center;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}


.product-image img ,.product-image-menu img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Color Indicators */
.color-indicators {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.color-dot {
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.color-dot.orange {
    background-color: var(--primary-orange);
}

.color-dot.black {
    background-color: #000;
}

.color-dot.blanc {
    background-color: #fff;
}


/* Card Body */
.card-body {
    padding: 20px;
}

.card-body h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c2a27;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-body p {
    font-size: 14px;
    color: #2c2a27;
    margin-bottom: 15px;
}

/* Price Section */
.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.price-label {
    font-size: 1.3rem;
    color: #2c2a27;
    margin: 0;
    text-transform: lowercase;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
    transition: all 0.3s ease;
}
.product-card .promo-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: white;
    color: var(--primary-orange);
    padding: 6px 12px;
    border: 1px solid var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 60px;
}

.product-card .heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card .heart-icon i {
    color: #f6f6f6;
    font-size: 14px;
    font-weight: 400;
}

.product-card .heart-icon:hover {
    background-color: var(--primary-orange);
    color: white;
}

.product-card img.produit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}


.btn.fill, .btn-primary.fill, .btn-secondary.fill, .btn-tertiary.fill{
background-color: var(--primary-orange) !important;
color: white !important;
border-color: var(--primary-orange) !important;
}

.product-card .price {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0 0 10px 0;
}

.btn-add-cart {
    background-color: #fa8041;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #e55a1a;
}

/* Services Section */
.bg-light-section {
    background: #fff;
    position: relative;
    padding: 60px 0;
}

.bg-light-section .container {
    max-width: 1800px;
}

.bg-light-section .row {
    justify-content: center;
    align-items: stretch;
}

.bg-light-section .col-lg-2 {
    flex: 0 0 18%;
    max-width: 18%;
    margin: 0 1%;
}

/* Services/Advantages responsive */
@media (max-width: 768px) {
    .bg-light-section .row {
        row-gap: 16px;
    }

    .bg-light-section .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0;
    }

    .service-item {
        width: 100%;
        min-height: auto;
        padding: 20px 10px;
        margin-bottom: 15px;
    }

    .service-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Collections Section Mobile */
    .collections-swiper-container {
        padding: 0 0;
    }

    .collection-card {
        height: 250px;
        margin-bottom: 20px;
    }

    .collection-overlay h5 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .collection-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .collections-navigation {
        margin-top: 20px;
    }

    /* Blog Section Mobile */
    .blog-section {
        padding: 40px 0;
    }

    .blog-swiper-container {
        padding: 0 15px;
    }

    .blog-card {
        height: 300px;
        margin-bottom: 20px;
    }

    .blog-card .card-body {
        padding: 12px;
    }

    .blog-card h6 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .blog-card .category {
        font-size: 0.75rem;
    }

    .blog-card small {
        font-size: 0.7rem;
    }

    .read-more {
        font-size: 0.75rem;
    }

    .blog-navigation {
        margin-top: 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }

    .service-icon::after {
        bottom: 7px;
        right: 7px;
        width: 12px;
        height: 8px;
    }

    .service-item h6 {
        font-size: 0.95rem;
        margin: 8px 0 6px 0;
    }

    .service-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (min-width: 992px) {
    .bg-light-section .col-lg-2 {
        flex: 0 0 18%;
        max-width: 18%;
        margin: 0 1%;
    }
}

.brand-content {
    width: 80%;
}

.bg-light-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.service-item {
    text-align: center;
    padding: 0 0;
    background: white;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    width: 90%;
    margin: 0 auto;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 16px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.service-icon i {
    font-size: 2rem;
    color: #2c2a27;
    font-weight: 300;
}

.service-item h6 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2a27;
    margin: 17px 0 2px 0;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    line-height: 2.2rem;
}

.service-item p {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Collections */
.collections-swiper-container {
    position: relative;
    overflow: visible;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.collection-card:hover img.collection-image {
    transform: scale(1.09);
}

.collection-card img.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: all .4s ease-out;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.collection-overlay h5 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* Collection icon circle to the left of title */
.collection-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.collection-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* Collections Swiper Navigation */
.collections-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.collections-section .container {
    padding-bottom: 50px;
    position: relative;
}

.collections-section .collections-navigation {
    position: absolute;
    bottom: -43px;
    ;
    right: 50px;
    display: flex;
    gap: 8px;
    margin: 0;
    justify-content: flex-end;
}

.collections-section .collections-next {
    position: static;
    right: auto;
    bottom: auto;
    background: #f3f3f3;
}

.collections-section .collections-prev {
    position: static;
    right: auto;
    background: #f3f3f3;
    bottom: auto;
}

.collections-next,
.collections-prev {
    background: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.collections-next:hover,
.collections-prev:hover {
    transform: scale(1.05);
}

.collections-next:after,
.collections-prev:after {
    display: none;
}

.collections-next i,
.collections-prev i {
    font-size: 16px;
    font-weight: bold;
}

/* Brand Story */
.brand-story {
    background-color: #fa8041;
    color: white;
    padding: 0;
    position: relative;
    border: none !important;
    min-height: 400px;
}

.brand-story .container {
    padding: 0;
    max-width: none;
    width: 100%;
}

.brand-story .row {
    margin: 0;
    min-height: 500px;
}

.brand-story .col-lg-6 {
    padding: 0;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.brand-story .col-lg-6:first-child {
    background: #d4673c;
    position: relative;
    min-height: 500px;
}

.brand-story .col-lg-6:last-child {
    /* background: #e67e22; */
    padding: 72px 40px;
}

.brand-story h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: white;
    white-space: nowrap;
    line-height: 1.2;
}

.brand-content {
    margin-top: 20px;
    width: 60%;
}

.brand-story p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    color: white;
}

.brand-story p strong {
    font-size: 13px;
    line-height: 19px;
    display: block;
}

.brand-story p strong {
    font-size: 13px;
    line-height: 19px;
    display: block;
}

.brand-story p strong {
    font-size: 13px;
    line-height: 19px;
    display: block;
}

.video-placeholder {
    width: 100px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video-placeholder i {
    color: white;
    font-size: 2.5rem;
    margin-left: 5px;
}

.values-section {
    background-color: var(--primary-orange);
    padding: 60px 0;
    color: white;
}

.value-item {
    text-align: left;
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -18px 0 0 0;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.2rem;
    color: white;
}

.value-content {
    flex: 1;
}

.value-item h5 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.value-item p {
    color: white;
    line-height: 1.2;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 15px 0 0 0;
    position: relative;
    left: -63px;
}

.btn-discover {
    background: white;
    color: black;
    padding: 12px 60px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    border: none;
}

.story-content {
    float: right;
}

.btn-discover:hover {
    background: #f0f0f0 !important;
    color: black;
    transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
    background: #f5f5f5 !important;
    padding: 80px 0;
    position: relative;
}

.blog-section .container {
    padding-bottom: 50px;
    position: relative;
}

.blog-swiper-container {
    position: relative;
    padding: 0;
}

.blogSwiper {
    overflow: visible;
}

.blogSwiper .swiper-slide {
    height: auto;
    border: none;
    outline: none;
}

.blogSwiper .swiper-slide:focus {
    outline: none;
    border: none;
}

.blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: none;
    outline: none;
}

.blog-card:focus {
    outline: none;
    border: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img.blog-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.blog-card .card-body {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    background: #f5f5f5;
    padding: 20px;
    width: 67%;
}

.blog-card .category {
    color: var(--primary-orange);
    font-size: 1.9rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.blog-card h6 {
    color: #2c2a27;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card small {
    color: #2c2a27;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0;
}
#footer{
    padding-top: 0 !important;
}
.blog-meta {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 94%;
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-container i {
    color: #666;
    font-size: 0.9rem;
}

.date-separator {
    width: 1px;
    height: 16px;
    background: var(--primary-orange);
}

.read-more {
    margin: 0;
}

.read-more a {
    color: #2c2a27;
    text-decoration: underline;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more a:hover {
    color: var(--primary-orange);
}

.blog-navigation {
    position: absolute;
    bottom: -72px;
    right: 50px;
    display: flex;
    gap: 8px;
    margin: 0;
    justify-content: flex-end;
}

.blog-prev,
.blog-next {
    position: static;
    right: auto;
    bottom: auto;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-prev:hover,
.blog-next:hover {
    transform: scale(1.05);
}

.blog-prev img,
.blog-next img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.blog-section .swiper-button-next:after,
.blog-section .swiper-button-prev:after {
    display: none;
}

/* FAQ Section */
.faq-section {
    background-color: #fff !important;
    padding: 80px 0;
}

.faq-container {
    background-color: #f6f6f6;
    padding: 0;
}

.faq-item {
    background-color: #f5f5f5;
    margin-bottom: 1px;
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: #f5f5f5;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    flex: 1;
    margin: 0;
    line-height: 1.4;
}

.faq-chevron {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-chevron i {
    font-size: 8px;
    color: #d4673c;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-chevron {
    background-color: #D5D5D5;
}

.faq-question.active .faq-chevron i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    border-top: 1px solid #f0f0f0;
}

.faq-answer.active {
    max-height: 2000px;
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        max-width: 100%;
        margin: 0 0;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .faq-text {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .faq-chevron {
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }

    .faq-chevron i {
        font-size: 8px;
    }

    .faq-answer p {
        padding: 15px 18px;
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-orange);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 200px;
    width: 100%;
}

.newsletter-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 24px;
    color: white;
}

.newsletter-text h2 {
    color: white;
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.newsletter-text p {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.95;
}

.newsletter-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.form-container {
    display: flex;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #d0d0d0; */
}

.sparer-icon {
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    width: 350px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background-color: white;
    color: var(--primary-orange);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: 1px solid #c0c0c0;
    margin-left: 0;
}

.newsletter-form button:hover {
    background-color: #f8f8f8;
    color: #e55a2b;
}

.newsletter-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.newsletter-decoration i {
    font-size: 20px;
    color: white;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
        min-height: auto;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .newsletter-left {
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .newsletter-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .newsletter-text h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .newsletter-text p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .newsletter-right {
        justify-content: flex-start;
        order: 2;
        width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .form-container {
        flex-direction: row;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .newsletter-form input {
        width: auto;
        flex: 1;
        font-size: 14px;
        padding: 12px 15px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 0;
        border-left: 1px solid #c0c0c0;
    }

    .sparer-icon {
        display: none;
    }

    .newsletter-right img {
        margin-top: 10px;
    }
}

.accordion-button {
    background-color: white;
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-orange);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--primary-orange);
    color: white;
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
}

.newsletter-form button {
    background-color: white;
    color: var(--primary-orange);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 1.5rem;

}

/* .newsletter-form button:hover { */
/* background-color: var(--light-gray); */
/* } */
/*  */
/* Footer */
.footer {
    background-color: #25231f;
    color: white;
    padding: 0;
}

.footer-main {
    background-color: #25231f;
    padding: 60px 0 40px;
}

.footer-bottom {
    background-color: #2c2a27;
    padding: 20px 0;
    /* border-top: 1px solid #333; */
}

.footer-title {
    color: var(--primary-orange);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-brand {
    text-align: right;
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-right: 15px;
}

.brand-slogan {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.follow-text {
    color: #53524c;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 60px;
}

.social-icons {
    display: flex;
    justify-content: right;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 16px;
}

.copyright {
    color: #73706d;
    font-size: 1.3rem;
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #73706d;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-orange);
}

.separator {
    color: #666666;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    .footer-title {
        margin-bottom: 0 !important;
    }
    .footer-column{
        margin-bottom: 0 !important;
    }
    .footer-brand {
        text-align: left;
        margin-top: 30px;
    }

    .brand-logo {
        font-size: 2rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .legal-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .footer-bottom {
        text-align: center;
    }
    .section-padding .container{
        width: auto !important;
    }
    .navbar  .container{
        width: 100% !important;
    }
}

/* Très petits écrans mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .products-title {
        font-size: 1.8rem !important;
    }

    .mySwiper .swiper-slide {
        width: 220px;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .form-container {
        flex-direction: row;
        max-width: 100%;
        gap: 0;
    }

    .newsletter-form input {
        border-radius: 8px 0 0 8px;
        flex: 1;
    }

    .newsletter-form button {
        border-radius: 0 8px 8px 0;
        border-left: 1px solid #c0c0c0;
        border-top: none;
        white-space: nowrap;
    }

    .sparer-icon {
        display: none;
    }

    .footer-main {
        padding: 10px 0 20px;
    }

    .brand-logo {
        font-size: 1.8rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 14px;
    }
}

/* Cart Page Styles */
.cart-content {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Cart Header */
.cart-header {
    background: #e2e2e2;
    border-bottom: 1px solid #e9ecef;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px;
    gap: 20px;
    padding: 15px 20px;
    align-items: center;
}
.cart-item .product-image{
    width: 110px;
    height: 110px;
    border-radius: 0 !important;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}
.cart-item .product-image img{
 border-radius: 0 !important;
}
.header-col {
    font-weight: 500;
    color: #2c2a27;
    font-size: 14px;
    text-align: center;
}

.header-col.description-col {
    text-align: left;
}

/* Cart Items */
.cart-items {
    background: #f2f1f1;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px;
    gap: 20px;
    padding: 20px 0;
    margin: 0 20px;
    border-bottom: 1px solid #dbdbdb;
    align-items: center;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Product Column */
.product-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Description Column */
.description-col {
    text-align: left;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-reference {
    font-size: 11px;
    color: #2c2a27;
    font-weight: 400;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c2a27;
    line-height: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #fa8041;
}

.original-price {
    font-size: 14px;
    color: #2c2a27;
    text-decoration: line-through;
}

.product-dimensions {
    font-size: 12px;
    color: #2c2a27;
    font-weight: 400;
    margin-top: 25px;
}

/* Quantity Column */
.quantity-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #f8f9fa;
}
.cart-item .quantity-controls {
    background: #fff;
}
.cart-item .quantity-input{
    padding-left: 7px;
    width: 35px;
    padding-right: 0;
    margin-right: 0;
}

.product-info-container .quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #f2f1f1;
    color: #2c2a27;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}





.product-info-container .quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #2c2a27;
    background: #f2f1f1;
}

.quantity-input:focus {
    outline: none;
}

/* Total Column */
.total-col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: #2c2a27;
}

.remove-btn {
    position: absolute;
    top: -48px;
    right: 0px;
    width: 24px;
    height: 24px;
    border: none;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.remove-btn img {
    width: 20px;
    height: 20px;
}


/* Cart Actions */
.cart-actions {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-continue-shopping,
.btn-update-cart {
    padding: 12px 25px;
    border: 1px solid #2c2a27;
    background: white;
    color: #2c2a27;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-continue-shopping:hover,
.btn-update-cart:hover {
    background: #2c2a27;
    color: white;
}

.btn-continue-shopping i {
    font-size: 12px;
}

.btn-update-cart i {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-content {
        margin: 0 15px;
    }
    .checkout-form-container-panier .cart-content{
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .cart-header-row,
    .cart-item {
        grid-template-columns: 120px 1fr 80px 80px;
        gap: 5px;
        padding: 15px 0;
    }
    
    
    .product-details {
        gap: 3px;
    }
    
    .product-reference {
        font-size: 10px;
    }
    
    .product-name {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .current-price {
        font-size: 14px;
    }
    
    .original-price {
        font-size: 12px;
    }
    
    .product-dimensions {
        font-size: 10px;
        margin-top: 15px;
    }
    
    .cart-item .quantity-controls {
        background: #fff;
        border: 1px solid #dee2e6;
    }
    
    .cart-item .quantity-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .cart-item .quantity-input {
        width: 30px;
        height: 25px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .item-total {
        font-size: 14px;
    }
    
    .remove-btn {
        top: -40px;
        right: 5px;
        width: 20px;
        height: 20px;
    }
    
    .remove-btn img {
        width: 20px;
        height: 20px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .btn-continue-shopping,
    .btn-update-cart {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 20px;
        font-size: 14px;
    }
    .checkout-form-container-panier .product-name,.checkout-form-container-panier .current-price{
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    .cart-content {
        margin: 0 10px;
    }
    .checkout-form-container-panier .cart-content{
        padding: 0 !important;
        margin: 0 !important;
    }
    .checkout-form-container-panier .product-name, .checkout-form-container-panier .current-price{
        font-size: 1.3rem !important;
    }

    .cart-header-row,
    .cart-item {
        grid-template-columns: 70px 1fr 50px 90px;
        gap: 5px;
        padding: 12px 0;
        margin: 0 !important;
    }
    
    .cart-item .product-image {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 11px;
    }
    
    .current-price {
        font-size: 13px;
    }
    
    .original-price {
        font-size: 11px;
    }
    
    .product-dimensions {
        font-size: 9px;
        margin-top: 10px;
    }
    
    .cart-item .quantity-btn {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .cart-item .quantity-input {
        width: 25px;
        height: 22px;
        font-size: 11px;
    }
    
    .item-total {
        font-size: 12px;
    }
    
    .remove-btn {
        top: -46px;
        right: 11px;
        width: 20px;
        height: 20px;
    }
    
    .remove-btn img {
        width: 20px;
        height: 20px;
    }
    
    .cart-actions {
        padding: 15px 10px;
    }
    
    .btn-continue-shopping,
    .btn-update-cart {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-container {
    background: white;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px 25px; */
    border-bottom: 1px solid #e9ecef;
    position: relative;
    height: 70px;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.success-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black !important;
    font-size: 18px;

}

.success-text {
    font-size: 16px;
    font-weight: 500;
    color: #2c2a27;
}

.modal-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: none;
    background: #e2e2e2;
    color: #2c2a27;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #d0d0d0;
}

/* Modal Content */
.modal-content {
    display: grid;
    grid-template-columns: 55% 45%;
    /* gap: 30px; */
    padding: 0 25px ;
}

.modal-left {
    border-right: 1px solid #e9ecef;
    padding-right: 25px;
    padding-top: 20px;
}

.modal-right {
    padding-left: 25px;
}

/* Left Column - Product Details */
.modal-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-product-item {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.modal-product-col {
    flex-shrink: 0;
}

.modal-description-col {
    flex: 1;
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap:0;
}

.product-reference {
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c2a27;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    flex-direction: row;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
}

.original-price {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
    white-space: nowrap;
}

.product-dimensions,
.product-quantity {
    font-size: 14px;
    color: #2c2a27;
    font-weight: 400;
}
.product-dimensions{
    margin-top: 20px;
}
.modal-product-item .product-dimensions{
    margin-top: 0;
}
.modal-product-item .product-name{
    margin-top: 5px;
}

.modal-product-item .product-image{
    margin-top: 10px;
}
/* Right Column - Cart Summary */
.modal-right {
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
    padding: 20px 0;
    padding-left: 35px;
}

.cart-status {
    text-align: center;
    margin-bottom: 0;
}

.cart-count {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border: none;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.summary-label {
    font-size: 14px;
    color: #2c2a27;
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    color: #2c2a27;
    font-weight: 600;
}

.summary-value.free {
    color: #28a745;
    font-weight: 600;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
    align-items: center;
}

.btn-commander {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.btn-commander:hover {
    background: #e55a1a;
    transform: translateY(-1px);
}

.btn-commander i {
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.continue-shopping {
    text-align: center;
    color: #2c2a27;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.continue-shopping:hover {
    color: var(--primary-orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    .modal-header {
        justify-content: flex-start;
    }
    .modal-header {
        padding: 15px 20px;
    }
    
    .success-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .success-text {
        font-size: 14px;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        /* gap: 20px; */
        padding: 20px;
    }
    
    .modal-left {
        order: 1;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .modal-right {
        order: 2;
        padding-left: 0;
    }
    
    .modal-product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-image {
        width: 150px;
        height: 120px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .btn-commander {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .modal-product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-image {
        width: 120px;
        height: 100px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .current-price {
        font-size: 15px;
    }
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #706f6d;
    font-size: 8px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
}

/* Products Swiper Container */
.mySwiper {
    padding: 0 60px;
    overflow: visible;
    height: auto;
}

.mySwiper .swiper-wrapper {
    align-items: stretch;
}

/* Products Swiper Navigation */
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    background: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mySwiper .swiper-button-next {
    right: -68px;
}

.mySwiper .swiper-button-prev {
    left: 10px;
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    display: none;
}

.mySwiper .swiper-button-next i,
.mySwiper .swiper-button-prev i {
    font-size: 16px;
    font-weight: bold;
}

/* Section Spacing */
.section-padding {
    padding: 60px 0;
    background: #f0f0f0;
    overflow: hidden;
}

.bg-light-section {
    background-color: #fff;
    /* border-bottom: 1px solid #f1f1f1; */
    line-height: 0 !important;
}
/* ===== MODAL PANIER - DESIGN BECKENDÖRFF ===== */

/* Modal Overlay */
#blockcart-modal {
    z-index: 10000;
}

#blockcart-modal .modal-dialog {
    max-width: 900px !important;
    margin: 50px auto !important;
}

#blockcart-modal .modal-container {
    background: white !important;
    border-radius: 0 !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Modal Header avec message de succès */
#blockcart-modal .modal-header {
    background: white !important;
    border-bottom: 1px solid #e8e8e8 !important;
    padding: 20px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    border-radius: 0 !important;
    min-height: 60px !important;
}

.success-message {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1 !important;
}


.success-icon i {
    line-height: 1 !important;
}

.success-text {
    font-size: 2rem !important;
    color: #333 !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.modal-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: none;
    background: #e2e2e2;
    color: #2c2a27;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #333 !important;
}

.modal-close i {
    line-height: 1 !important;
}

/* Modal Content - Layout à 2 colonnes */
#blockcart-modal .modal-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    width: 100% !important;
}
#blockcart-modal .product-image{
    position: relative !important;
}
/* Colonne gauche - Détails produit */
.modal-left {
    flex: 1 !important;
    padding: 30px 0 0 0 !important;
    background: white !important;
    border-right: 1px solid #e0e0e0 !important;
    min-width: 0 !important;
}



.modal-product-col .product-image {
    max-width: 100px !important;
    height: auto !important;
}

.modal-product-col .product-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    max-height: 100px !important;
}

.modal-description-col {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.product-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.product-reference {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-bottom: 5px !important;
    font-weight: 400 !important;
}
.modal-left .product-reference {
    font-size: 1.3rem !important;
}
.modal-left .product-name{
    font-size: 1.8rem !important;
}
.modal-left .current-price{
    font-size: 1.6rem !important;
}
.modal-left .product-attribute, .modal-left .product-quantity{
    font-size: 1.4rem !important;
}
.product-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #2c2a27 !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.2px !important;
}

.product-pricing {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
}

.current-price {
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    color: var(--primary-orange) !important;
}
.discount-badge{
    display: none;
}

.original-price {
    font-size: 1.3rem !important;
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.product-attribute,
.product-quantity {
    font-size: 0.85rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.product-attribute strong,
.product-quantity strong {
    color: #2c2a27 !important;
    font-weight: 600 !important;
    margin-right: 3px !important;
}

/* Colonne droite - Résumé panier */
.modal-right {
    flex: 1 !important;
    padding: 30px !important;
    background: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-width: 0 !important;
}


.cart-count {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--primary-orange) !important;
    display: block !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

.cart-summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 15px !important;
    padding-top: 10px !important;
}

.summary-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
}

.summary-label {
    font-size: 1.3rem !important;
    color: #666 !important;
    font-weight: 500 !important;
}

.summary-value {
    font-size: 1.3rem !important;
    color: #2c2a27 !important;
    font-weight: 700 !important;
}

.summary-value.free {
    color: #28a745 !important;
    font-weight: 700 !important;
    text-transform: lowercase !important;
}

.summary-line.total {
    padding-top: 15px !important;
    border-top: 2px solid #ddd !important;
    margin-top: 10px !important;
}

.summary-line.total .summary-label {
    font-size: 1.6rem !important;
    color: #2c2a27 !important;
    font-weight: 700 !important;
}

.summary-line.total .summary-value {
    font-size: 1.6rem !important;
    color: #2c2a27 !important;
    font-weight: 700 !important;
}

/* Actions du modal */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.btn-commander {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px 20px !important;
    background: var(--primary-orange) !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 1.6rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

.btn-commander:hover {
    background: #d4731a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(244, 130, 32, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-commander i {
    font-size: 1rem !important;
}

.continue-shopping {
    display: block !important;
    text-align: center !important;
    color: #666 !important;
    text-decoration: underline !important;
    font-size: 1.3rem !important;
    transition: color 0.3s ease !important;
    margin-top: 5px !important;
}

.continue-shopping:hover {
    color: #2c2a27 !important;
    text-decoration: underline !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    #blockcart-modal .modal-dialog {
        max-width: 95%;
        margin: 20px auto;
    }
    
    #blockcart-modal .modal-content {
        flex-wrap: wrap;
    }
    
    .modal-left,
    .modal-right {
        flex: 0 0 100%;
    }
    
    .modal-left {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (max-width: 768px) {
    #blockcart-modal .modal-header {
        padding: 15px 20px;
    }
    
    .success-text {
        font-size: 1rem;
    }
    
    .modal-left,
    .modal-right {
        padding: 20px;
    }
    
    .modal-product-col .product-image {
        max-width: 140px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .cart-count {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #blockcart-modal .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-close {
        position: absolute;
        top: 35px;
        right: 0;
    }
    
    .success-message {
        flex-direction: column;
        text-align: center;
    }
}

#custom-text{
    margin: 0 !important;
    padding: 0 !important;
}
#custom-text .bg-light-section .service-item img{
width: 80px !important;
height: 80px !important;

}
.collections-section {
    border: none !important;
    padding-bottom: 80px;
    background-color: #fff;
}

.section-padding .container {
    max-width: 1800px !important;
    /* width: 1800px; */
}
.product-card.liste-product{
    border: 1px solid #e4e4e4 !important;
}

/* ========================================
   CHECKOUT PAGE STYLES
======================================== */

/* Checkout Section */
.checkout-section {
    padding: 0;
    background-color: #fff;
    min-height: 100vh;
    margin-bottom: 100px;
}

/* Checkout Form Container */
.checkout-form-container {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}
.cart-items{
    margin: 0 !important;
}
/* Page Title */
.page-title {
    background: white;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.checkout-form-container-panier .page-title{
    border: none;
}
.checkout-form-container-panier .product-reference{
    font-size: 1.3rem !important;
}
.title-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-title h1 {
    font-size: 21px;
    font-weight: 600;
    color: #2c2a27;
    margin: 0;
    letter-spacing: 0.5px;
}
#checkout-personal-information-step .content{
    background: #f2f1f1;
    padding: 20px !important;
}
.checkout-step .not-allowed{
    opacity: 1 !important;
}
/* Step Header */
.step-header,.checkout-step .step-title {
    background: #e2e2e2 !important;
    color: #2c2a27;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 !important;
}
.checkout-step{
    padding: 0 !important;
}
.step-number {
    background: none;
    color: #2c2a27;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    right: -7.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #c4c4c4;
}

.step-title {
    font-weight: 500;
    color: #2c2a27;
    font-size: 16px;
}

/* Form Content */
.form-content {
    flex: 1;
    padding: 40px;
    margin: 0 auto;
    border-radius: 0;
    max-width: 440px;
    width: 100%;
}
.checkout-form-totzl  {
     background: #f2f1f1;
} 
/* Checkout Options */
.checkout-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    font-size: 18px;
    padding: 0;
}

.option-text {
    color: #9e9e9d;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.option-text.active {
    color: #2c2a27;
    font-weight: 600;
}

.option-separator {
    color: var(--primary-orange);
    font-weight: 400;
    font-size: 15px;
}

/* Checkout Form */
/* .checkout-form { */
    /* background: white; */
    /* padding: 0 60px; */
/* } */
.product-section .product-image{
    width: 300px;
    height: 300px;
    border:none;
    text-align: center;
    margin: 50px auto 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #2c2a27;
    margin-bottom: 12px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    border-radius: 0% !important;
    color: #2c2a27;
}

/* Special padding for password field */
.password-input-group .form-control {
    padding-right: 80px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(250, 128, 65, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 0;
    margin-left: 20px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
}

.radio-label {
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    color: #2c2a27;
}

/* Form Group with inline layout */
.form-group.inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-group.inline .form-label {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Account Creation */
.account-creation {
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    border: none;
    margin-top: 50px;
}

.account-creation h3 {
    font-size: 14px;
    font-weight: 600;
    color: #2c2a27;
    margin-bottom: 8px;
    line-height: 1px;
}

.optional-badge {
    background: none;
    color: #2c2a27;
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
}

.account-subtitle {
    color: #2c2a27;
    font-size: 12px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Password Input Group */
.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

.password-toggle {
    background: none;
    border: none;
    color: var(--primary-orange);
    cursor: pointer;
    padding: 12px 15px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    border-left: 1px solid #e9ecef;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.optional-text {
    font-size: 12px;
    color: #2c2a27;
    margin-left: 10px;
    font-style: normal;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
    border-radius: none;
    border: 1px solid #000;
}

.checkbox-label {
    font-size: 10px;
    line-height: 1.2;
    cursor: pointer;
    margin: 0;
    color: #2c2a27;
}

.privacy-link {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    text-align: right;
}
.form-control:focus{
    color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}
.btn-continue {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-continue:hover {
    background: #e6732a;
    transform: translateY(-2px);
}

.btn-continue:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Step Footer */
.step-footer {
    background: #f5f5f5;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.step-item {
    background: #e2e2e2;
    color: #2c2a27;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f2f1f1;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item:hover {
    background: #d4d4d4;
    color: #2c2a27;
}

.step-item .step-number {
    background: none;
    color: #2c2a27;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
}

.step-item .step-number::after {
    content: '';
    position: absolute;
    right: -7.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #c4c4c4;
}

.step-item:hover .step-number::after {
    background-color: #a0a0a0;
}

.step-text {
    font-weight: 500;
    color: #2c2a27;
    font-size: 16px;
}

/* Order Summary */
.order-summary {
    border: 1px solid #2c2a27;
    position: sticky;
    top: 20px;
    margin-left: 20px;
    /* margin-top: 120px; */
}

/* Summary Title */
.summary-title {
    padding: 20px 0 15px;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
    margin: 0 25px;
}

.summary-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c2a27;
    margin: 0;
}

/* Summary Content */
.summary-content {
    padding: 20px 25px 25px;
}

/* Items Section */
.items-section {
    margin-bottom: 20px;
}

.items-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.count {
    font-weight: 500;
    color: #2c2a27;
    font-size: 14px;
}

.toggle-details {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding: 0;
}

.toggle-details i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.toggle-details.active i {
    transform: rotate(180deg);
}

/* Price Breakdown */
.price-breakdown {
    margin-bottom: 20px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.price-label {
    color: #2c2a27;
    font-weight: 500;
}

.price-value {
    font-weight: 600;
    color: #2c2a27;
}

.price-value.free {
    color: #2c2a27;
}

/* Discount Field */
.discount-field {
    position: relative;
    margin-bottom: 20px;
}

.discount-input {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 0;
    font-size: 14px;
    background: #f8f9fa;
    color: #2c2a27;
    box-sizing: border-box;
}

.discount-input::placeholder {
    color: #2c2a27;
}

.discount-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #2c2a27;
    font-size: 12px;
    pointer-events: none;
}

/* Discount Toggle Styles */
.discount-toggle {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 0;
    font-size: 14px;
    background: #f8f9fa;
    color: #2c2a27;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.discount-toggle:hover {
    background: #e9ecef;
}

.discount-toggle span {
    display: inline-block;
}

.discount-toggle .discount-icon {
    position: absolute;
    right: 15px;
    top: 25px;
    transform: translateY(-50%);
    color: #2c2a27;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.discount-toggle.active .discount-icon {
    transform: translateY(-50%) rotate(180deg);
}

.discount-form {
    display: flex;
    /* gap: 10px; */
    margin-top: 25px;
    align-items: stretch;
}

.discount-input-code {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 0;
    font-size: 14px;
    color: #2c2a27;
    background: #fff;
}

.discount-input-code:focus {
    outline: none;
    border-color: #2c2a27;
}

.btn-add-discount {
    padding: 12px 24px;
    background: #2c2a27;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-discount:hover {
    background: #000;
}

/* Total Line */
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #2c2a27;
    border-top: 1px solid #dee2e6;
}

.total-label {
    font-weight: 700;
    color: #2c2a27;
}
.finalize-total .total-label,
.finalize-total .total-value{  
    color: var(--primary-orange); 
}

.total-value {
    font-weight: 700;
    color: #2c2a27;
}

/* Finalize Button */
.finalize-section {
    margin-top: 20px;
}

.btn-finalize {
    width: 100%;
    padding: 15px 20px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.btn-finalize:hover {
    background: #e55a1a;
    transform: translateY(-1px);
}

.btn-finalize img {
    filter: brightness(0) invert(1);
}

.btn-finalize:hover i {
    transform: translateX(3px);
}

/* ========== EMPTY CART PAGE ========== */
.empty-cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.empty-cart-container {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
}

.empty-cart-icon {
    margin-bottom: 30px;
}

.empty-cart-icon img {
    opacity: 0.3;
    filter: grayscale(100%);
}

.empty-cart-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c2a27;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.empty-cart-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.empty-cart-subtext {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
    line-height: 1.6;
}

.empty-cart-actions {
    margin-bottom: 50px;
}
.continue{
    background: var(--primary-orange);
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 300;
    border: none;
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    transition: all 0.3s 
ease;
    text-decoration: none;
}
#checkout .checkout-step .content{
    background: #f2f1f1 !important;
    padding: 20px !important;
}
.input-group-btn .btn, .ps-shown-by-js button{
    color: white;
    background: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 0;
    font-size: 16px;
    font-weight: 300;
    padding: 15px 40px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.continue:hover {
    background: #e6732a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 61, 0.3);
    color: white;
}
.btn-continue-shopping {
    background: var(--primary-orange);
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 300;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-continue-shopping:hover {
    background: #e6732a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 61, 0.3);
    color: white;
}

.btn-continue-shopping i {
    transition: transform 0.3s ease;
}

.btn-continue-shopping:hover i {
    transform: translateX(-3px);
}

.empty-cart-suggestions {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.empty-cart-suggestions h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2a27;
    margin-bottom: 25px;
}

.category-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cart-wishlist-item .remove-from-cart{
    position: absolute;
    top: 74px;
    left: 165px;
    z-index: 99999;
    width: 29px;
    height: 35px;
    border: none;
}
.cart-wishlist-item .remove-from-cart:before{
    background: url('../images/delete.svg') no-repeat center center;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
}
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: #2c2a27;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.category-link i {
    font-size: 18px;
}

/* Responsive for empty cart */
@media (max-width: 768px) {
    .empty-cart-container {
        padding: 40px 20px;
    }
    
    .empty-cart-title {
        font-size: 24px;
    }
    
    .empty-cart-text {
        font-size: 16px;
    }
    
    .empty-cart-subtext {
        font-size: 14px;
    }
    
    .category-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-link {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-title {
        padding: 20px 25px;
    }
    
    .page-title h1 {
        font-size: 24px;
    }
    
    .title-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-content {
        margin: 0 auto;
        padding: 30px;
        max-width: 500px;
    }
    
    .checkout-form {
        padding: 0 30px;
    }
    
    .step-header {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .step-item {
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        /* max-width: 400px; */
        width: 100%;
    }
    
    .checkout-section .col-lg-4 {
        display: flex;
        justify-content: flex-start;
    }
    
    .summary-title {
        margin: 0 20px;
        padding: 20px 0 15px;
    }
    
    .summary-content {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 767px) {
    .checkout-section {
        padding: 0;
        overflow-x: hidden;
    }
    
    /* Correction simple pour le scroll horizontal */
    .checkout-options {
        white-space: nowrap;
        overflow-x: hidden;
    }
    
    .form-group.inline {
        flex-direction: column;
    }
    
    .form-group.inline .radio-group {
        margin-left: 0;
        margin-top: 10px;
    }
    .checkout-form-container{
        margin: 18px;
    }
    .page-title {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .page-title h1 {
        font-size: 20px;
    }
    
    .title-icon {
        width: 45px;
        height: 45px;
    }
    
    .form-content {
        margin: 0 auto;
        padding: 20px;
        max-width: 100%;
    }
    
    .checkout-form {
        padding: 0 58px;
    }
    
    .step-header {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .step-item {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .checkout-options {
        flex-direction: row;
        gap: 15px;
        text-align: center;
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .option-separator {
        display: inline;
    }
    
    .form-group.inline {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .form-group.inline .radio-group {
        margin-left: 0;
        flex-direction: row;
        gap: 15px;
    }
    
    .btn-continue {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
        text-align: center;
    }
    
    .password-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .optional-text {
        margin-left: 0;
    }
    
    .account-creation {
        padding: 0;
        margin: 0;
    }
    
    .optional-text {
        position: static;
        transform: none;
        margin-left: 10px;
        margin-top: 5px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .order-summary {
        margin: 18px;
        width: 100%;
    }
    
    .checkout-section .col-lg-4 {
        display: flex;
        justify-content: flex-start;
    }
    
    .summary-title {
        margin: 0;
        padding: 15px 20px 12px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .summary-content {
        padding: 15px 20px 20px;
    }
    
    .price-line {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .total-line {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .discount-input {
        padding: 10px 30px 10px 12px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (portrait) */
@media (max-width: 480px) {
    .page-title {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .page-title h1 {
        font-size: 18px;
    }
    
    .title-icon {
        width: 40px;
        height: 40px;
    }
    
    .form-content {
        padding: 15px;
    }
    
    .checkout-form {
        padding: 0 15px;
    }
    
    .step-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .step-item {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .checkout-options {
        font-size: 15px;
        gap: 12px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-continue {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .order-summary {
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
        /* max-width: 300px; */
        width: 100%;
    }
    
    .checkout-section .col-lg-4 {
        display: flex;
        justify-content: flex-start;
    }
    
    .summary-title {
        margin: 0;
        padding: 12px 15px 10px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .summary-title h3 {
        font-size: 18px;
    }
    
    .summary-content {
        padding: 12px 15px 15px;
    }
    
    .price-line {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .total-line {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .discount-input {
        padding: 8px 25px 8px 10px;
        font-size: 12px;
    }
}

/* Focus and Accessibility */
.form-control:focus,
.option-btn:focus,
.btn-continue:focus,
.toggle-details:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}
.modal-left.product-details{
    gap: 0 !important;
}
/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-control {
        border-width: 3px;
    }
    
    .btn-continue {
        border: 2px solid var(--text-dark);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .step,
    .btn-continue,
    .form-control,
    .toggle-details i {
        transition: none;
    }
}
/* .mega-menu-content{ */
    /* max-height: 300px; */
/* } */

/* nouveau css */
.blockcart{
     border: none !important;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner {
    background: white;
}

.hero-banner .row {
    align-items: center;
    margin: 0;
}

/* Image section (left) */

.banner-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.banner-image img {
    width: 100%;
}

.banner-image:hover img {
    transform: scale(1.05);
}

/* Options de positionnement pour différents types d'images */
.banner-image img[src*="Matelas"] {
    object-position: center 30%;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
/* Pour les images lifestyle avec des personnes */
.banner-image img[src*="lifestyle"],
.banner-image img[src*="person"] {
    object-position: center 40%;
}

/* Pour les images de produits */
.banner-image img[src*="product"] {
    object-position: center center;
}

/* Content section (right) */

.banner-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Icon */
.banner-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid #ff6b35;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.banner-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Text content */
.banner-text-content {
    flex: 1;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2a27;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.banner-description {
    font-size: 0.9rem;
    color: #2c2a27;
    line-height: 1.6;
    margin: 0;
    max-width: 55%;
}

.banner-description p {
    margin: 0 0 15px 0;
}

.banner-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-banner .col-lg-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0;
    }
    
    .hero-banner .col-lg-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 40px 30px;
        min-height: auto;
    }
    
    .banner-image {
        width: 100%;
        height: 300px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 30px 0;
    }
    
    .hero-banner .col-lg-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0;
    }
    
    .hero-banner .col-lg-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 30px 20px;
    }
    
    .banner-image {
        width: 100%;
        height: 250px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
    }
    
    .banner-icon img {
        width: 35px;
        height: 35px;
    }
}


/* ========== FOOTER ACCORDION FOR MOBILE ========== */
@media (max-width: 768px) {
    .footer-column .footer-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        user-select: none;
        transition: all 0.3s ease;
    }
    
    .footer-column .footer-title:hover {
        opacity: 0.8;
    }
    
    .footer-toggle-icon {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .footer-column.active .footer-toggle-icon {
        transform: rotate(180deg);
    }
    
    .footer-column .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .footer-column.active .footer-links {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .footer-column .footer-links li {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .footer-column.active .footer-links li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .footer-column.active .footer-links li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .footer-column.active .footer-links li:nth-child(2) {
        transition-delay: 0.15s;
    }
    
    .footer-column.active .footer-links li:nth-child(3) {
        transition-delay: 0.2s;
    }
    
    .footer-column.active .footer-links li:nth-child(4) {
        transition-delay: 0.25s;
    }
    
    .footer-column.active .footer-links li:nth-child(5) {
        transition-delay: 0.3s;
    }
}

/* Desktop - hide toggle icon and keep links visible */
@media (min-width: 769px) {
    .footer-toggle-icon {
        display: none;
    }
    
    .footer-column .footer-title {
        cursor: default;
    }
    
    .footer-column .footer-links {
        max-height: none !important;
        overflow: visible !important;
    }
}

/* ===== LOGIN FORM STYLES ===== */
#login-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: #f2f1f1;
    /* border: 1px solid #e9ecef; */
    /* Pas de border-radius - coins carrés comme demandé */
}

#login-form .form-group {
    margin-bottom: 25px;
}

#login-form .form-control {
    width: 100%;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border-radius: 0% !important;
    color: #2c2a27;
    background: white;
}

#login-form .form-control:focus {
    outline: none;
    border-color: #2c2a27;
    box-shadow: none;
}

#login-form .form-control::placeholder {
    color: #999;
    font-size: 18px;
}

#login-form .forgot-password {
    text-align: right;
    margin-bottom: 30px;
}

#login-form .forgot-password a {
    color: #2c2a27;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

#login-form .forgot-password a:hover {
    color: #666;
    text-decoration: underline;
}

#login-form .form-footer {
    text-align: center;
    margin-top: 35px;
    padding: 0;
}

#login-form #submit-login {
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    min-height: 56px;
    /* Pas de border-radius - coins carrés */
    transition: all 0.2s ease;
    border: none;
}

#login-form #submit-login:hover {
    background: #1a1816;
    transform: translateY(-1px);
}

#login-form #submit-login:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    #login-form {
        max-width: 450px;
        padding: 45px;
    }
    
    #login-form .form-control {
        padding: 16px 18px;
        font-size: 17px;
        min-height: 52px;
    }
    
    #login-form #submit-login {
        padding: 16px 24px;
        font-size: 17px;
        min-height: 52px;
    }
}

/* Mobile responsive pour le login form */
@media (max-width: 768px) {
    #login-form {
        margin: 15px;
        padding: 35px 25px;
        max-width: none;
    }
    
    #login-form .form-control {
        padding: 16px 18px;
        font-size: 16px; /* Éviter le zoom sur iOS */
        min-height: 50px;
    }
    
    #login-form #submit-login {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 50px;
    }
    
    #login-form .forgot-password a {
        font-size: 15px;
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    #login-form {
        margin: 10px;
        padding: 25px 20px;
    }
    
    #login-form .form-control {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }
    
    #login-form #submit-login {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
    }
}