/* Cookie Consent Banner CSS */
#cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-top: 1px solid var(--color-border, #e2e8f0);
    font-family: 'Inter', sans-serif;
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1 1 600px;
    color: var(--color-text, #334155);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    color: var(--color-primary, #2563eb);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text a {
    color: var(--color-primary, #2563eb);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    border: none;
}

.cookie-btn-accept {
    background-color: var(--color-primary, #2563eb);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--color-primary-dark, #1d4ed8);
}

.cookie-btn-reject {
    background-color: transparent;
    border: 1px solid var(--color-border, #cbd5e1);
    color: var(--color-text-light, #64748b);
}

.cookie-btn-reject:hover {
    background-color: #f1f5f9;
    color: var(--color-text, #334155);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}