/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 10, 33, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 192, 123, 0.3);
    border-radius: 20px;
    padding: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content {
    color: #FDFBF7;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content h4 {
    font-family: 'Playfair Display', serif;
    color: #E5C07B;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(253, 251, 247, 0.8);
}

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

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: #E5C07B;
    color: #0f0a21;
    border: none;
}

.btn-accept:hover {
    background: #f1d5a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 192, 123, 0.4);
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 20px;
        padding: 20px;
    }
    .cookie-actions {
        flex-direction: column;
    }
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}
