/* ============================================
 * iherb-pb — Prostobox landing (iHerb promo)
 * ============================================ */

/* layout-main full-width — у нас полнотонные секции */
main.pages-main {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

div.p-iherb-pb {
    --pb-red: #e70e39;
    --pb-red-dark: #c00b30;
    --pb-green: #5ebb10;
    --pb-text: #000000;
    --pb-border: #c4c4c4;

    color: var(--pb-text);
    background: #ffffff;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    overflow-x: clip;
}
div.p-iherb-pb,
div.p-iherb-pb::before,
div.p-iherb-pb::after { box-sizing: border-box; }

.p-iherb-pb__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ============ Block 1 — Hero (Figma 52:691) ============ */
.p-iherb-pb__hero {
    padding: 71px 0 0;
    background: #ffffff;
}
.p-iherb-pb__hero-grid {
    display: grid;
    grid-template-columns: 574px 597px;
    gap: 7px;
    align-items: stretch;
    justify-content: center;
}
.p-iherb-pb__hero-text {
    width: 574px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    align-self: center;
    margin-bottom: 100px;
}
.p-iherb-pb__hero-belarus,
.p-iherb-pb__hero-belarus:link,
.p-iherb-pb__hero-belarus:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border: 1px solid var(--pb-red);
    border-radius: 10px;
    background: #ffffff;
    color: var(--pb-red) !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease, color .15s ease;
}
.p-iherb-pb__hero-belarus:hover,
.p-iherb-pb__hero-belarus:active {
    color: #fff !important;
    background: var(--pb-red);
}
.p-iherb-pb__hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    margin: 0;
    letter-spacing: 0;
}
.p-iherb-pb__hero-title-accent { color: var(--pb-green); }
.p-iherb-pb__hero-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--pb-border);
    border-radius: 20px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    background: #ffffff;
}
.p-iherb-pb__hero-body {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pb-text);
    width: 560px;
    max-width: 100%;
}
.p-iherb-pb__hero-body p { margin: 0; }
.p-iherb-pb__hero-body p + p { margin-top: 0; }
.p-iherb-pb__hero-body p:nth-child(2) { margin-bottom: 1.4em; }
.p-iherb-pb__hero-cta,
.p-iherb-pb__hero-cta:link,
.p-iherb-pb__hero-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border: 1px solid var(--pb-red);
    border-radius: 10px;
    background: var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__hero-cta:hover,
.p-iherb-pb__hero-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

/* Right column — composition */
.p-iherb-pb__hero-art {
    width: 597px;
    align-self: end;
}
.p-iherb-pb__hero-image {
    display: block;
    width: 100%;
    height: auto;
}

/* ============ Tablet ============ */
@media (max-width: 1280px) {
    .p-iherb-pb__hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }
    .p-iherb-pb__hero-text { width: 100%; }
    .p-iherb-pb__hero-art {
        width: 100%;
        max-width: 597px;
        justify-self: center;
    }
}

@media (max-width: 900px) {
    .p-iherb-pb__container { padding: 0 16px; }
    .p-iherb-pb__hero { padding: 36px 0 0; }
    .p-iherb-pb__hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .p-iherb-pb__hero-text {
        gap: 16px;
        width: 100%;
        margin-bottom: 0;
        align-self: stretch;
    }
    .p-iherb-pb__hero-title { font-size: 32px; }
    .p-iherb-pb__hero-subtitle { font-size: 19px; padding: 10px 18px; }
    .p-iherb-pb__hero-body { font-size: 16px; width: 100%; }
    .p-iherb-pb__hero-belarus,
    .p-iherb-pb__hero-cta {
        width: 100%;
        max-width: 360px;
        font-size: 17px;
        min-height: 56px;
    }
    .p-iherb-pb__hero-art { max-width: 100%; width: 100%; align-self: stretch; }
}

@media (max-width: 480px) {
    .p-iherb-pb__hero-title { font-size: 26px; }
    .p-iherb-pb__hero-subtitle { font-size: 17px; padding: 10px 14px; }
}

