.ika-cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
}

.ika-cookie-consent.is-visible {
    pointer-events: auto;
}

.ika-cookie-consent__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(11, 18, 32, 0.94);
    box-shadow: 0 18px 40px rgba(3, 7, 18, 0.34);
    backdrop-filter: blur(12px);
}

.ika-cookie-consent__copy,
.ika-cookie-consent__actions {
    min-width: 0;
}

.ika-cookie-consent__eyebrow {
    margin: 0 0 8px;
    color: #e6c15a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ika-cookie-consent__title {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.3rem);
    line-height: 1.2;
}

.ika-cookie-consent__text {
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ika-cookie-consent__link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ika-cookie-consent__actions {
    min-width: 0;
}

.ika-cookie-consent__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.ika-cookie-consent__button {
    appearance: none;
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    padding: 11px 16px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.ika-cookie-consent__button:hover,
.ika-cookie-consent__button:focus-visible {
    transform: translateY(-1px);
}

.ika-cookie-consent__button:focus-visible,
.ika-cookie-consent__link:focus-visible {
    outline: 2px solid #f2d37a;
    outline-offset: 2px;
}

.ika-cookie-consent__button--ghost,
.ika-cookie-consent__button--secondary {
    border: 1px solid rgba(226, 232, 240, 0.22);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
}

.ika-cookie-consent__button--primary {
    border: 1px solid #f2d37a;
    background: #e6c15a;
    color: #0b1220;
}

.ika-cookie-consent__actions {
    display: flex;
    justify-content: flex-start;
}

.ika-cookie-consent__buttons {
    width: 100%;
}

.ika-cookie-consent__button {
    white-space: nowrap;
}

@media (min-width: 900px) {
    .ika-cookie-consent__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 24px;
    }

    .ika-cookie-consent__actions {
        width: 100%;
    }

    .ika-cookie-consent__buttons {
        max-width: 760px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 899px) {
    .ika-cookie-consent__buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .ika-cookie-consent {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .ika-cookie-consent__inner {
        padding: 16px;
        border-radius: 18px;
    }

    .ika-cookie-consent__buttons {
        grid-template-columns: 1fr;
    }
}
