.ppeanut-global .pg-best-products {
    padding-top: 34px;
}

.ppeanut-global .pg-best-products .pg-section__head {
    margin-bottom: 26px;
}

.ppeanut-global .pg-best-products .pg-section__head h2 {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

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

.ppeanut-global .pg-product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    background: transparent;
}

.ppeanut-global .pg-product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f7f5ef;
    aspect-ratio: 4 / 5;
}

.ppeanut-global .pg-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.35s ease;
}

.ppeanut-global .pg-product-card__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 5px 8px;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.ppeanut-global .pg-product-card:hover .pg-product-card__image img {
    transform: scale(1.05);
    opacity: 0.96;
}

.ppeanut-global .pg-product-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 0;
    padding: 12px 2px 0;
    font-weight: bold;
}

.ppeanut-global .pg-product-card__name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}

.ppeanut-global .pg-product-card__desc {
    margin: 0;
    color: var(--pg-color-accent);
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ppeanut-global .pg-product-card__price {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2px;
}

.ppeanut-global .pg-product-grid__empty {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.5;
}

.ppeanut-global .pg-shop-list {
    width: min(calc(100% - (var(--pg-content-gutter) * 2)), var(--pg-container-wide));
    margin: 0 auto;
    padding-top: 28px;
}

.ppeanut-global .pg-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--pg-color-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.ppeanut-global .pg-list-hero {
    padding: 24px 0 32px;
    border-bottom: 1px solid var(--pg-color-line);
}

.ppeanut-global .pg-list-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: var(--pg-letter-title);
}

.ppeanut-global .pg-list-hero__copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--pg-color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.ppeanut-global .pg-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 28px 0 12px;
}

.ppeanut-global .pg-category-tabs__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--pg-color-line);
    border-radius: 999px;
    background: var(--pg-color-surface);
    color: var(--pg-color-text-muted);
    font-size: 0.88rem;
}

.ppeanut-global .pg-category-tabs__link.is-active {
    border-color: var(--pg-color-accent);
    background: var(--pg-color-accent);
    color: var(--pg-color-white);
}

.ppeanut-global .pg-list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0 28px;
}

.ppeanut-global .pg-list-summary p {
    margin: 0;
    color: var(--pg-color-text-muted);
    font-size: 0.92rem;
}

.ppeanut-global .pg-list-summary strong {
    color: var(--pg-color-text);
    font-weight: 600;
}

.ppeanut-global .pg-list-sort select {
    min-width: 190px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--pg-color-line);
    border-radius: 999px;
    background: var(--pg-color-surface);
    color: var(--pg-color-text);
    font-size: 0.88rem;
}

.ppeanut-global .pg-list-results {
    padding-bottom: 20px;
}

.ppeanut-global .pg-list-pagination {
    padding-top: 8px;
}

.ppeanut-global .pg-list-pagination .pg_wrap {
    text-align: center;
}

.ppeanut-global .pg-list-pagination .pg {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.ppeanut-global .pg-list-pagination .pg_page,
.ppeanut-global .pg-list-pagination .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--pg-color-line);
    border-radius: 999px;
    background: var(--pg-color-surface);
    font-size: 0.88rem;
}

.ppeanut-global .pg-list-pagination .pg_current {
    border-color: var(--pg-color-accent);
    background: var(--pg-color-accent);
    color: var(--pg-color-white);
}

@media (max-width: 1100px) {
    .ppeanut-global .pg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .ppeanut-global .pg-best-products {
        padding-top: 26px;
    }

    .ppeanut-global .pg-best-products .pg-section__head {
        margin-bottom: 18px;
    }

    .ppeanut-global .pg-best-products .pg-section__head h2 {
        font-size: 28px;
    }

    .ppeanut-global .pg-shop-list {
        width: min(calc(100% - (var(--pg-content-gutter-mobile) * 2)), var(--pg-container-wide));
        padding-top: 20px;
    }

    .ppeanut-global .pg-list-hero {
        padding: 18px 0 24px;
    }

    .ppeanut-global .pg-list-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0 24px;
    }

    .ppeanut-global .pg-list-sort select {
        width: 100%;
    }

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

    .ppeanut-global .pg-product-card__body {
        padding-top: 10px;
    }

    .ppeanut-global .pg-product-card__name,
    .ppeanut-global .pg-product-card__price {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .ppeanut-global .pg-product-grid {
        text-align: center;
        grid-template-columns: 1fr 1fr;
    }

    .ppeanut-global .pg-product-card__desc {
        font-size: 11px;
    }
}