/* ============ Block 2 — Rates banner (Figma 54:1245) ============ */
.p-iherb-pb__rates {
    padding: 0;
    background: #ffffff;
}
.p-iherb-pb__rates-banner {
    position: relative;
    height: 336px;
    width: 100%;
    max-width: 1178px;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(241.52deg, #33D600 0.82%, #49A000 81.78%);
    overflow: hidden;
    display: grid;
    grid-template-columns: 502px minmax(0, 1fr);
    align-items: center;
}
.p-iherb-pb__rates-cat {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.p-iherb-pb__rates-cat-img {
    position: absolute;
    left: 16px;
    bottom: 0;
    height: 100%;
    width: auto;
    display: block;
}
.p-iherb-pb__rates-text {
    color: #ffffff;
    padding-right: 130px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 61px;
    padding-bottom: 36px;
}
.p-iherb-pb__rates-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.p-iherb-pb__rates-eyebrow {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}
.p-iherb-pb__rates-title {
    margin: 0;
    border: 1px solid #9fdf80;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.p-iherb-pb__rates-price-row {
    margin: 0;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}
.p-iherb-pb__rates-delivery {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}
.p-iherb-pb__rates-price {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

/* Block 2 adaptive */
@media (max-width: 1280px) {
    .p-iherb-pb__rates-banner {
        grid-template-columns: 38% minmax(0, 1fr);
    }
    .p-iherb-pb__rates-text { padding-right: 8%; }
    .p-iherb-pb__rates-price { font-size: 84px; }
}

@media (max-width: 1024px) {
    .p-iherb-pb__rates-banner { height: 280px; }
    .p-iherb-pb__rates-text { padding-top: 36px; padding-bottom: 28px; padding-right: 32px; }
    .p-iherb-pb__rates-eyebrow { font-size: 24px; }
    .p-iherb-pb__rates-title { font-size: 20px; }
    .p-iherb-pb__rates-delivery { font-size: 30px; }
    .p-iherb-pb__rates-price { font-size: 68px; }
}

/* ============ Block 8 — Compare prices (Figma 60:1611) ============ */
.p-iherb-pb__compare {
    padding: 80px 0 80px;
    background: #ffffff;
}
.p-iherb-pb__compare-title {
    max-width: 869px;
    margin: 0 auto 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__compare-title .p-iherb-pb__seg--g { color: #67c419; }
.p-iherb-pb__compare-card {
    position: relative;
    max-width: 1178px;
    margin: 0 auto 40px;
    background: #f5f5f5;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 327px minmax(0, 1fr);
    min-height: 527px;
    overflow: hidden;
}
.p-iherb-pb__compare-info {
    padding: 56px 32px 56px 56px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: start;
}
.p-iherb-pb__compare-product {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__compare-size {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__compare-inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    padding: 56px 44px 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 527px;
}
.p-iherb-pb__compare-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.p-iherb-pb__compare-product-cell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.p-iherb-pb__compare-img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 21px rgba(0, 0, 0, 0.05);
    display: block;
}
.p-iherb-pb__compare-label {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__compare-product-cell:first-child .p-iherb-pb__compare-label { font-weight: 500; }
.p-iherb-pb__compare-link,
.p-iherb-pb__compare-link:link,
.p-iherb-pb__compare-link:visited {
    color: #67c419;
    font-weight: 700;
    text-decoration: none;
}
.p-iherb-pb__compare-link:hover { opacity: 0.8; }
.p-iherb-pb__compare-price {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__compare-savings {
    position: relative;
    margin-top: auto;
    height: 99px;
    background: #ffd61a;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 24px 0 36px;
}
.p-iherb-pb__compare-savings-label {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__compare-savings-box {
    margin-left: auto;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    height: 83px;
    min-width: 200px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--pb-text);
}

.p-iherb-pb__compare-cta-wrap {
    display: flex;
    justify-content: center;
}
.p-iherb-pb__compare-cta,
.p-iherb-pb__compare-cta:link,
.p-iherb-pb__compare-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border-radius: 10px;
    background: var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
    border: 1px solid var(--pb-red);
}
.p-iherb-pb__compare-cta:hover,
.p-iherb-pb__compare-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

@media (max-width: 1024px) {
    .p-iherb-pb__compare { padding: 60px 0; }
    .p-iherb-pb__compare-title { font-size: 24px; margin-bottom: 36px; }
    .p-iherb-pb__compare-card { grid-template-columns: 240px minmax(0, 1fr); }
    .p-iherb-pb__compare-info { padding: 36px 24px; gap: 12px; }
    .p-iherb-pb__compare-product { font-size: 22px; }
    .p-iherb-pb__compare-size { font-size: 16px; }
    .p-iherb-pb__compare-inner { padding: 36px 28px; }
    .p-iherb-pb__compare-products { gap: 24px; }
    .p-iherb-pb__compare-img { height: 150px; }
    .p-iherb-pb__compare-label { font-size: 15px; }
    .p-iherb-pb__compare-price { font-size: 20px; }
    .p-iherb-pb__compare-savings { height: 82px; padding: 0 18px 0 24px; }
    .p-iherb-pb__compare-savings-label { font-size: 22px; }
    .p-iherb-pb__compare-savings-box { height: 66px; font-size: 30px; min-width: 160px; padding: 0 22px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__compare { padding: 40px 0; }
    .p-iherb-pb__compare-title { font-size: 20px; margin-bottom: 22px; }
    .p-iherb-pb__compare-card {
        grid-template-columns: 1fr;
        border-radius: 18px;
        min-height: 0;
    }
    .p-iherb-pb__compare-info { padding: 22px 22px 0; gap: 8px; align-items: center; text-align: center; }
    .p-iherb-pb__compare-product { font-size: 20px; }
    .p-iherb-pb__compare-size { font-size: 14px; text-align: center; }
    .p-iherb-pb__compare-inner {
        padding: 18px;
        min-height: 0;
        border-radius: 16px;
        margin: 16px;
        gap: 18px;
    }
    .p-iherb-pb__compare-products { grid-template-columns: 1fr; gap: 18px; }
    .p-iherb-pb__compare-img { height: 180px; }
    .p-iherb-pb__compare-label { font-size: 14px; }
    .p-iherb-pb__compare-price { font-size: 18px; }
    .p-iherb-pb__compare-savings {
        height: auto;
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .p-iherb-pb__compare-savings-label { font-size: 18px; }
    .p-iherb-pb__compare-savings-box {
        margin-left: 0;
        height: 56px;
        font-size: 24px;
        min-width: 120px;
        padding: 0 18px;
    }
    .p-iherb-pb__compare-cta { width: 100%; max-width: 360px; font-size: 16px; min-height: 52px; }
}

/* ============ Block 7 — Order how (Figma 57:1521) ============ */
.p-iherb-pb__order {
    background: #edffde;
    padding: 80px 0 80px;
}
.p-iherb-pb__order-title {
    margin: 0 auto 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__order-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 40px;
    justify-content: center;
    max-width: 1178px;
    margin: 0 auto 60px;
}
.p-iherb-pb__order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.p-iherb-pb__order-step-icon-box {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.p-iherb-pb__order-step-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.p-iherb-pb__order-step-text {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--pb-text);
}
.p-iherb-pb__order-step-text a,
.p-iherb-pb__order-step-text a:link,
.p-iherb-pb__order-step-text a:visited {
    color: inherit;
    text-decoration: none;
}
.p-iherb-pb__order-step-text a.p-iherb-pb__seg--b { font-weight: 700; }
.p-iherb-pb__order-step-text a.p-iherb-pb__seg--g { color: #67c419; }
.p-iherb-pb__order-step-text a:hover { opacity: 0.75; }

.p-iherb-pb__order-callout {
    position: relative;
    max-width: 1178px;
    margin: 0 auto 40px;
    background: #cfffa7;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 306px;
    align-items: center;
    overflow: hidden;
    padding: 30px 0 30px 50px;
    gap: 24px;
}
.p-iherb-pb__order-callout-text {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pb-text);
    max-width: 632px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.p-iherb-pb__order-callout-text p { margin: 0; }
.p-iherb-pb__order-callout-code { color: var(--pb-red); }
.p-iherb-pb__order-callout-img {
    display: block;
    width: 306px;
    height: 260px;
    object-fit: cover;
    object-position: center;
    align-self: stretch;
}

.p-iherb-pb__order-cta-wrap {
    display: flex;
    justify-content: center;
}
.p-iherb-pb__order-cta,
.p-iherb-pb__order-cta:link,
.p-iherb-pb__order-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 10px;
    background: var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
    border: 1px solid var(--pb-red);
}
.p-iherb-pb__order-cta:hover,
.p-iherb-pb__order-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

@media (max-width: 1024px) {
    .p-iherb-pb__order { padding: 60px 0; }
    .p-iherb-pb__order-title { font-size: 26px; margin-bottom: 36px; }
    .p-iherb-pb__order-steps { gap: 24px; margin-bottom: 40px; }
    .p-iherb-pb__order-step-icon-box { width: 120px; height: 120px; }
    .p-iherb-pb__order-step-text { font-size: 16px; }
    .p-iherb-pb__order-callout {
        padding: 24px 0 24px 32px;
        min-height: 220px;
        grid-template-columns: minmax(0, 1fr) 240px;
    }
    .p-iherb-pb__order-callout-text { font-size: 22px; gap: 14px; }
    .p-iherb-pb__order-callout-img { width: 240px; height: 220px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__order { padding: 40px 0; }
    .p-iherb-pb__order-title { font-size: 22px; margin-bottom: 24px; }
    .p-iherb-pb__order-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
    }
    .p-iherb-pb__order-step-icon-box { width: 110px; height: 110px; border-radius: 18px; }
    .p-iherb-pb__order-step-text { font-size: 15px; }
    .p-iherb-pb__order-callout {
        grid-template-columns: 1fr;
        padding: 22px 22px 0;
        gap: 16px;
        border-radius: 18px;
    }
    .p-iherb-pb__order-callout-text { font-size: 17px; max-width: 100%; gap: 12px; }
    .p-iherb-pb__order-callout-img { width: 100%; height: auto; max-height: 240px; align-self: end; }
    .p-iherb-pb__order-cta {
        width: 100%;
        max-width: 360px;
        font-size: 16px;
        min-height: 52px;
        padding: 14px 24px;
    }
}

/* ============ Block 13 — Telegram banner (Figma 67:1920) ============ */
.p-iherb-pb__tg {
    padding: 70px 0 80px;
    background: #ffffff;
}
.p-iherb-pb__tg-banner {
    position: relative;
    max-width: 1178px;
    margin: 0 auto;
    height: 386px;
    border-radius: 40px;
    overflow: hidden;
    background: #5EBB10;
}
.p-iherb-pb__tg-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.p-iherb-pb__tg-logo {
    position: absolute;
    mix-blend-mode: color-burn;
    filter: drop-shadow(0 60px 96px rgba(0, 0, 0, 0.15));
}
.p-iherb-pb__tg-logo--big {
    width: 440px;
    height: 440px;
    left: 530px;
    top: -129px;
}
.p-iherb-pb__tg-logo--med {
    width: 319px;
    height: 319px;
    left: 913px;
    top: 11px;
}
.p-iherb-pb__tg-logo--small {
    width: 158px;
    height: 158px;
    left: 790px;
    top: 300px;
}
.p-iherb-pb__tg-text {
    position: relative;
    z-index: 2;
    padding: 54px 0 0 102px;
    width: 560px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}
.p-iherb-pb__tg-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    max-width: 446px;
}
.p-iherb-pb__tg-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 10px 42px;
    color: #ffffff;
}
.p-iherb-pb__tg-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
    white-space: nowrap;
}
.p-iherb-pb__tg-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}
.p-iherb-pb__tg-cta,
.p-iherb-pb__tg-cta:link,
.p-iherb-pb__tg-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 315px;
    min-height: 60px;
    padding: 20px 95px;
    border-radius: 10px;
    background: var(--pb-red);
    border: 1px solid var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__tg-cta:hover,
.p-iherb-pb__tg-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

@media (max-width: 1024px) {
    .p-iherb-pb__tg { padding: 50px 0 60px; }
    .p-iherb-pb__tg-banner { height: 340px; border-radius: 30px; }
    .p-iherb-pb__tg-text { padding: 36px 0 0 36px; width: 480px; gap: 22px; }
    .p-iherb-pb__tg-title { font-size: 26px; }
    .p-iherb-pb__tg-features { grid-template-columns: 140px minmax(0, 1fr); gap: 8px 24px; }
    .p-iherb-pb__tg-feature { font-size: 16px; }
    .p-iherb-pb__tg-check { width: 26px; height: 26px; }
    .p-iherb-pb__tg-logo--big { width: 360px; height: 360px; left: 420px; top: -100px; }
    .p-iherb-pb__tg-logo--med { width: 260px; height: 260px; left: 660px; top: 10px; }
    .p-iherb-pb__tg-logo--small { width: 130px; height: 130px; left: 580px; top: 260px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__tg { padding: 36px 0 40px; }
    .p-iherb-pb__tg-banner { height: auto; border-radius: 22px; }
    .p-iherb-pb__tg-text {
        padding: 28px 22px;
        width: 100%;
        gap: 18px;
    }
    .p-iherb-pb__tg-title { font-size: 20px; max-width: 100%; }
    .p-iherb-pb__tg-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
    }
    .p-iherb-pb__tg-feature { font-size: 14px; white-space: normal; }
    .p-iherb-pb__tg-check { width: 22px; height: 22px; }
    .p-iherb-pb__tg-logo--big { width: 260px; height: 260px; left: auto; right: -80px; top: -100px; }
    .p-iherb-pb__tg-logo--med { width: 160px; height: 160px; left: auto; right: -40px; top: 40%; }
    .p-iherb-pb__tg-logo--small { display: none; }
    .p-iherb-pb__tg-cta {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 52px;
    }
}

/* ============ Block 12 — FAQ (Figma 67:1861) ============ */
.p-iherb-pb__faq {
    padding: 80px 0;
    background: #f7f7f7;
}
.p-iherb-pb__faq-title {
    margin: 0 auto 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__faq-list {
    max-width: 960px;
    margin: 0 auto;
    border-top: 1px solid #d8d8d8;
}
.p-iherb-pb__faq-item {
    border-bottom: 1px solid #d8d8d8;
}
.p-iherb-pb__faq-q {
    list-style: none;
    cursor: pointer;
    padding: 22px 64px 22px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--pb-text);
    position: relative;
    display: block;
}
.p-iherb-pb__faq-q::-webkit-details-marker { display: none; }
.p-iherb-pb__faq-q-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
}
.p-iherb-pb__faq-q-icon::before,
.p-iherb-pb__faq-q-icon::after {
    content: '';
    position: absolute;
    background: #67c419;
    border-radius: 1px;
    transition: background .15s ease;
}
.p-iherb-pb__faq-q-icon::before {
    width: 18px;
    height: 2px;
}
.p-iherb-pb__faq-q-icon::after {
    width: 2px;
    height: 18px;
    transition: transform .2s ease, background .15s ease;
}
.p-iherb-pb__faq-item[open] .p-iherb-pb__faq-q-icon { background: #67c419; }
.p-iherb-pb__faq-item[open] .p-iherb-pb__faq-q-icon::before,
.p-iherb-pb__faq-item[open] .p-iherb-pb__faq-q-icon::after { background: #ffffff; }
.p-iherb-pb__faq-item[open] .p-iherb-pb__faq-q-icon::after { transform: rotate(90deg); }
.p-iherb-pb__faq-a {
    padding: 0 64px 22px 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #3e4b5b;
    white-space: pre-line;
}

@media (max-width: 1024px) {
    .p-iherb-pb__faq { padding: 60px 0; }
    .p-iherb-pb__faq-title { font-size: 26px; margin-bottom: 36px; }
    .p-iherb-pb__faq-q { font-size: 17px; padding: 18px 56px 18px 0; }
    .p-iherb-pb__faq-q-icon { width: 36px; height: 36px; }
    .p-iherb-pb__faq-q-icon::before { width: 16px; }
    .p-iherb-pb__faq-q-icon::after { height: 16px; }
    .p-iherb-pb__faq-a { font-size: 15px; padding: 0 56px 18px 0; }
}

@media (max-width: 720px) {
    .p-iherb-pb__faq { padding: 40px 0; }
    .p-iherb-pb__faq-title { font-size: 22px; margin-bottom: 24px; }
    .p-iherb-pb__faq-q { font-size: 15px; padding: 16px 44px 16px 0; }
    .p-iherb-pb__faq-q-icon { width: 30px; height: 30px; }
    .p-iherb-pb__faq-q-icon::before { width: 14px; }
    .p-iherb-pb__faq-q-icon::after { height: 14px; }
    .p-iherb-pb__faq-a { font-size: 14px; padding: 0 44px 16px 0; }
}

/* ============ Block 11 — Reviews (Figma 65:1813) ============ */
.p-iherb-pb__reviews {
    padding: 80px 0 80px;
    background: #ffffff;
}
.p-iherb-pb__reviews-title {
    margin: 0 auto 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__reviews-grid {
    max-width: 1178px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 560px));
    gap: 40px;
    justify-content: center;
}
.p-iherb-pb__review {
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.p-iherb-pb__review-head {
    display: grid;
    grid-template-columns: 239px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}
.p-iherb-pb__review-img {
    width: 239px;
    height: 239px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}
.p-iherb-pb__review-meta {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.p-iherb-pb__review-name {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--pb-text);
}
.p-iherb-pb__review-date,
.p-iherb-pb__review-place {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #afafaf;
}
.p-iherb-pb__review-track,
.p-iherb-pb__review-track:link,
.p-iherb-pb__review-track:visited {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #67c419;
    text-decoration: underline;
    word-break: break-all;
    transition: opacity .15s ease;
}
.p-iherb-pb__review-track:hover { opacity: 0.8; }
.p-iherb-pb__review-text {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--pb-text);
}
.p-iherb-pb__reviews-cta-wrap {
    display: flex;
    justify-content: center;
}
.p-iherb-pb__reviews-cta,
.p-iherb-pb__reviews-cta:link,
.p-iherb-pb__reviews-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border-radius: 10px;
    background: var(--pb-red);
    border: 1px solid var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__reviews-cta:hover,
.p-iherb-pb__reviews-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

@media (max-width: 1024px) {
    .p-iherb-pb__reviews { padding: 60px 0; }
    .p-iherb-pb__reviews-title { font-size: 26px; margin-bottom: 36px; }
    .p-iherb-pb__reviews-grid { gap: 24px; margin-bottom: 36px; }
    .p-iherb-pb__review { padding: 22px; gap: 20px; }
    .p-iherb-pb__review-head { grid-template-columns: 180px minmax(0, 1fr); gap: 16px; }
    .p-iherb-pb__review-img { width: 180px; height: 180px; }
    .p-iherb-pb__review-name { font-size: 22px; }
    .p-iherb-pb__review-date,
    .p-iherb-pb__review-place { font-size: 14px; }
    .p-iherb-pb__review-track { font-size: 16px; }
    .p-iherb-pb__review-text { font-size: 16px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__reviews { padding: 40px 0; }
    .p-iherb-pb__reviews-title { font-size: 22px; margin-bottom: 24px; }
    .p-iherb-pb__reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }
    .p-iherb-pb__review { padding: 20px; gap: 16px; border-radius: 18px; }
    .p-iherb-pb__review-head { grid-template-columns: 130px minmax(0, 1fr); gap: 14px; }
    .p-iherb-pb__review-img { width: 130px; height: 130px; border-radius: 14px; }
    .p-iherb-pb__review-meta { gap: 6px; padding-top: 0; }
    .p-iherb-pb__review-name { font-size: 18px; }
    .p-iherb-pb__review-date,
    .p-iherb-pb__review-place { font-size: 13px; }
    .p-iherb-pb__review-track { font-size: 14px; }
    .p-iherb-pb__review-text { font-size: 14px; }
    .p-iherb-pb__reviews-cta { width: 100%; max-width: 360px; font-size: 16px; min-height: 52px; }
}

/* ============ Block 10 — Urgency CTA (Figma 63:1742) ============ */
.p-iherb-pb__urgency {
    background: #e06107;
    color: #ffffff;
    overflow: hidden;
}
.p-iherb-pb__urgency .p-iherb-pb__container {
    position: relative;
    height: 560px;
}
.p-iherb-pb__urgency-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    column-gap: 60px;
    align-items: center;
    height: 100%;
}
.p-iherb-pb__urgency-art {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-iherb-pb__urgency-image {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}
.p-iherb-pb__urgency-text {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.p-iherb-pb__urgency-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.p-iherb-pb__urgency-body {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}
.p-iherb-pb__urgency-note {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 12px 20px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    width: 100%;
}
.p-iherb-pb__urgency-cta,
.p-iherb-pb__urgency-cta:link,
.p-iherb-pb__urgency-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border-radius: 10px;
    background: #67c419;
    border: 1px solid #67c419;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__urgency-cta:hover,
.p-iherb-pb__urgency-cta:active {
    color: #ffffff !important;
    background: #58a614;
    border-color: #58a614;
}

@media (max-width: 1024px) {
    .p-iherb-pb__urgency .p-iherb-pb__container { height: 480px; }
    .p-iherb-pb__urgency-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 30px; }
    .p-iherb-pb__urgency-image { max-width: 440px; }
    .p-iherb-pb__urgency-title { font-size: 24px; }
    .p-iherb-pb__urgency-body { font-size: 16px; }
    .p-iherb-pb__urgency-note { font-size: 16px; padding: 10px 16px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__urgency .p-iherb-pb__container {
        height: auto;
        padding-top: 36px;
        padding-bottom: 0;
    }
    .p-iherb-pb__urgency-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    .p-iherb-pb__urgency-text {
        order: 1;
        max-width: 100%;
        gap: 18px;
    }
    .p-iherb-pb__urgency-art {
        order: 2;
        height: auto;
    }
    .p-iherb-pb__urgency-image { max-width: 100%; width: 100%; }
    .p-iherb-pb__urgency-title { font-size: 22px; }
    .p-iherb-pb__urgency-body { font-size: 15px; }
    .p-iherb-pb__urgency-note { font-size: 15px; padding: 10px 14px; border-radius: 16px; }
    .p-iherb-pb__urgency-cta { width: 100%; max-width: 360px; font-size: 16px; min-height: 52px; }
}

/* ============ Block 9 — Catalog (Figma 62:1669) ============ */
.p-iherb-pb__catalog {
    padding: 80px 0;
    background: #ffffff;
}
.p-iherb-pb__catalog-title {
    margin: 0 auto 50px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__catalog-tabs {
    max-width: 1178px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e4e4e4;
    position: relative;
}
.p-iherb-pb__catalog-tab {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--pb-text);
    cursor: pointer;
    position: relative;
    text-align: left;
    transition: color .15s ease;
}
.p-iherb-pb__catalog-tab:hover { color: #67c419; }
.p-iherb-pb__catalog-tab--active {
    color: #67c419;
    font-weight: 700;
}
.p-iherb-pb__catalog-tab--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 2px;
    background: #67c419;
}
.p-iherb-pb__catalog-panels {
    max-width: 1178px;
    margin: 50px auto 60px;
}
.p-iherb-pb__catalog-panel { display: none; }
.p-iherb-pb__catalog-panel--active { display: block; }
.p-iherb-pb__catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 260px));
    gap: 40px;
    justify-content: center;
}
.p-iherb-pb__catalog-card {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.p-iherb-pb__catalog-card-img-wrap {
    width: 100%;
    height: 290px;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.p-iherb-pb__catalog-card-img {
    max-width: 65%;
    max-height: 90%;
    object-fit: contain;
    display: block;
}
.p-iherb-pb__catalog-card-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--pb-text);
    min-height: 70px;
}
.p-iherb-pb__catalog-card-price {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    color: #67c419;
}
.p-iherb-pb__catalog-card-buy,
.p-iherb-pb__catalog-card-buy:link,
.p-iherb-pb__catalog-card-buy:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--pb-red);
    border-radius: 10px;
    background: #ffffff;
    color: var(--pb-red) !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease, color .15s ease;
}
.p-iherb-pb__catalog-card-buy:hover,
.p-iherb-pb__catalog-card-buy:active {
    color: #ffffff !important;
    background: var(--pb-red);
}
.p-iherb-pb__catalog-cta-wrap {
    display: flex;
    justify-content: center;
}
.p-iherb-pb__catalog-cta,
.p-iherb-pb__catalog-cta:link,
.p-iherb-pb__catalog-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border: 1px solid var(--pb-red);
    border-radius: 10px;
    background: var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__catalog-cta:hover,
