.pg-hero {
    position: relative;
    margin-bottom: var(--pg-section-space);
    width: 100%;
    background: var(--pg-color-bg);
}

.pg-hero-carousel {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: var(--pg-hero-ratio-desktop);
    min-height: var(--pg-hero-min-height);
    max-height: var(--pg-hero-max-height);
    overflow: hidden;
    isolation: isolate;
    background: #f3f0e8;
}

.pg-hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.pg-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 520ms ease, visibility 520ms ease;
}

.pg-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.pg-hero-slide__visual,
.pg-hero-slide__content {
    position: absolute;
    inset: 0;
}

.pg-hero-slide__visual {
    overflow: hidden;
    z-index: 1;
}

.pg-hero-slide__image,
.pg-hero-slide__link {
    position: absolute;
    inset: 0;
}

.pg-hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.pg-hero-slide__link {
    z-index: 1;
}

.pg-hero-slide__wash,
.pg-hero-slide__panel,
.pg-hero-slide__shelf,
.pg-hero-slide__shape,
.pg-hero-controls__chevron {
    position: absolute;
}

.pg-hero-slide__wash {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(246, 241, 229, 0.96) 0%, rgba(246, 241, 229, 0.92) 27%, rgba(246, 241, 229, 0.54) 42%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(17, 17, 17, 0.02));
}

.pg-hero-slide--image .pg-hero-slide__wash {
    background:
        linear-gradient(90deg, rgba(244, 239, 227, 0.94) 0%, rgba(244, 239, 227, 0.84) 24%, rgba(244, 239, 227, 0.34) 42%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0) 74%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.04));
}

.pg-hero-slide__panel--left {
    top: 0;
    bottom: 0;
    left: 0;
    width: 41%;
    background: linear-gradient(90deg, rgba(229, 220, 198, 0.74), rgba(229, 220, 198, 0.28) 74%, rgba(229, 220, 198, 0));
}

.pg-hero-slide__shelf {
    right: 0;
    left: 43%;
    height: 2px;
    background: rgba(233, 228, 216, 0.94);
    box-shadow: 0 1px 0 rgba(211, 205, 193, 0.72);
}

.pg-hero-slide__shelf--top {
    top: 48%;
}

.pg-hero-slide__shelf--bottom {
    top: 87%;
}

.pg-hero-slide__shape {
    border-radius: 10px;
    transform-origin: center;
}

.pg-hero-slide__shape::before,
.pg-hero-slide__shape::after {
    content: "";
    position: absolute;
}

