.pgw-cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 99999;
    background: #ffffff;
    color: #1a1a1a;
    border-top: 1px solid #d8d8d8;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.12);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 1rem 1.25rem;
}

.pgw-cookie-consent[hidden] {
    display: none;
}

.pgw-cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.pgw-cookie-consent__logo {
    flex: 0 0 auto;
}

.pgw-cookie-consent__logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.pgw-cookie-consent__body {
    flex: 1 1 320px;
    min-width: 240px;
}

.pgw-cookie-consent__heading {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.pgw-cookie-consent__message {
    margin: 0 0 0.5rem 0;
}

.pgw-cookie-consent__links {
    margin: 0;
    font-size: 0.85rem;
}

.pgw-cookie-consent__links a {
    color: inherit;
    text-decoration: underline;
}

.pgw-cookie-consent__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.pgw-cookie-consent__btn {
    appearance: none;
    border: 1px solid #1a1a1a;
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.pgw-cookie-consent__btn:focus-visible {
    outline: 2px solid #0a58ca;
    outline-offset: 2px;
}

.pgw-cookie-consent__btn--accept {
    background: #1a1a1a;
    color: #ffffff;
}

.pgw-cookie-consent__btn--accept:hover {
    background: #000000;
}

.pgw-cookie-consent__btn--reject:hover {
    background: #f2f2f2;
}

@media (max-width: 640px) {
    .pgw-cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .pgw-cookie-consent__btn {
        flex: 1 1 auto;
    }
}