.p-iherb-pb__catalog-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}

@media (max-width: 1024px) {
    .p-iherb-pb__catalog { padding: 60px 0; }
    .p-iherb-pb__catalog-title { font-size: 26px; margin-bottom: 36px; }
    .p-iherb-pb__catalog-tabs { gap: 18px 24px; }
    .p-iherb-pb__catalog-tab { font-size: 14px; }
    .p-iherb-pb__catalog-panels { margin: 36px auto 40px; }
    .p-iherb-pb__catalog-grid { grid-template-columns: repeat(3, minmax(0, 240px)); gap: 24px; }
    .p-iherb-pb__catalog-card-img-wrap { height: 250px; }
    .p-iherb-pb__catalog-card-name { font-size: 16px; min-height: 60px; }
    .p-iherb-pb__catalog-card-price { font-size: 20px; }
    .p-iherb-pb__catalog-card-buy { font-size: 16px; padding: 14px 16px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__catalog { padding: 40px 0; }
    .p-iherb-pb__catalog-title { font-size: 22px; margin-bottom: 24px; }
    .p-iherb-pb__catalog-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 18px;
        padding-bottom: 12px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        border-bottom-width: 1px;
    }
    .p-iherb-pb__catalog-tab { white-space: nowrap; flex-shrink: 0; font-size: 14px; }
    .p-iherb-pb__catalog-tab--active::after { bottom: -14px; }
    .p-iherb-pb__catalog-panels { margin: 28px auto; }
    .p-iherb-pb__catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .p-iherb-pb__catalog-card { gap: 14px; }
    .p-iherb-pb__catalog-card-img-wrap { height: 200px; }
    .p-iherb-pb__catalog-card-name { font-size: 14px; min-height: 48px; }
    .p-iherb-pb__catalog-card-price { font-size: 18px; }
    .p-iherb-pb__catalog-card-buy { font-size: 14px; padding: 12px 14px; }
    .p-iherb-pb__catalog-cta { width: 100%; max-width: 360px; font-size: 16px; min-height: 52px; }
}

