.site-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    padding: 0 16px 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.site-cookie-consent__inner {
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #1f2933;
    color: #f1f5f9;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-cookie-consent__text {
    margin: 0;
    flex: 1 1 280px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.site-cookie-consent__text a {
    color: #7dd3fc;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-cookie-consent__text a:hover {
    color: #bae6fd;
}

.site-cookie-consent__btn {
    flex: 0 0 auto;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    color: #0f172a;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-cookie-consent__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.site-cookie-consent__btn:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .site-cookie-consent {
        padding: 0 10px 10px;
    }

    .site-cookie-consent__inner {
        padding: 12px 14px;
    }

    .site-cookie-consent__btn {
        width: 100%;
    }
}
