.pwg-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    background: #000000;
    color: #ffffff;
    font-family: inherit;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
}

.pwg-cookie-bar[hidden] {
    display: none !important;
}

.pwg-cookie-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pwg-cookie-bar__text {
    flex: 1 1 320px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.pwg-cookie-bar__link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.pwg-cookie-bar__link:hover,
.pwg-cookie-bar__link:focus {
    color: #c9213a;
    text-decoration: underline;
}

.pwg-cookie-bar__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pwg-cookie-bar__btn {
    min-width: 110px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    font-family: inherit;
    line-height: 1.2;
}

.pwg-cookie-bar__btn--primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.pwg-cookie-bar__btn--primary:hover,
.pwg-cookie-bar__btn--primary:focus {
    background: #ffffff;
    color: #000000;
}

.pwg-cookie-bar__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 2px dashed #ffffff;
}

.pwg-cookie-bar__btn--secondary:hover,
.pwg-cookie-bar__btn--secondary:focus {
    background: rgba(255, 255, 255, 0.08);
    border-style: solid;
}

@media (max-width: 720px) {
    .pwg-cookie-bar__inner {
        padding: 14px 18px;
        gap: 14px;
    }
    .pwg-cookie-bar__text {
        font-size: 13px;
        flex: 1 1 100%;
    }
    .pwg-cookie-bar__actions {
        width: 100%;
        justify-content: stretch;
    }
    .pwg-cookie-bar__btn {
        flex: 1 1 0;
    }
}