/* ============ Block 6 — Delivery time banner (Figma 56:1461) ============ */
.p-iherb-pb__delivery {
    padding: 0 0 70px;
    background: #ffffff;
}
.p-iherb-pb__delivery-banner {
    position: relative;
    max-width: 1178px;
    margin: 0 auto;
    height: 164px;
    border-radius: 20px;
    overflow: hidden;
    color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 0 40px 0 48px;
    background: #67c419 url("../img/banner-green.webp") center/100% 100% no-repeat;
}
.p-iherb-pb__delivery-left {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    max-width: 432px;
}
.p-iherb-pb__delivery-right {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 13px;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.2;
}
.p-iherb-pb__delivery-from,
.p-iherb-pb__delivery-label {
    font-size: 40px;
    font-weight: 700;
}
.p-iherb-pb__delivery-days {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1024px) {
    .p-iherb-pb__delivery { padding: 0 0 50px; }
    .p-iherb-pb__delivery-banner {
        height: 140px;
        padding: 0 30px;
        border-radius: 18px;
    }
    .p-iherb-pb__delivery-left { font-size: 28px; }
    .p-iherb-pb__delivery-from,
    .p-iherb-pb__delivery-label { font-size: 28px; }
    .p-iherb-pb__delivery-days { font-size: 58px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__delivery { padding: 0 0 36px; }
    .p-iherb-pb__delivery-banner {
        height: auto;
        min-height: 140px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 22px;
        text-align: center;
        justify-items: center;
        border-radius: 16px;
        background: #67c419 url("../img/banner-green.webp") center/100% 100% no-repeat;
    }
    .p-iherb-pb__delivery-left { font-size: 20px; max-width: 100%; }
    .p-iherb-pb__delivery-right { gap: 10px; }
    .p-iherb-pb__delivery-from,
    .p-iherb-pb__delivery-label { font-size: 22px; }
    .p-iherb-pb__delivery-days { font-size: 46px; }
}

/* ============ Block 5 — Shipping cards (Figma 56:1374) ============ */
.p-iherb-pb__shipping {
    padding: 80px 0 70px;
    background: #ffffff;
}
.p-iherb-pb__shipping-title {
    margin: 0 auto 30px;
    max-width: 760px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__shipping-title .p-iherb-pb__seg--g { color: #67c419; }
.p-iherb-pb__shipping-note {
    max-width: 880px;
    margin: 0 auto 50px;
    background: #ffe4d1;
    border-radius: 40px;
    padding: 20px 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--pb-text);
}
.p-iherb-pb__shipping-note .p-iherb-pb__seg--b { font-weight: 700; }
.p-iherb-pb__shipping-note-link,
.p-iherb-pb__shipping-note-link:link,
.p-iherb-pb__shipping-note-link:visited {
    color: #e06107;
    text-decoration: none;
    font-weight: 700;
}
.p-iherb-pb__shipping-note-link:hover { opacity: 0.8; }

.p-iherb-pb__shipping-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 570px));
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    max-width: 1178px;
    margin: 0 auto 50px;
}
.p-iherb-pb__shipping-card {
    position: relative;
    background: #d8ffb8;
    border: 1px solid #67c419;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 550px;
}
.p-iherb-pb__shipping-card-tag {
    align-self: flex-start;
    background: #e06107;
    color: #ffffff;
    padding: 9px 30px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    white-space: nowrap;
}
.p-iherb-pb__shipping-card-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    margin: 6px 0;
}
.p-iherb-pb__shipping-card-pack {
    align-self: flex-start;
    background: #e06107;
    color: #ffffff;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    padding-right: 20px;
    height: 46px;
}
.p-iherb-pb__shipping-card-pack-plus {
    background: #ffffff;
    color: #e06107;
    border: 1px solid #e06107;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}
.p-iherb-pb__shipping-card-pack-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}
.p-iherb-pb__shipping-card-pack-text b { font-weight: 700; }
.p-iherb-pb__shipping-card-total {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pb-text);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.p-iherb-pb__shipping-card-total-value { color: #e06107; }
.p-iherb-pb__shipping-card-action {
    background: #ffffff;
    border: 1px solid #67c419;
    border-radius: 10px;
    padding: 12px 18px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pb-text);
    margin-top: auto;
}
.p-iherb-pb__shipping-card-action .p-iherb-pb__seg--b { font-weight: 700; }

