/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    color: rgb(237, 237, 237);
    padding: 20px;
    z-index: 9999;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-emoji {
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.cookie-message {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-message strong {
    color: #fff;
    font-weight: 600;
}

.cookie-privacy {
    color: #ccc;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(237, 237, 237);
    background: transparent;
}

.cookie-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgb(237, 237, 237);
}

.cookie-banner .btn-light {
    background: white;
    color: #333;
    border: 1px solid white;
}

.cookie-banner .btn-light:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-emoji {
        font-size: 20px;
        align-self: flex-start;
    }
    
    .cookie-message {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-banner .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-banner .btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .cookie-message {
        font-size: 12px;
    }
    
    .cookie-privacy {
        font-size: 11px;
    }
}

/* Animation for banner appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner {
    animation: slideUp 0.3s ease-out;
}

/* Ensure banner is above other elements */
.cookie-banner {
    z-index: 9999 !important;
}

/* Hide banner when consent is given */
.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
