/* Cookie Consent Banner Styles */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -8px 16px -4px rgba(0, 0, 0, 0.1), 0 -4px 8px -2px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner-visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-consent-link:hover {
    color: #2563eb;
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-button {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cookie-consent-button-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: #3b82f6;
}

.cookie-consent-button-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.cookie-consent-button-primary:active {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cookie-consent-button-secondary {
    background-color: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.cookie-consent-button-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.cookie-consent-button-secondary:active {
    background-color: #f3f4f6;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
    }

    .cookie-consent-title {
        font-size: 16px;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent-button {
        flex: 1;
        padding: 10px 20px;
    }
}