.p-iherb-pb__shipping-insurance {
    max-width: 880px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.4;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__shipping-insurance .p-iherb-pb__seg--b { font-weight: 700; }

@media (max-width: 1024px) {
    .p-iherb-pb__shipping { padding: 60px 0 50px; }
    .p-iherb-pb__shipping-title { font-size: 24px; margin-bottom: 24px; }
    .p-iherb-pb__shipping-note { font-size: 16px; padding: 16px 22px; margin-bottom: 36px; }
    .p-iherb-pb__shipping-cards { gap: 18px; margin-bottom: 36px; }
    .p-iherb-pb__shipping-card { padding: 22px; min-height: 480px; }
    .p-iherb-pb__shipping-card-tag { font-size: 17px; padding: 7px 22px; }
    .p-iherb-pb__shipping-card-img { max-height: 210px; }
    .p-iherb-pb__shipping-card-pack-plus { width: 40px; height: 40px; font-size: 19px; }
    .p-iherb-pb__shipping-card-pack { height: 40px; }
    .p-iherb-pb__shipping-card-pack-text { font-size: 16px; }
    .p-iherb-pb__shipping-card-total { font-size: 22px; }
    .p-iherb-pb__shipping-card-action { font-size: 17px; padding: 11px 14px; }
    .p-iherb-pb__shipping-insurance { font-size: 16px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__shipping { padding: 40px 0 36px; }
    .p-iherb-pb__shipping-title { font-size: 20px; margin-bottom: 18px; }
    .p-iherb-pb__shipping-note {
        font-size: 14px;
        padding: 14px 18px;
        border-radius: 22px;
        margin-bottom: 24px;
    }
    .p-iherb-pb__shipping-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .p-iherb-pb__shipping-card {
        padding: 20px;
        min-height: 0;
        gap: 12px;
        border-radius: 22px;
    }
    .p-iherb-pb__shipping-card-tag { font-size: 16px; padding: 7px 20px; }
    .p-iherb-pb__shipping-card-img { max-height: 220px; }
    .p-iherb-pb__shipping-card-pack { height: 38px; padding-right: 16px; }
    .p-iherb-pb__shipping-card-pack-plus { width: 38px; height: 38px; font-size: 18px; }
    .p-iherb-pb__shipping-card-pack-text { font-size: 14px; }
    .p-iherb-pb__shipping-card-total { font-size: 20px; }
    .p-iherb-pb__shipping-card-action { font-size: 15px; padding: 10px 12px; }
    .p-iherb-pb__shipping-insurance { font-size: 14px; }
}

/* ============ Block 4 — Guarantee (Figma 55:1333) ============ */
.p-iherb-pb__guarantee {
    position: relative;
    background: #f3ffde;
    overflow: hidden;
}
.p-iherb-pb__guarantee .p-iherb-pb__container {
    position: relative;
    height: 467px;
}
.p-iherb-pb__guarantee-grid {
    display: grid;
    grid-template-columns: 574px 597px;
    column-gap: 7px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.p-iherb-pb__guarantee-text {
    width: 574px;
    max-width: 574px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: start;
}
.p-iherb-pb__guarantee-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__guarantee-subtitle {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pb-text);
}
.p-iherb-pb__guarantee-body {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pb-text);
    max-width: 488px;
}
.p-iherb-pb__guarantee-cta,
.p-iherb-pb__guarantee-cta:link,
.p-iherb-pb__guarantee-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    min-height: 60px;
    padding: 20px;
    border: 1px solid var(--pb-red);
    border-radius: 10px;
    background: var(--pb-red);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: background .15s ease;
}
.p-iherb-pb__guarantee-cta:hover,
.p-iherb-pb__guarantee-cta:active {
    color: #ffffff !important;
    background: var(--pb-red-dark);
    border-color: var(--pb-red-dark);
}
.p-iherb-pb__guarantee-art {
    position: relative;
    width: 597px;
    height: 100%;
    overflow: visible;
}
.p-iherb-pb__guarantee-image {
    position: absolute;
    right: -61px;
    bottom: 0;
    display: block;
    width: 658px;
    height: 467px;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .p-iherb-pb__guarantee-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 24px;
    }
    .p-iherb-pb__guarantee-text { width: 100%; max-width: 100%; }
    .p-iherb-pb__guarantee-art { width: 100%; }
    .p-iherb-pb__guarantee-image {
        position: static;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1024px) {
    .p-iherb-pb__guarantee .p-iherb-pb__container { height: 400px; }
    .p-iherb-pb__guarantee-title { font-size: 26px; }
    .p-iherb-pb__guarantee-subtitle { font-size: 21px; }
    .p-iherb-pb__guarantee-body { font-size: 16px; }
    .p-iherb-pb__guarantee-image { height: 400px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__guarantee .p-iherb-pb__container { height: auto; padding-top: 32px; padding-bottom: 0; }
    .p-iherb-pb__guarantee-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 20px;
        height: auto;
    }
    .p-iherb-pb__guarantee-text {
        width: 100%;
        max-width: 100%;
        text-align: left;
        gap: 14px;
    }
    .p-iherb-pb__guarantee-title { font-size: 22px; }
    .p-iherb-pb__guarantee-subtitle { font-size: 18px; }
    .p-iherb-pb__guarantee-body { font-size: 15px; }
    .p-iherb-pb__guarantee-cta {
        width: 100%;
        max-width: 360px;
        font-size: 17px;
        min-height: 56px;
    }
    .p-iherb-pb__guarantee-art {
        position: static;
        width: 100%;
        height: auto;
        display: block;
        overflow: visible;
    }
    .p-iherb-pb__guarantee-image {
        position: static;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }
}

