/* ===================================
   ALMA PROJECTS — Cookie Banner
   =================================== */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 167, 124, 0.25);
    padding: 20px 40px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cookie-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #C9A77C;
    text-decoration: underline;
    text-decoration-color: rgba(201, 167, 124, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #d4b890;
    text-decoration-color: #d4b890;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

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

.cookie-btn-outline:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-solid {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.25);
}

.cookie-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    #cookieBanner {
        padding: 20px 24px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
