.cookie-consent-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent-banner.is-hidden {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1100px, 100%);
    padding: 18px 20px;
    border: 1px solid rgba(16, 32, 51, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(16, 32, 51, 0.16);
    pointer-events: auto;
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #102033;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-consent-copy p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.65;
    font-size: 0.95rem;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.cookie-consent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.cookie-consent-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.cookie-consent-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #1094e0 0%, #1aa7ff 100%);
    box-shadow: 0 14px 28px rgba(16, 148, 224, 0.22);
}

.cookie-consent-btn-secondary {
    color: #102033;
    background: #fff;
    border-color: rgba(16, 32, 51, 0.14);
}

@media (max-width: 860px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

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

@media (max-width: 480px) {
    .cookie-consent-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-consent-inner {
        padding: 16px;
        border-radius: 18px;
    }
}