/* ============ Block 3 — How (4 steps, Figma 54:1283) ============ */
.p-iherb-pb__how {
    padding: 80px 0 90px;
    background: #ffffff;
}
.p-iherb-pb__how-title {
    margin: 0 auto 60px;
    max-width: 760px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pb-text);
    text-align: center;
}
.p-iherb-pb__seg--b { font-weight: 700; }
.p-iherb-pb__seg--g { color: #67c419; }
a.p-iherb-pb__seg--g {
    color: #67c419;
    text-decoration: none;
    transition: opacity .15s ease;
}
a.p-iherb-pb__seg--g:hover { opacity: 0.75; }
.p-iherb-pb__how-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 48px;
    max-width: 1178px;
    margin: 0 auto;
    align-items: start;
}
.p-iherb-pb__how-step {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.p-iherb-pb__how-step--n1 { grid-column: 1; grid-row: 1; justify-self: end; }
.p-iherb-pb__how-step--n2 { grid-column: 2; grid-row: 2; justify-self: start; }
.p-iherb-pb__how-step--n3 { grid-column: 1; grid-row: 3; justify-self: end; }
.p-iherb-pb__how-step--n4 { grid-column: 2; grid-row: 4; justify-self: start; }
.p-iherb-pb__how-step-num {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pb-green);
}
.p-iherb-pb__how-step-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--pb-text);
}
.p-iherb-pb__how-step-detail {
    border: 2px solid #67c419;
    border-radius: 20px;
    background: #ffffff;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pb-text);
}
.p-iherb-pb__how-arrow {
    display: block;
    height: auto;
    pointer-events: none;
    align-self: end;
}
.p-iherb-pb__how-arrow--n1 {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: 194px;
    margin: 0 0 -90px 0;
}
.p-iherb-pb__how-arrow--n2 {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    width: 228px;
    margin: 0 0 -90px 0;
}
.p-iherb-pb__how-arrow--n3 {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    width: 189px;
    margin: 0 0 -90px 0;
}

