/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.97);
    color: #ECEFF1;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Initially hidden */
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #A0A7B0;
}

.cookie-banner-text h3 {
    color: #ECEFF1;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3D4A5D, #6A7BA2);
    color: white;
    border: 1px solid transparent;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #2E3A4A, #5C6B7F);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 123, 162, 0.3);
}

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

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ECEFF1;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
    background: transparent;
    color: #6A7BA2;
    border: 1px solid rgba(106, 123, 162, 0.3);
    font-size: 12px;
    padding: 8px 16px;
}

.cookie-btn-settings:hover {
    background: rgba(106, 123, 162, 0.1);
    border-color: rgba(106, 123, 162, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner-text {
        text-align: center;
    }
    
    .cookie-banner-text h3 {
        font-size: 15px;
    }
    
    .cookie-banner-text {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .cookie-btn-settings {
        flex-basis: 100%;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Hide banner when cookies are accepted */
.cookie-banner.hidden {
    display: none !important;
}
