.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1rem 1rem;
    pointer-events: none;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent.is-hidden {
    display: none;
}

.cookie-consent-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.1rem 1.25rem;
    background: var(--mkt-surface, #fff);
    border: 1px solid var(--mkt-border, #e2e8f0);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.cookie-consent-text {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--mkt-muted, #64748b);
}

.cookie-consent-text a {
    color: var(--mkt-accent, #2563eb);
    font-weight: 600;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-consent-btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.15s, border-color 0.15s;
}

.cookie-consent-btn-accept {
    background: var(--mkt-accent, #2563eb);
    color: #fff;
}

.cookie-consent-btn-accept:hover {
    background: #1d4ed8;
}

.cookie-consent-btn-essential {
    background: var(--mkt-surface, #fff);
    color: var(--mkt-text, #0f172a);
    border: 1px solid var(--mkt-border, #e2e8f0);
}

.cookie-consent-btn-essential:hover {
    border-color: var(--mkt-accent, #2563eb);
}

@media (max-width: 480px) {
    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
}
