    #spin-wheel-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9990;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #spin-wheel-overlay.active {
        display: flex;
        opacity: 1;
    }

    #spin-wheel-container {
        text-align: center;
        padding: 30px;
        background: black;
        border-radius: 20px;
        border: 3px solid #bfa33f;
        max-width: 500px;
        width: 90%;
        position: relative;
        transform: scale(0.7);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    }

    #spin-wheel-container.active {
        transform: scale(1);
        opacity: 1;
    }

    #wheel-container {
        position: relative;
        width: 350px;
        height: 350px;
        margin: 0 auto 20px;
    }

    #wheel {
        border-radius: 50%;
        box-shadow: 0 0 30px rgba(191, 163, 63, 0.6);
        transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    #spin-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: #bfa33f;
        border-radius: 50%;
        border: 4px solid white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: black;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    #spin-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: #d4af37;
    }

    #spin-button.spinning {
        pointer-events: none;
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.95);
    }

    #pointer {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 35px solid #bfa33f;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    #result {
        margin-top: 20px;
        padding: 20px;
        background: #1a1a1a;
        border-radius: 15px;
        border: 2px solid #bfa33f;
        display: none;
    }

    /* CARTE DE FÉLICITATIONS */
    #congratulations-card {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        background: black;
        border: 3px solid #bfa33f;
        border-radius: 20px;
        padding: 30px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        z-index: 9995;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
    }

    #congratulations-card.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    #congratulations-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff4444;
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #congratulations-close:hover {
        background: #ff6666;
        transform: scale(1.1);
    }

    .congratulations-product-image {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 15px;
        border: 3px solid #bfa33f;
        margin: 15px auto;
        display: block;
    }

    .congratulations-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .congratulations-btn {
        padding: 12px 25px;
        border: none;
        border-radius: 10px;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-shop {
        background: linear-gradient(135deg, #bfa33f 0%, #d4af37 100%);
        color: black;
    }

    .btn-shop:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(191, 163, 63, 0.4);
    }

    .btn-close {
        background: transparent;
        color: #bfa33f;
        border: 2px solid #bfa33f;
    }

    .btn-close:hover {
        background: #bfa33f;
        color: black;
    }

    .wheel-product-image {
        max-width: 80px;
        max-height: 80px;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid #bfa33f;
        margin: 10px 0;
    }

    /* Bouton fermeture roue */
    #wheel-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff4444;
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    }

    #wheel-close-btn:hover {
        background: #ff6666;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.6);
    }

    
    #open-wheel-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(191, 163, 63, 0.6);
    }

    #open-wheel-btn:active {
        transform: translateY(-1px);
    }

    /* Animation de victoire */
    @keyframes confetti {
        0% { transform: translateY(0) rotate(0deg); opacity: 1; }
        100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
    }

    .confetti {
        position: fixed;
        width: 10px;
        height: 10px;
        background: #bfa33f;
        opacity: 0;
        z-index: 9991;
    }

    /* Responsive roue */
    @media (max-width: 768px) {
        #spin-wheel-container {
            padding: 20px;
            max-width: 90%;
        }
        
        #wheel-container {
            width: 280px;
            height: 280px;
        }
        
        #wheel {
            width: 280px;
            height: 280px;
        }
        
        #spin-button {
            width: 60px;
            height: 60px;
            font-size: 12px;
        }

        #congratulations-card {
            padding: 25px 20px;
        }

        .congratulations-product-image {
            width: 100px;
            height: 100px;
        }

        .congratulations-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .congratulations-btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        #wheel-container {
            width: 250px;
            height: 250px;
        }
        
        #wheel {
            width: 250px;
            height: 250px;
        }

    

        .congratulations-product-image {
            width: 80px;
            height: 80px;
        }
    }
    

    
