.iasc-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 16px;
    background: rgba(20, 24, 26, 0.96);
    color: #f5f5f5;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.iasc-cookie-banner[hidden] {
    display: none !important;
}

html.iasc-cookie-pending .iasc-cookie-banner {
    display: block;
}

.iasc-cookie-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.iasc-cookie-banner__title {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.iasc-cookie-banner__text {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #d9d9d9;
    max-width: 760px;
}

.iasc-cookie-banner__text a {
    color: #a8c95a;
    text-decoration: underline;
}

.iasc-cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.iasc-cookie-btn {
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.iasc-cookie-btn--accept {
    background: #71911b;
    color: #fff;
}

.iasc-cookie-btn--accept:hover,
.iasc-cookie-btn--accept:focus {
    background: #5f7a16;
}

.iasc-cookie-btn--reject {
    background: transparent;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.iasc-cookie-btn--reject:hover,
.iasc-cookie-btn--reject:focus {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .iasc-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .iasc-cookie-banner__actions {
        width: 100%;
    }

    .iasc-cookie-btn {
        flex: 1 1 auto;
    }
}