.ppeanut-global .pg-item-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--pg-color-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp {
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
    overflow: visible;
}

.ppeanut-global .pg-pdp form,
.ppeanut-global .pg-pdp__inner,
.ppeanut-global .pg-pdp__checkout {
    overflow: visible;
}

.ppeanut-global .pg-pdp__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.32fr);
    gap: 64px;
    align-items: start;
}

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

.ppeanut-global .pg-pdp__breadcrumb {
    margin-bottom: 24px;
}

.ppeanut-global .pg-pdp-gallery {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-width: 0;
}

.ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs {
    display: none;
    grid-auto-rows: 72px;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs:empty {
    display: none;
}

.ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs a {
    display: flex;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid #ebe6df;
    background: #fff;
}

.ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main {
    position: relative;
    display: block;
    grid-column: 2;
    min-width: 0;
    overflow: hidden;
    background: #faf8f5;
    aspect-ratio: 1 / 1.05;
}

.ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs:empty+#sit_pvi_big.pg-pdp-gallery__main {
    grid-column: 1 / -1;
}

.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main>a,
.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main>img {
    display: none;
    width: 100%;
    height: 100%;
}

.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main>a.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main>img:first-child {
    display: block;
    padding: 24px;
}

.ppeanut-global #sit_pvi_big.pg-pdp-gallery__main img {
    width: 100%;
    height: 100%;
    max-width: 92%;
    max-height: 92%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.ppeanut-global .pg-pdp-gallery__zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: #111;
}

.ppeanut-global .pg-pdp-intro {
    max-width: 760px;
    padding-top: 28px;
    padding-left: 16px;
    padding-right: 16px;
}

