.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    z-index: 999999;
    display: none;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-banner.hiding {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 0;
    }
    to {
        transform: translateY(100%);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-learn-more {
    color: #d63384;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-learn-more:hover {
    color: #b02a6b;
}

.cookie-consent-button {
    background: #d63384;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-button:hover {
    background: #b02a6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(214, 51, 132, 0.3);
}

.cookie-consent-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-consent-content p {
        min-width: 100%;
    }
}