/* Pop-up de cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    color: #d4626c;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
}

.cookie-text a {
    color: #d4626c;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #ff8a94;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-btn-accept {
    background: #d4626c;
    color: white;
}

.cookie-btn-accept:hover {
    background: #b94d56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 98, 108, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-decline:hover {
    background: white;
    color: #333;
}

/* Tablette - Portrait */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 18px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: 250px;
    }
    
    .cookie-text h3 {
        font-size: 1.3em;
        margin: 0 0 8px 0;
    }
    
    .cookie-text p {
        font-size: 0.9em;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 11px 25px;
        font-size: 0.95em;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content {
        gap: 12px;
    }
    
    .cookie-text {
        min-width: 200px;
    }
    
    .cookie-text h3 {
        font-size: 1.2em;
        margin: 0 0 6px 0;
    }
    
    .cookie-text p {
        font-size: 0.85em;
        line-height: 1.5;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: unset;
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .cookie-consent {
        padding: 12px;
    }
    
    .cookie-text h3 {
        font-size: 1.1em;
    }
    
    .cookie-text p {
        font-size: 0.8em;
    }
    
    .cookie-btn {
        padding: 9px 15px;
        font-size: 0.85em;
    }
}