@media (max-width: 1024px) {
    .p-iherb-pb__how { padding: 60px 0 70px; }
    .p-iherb-pb__how-title { font-size: 24px; margin-bottom: 40px; }
    .p-iherb-pb__how-list { column-gap: 24px; row-gap: 30px; }
    .p-iherb-pb__how-step-num { font-size: 34px; }
    .p-iherb-pb__how-step-title { font-size: 18px; }
    .p-iherb-pb__how-step-detail { font-size: 16px; padding: 16px; border-radius: 16px; }
    .p-iherb-pb__how-arrow--n1 { width: 150px; margin-bottom: -60px; }
    .p-iherb-pb__how-arrow--n2 { width: 170px; margin-bottom: -60px; }
    .p-iherb-pb__how-arrow--n3 { width: 140px; margin-bottom: -60px; }
}

@media (max-width: 720px) {
    .p-iherb-pb__how { padding: 40px 0 50px; }
    .p-iherb-pb__how-title { font-size: 20px; margin-bottom: 28px; max-width: 360px; }
    .p-iherb-pb__how-list {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .p-iherb-pb__how-step,
    .p-iherb-pb__how-step--n1,
    .p-iherb-pb__how-step--n2,
    .p-iherb-pb__how-step--n3,
    .p-iherb-pb__how-step--n4 {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
    }
    .p-iherb-pb__how-step--n1 { grid-row: 1; }
    .p-iherb-pb__how-step--n2 { grid-row: 3; }
    .p-iherb-pb__how-step--n3 { grid-row: 5; }
    .p-iherb-pb__how-step--n4 { grid-row: 7; }
    .p-iherb-pb__how-step { gap: 14px; }
    .p-iherb-pb__how-step-num { font-size: 30px; }
    .p-iherb-pb__how-step-title { font-size: 16px; }
    .p-iherb-pb__how-step-detail { font-size: 14px; padding: 14px; border-radius: 14px; }
    .p-iherb-pb__how-arrow,
    .p-iherb-pb__how-arrow--n1,
    .p-iherb-pb__how-arrow--n2,
    .p-iherb-pb__how-arrow--n3 {
        display: none;
    }
}

@media (max-width: 720px) {
    .p-iherb-pb__rates-banner {
        height: auto;
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .p-iherb-pb__rates-text {
        order: 1;
        padding: 28px 20px 20px;
        text-align: center;
        gap: 18px;
    }
    .p-iherb-pb__rates-cat {
        order: 2;
        height: 220px;
    }
    .p-iherb-pb__rates-cat-img {
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        bottom: 0;
    }
    .p-iherb-pb__rates-head { gap: 10px; align-items: stretch; }
    .p-iherb-pb__rates-eyebrow { font-size: 22px; }
    .p-iherb-pb__rates-title { font-size: 17px; padding: 10px 12px; }
    .p-iherb-pb__rates-price-row {
        justify-content: center;
        gap: 16px;
    }
    .p-iherb-pb__rates-delivery { font-size: 24px; }
    .p-iherb-pb__rates-price { font-size: 52px; }
}