.ppeanut-global {
    background: var(--pg-color-bg);
    color: var(--pg-color-text);
    font-family: var(--pg-font-sans);
    font-size: var(--pg-text-body);
    line-height: var(--pg-line-body);
    letter-spacing: var(--pg-letter-tight);
}

.sound_only,
#hd_login_msg {
    position: absolute;
    left: -9999px;
}

.pg-skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    z-index: 50;
    background: var(--pg-color-text);
    color: var(--pg-color-white);
    padding: 8px 12px;
}

.pg-skip-link:focus {
    top: 16px;
}

.pg-site {
    min-height: 100vh;
}

.pg-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 242, 234, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(221, 210, 196, 0.7);
}

.pg-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(46, 34, 22, 0.08);
}

.pg-header__inner,
.pg-footer__inner,
.pg-footer__bottom,
.pg-section,
.pg-hero {
    width: min(calc(100% - 48px), var(--pg-container-wide));
    margin: 0 auto;
}

.pg-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 96px;
    gap: 36px;
}

.pg-header__left,
.pg-header__right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.pg-header__right {
    justify-content: flex-end;
}

.pg-header__brand {
    text-align: center;
}

.pg-header__menu,
.pg-header__mobile-cart {
    display: none;
}

.pg-mobile-menu[hidden],
.pg-language__menu[hidden] {
    display: none !important;
}

.pg-main {
    padding-bottom: 104px;
}

.pg-section {
    padding-top: var(--pg-section-space);
}

.pg-footer {
    padding: 88px 0 36px;
    border-top: 1px solid var(--pg-color-line);
}

.pg-footer__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.pg-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    margin-top: 40px;
    border-top: 1px solid var(--pg-color-line);
}

@media (max-width: 900px) {
    .pg-header__inner,
    .pg-footer__inner,
    .pg-footer__bottom,
    .pg-section,
    .pg-hero {
        width: min(calc(100% - 28px), var(--pg-container-wide));
    }

    .pg-header__inner {
        grid-template-columns: auto 1fr auto;
        min-height: 76px;
    }

    .pg-header__left,
    .pg-header__right {
        display: none;
    }

    .pg-header__menu,
    .pg-header__mobile-cart {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        font-size: 18px;
    }

    .pg-header__menu {
        justify-self: start;
    }

    .pg-header__mobile-cart {
        justify-self: end;
    }

    .pg-main {
        padding-bottom: 64px;
    }

    .pg-section {
        padding-top: var(--pg-section-space-mobile);
    }

    .pg-footer__inner,
    .pg-footer__bottom {
        grid-template-columns: 1fr;
        display: grid;
        gap: 20px;
    }
}