.ppeanut-global .pg-pdp-intro__eyebrow,
.ppeanut-global .pg-pdp-section__eyebrow {
    margin: 0 0 12px;
    color: var(--pg-color-text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp-intro__text {
    margin: 0;
    color: var(--pg-color-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.ppeanut-global .pg-pdp__checkout {
    position: sticky;
    top: 96px;
    align-self: start;
    height: fit-content;
}

.ppeanut-global .pg-pdp-checkout {
    background: #fff;
}

.ppeanut-global .pg-pdp-checkout__head {
    padding-bottom: 20px;
}

.ppeanut-global .pg-pdp-checkout__category {
    margin: 0 0 12px;
    color: var(--pg-color-text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp-checkout #sit_title {
    margin: 0;
    font-size: clamp(2.4rem, 3vw, 2.9rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.ppeanut-global .pg-pdp-checkout #sit_desc {
    margin: 14px 0 0;
    color: var(--pg-color-text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.ppeanut-global .pg-pdp-checkout__price {
    padding: 18px 0;
    border-top: 1px solid var(--pg-color-line);
}

.ppeanut-global .pg-pdp-checkout__retail {
    margin: 0 0 8px;
    color: var(--pg-color-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp-checkout__status {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.ppeanut-global .pg-pdp-checkout__amount-wrap {
    margin: 0;
}

.ppeanut-global .pg-pdp-checkout__amount {
    font-size: clamp(2.65rem, 3vw, 2.85rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.ppeanut-global .pg-pdp-checkout__delivery {
    padding: 18px 0 10px;
}

.ppeanut-global .pg-pdp-checkout__delivery-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.ppeanut-global .pg-pdp-checkout__delivery-label {
    color: var(--pg-color-text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.ppeanut-global .pg-pdp-checkout__delivery-value {
    color: var(--pg-color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ppeanut-global .pg-pdp-checkout__options {
    padding-top: 8px;
}

.ppeanut-global .pg-pdp-checkout__option-group+.pg-pdp-checkout__option-group {
    margin-top: 16px;
}

.ppeanut-global .pg-pdp-checkout__option-group h3,
.ppeanut-global .pg-pdp-checkout__selected h3 {
    margin: 0 0 10px;
    color: var(--pg-color-text);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp-checkout__control select,
.ppeanut-global .pg-pdp-checkout #ct_send_cost {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e5e2dc;
    background: #fff;
    color: var(--pg-color-text);
    font-size: 0.93rem;
}

.ppeanut-global .pg-pdp-checkout #sit_opt_info {
    margin: 10px 0 0;
    color: var(--pg-color-text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.ppeanut-global .pg-pdp-checkout__selected {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--pg-color-line);
}

.ppeanut-global #sit_sel_option #sit_opt_added,
.ppeanut-global #sit_sel_option .sit_opt_added {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ppeanut-global #sit_sel_option .sit_opt_list,
.ppeanut-global #sit_sel_option .sit_spl_list,
.ppeanut-global #sit_sel_option #sit_opt_added li,
.ppeanut-global #sit_sel_option .sit_opt_added li {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    border: 1px solid #ece7e1;
    background: #faf8f5;
}

.ppeanut-global #sit_sel_option .sit_opt_list+.sit_opt_list,
.ppeanut-global #sit_sel_option .sit_spl_list+.sit_spl_list,
.ppeanut-global #sit_sel_option .sit_opt_list+.sit_spl_list,
.ppeanut-global #sit_sel_option #sit_opt_added li+li {
    margin-top: 10px;
}

.ppeanut-global #sit_sel_option .opt_name {
    min-width: 0;
}

.ppeanut-global #sit_sel_option .sit_opt_subj {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
}

.ppeanut-global #sit_sel_option .opt_count {
    display: grid;
    grid-template-columns: 40px 56px 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.ppeanut-global #sit_sel_option .sit_qty_minus,
.ppeanut-global #sit_sel_option .sit_qty_plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dcd7d0;
    background: #fff;
    color: var(--pg-color-text);
}

.ppeanut-global #sit_sel_option .num_input {
    width: 56px;
    height: 40px;
    border: 1px solid #dcd7d0;
    background: #fff;
    text-align: center;
}

.ppeanut-global #sit_sel_option .sit_opt_prc {
    min-width: 90px;
    color: var(--pg-color-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.ppeanut-global #sit_sel_option .sit_opt_del {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--pg-color-text-muted);
}

.ppeanut-global .pg-pdp-checkout__total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--pg-color-line);
}

.ppeanut-global #sit_tot_price,
.ppeanut-global .sit_tot_price {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
}

.ppeanut-global #sit_tot_price span,
.ppeanut-global .sit_tot_price span {
    color: var(--pg-color-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ppeanut-global #sit_tot_price strong,
.ppeanut-global .sit_tot_price strong {
    font-size: clamp(2.25rem, 2.6vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.ppeanut-global #sit_ov_soldout {
    margin: 18px 0 0;
    padding: 14px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.ppeanut-global .pg-pdp-checkout__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.ppeanut-global .pg-pdp-checkout__actions .sit_btn_wish,
.ppeanut-global .pg-pdp-checkout__actions #sit_btn_alm,
.ppeanut-global .pg-pdp-checkout__actions .itemform-naverpay {
    grid-column: 1 / -1;
}

.ppeanut-global .sit_btn_buy,
.ppeanut-global .sit_btn_cart,
.ppeanut-global .sit_btn_wish,
.ppeanut-global #sit_btn_alm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ppeanut-global .sit_btn_buy {
    border: 1px solid #111;
    background: #111;
    color: #fff;
}

.ppeanut-global .sit_btn_cart {
    border: 1px solid #111;
    background: #fff;
    color: #111;
}

.ppeanut-global .sit_btn_wish,
.ppeanut-global #sit_btn_alm {
    justify-content: flex-start;
    gap: 8px;
    min-height: 52px;
    border: 1px solid #e5e2dc;
    background: #fff;
    color: var(--pg-color-text);
}

.ppeanut-global .sit_btn_buy:hover {
    opacity: 0.88;
}

.ppeanut-global .sit_btn_cart:hover {
    background: #111;
    color: #fff;
}

.ppeanut-global .sns_area {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 5;
    display: none;
    min-width: 180px;
    padding: 12px;
    border: 1px solid var(--pg-color-line);
    background: #fff;
}

.ppeanut-global .sns_area a {
    display: inline-flex;
    margin-right: 10px;
}

.ppeanut-global .pg-pdp-detail {
    width: min(calc(100% - 80px), 1440px);
    margin: 0 auto;
    padding: 56px calc(32% + 64px) 0 0;
}

.ppeanut-global .pg-pdp-section__header {
    margin-bottom: 22px;
}

.ppeanut-global .pg-pdp-section__header h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.ppeanut-global .pg-pdp-story,
.ppeanut-global .pg-pdp-description,
.ppeanut-global .pg-pdp-review,
.ppeanut-global .pg-pdp-qa,
.ppeanut-global .pg-pdp-delivery-detail,
.ppeanut-global .pg-pdp-related {
    padding-top: 64px;
}

.ppeanut-global .pg-pdp-story {
    padding-top: 0;
}

.ppeanut-global .pg-pdp-story__line {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.ppeanut-global .pg-pdp-story__line:last-child {
    margin-bottom: 0;
}

.ppeanut-global .pg-pdp-story__line.is-emphasis {
    color: var(--pg-color-accent);
}

.ppeanut-global .pg-pdp-section__body,
.ppeanut-global #sit_inf_explan,
.ppeanut-global #sit_dvr,
.ppeanut-global #sit_ex {
    color: var(--pg-color-text);
    font-size: 0.98rem;
    line-height: 1.82;
}

.ppeanut-global #sit_inf_explan img,
.ppeanut-global #sit_dvr img,
.ppeanut-global #sit_ex img {
    max-width: 100%;
    height: auto;
}

.ppeanut-global .pg-pdp-spec__list {
    margin: 0;
    border-top: 1px solid var(--pg-color-line);
}

.ppeanut-global .pg-pdp-spec__item {
    display: grid;
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--pg-color-line);
}

.ppeanut-global .pg-pdp-spec__item dt {
    color: var(--pg-color-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ppeanut-global .pg-pdp-spec__item dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.ppeanut-global .pg-pdp-related .pg-recipe-grid {
    gap: 24px;
}

@media (max-width: 980px) {

    .ppeanut-global .pg-pdp,
    .ppeanut-global .pg-pdp-detail {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

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

    .ppeanut-global .pg-pdp__checkout {
        position: static;
        top: auto;
        height: auto;
    }

    .ppeanut-global .pg-pdp-detail {
        padding: 48px 0 0;
    }
}

@media (max-width: 640px) {
    .ppeanut-global .pg-pdp {
        padding-top: 20px;
    }

    .ppeanut-global .pg-pdp-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 64px;
        grid-auto-rows: 64px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
    }

    .ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs a {
        width: 64px;
        height: 64px;
    }

    .ppeanut-global #sit_pvi_big.pg-pdp-gallery__main,
    .ppeanut-global #sit_pvi_thumb.pg-pdp-gallery__thumbs:empty+#sit_pvi_big.pg-pdp-gallery__main {
        grid-column: 1;
    }

    .ppeanut-global .pg-pdp-checkout #sit_title {
        font-size: clamp(2rem, 8vw, 2.2rem);
    }

    .ppeanut-global .pg-pdp-checkout #sit_desc,
    .ppeanut-global .pg-pdp-intro__text {
        font-size: 0.98rem;
    }

    .ppeanut-global .pg-pdp-checkout__delivery-row,
    .ppeanut-global .pg-pdp-spec__item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ppeanut-global #sit_sel_option .opt_count {
        grid-template-columns: 40px 56px 40px minmax(0, 1fr) auto;
        width: 100%;
    }

    .ppeanut-global #sit_sel_option .sit_opt_prc {
        min-width: auto;
    }

    .ppeanut-global .pg-pdp-checkout__actions {
        grid-template-columns: 1fr;
    }
}