.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px 30px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cookie-text {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cookie-link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
}

.cookie-link:hover {
    color: #e5c158;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: #d0d0d0;
    border: 1px solid #555;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 15px;
        gap: 15px;
    }

    .cookie-title {
        font-size: 16px;
    }

    .cookie-text {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Animation for banner entrance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
