.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 9999;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    to {
        transform: translateY(100%);
    }
}

@keyframes slideDown {
    to {
        transform: translateY(100%);
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.cookie-icon {
    font-size: 2rem;
    color: #d4af37;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 5px 0;
    color: #d4af37;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    white-space: nowrap;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.cookie-buttons .btn-primary {
    background: #d4af37;
    border-color: #d4af37;
}

.cookie-buttons .btn-primary:hover {
    background: #c19e2f;
    border-color: #c19e2f;
}

.cookie-buttons .btn-outline-secondary {
    color: #f8f9fa;
    border-color: #6c757d;
}

.cookie-buttons .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}