/* ========================================
   COOKIE CONSENT STYLES
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 500px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    z-index: 25000;
    /* Highest priority */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cookie-consent.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-content p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}

.cookie-btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-accept {
    background-color: #f7f7f7;
    color: #000;
}

.cookie-accept:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        transform: translateY(100%);
        border-radius: 15px 15px 0 0;
    }

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