    .divider {
        width: 80px;
        height: 3px;
        opacity: 0.7;
    }

    .map-container {
        min-height: 100%;
        border-radius: 0.25rem;
    }

    .popup-img {
        width: 100%;
        height: auto;
        border-radius: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .popup-text {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    /* Appliquer un fond bg-info à la popup */
    .swal2-popup {
        background-color: #d1ecf1 !important;
        /* bg-info clair */
        color: #0c5460;
        /* Texte adapté au bg-info */
        border-radius: 8px;
    }

    /* Changer la couleur des boutons si besoin */
    .swal2-confirm {
        background-color: #007bff !important;
        /* Bleu Bootstrap */
        border-color: #007bff !important;
    }

    .swal2-cancel {
        background-color: #17a2b8 !important;
        /* bg-info plus foncé */
        border-color: #17a2b8 !important;
    }

    .partner-badge {
        position: absolute;
        top: -10px;
        right: 10px;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.7rem;
        font-weight: 700;
        color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .bg-gradient-platinum {
        background: linear-gradient(135deg, #e5e4e2 0%, #b4b4b4 100%);
        color: #333 !important;
    }

    .bg-gradient-gold {
        background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    }

    .partner-logo {
        max-height: 80px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .partner-card:hover .partner-logo {
        transform: scale(1.05);
    }

    .premium-partners-swiper {
        padding: 20px 0;
    }

    .swiper-slide {
        height: auto;
    }

    .package-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 0.75rem;
    }

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

    .package-img-container {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .package-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .package-card:hover .package-img {
        transform: scale(1.05);
    }

    .package-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .package-card:hover .package-overlay {
        opacity: 1;
    }

    .package-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .package-price {
        line-height: 1.2;
    }

    .news-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 0.75rem;
    }

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

    .news-img-container {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .news-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card:hover .news-img {
        transform: scale(1.05);
    }

    .news-date-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .news-date-badge .day {
        font-size: 1.1rem;
        font-weight: bold;
        line-height: 1;
        color: #333;
    }

    .news-date-badge .month {
        font-size: 0.65rem;
        line-height: 1;
        color: #666;
        margin-top: 2px;
    }

    @media (max-width: 768px) {
        .news-img-container {
            height: 160px;
        }
    }

    .gallery-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 0.75rem;
    }

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

    .gallery-img-container {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .gallery-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-card:hover .gallery-img-container img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

    .filter-buttons .active {
        background-color: var(--bs-primary);
        color: white !important;
    }

    @media (max-width: 768px) {
        .gallery-img-container {
            height: 180px;
        }
    }


    /* Style pour les notifications toast */
    .toast-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #4CAF50;
        color: white;
        padding: 15px 25px;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        max-width: 300px;
    }

    .toast-notification.show {
        opacity: 1;
    }

    .toast-notification.error {
        background-color: #f44336;
    }

    .toast-notification.warning {
        background-color: #ff9800;
    }

    .loading {
        opacity: 0.7;
        position: relative;
    }

    .loading:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin: -8px 0 0 -8px;
        border: 2px solid #fff;
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .pulse {
        animation: pulse 0.5s;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.3);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Styles pour le modal */
    .product-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1050;
        overflow-y: auto;
    }

    .modal-content {
        background-color: #fff;
        margin: 5% auto;
        padding: 30px;
        border-radius: 8px;
        max-width: 800px;
        position: relative;
    }

    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }

    .modal-product-image {
        width: 100%;
        max-height: 400px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .modal-product-title {
        font-size: 24px;
        margin-bottom: 10px;
        color: #333;
    }

    .modal-product-price {
        font-size: 22px;
        font-weight: bold;
        color: #e63946;
        margin-bottom: 15px;
    }

    .modal-product-description {
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .quantity-selector {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        cursor: pointer;
        font-size: 16px;
    }

    .quantity-input {
        width: 50px;
        height: 30px;
        text-align: center;
        margin: 0 10px;
        border: 1px solid #ddd;
    }

    .modal-action-btns {
        display: flex;
        gap: 10px;
    }

    .modal-btn {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }

    /* .btn-primary {
        background-color: #007bff;
        color: white;
    } */

    .btn-secondary {
        background-color: #6c757d;
        color: white;
    }

    .product-card {
        position: relative;
        transition: transform 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-image-container {
        position: relative;
    }

    .quick-view-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .product-image-container:hover .quick-view-btn {
        opacity: 1;
    }

    .product-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

    .out-of-stock {
        position: relative;
    }

    .out-of-stock::after {
        content: "Rupture de stock";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #d9534f;
        font-size: 1.2rem;
    }

    .out-of-stock-btn {
        background-color: #6c757d !important;
        cursor: not-allowed;
    }

    /* counter */

    .can-hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://example.com/can-background.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        padding: 80px 0;
    }

    .can-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        /* Responsive font size */
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        padding: 0 15px;
    }

    .can-subtitle {
        font-size: clamp(1rem, 2vw, 1.5rem);
        /* Responsive font size */
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .can-timer {
        max-width: 800px;
        margin: 0 auto 30px;
        padding: 0 15px;
    }

    .countdown-wrapper {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .countdown-header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .countdown-header i {
        font-size: clamp(1.5rem, 3vw, 2rem);
        color: #FFD700;
        margin-right: 10px;
    }

    .countdown-header h3 {
        margin: 0;
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }

    .countdown-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px 15px;
    }

    .countdown-item {
        text-align: center;
        min-width: 70px;
        /* Minimum width for small screens */
    }

    .countdown-number {
        font-size: clamp(1.8rem, 5vw, 3.5rem);
        font-weight: 700;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        padding: 8px 12px;
        color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        margin: 0 auto;
        width: fit-content;
    }

    .countdown-label {
        font-size: clamp(0.7rem, 1.5vw, 1rem);
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .countdown-separator {
        font-size: clamp(1.5rem, 4vw, 3rem);
        font-weight: bold;
        margin-top: -10px;
        color: #FFD700;
        display: none;
        /* Hidden on small screens */
    }

    @media (min-width: 576px) {
        .countdown-separator {
            display: block;
            /* Show on medium+ screens */
        }

        .countdown-item {
            min-width: 90px;
        }
    }

    .progress {
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        margin-top: 15px;
    }

    .progress-bar {
        background: linear-gradient(90deg, #FFD700, #FF8C00);
    }

    .scroll-indicator {
        margin-top: 40px;
    }

    .scroll-indicator i {
        font-size: 2rem;
        color: white;
        animation: bounce 2s infinite;
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-7px);
        }
    }

    .equal-width-btn {
        width: 350px !important;
        text-align: center;
    }