/* GDPR Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
    border-top: 3px solid var(--primary-color, #1700FF);
    transition: opacity 0.3s ease;
}

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

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

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    color: #11181C;
    line-height: 1.5;
}

.cookie-consent-text p:first-child {
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-consent-text p:last-child {
    font-size: 14px;
    color: #666666;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-color, #1700FF);
    color: white;
    border-color: var(--primary-color, #1700FF);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark, #1200cc);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 0, 255, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #666666;
    border-color: #E5E5E7;
}

.cookie-btn-reject:hover {
    border-color: #666666;
    color: #11181C;
}

.cookie-link {
    color: var(--primary-color, #1700FF);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text p:last-child {
        font-size: 13px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .cookie-link {
        text-align: center;
        padding: 12px;
    }
}
