.fcp-cookie-consent {
    isolation: isolate;
    position: relative;
    z-index: 10060;
}

.fcp-cookie-consent__banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10060;
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #002169;
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
}

.fcp-cookie-consent__banner--visible {
    display: block;
}

.fcp-cookie-consent__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 18px 48px 18px 28px;
}

.fcp-cookie-consent__text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.fcp-cookie-consent__link {
    color: #FFA300;
    text-decoration: underline;
}

.fcp-cookie-consent__link:hover,
.fcp-cookie-consent__link:focus {
    color: #fff;
}

.fcp-cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 12px;
}

.fcp-cookie-consent__button {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 32px;
    border-radius: 210px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.fcp-cookie-consent__button--accept {
    background: linear-gradient(90deg, #3B1C5D 0%, #C50F3C 50%, #FFA200 100%);
    color: #fff;
}

.fcp-cookie-consent__button--accept:hover,
.fcp-cookie-consent__button--accept:focus {
    opacity: 0.88;
    color: #fff;
}

.fcp-cookie-consent__close {
    appearance: none;
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    transform: translateY(-50%);
}

.fcp-cookie-consent__close:hover,
.fcp-cookie-consent__close:focus {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .fcp-cookie-consent__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px 44px 18px 18px;
    }

    .fcp-cookie-consent__text {
        flex: 0 0 auto;
        width: 100%;
        font-size: 13px;
    }

    .fcp-cookie-consent__close {
        top: 6px;
        right: 6px;
        transform: none;
    }

    .fcp-cookie-consent__actions {
        width: 100%;
        justify-content: stretch;
    }

    .fcp-cookie-consent__actions .fcp-cookie-consent__button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fcp-cookie-consent__inner {
        padding: 14px 40px 16px 14px;
    }

    .fcp-cookie-consent__actions .fcp-cookie-consent__button {
        min-height: 44px;
    }
}
