/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 3px solid #E31E24;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}


.cookie-consent-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 0;
}

.cookie-consent-text a {
    color: #E31E24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: #ff3d45;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background: #E31E24;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.cookie-consent-btn-accept:hover {
    background: #c41a20;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.4);
}

.cookie-consent-btn-decline {
    background: transparent;
    color: #d4d4d4;
    border: 1.5px solid rgba(212, 212, 212, 0.3);
}

.cookie-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 212, 212, 0.5);
    color: #ffffff;
}

.cookie-consent-btn-settings {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-btn-settings:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 16px;
    }

    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-consent-content {
        min-width: 100%;
    }

    .cookie-consent-title {
        font-size: 18px;
    }

    .cookie-consent-text {
        font-size: 13px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .cookie-consent-btn-settings {
        width: 100%;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner.show {
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