.pg-hero-slide__shape--bottle {
    left: 46.5%;
    top: 8%;
    width: 5.3%;
    height: 39%;
    border-radius: 24px 24px 10px 10px;
    background:
        linear-gradient(180deg, rgba(212, 190, 139, 0.9) 0 10%, rgba(248, 245, 235, 0.95) 10% 42%, rgba(212, 184, 112, 0.8) 42% 66%, rgba(178, 138, 75, 0.84) 66% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.pg-hero-slide__shape--bottle::before {
    top: -9%;
    left: 28%;
    width: 44%;
    height: 16%;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #d7c48f, #e8dcc2);
}

.pg-hero-slide__shape--bottle::after {
    left: 37%;
    bottom: 9%;
    width: 26%;
    height: 24%;
    border-radius: 999px;
    background: rgba(155, 123, 64, 0.78);
}

.pg-hero-slide__shape--jar-large,
.pg-hero-slide__shape--jar-mid,
.pg-hero-slide__shape--jar-small {
    background:
        linear-gradient(180deg, rgba(28, 28, 28, 0.96) 0 9%, transparent 9%),
        linear-gradient(180deg, rgba(247, 244, 236, 0.96) 0 21%, var(--pg-jar-body-top, rgba(202, 182, 110, 0.84)) 21% 58%, var(--pg-jar-body-bottom, rgba(122, 116, 67, 0.8)) 58% 100%);
}

.pg-hero-slide__shape--jar-large::before,
.pg-hero-slide__shape--jar-mid::before,
.pg-hero-slide__shape--jar-small::before {
    top: 28%;
    left: 10%;
    right: 10%;
    height: 10%;
    background: rgba(255, 255, 255, 0.82);
}

.pg-hero-slide__shape--jar-large::after,
.pg-hero-slide__shape--jar-mid::after,
.pg-hero-slide__shape--jar-small::after {
    left: 14%;
    right: 14%;
    bottom: 17%;
    height: 11%;
    background: rgba(134, 105, 54, 0.72);
}

.pg-hero-slide__shape--jar-large {
    left: 53.2%;
    top: 18%;
    width: 9.1%;
    height: 30%;
    --pg-jar-body-top: rgba(201, 180, 104, 0.9);
    --pg-jar-body-bottom: rgba(155, 120, 52, 0.82);
}

.pg-hero-slide__shape--jar-mid {
    left: 65.6%;
    top: 24%;
    width: 8.8%;
    height: 24%;
    --pg-jar-body-top: rgba(125, 141, 80, 0.88);
    --pg-jar-body-bottom: rgba(95, 113, 58, 0.82);
}

.pg-hero-slide__shape--jar-small {
    left: 77.2%;
    bottom: 8%;
    width: 7.2%;
    height: 22%;
    --pg-jar-body-top: rgba(201, 171, 96, 0.88);
    --pg-jar-body-bottom: rgba(152, 114, 54, 0.82);
}

.pg-hero-slide__shape--bowl {
    right: 3.5%;
    top: 36%;
    width: 11.6%;
    height: 14%;
    border-radius: 38px 38px 18px 18px;
    background: linear-gradient(180deg, rgba(249, 248, 244, 0.96), rgba(229, 223, 205, 0.98));
    box-shadow: inset 0 -4px 0 rgba(214, 206, 191, 0.86);
}

.pg-hero-slide__shape--bowl::before {
    top: -16%;
    left: 18%;
    width: 34%;
    height: 30%;
    border-radius: 999px;
    background: rgba(126, 132, 76, 0.82);
    box-shadow:
        18px 6px 0 0 rgba(126, 132, 76, 0.78),
        36px 3px 0 0 rgba(126, 132, 76, 0.7),
        50px 12px 0 -1px rgba(126, 132, 76, 0.7);
}

.pg-hero-slide__shape--bowl::after {
    top: 18%;
    right: -2%;
    width: 42%;
    height: 8%;
    border-radius: 999px;
    background: rgba(208, 210, 214, 0.9);
    transform: rotate(-15deg);
}

.pg-hero-slide__shape--accent {
    left: 57.2%;
    bottom: 8%;
    width: 6.8%;
    height: 13%;
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(180deg, rgba(84, 54, 34, 0.94), rgba(48, 28, 18, 0.9));
    transform: rotate(-18deg);
}

.pg-hero-slide.tone-a {
    background:
        radial-gradient(circle at 80% 26%, rgba(111, 118, 66, 0.22), transparent 18%),
        linear-gradient(90deg, #efe8d9 0%, #f7f4ed 53%, #ece6d8 100%);
}

.pg-hero-slide.tone-b {
    background:
        radial-gradient(circle at 77% 24%, rgba(149, 133, 83, 0.18), transparent 18%),
        linear-gradient(90deg, #efe7d5 0%, #f8f4eb 55%, #e7dfcf 100%);
}

.pg-hero-slide.tone-c {
    background:
        radial-gradient(circle at 78% 24%, rgba(111, 118, 66, 0.12), transparent 19%),
        linear-gradient(90deg, #f1eadf 0%, #faf6ee 55%, #e6dece 100%);
}

.pg-hero-slide.tone-d {
    background:
        radial-gradient(circle at 78% 24%, rgba(95, 113, 58, 0.2), transparent 18%),
        linear-gradient(90deg, #ece4d4 0%, #f7f4ec 56%, #dfd9cb 100%);
}

.pg-hero-slide.tone-e {
    background:
        radial-gradient(circle at 81% 24%, rgba(141, 110, 59, 0.14), transparent 18%),
        linear-gradient(90deg, #f0e9dc 0%, #faf6ef 55%, #e4dccf 100%);
}

.pg-hero-slide.tone-b .pg-hero-slide__shape--jar-large {
    --pg-jar-body-top: rgba(175, 160, 102, 0.88);
    --pg-jar-body-bottom: rgba(116, 126, 74, 0.82);
}

.pg-hero-slide.tone-b .pg-hero-slide__shape--jar-mid {
    --pg-jar-body-top: rgba(202, 181, 105, 0.88);
    --pg-jar-body-bottom: rgba(148, 112, 49, 0.82);
}

.pg-hero-slide.tone-c .pg-hero-slide__shape--bottle {
    left: 48.4%;
}

.pg-hero-slide.tone-c .pg-hero-slide__shape--jar-large {
    left: 56%;
}

.pg-hero-slide.tone-c .pg-hero-slide__shape--jar-mid {
    left: 66.8%;
}

.pg-hero-slide.tone-d .pg-hero-slide__shape--jar-large {
    --pg-jar-body-top: rgba(125, 141, 80, 0.92);
    --pg-jar-body-bottom: rgba(92, 104, 57, 0.86);
}

.pg-hero-slide.tone-d .pg-hero-slide__shape--jar-small {
    --pg-jar-body-top: rgba(216, 185, 103, 0.88);
    --pg-jar-body-bottom: rgba(151, 112, 52, 0.82);
}

.pg-hero-slide.tone-e .pg-hero-slide__shape--accent {
    transform: rotate(-28deg);
    left: auto;
    right: 6.6%;
    bottom: 10%;
}

.pg-hero-slide__content {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 39%;
    padding: 0 0 40px var(--pg-hero-overlay-gutter);
}

.pg-hero-slide__eyebrow {
    margin: 0 0 10px;
    color: var(--pg-color-accent);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.pg-hero-slide__content h1 {
    max-width: 9ch;
    margin: 0;
    color: var(--pg-color-accent);
    font-size: clamp(4.25rem, 6.6vw, 5.55rem);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.pg-hero-slide__copy {
    max-width: 29ch;
    margin: 16px 0 0;
    color: rgba(31, 31, 31, 0.7);
    font-size: 14px;
    line-height: 1.55;
}

.pg-hero-controls {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
}

.pg-hero-controls__button {
    position: absolute;
    top: 50%;
    display: block;
    width: var(--pg-hero-control-size);
    height: var(--pg-hero-control-size);
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    pointer-events: auto;
}

.pg-hero-controls__button--prev {
    left: 18px;
}

.pg-hero-controls__button--next {
    right: 18px;
}

.pg-hero-controls__chevron {
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-top: 3px solid var(--pg-color-accent);
    border-left: 3px solid var(--pg-color-accent);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pg-hero-controls__button--next .pg-hero-controls__chevron {
    transform: translate(-50%, -50%) rotate(135deg);
}

.pg-hero-controls__button:hover,
.pg-hero-controls__button:focus-visible {
    opacity: 0.72;
}

.pg-hero-pagination {
    position: absolute;
    bottom: var(--pg-hero-pagination-offset);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: var(--pg-hero-pagination-width);
    transform: translateX(-50%);
    pointer-events: auto;
    z-index: 20;
}

.ppeanut-global .pg-hero-pagination__dot {
    flex: 1 1 0;
    width: auto;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
    transition: background-color 0.24s ease;
}

.ppeanut-global .pg-hero-pagination__dot.is-active {
    background-color: var(--pg-color-accent);
    box-shadow: none;
}

.pg-section--products .pg-section__head h2 {
    max-width: none;
}

.pg-best-products .pg-product-grid {
    margin-top: 0;
}

.pg-home-recipe,
.pg-home-instagram {
    padding-top: var(--pg-section-space-large);
}

.ppeanut-global .pg-instagram-section .pg-section-head {
    margin-bottom: 24px;
}

.ppeanut-global .pg-instagram-head__account {
    margin: 10px 0 0;
    color: var(--pg-color-text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.ppeanut-global .pg-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.ppeanut-global .pg-instagram-card {
    min-width: 0;
}

.ppeanut-global .pg-instagram-card__link,
.ppeanut-global .pg-instagram-card__placeholder {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #f2ede4 0%, #ebe4d6 100%);
}

.ppeanut-global .pg-instagram-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.38s ease, opacity 0.28s ease;
}

.ppeanut-global .pg-instagram-card__link:hover .pg-instagram-card__image,
.ppeanut-global .pg-instagram-card__link:focus-visible .pg-instagram-card__image {
    transform: scale(1.03);
    opacity: 0.96;
}

.ppeanut-global .pg-instagram-card__placeholder {
    background:
        linear-gradient(135deg, rgba(221, 212, 189, 0.82), rgba(255, 255, 255, 0.46)),
        linear-gradient(180deg, rgba(111, 118, 66, 0.14), transparent 55%);
}

.ppeanut-global .pg-recipe-section .pg-section-head {
    margin-bottom: 28px;
}

.ppeanut-global .pg-recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.ppeanut-global .pg-recipe-card {
    min-width: 0;
}

.ppeanut-global .pg-recipe-card__link,
.ppeanut-global .pg-recipe-card__body {
    display: block;
}

.ppeanut-global .pg-recipe-card__link {
    color: inherit;
}

.ppeanut-global .pg-recipe-card__image-wrap {
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #f3ecdf 0%, #ece4d6 100%);
    aspect-ratio: 4 / 5;
}

.ppeanut-global .pg-recipe-card__image,
.ppeanut-global .pg-recipe-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.ppeanut-global .pg-recipe-card__image {
    object-fit: cover;
    transition: transform 0.42s ease, opacity 0.32s ease;
}

.ppeanut-global .pg-recipe-card__placeholder {
    background:
        linear-gradient(135deg, rgba(201, 183, 149, 0.28), rgba(255, 255, 255, 0.55)),
        linear-gradient(180deg, rgba(111, 118, 66, 0.18), rgba(255, 255, 255, 0) 58%);
}

.ppeanut-global .pg-recipe-card__link:hover .pg-recipe-card__image,
.ppeanut-global .pg-recipe-card__link:focus-visible .pg-recipe-card__image {
    transform: scale(1.03);
    opacity: 0.96;
}

.ppeanut-global .pg-recipe-card__body {
    padding-top: 16px;
}

.ppeanut-global .pg-recipe-card__title {
    margin: 0;
    color: var(--pg-color-text);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -0.01em;
}

.ppeanut-global .pg-recipe-card__summary {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: var(--pg-color-text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    letter-spacing: -0.01em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 900px) {
    .pg-hero {
        margin-bottom: var(--pg-section-space-mobile);
    }

    .pg-hero-carousel {
        aspect-ratio: var(--pg-hero-ratio-mobile);
        min-height: var(--pg-hero-min-height-mobile);
        max-height: none;
    }

    .pg-hero-slide__panel--left {
        width: 100%;
        background: linear-gradient(180deg, rgba(233, 224, 204, 0.7), rgba(247, 243, 234, 0));
    }

    .pg-hero-slide__shelf {
        left: 0;
    }

    .pg-hero-slide__shelf--top {
        top: 43%;
    }

    .pg-hero-slide__shelf--bottom {
        top: 78%;
    }

    .pg-hero-slide__shape--bottle {
        left: 14%;
        top: 43%;
        width: 10%;
        height: 24%;
    }

    .pg-hero-slide__shape--jar-large {
        left: 29%;
        top: 37%;
        width: 18%;
        height: 18%;
    }

    .pg-hero-slide__shape--jar-mid {
        left: 53%;
        top: 40%;
        width: 16%;
        height: 15%;
    }

    .pg-hero-slide__shape--jar-small {
        left: 73%;
        bottom: 16%;
        width: 13%;
        height: 13%;
    }

    .pg-hero-slide__shape--bowl {
        right: 4%;
        top: 59%;
        width: 20%;
        height: 10%;
    }

    .pg-hero-slide__shape--accent {
        left: 38%;
        bottom: 16%;
        width: 9%;
        height: 7%;
    }

    .pg-hero-slide__content {
        max-width: 100%;
        justify-content: flex-start;
        padding: 214px var(--pg-hero-overlay-gutter-mobile) 0;
    }

    .pg-hero-slide__eyebrow {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .pg-hero-slide__content h1 {
        max-width: none;
        font-size: clamp(3.2rem, 13vw, 4.7rem);
        line-height: 0.94;
    }

    .pg-hero-slide__copy {
        display: none;
    }

    .pg-hero-controls {
        inset: 0;
    }

    .pg-hero-controls__button {
        width: 44px;
        height: 44px;
    }

    .pg-hero-controls__button--prev {
        left: 4px;
    }

    .pg-hero-controls__button--next {
        right: 4px;
    }

    .pg-hero-controls__chevron {
        width: 18px;
        height: 18px;
        border-top-width: 2px;
        border-left-width: 2px;
    }

    .pg-hero-pagination {
        bottom: 12px;
        width: 132px;
        gap: 6px;
    }

    .ppeanut-global .pg-recipe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .ppeanut-global .pg-instagram-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ppeanut-global .pg-hero-controls__button {
        display: none;
    }

    .ppeanut-global .pg-hero-carousel {
        touch-action: pan-y;
    }
}

@media (max-width: 640px) {
    .ppeanut-global .pg-instagram-section .pg-section-head {
        margin-bottom: 18px;
    }

    .ppeanut-global .pg-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .ppeanut-global .pg-recipe-section .pg-section-head {
        margin-bottom: 20px;
    }

    .ppeanut-global .pg-recipe-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ppeanut-global .pg-recipe-card__body {
        padding-top: 14px;
    }

    .ppeanut-global .pg-recipe-card__title {
        font-size: 1rem;
        line-height: 1.45;
    }

    .ppeanut-global .pg-recipe-card__summary {
        font-size: 0.9rem;
        line-height: 1.62;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pg-hero-slide,
    .pg-hero-pagination__dot {
        transition: none;
    }
}
