/* ============================================================
   PRODUCT IMAGE ZOOM
============================================================ */
.pzoom-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    background: #f8f9fa;
    cursor: crosshair;
    user-select: none;
}

.pzoom-main-img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: contain;
    transition: opacity 0.22s ease;
}

/* The zoomed lens overlay */
.pzoom-lens {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 8px;
    border: 2px solid rgba(105,191,178,0.55);
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    pointer-events: none;
    transition: border-color 0.15s ease;
}

/* Expand / fullscreen icon */
.pzoom-expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pzoom-expand:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
}

/* Report badge on wrapper */
.pzoom-wrapper.pzoom--report .pzoom-main-img {
    object-fit: contain;
}

/* ============================================================
   THUMBNAIL SLIDER
============================================================ */
.pthumb-slider-wrap {
    position: relative;
    margin-top: 12px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 34px;
}

.pthumb-slider {
    display: flex;
    gap: 8px;
    width: fit-content;
    max-width: min(100%, 520px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 0;
}

.pthumb-slider::-webkit-scrollbar {
    display: none;
}

.pthumb-item {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.08);
    background: #f4f4f4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.pthumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.pthumb-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(105,191,178,0.22);
}

.pthumb-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(105,191,178,0.3);
}

/* Test report thumbnail special style */
.pthumb-item.pthumb-report {
    border-color: rgba(105,191,178,0.4);
    background: #f0faf8;
}

.pthumb-item.pthumb-report:hover,
.pthumb-item.pthumb-report.active {
    border-color: var(--primary-color);
}

.pthumb-report-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(50,121,111,0.88);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    padding: 3px 2px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Thumbnail nav arrows */
.pthumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.1);
    color: #444;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.18s ease, color 0.18s ease;
}

.pthumb-nav:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pthumb-nav--prev { left: 2px; }
.pthumb-nav--next { right: 2px; }

/* ============================================================
   TEST REPORT BAR
============================================================ */
.ptest-report-bar {
    max-width: 520px;
    margin: 10px auto 0;
}

.ptest-report-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0faf8 0%, #e4f5f2 100%);
    border: 1px solid rgba(105,191,178,0.35);
    color: #227068;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(105,191,178,0.12);
}

.ptest-report-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a8b80 100%);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(105,191,178,0.28);
}

.ptest-report-ext {
    margin-left: 2px;
    font-size: 11px;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .pzoom-main-img {
        height: 340px;
    }
    .pthumb-item {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }
    .pzoom-wrapper {
        max-width: 100%;
    }
    .pthumb-slider-wrap,
    .ptest-report-bar {
        max-width: 100%;
    }
    .pthumb-slider-wrap {
        width: 100%;
    }
    .pthumb-slider {
        width: 100%;
    }
}

@media (max-width: 510px) {
    .pzoom-main-img {
        height: 280px;
    }
    .pthumb-item {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
    }
    .pzoom-lens {
        display: none !important;
    }
    .pzoom-wrapper {
        cursor: default;
    }
}

/* ============================================================ */

.product-description-section {
    background: #f7faf9;
}

.product-delivery-section {
    margin-bottom: 26px;
}

.product-description-shell {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
    overflow: hidden;
}

.product-description-heading {
    padding: 34px 38px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #ffffff 0%, #effaf8 100%);
}

.product-description-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(105, 191, 178, 0.14);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.product-description-heading h2 {
    margin: 0;
    color: #111;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.product-description-heading p {
    max-width: 780px;
    margin: 12px 0 0;
    color: #52605f;
    font-size: 15px;
    line-height: 1.7;
}

.product-description-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 24px 30px 0;
}

.product-description-quick-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-height: 84px;
    padding: 15px;
    border: 1px solid rgba(105, 191, 178, 0.18);
    border-radius: 8px;
    background: #fbfdfd;
}

.product-description-quick-card i {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(105, 191, 178, 0.14);
    color: var(--primary-color);
    font-size: 17px;
}

.product-description-quick-card span,
.product-detail-box span,
.product-benefit-card span {
    display: block;
    color: #6a7574;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-description-quick-card strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #151515;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.product-delivery-card {
    display: flex;
    gap: 12px;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.product-delivery-card i {
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(105, 191, 178, 0.14);
    color: var(--primary-color);
    font-size: 16px;
}

.product-delivery-card span {
    display: block;
    color: #171f1e;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.product-delivery-card p {
    margin: 7px 0 0;
    color: #60706e;
    font-size: 13px;
    line-height: 1.55;
}

.product-description-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 24px 30px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-description-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: #fff;
    color: #303737;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.product-description-tab span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
}

.product-description-tab i {
    color: var(--primary-color);
    font-size: 15px;
}

.product-description-tab.active,
.product-description-tab:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 22px rgba(105, 191, 178, 0.2);
}

.product-description-tab.active i,
.product-description-tab:hover i {
    color: #fff;
}

.product-description-panels {
    padding: 0 30px 34px;
}

.product-description-accordion {
    display: none;
}

.product-description-panel {
    display: none;
    animation: productDescriptionPanelIn 0.24s ease both;
}

.product-description-panel.active {
    display: block;
}

.product-detail-box-grid,
.product-benefit-grid,
.product-included-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-detail-box,
.product-benefit-card,
.product-included-card {
    display: flex;
    gap: 14px;
    min-height: auto;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.045);
}

.product-detail-box__icon,
.product-benefit-card>i,
.product-included-card__icon {
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(105, 191, 178, 0.14);
    color: var(--primary-color);
    font-size: 17px;
}

.product-detail-box strong,
.product-benefit-card p,
.product-included-card strong {
    display: block;
    margin: 0;
    color: #181818;
    font-size: 14px;
    font-weight: 700;
    /* font-weight: 400; */
    line-height: 1.5;
}

.product-detail-box strong {
    font-weight: 700;
}

.product-overview-card--wide {
    grid-column: 1 / -1;
}

.product-overview-answer {
    margin: 0;
    color: #181818;
    /* font-weight: 500!important; */
    line-height: 1.6;
}

.product-included-card span {
    display: block;
    margin-bottom: 5px;
    color: #6a7574;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-benefit-card>i {
    background: rgba(105, 191, 178, 0.16);
    color: #218173;
}

.peptide-calculator {
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.045);
}

.peptide-calculator-head h3 {
    margin: 0 0 6px;
    color: #181818;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.peptide-calculator-head p {
    margin: 0;
    color: #6a7574;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.peptide-calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.peptide-calculator-field {
    padding: 18px;
    border: 1px solid rgba(105, 191, 178, 0.18);
    border-radius: 8px;
    background: #f7faf9;
}

.peptide-calculator-field>span {
    display: block;
    min-height: 38px;
    margin-bottom: 12px;
    color: #181818;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.peptide-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.peptide-choice {
    position: relative;
    min-height: 40px;
    padding: 9px 34px 9px 14px;
    border: 1px solid rgba(50, 121, 111, 0.22);
    border-radius: 8px;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.peptide-choice.active,
.peptide-choice:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(50, 121, 111, 0.16);
}

.peptide-choice::after {
    top: 50%;
    right: 9px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    transform: translateY(-50%) scale(0.72);
}

.peptide-choice.active::after {
    transform: translateY(-50%) scale(1);
}

.peptide-custom-input {
    display: none;
    width: 100%;
    height: 46px;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid rgba(50, 121, 111, 0.22);
    border-radius: 8px;
    background: #fff;
    color: #181818;
    font-size: 14px;
    font-weight: 700;
}

.peptide-custom-input.active {
    display: block;
}

.peptide-custom-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.peptide-calculator-result {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 22px;
    border-radius: 8px;
    background: #10231f;
    color: #fff;
}

.peptide-syringe {
    position: relative;
    height: 44px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.peptide-syringe::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -17px;
    width: 28px;
    height: 24px;
    border-radius: 0 999px 999px 0;
    background: rgba(255, 255, 255, 0.82);
}

.peptide-syringe-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    /* border-radius: 999px; */
    border-radius: 0px;
    background: #69bfb2;
    transition: width 0.24s ease;
}

.peptide-syringe span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.peptide-calculator-result>div:last-child>span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.peptide-calculator-result>div:last-child>strong {
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
}

.peptide-calculator-result p {
    display: none;
    margin: 12px 0 0;
    color: #ffcbc5;
    font-size: 13px;
    font-weight: 700;
}

.peptide-calculator-result p.active {
    display: block;
}

.peptide-calculator-launch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(105, 191, 178, 0.22);
    border-radius: 8px;
    background: #f7faf9;
}

.peptide-calculator-launch span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.peptide-calculator-launch strong {
    display: block;
    color: #181818;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
}

.peptide-calculator-launch-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.peptide-calculator-launch-btn:hover {
    color: #fff;
    background: #24675e;
}

.peptide-calculator-page {
    padding: 54px 0 68px;
    background:
        linear-gradient(180deg, #f5f8f7 0%, #ffffff 48%, #f5f8f7 100%);
}

.peptide-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: end;
    margin-bottom: 26px;
}

.peptide-back-link,
.peptide-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.peptide-back-link {
    margin-right: 16px;
    text-transform: none;
    letter-spacing: 0;
}
.peptide-back-link:hover {
    color: var(--bs-black);
}

.peptide-page-hero h1 {
    margin: 0 0 12px;
    color: #111;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
}

.peptide-page-hero p {
    max-width: 760px;
    margin: 0;
    color: #52605f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.peptide-page-product {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 35, 31, 0.08);
}

.peptide-page-product .img {
    width: 86px;
    height: 86px;
}
.peptide-page-product .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.peptide-page-product span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.peptide-page-product strong {
    display: block;
    color: #181818;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
}

.peptide-calculator--page {
    padding: 30px;
    border-color: rgba(50, 121, 111, 0.14);
    box-shadow: 0 24px 58px rgba(16, 35, 31, 0.09);
}

.peptide-calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.peptide-calculator-main {
    display: grid;
    gap: 18px;
}

.peptide-calculator-field--full {
    grid-column: 1 / -1;
}

.peptide-calculator--page .peptide-calculator-field {
    border-color: rgba(50, 121, 111, 0.14);
    background: #fbfdfd;
    box-shadow: 0 12px 28px rgba(16, 35, 31, 0.045);
}

.peptide-syringe-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.peptide-syringe-option {
    position: relative;
    display: flex;
    gap: 7px;
    /* justify-items: start; */
    justify-content: space-between;
    align-items: end;
    min-height: 90px;
    padding: 18px;
    border: 1px solid rgba(50, 121, 111, 0.18);
    border-radius: 8px;
    background: #fff;
    color: #181818;
    cursor: pointer;
    transition: all 0.22s ease;
}

.peptide-syringe-option i {
    color: var(--primary-color);
    font-size: 24px;
    transition: color 0.22s ease;
}

.peptide-syringe-option strong {
    color: #181818;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    transition: color 0.22s ease;
}

.peptide-syringe-option small {
    color: #6a7574;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.22s ease;
}

.peptide-syringe-option.active,
.peptide-syringe-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 16px 32px rgba(50, 121, 111, 0.18);
    transform: translateY(-2px);
}

.peptide-syringe-option .icon-ml {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.peptide-syringe-option small {
    line-height: normal;
}

.peptide-syringe-option.active {
    background: var(--primary-color);
}

.peptide-syringe-option.active i,
.peptide-syringe-option.active strong,
.peptide-syringe-option.active small {
    color: #fff;
}

.peptide-syringe-option::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.peptide-choice::after {
    content: "✓";
    position: absolute;
    top: -10px;
    right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.18s ease, transform 0.18s ease;
    border: 1px solid var(--primary-color);
}

.peptide-syringe-option.active::after,
.peptide-choice.active::after {
    opacity: 1;
    transform: scale(1);
}

.peptide-syringe-dimensions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.peptide-syringe-dimensions div,
.peptide-result-meta div {
    padding: 13px;
    border: 1px solid rgba(50, 121, 111, 0.16);
    border-radius: 8px;
    background: #fff;
}

.peptide-syringe-dimensions span,
.peptide-result-meta span,
.peptide-result-card span {
    display: block;
    margin-bottom: 5px;
    color: #6a7574;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.peptide-syringe-dimensions strong,
.peptide-result-meta strong {
    display: block;
    color: #181818;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}

.peptide-calculator-field--summary strong {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.peptide-calculator-field--summary p {
    margin: 8px 0 0;
    color: #6a7574;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.peptide-calculator-side {
    position: sticky;
    top: 100px;
    align-self: start;
    display: grid;
    gap: 16px;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    padding: 20px;
    border-radius: 8px;
    background: var(--bs-black);
    color: #fff;
    scrollbar-width: thin;
    scrollbar-color: rgba(105, 191, 178, 0.65) rgba(255, 255, 255, 0.1);
}

.peptide-calculator-side::-webkit-scrollbar {
    width: 6px;
}

.peptide-calculator-side::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.peptide-calculator-side::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(105, 191, 178, 0.65);
}

.peptide-result-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.peptide-result-card span {
    color: rgba(255, 255, 255, 0.72);
}

.peptide-result-card span strong {
    color: #fff;
}

.peptide-result-card>strong {
    display: block;
    color: #fff;
    font-size: 38px;
    font-weight: 950;
    line-height: 1.05;
}

.peptide-result-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
}

.peptide-pull-statement {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.peptide-pull-statement span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.peptide-pull-statement span strong {
    color: #fff;
}

.peptide-pull-statement>strong {
    display: block;
    color: #69bfb2;
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.peptide-syringe-visual {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    align-items: center;
    min-height: 72px;
}

.peptide-syringe-plunger {
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-right: 0;
    border-radius: 999px 0 0 999px;
}

.peptide-syringe-bar {
    position: relative;
    height: 52px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.peptide-syringe-bar::before {
    content: "";
    position: absolute;
    inset: 8px 10px;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.58) 0, rgba(255, 255, 255, 0.58) 1px, transparent 1px, transparent 12px);
    opacity: 0.75;
    z-index: 1;
}

.peptide-syringe-bar .peptide-syringe-fill {
    z-index: 0;
}

.peptide-syringe-bar span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.peptide-syringe-needle {
    height: 3px;
    background: rgba(255, 255, 255, 0.84);
}

.peptide-syringe-needle::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -5px;
    margin-left: 34px;
    border-top: 2px solid rgba(255, 255, 255, 0.84);
    border-right: 2px solid rgba(255, 255, 255, 0.84);
    transform: rotate(45deg);
}

.peptide-syringe-scale {
    position: relative;
    height: 56px;
    margin: -4px 38px 2px 34px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.peptide-syringe-scale__ticks {
    position: absolute;
    inset: 0;
}

.peptide-syringe-scale__ticks span {
    position: absolute;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.62);
}

.peptide-syringe-scale__ticks span.is-minor {
    height: 11px;
}

.peptide-syringe-scale__ticks span.is-major {
    height: 22px;
    width: 2px;
    background: rgba(255, 255, 255, 0.9);
}

.peptide-syringe-scale__ticks span em {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.peptide-syringe-scale__marker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 2px;
    height: 44px;
    transform: translateX(-50%);
    background: #69bfb2;
    box-shadow: 0 0 0 4px rgba(105, 191, 178, 0.18);
    transition: left 0.24s ease;
}

.peptide-syringe-scale__marker::before {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translateX(-50%);
    padding: 4px 7px;
    border-radius: 999px;
    background: #69bfb2;
    color: #10231f;
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.peptide-syringe-scale__marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 38px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #69bfb2;
}

.peptide-result-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.peptide-result-meta div {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.peptide-result-meta span {
    color: rgba(255, 255, 255, 0.62);
}

.peptide-result-meta strong {
    color: #fff;
}

.peptide-warning {
    display: none;
    margin: 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 101, 84, 0.14);
    color: #ffcbc5;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.peptide-warning.active {
    display: block;
}

.product-description-empty {
    padding: 26px;
    border: 1px dashed rgba(105, 191, 178, 0.34);
    border-radius: 8px;
    background: #fbfdfd;
    color: #52605f;
    font-size: 15px;
    text-align: center;
}

@keyframes productDescriptionPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rich-product-desc {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.75;
    word-break: break-word;
}

.rich-product-desc>*:first-child {
    margin-top: 0;
}

.rich-product-desc>*:last-child {
    margin-bottom: 0;
}

.rich-product-desc h1,
.rich-product-desc h2,
.rich-product-desc h3,
.rich-product-desc h4,
.rich-product-desc h5,
.rich-product-desc h6 {
    color: #1f1f1f;
    font-weight: 700;
    line-height: 1.25;
    margin: 28px 0 14px;
    scroll-margin-top: 125px;
}

.rich-product-desc h1 {
    font-size: 36px;
}

.rich-product-desc h2 {
    font-size: 30px;
    position: relative;
    padding-left: 16px;
}

.rich-product-desc h2::before {
    content: "";
    position: absolute;
    top: 0.16em;
    bottom: 0.16em;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--primary-color);
}

.rich-product-desc h3 {
    font-size: 26px;
}

.rich-product-desc h4 {
    font-size: 22px;
}

.rich-product-desc h5 {
    font-size: 19px;
}

.rich-product-desc h6 {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rich-product-desc p {
    margin: 0 0 18px;
    line-height: 1.8;
}

.rich-product-desc p:has(> strong:first-child),
.rich-product-desc p:has(> b:first-child) {
    margin-bottom: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(105, 191, 178, 0.18);
    border-radius: 8px;
    background: #fbfdfd;
}

.rich-product-desc strong,
.rich-product-desc b {
    color: #222;
    font-weight: 700;
}

.rich-product-desc em,
.rich-product-desc i {
    font-style: italic;
}

.rich-product-desc u {
    text-underline-offset: 3px;
}

.rich-product-desc a {
    color: #d71920;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.rich-product-desc a:hover {
    color: #111;
}

.rich-product-desc ul,
.rich-product-desc ol {
    margin: 0 0 20px 22px;
    padding-left: 18px;
}

.rich-product-desc ul {
    list-style: disc;
}

.rich-product-desc ol {
    list-style: decimal;
}

.rich-product-desc li {
    margin-bottom: 10px;
    padding-left: 6px;
    line-height: 1.7;
}

.rich-product-desc li::marker {
    color: #d71920;
    font-weight: 700;
}

.rich-product-desc blockquote {
    border-left: 4px solid #d71920;
    color: #333;
    font-size: 18px;
    font-style: italic;
    margin: 24px 0;
    padding: 14px 20px;
    background: #f8f8f8;
}

.rich-product-desc img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 8px;
}

.rich-product-desc table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border: 1px solid #e6e6e6;
    overflow: hidden;
}

.rich-product-desc iframe,
.rich-product-desc video {
    max-width: 100%;
}

.rich-product-desc th,
.rich-product-desc td {
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.rich-product-desc th {
    color: #222;
    font-weight: 700;
    background: #f5f5f5;
}

.rich-product-desc hr {
    border: 0;
    border-top: 1px solid #e6e6e6;
    margin: 28px 0;
}

.rich-product-desc code,
.rich-product-desc pre {
    color: #222;
    background: #f5f5f5;
    border-radius: 6px;
    font-family: Consolas, Monaco, monospace;
}

.rich-product-desc code {
    padding: 2px 6px;
    font-size: 14px;
}

.rich-product-desc pre {
    padding: 16px;
    margin: 24px 0;
    overflow-x: auto;
}

.rich-product-desc pre code {
    padding: 0;
    background: transparent;
}

.product-description-wrapper.rich-product-description h1 {
    font-size: 30px;
}

.product-description-wrapper.rich-product-description h2 {
    font-size: 23px;
}

.product-description-wrapper.rich-product-description p {
    font-size: 16px
}

.product-description-wrapper.rich-product-description p strong {
    font-weight: 600 !important;
}

.product-description-wrapper.rich-product-desc p {
    font-size: 14px;
}

@media (max-width: 510px) {
    .rich-product-desc p {
        margin: 0px;
    }

    .product-description-full-area {
        padding: 28px 0;
    }

    .product-description-shell {
        border-radius: 8px;
    }

    .product-description-heading {
        padding: 24px 18px 20px;
    }

    .product-description-heading h2 {
        font-size: 25px;
    }

    .product-description-heading p {
        font-size: 14px;
    }

    .product-description-quick-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 10px;
    }

    .product-description-quick-card {
        min-height: 72px;
        padding: 12px;
    }

    .product-delivery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-delivery-card {
        min-height: auto;
        padding: 13px;
    }

    .product-description-tabs {
        display: none;
    }

    .product-description-panels {
        display: none;
    }

    .product-description-accordion {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 10px 18px;
    }

    .product-description-accordion-item {
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
    }

    .product-description-accordion-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 50px;
        padding: 13px 14px;
        color: #263130;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        cursor: pointer;
        scroll-margin-top: 88px;
    }

    .product-description-accordion-button span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .product-description-accordion-button span i {
        flex: 0 0 auto;
        color: var(--primary-color);
        font-size: 15px;
    }

    .product-description-accordion-button>i {
        flex: 0 0 auto;
        color: #8b9695;
        font-size: 12px;
        transition: transform 0.2s ease;
    }

    .product-description-accordion-button.active {
        background: var(--primary-color);
        color: #fff;
    }

    .product-description-accordion-button.active i {
        color: #fff;
    }

    .product-description-accordion-button.active>i {
        transform: rotate(180deg);
    }

    .product-description-accordion-panel {
        display: none;
        padding: 14px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        animation: productDescriptionPanelIn 0.22s ease both;
    }

    .product-description-accordion-panel.active {
        display: block;
    }

    .product-detail-box-grid,
    .product-benefit-grid,
    .product-included-grid,
    .peptide-calculator-grid,
    .peptide-calculator-result {
        grid-template-columns: 1fr;
    }

    .product-detail-box,
    .product-benefit-card,
    .product-included-card {
        min-height: auto;
        padding: 14px;
    }

    .product-overview-card--wide {
        grid-column: auto;
    }

    .product-description-accordion-panel .product-benefit-grid,
    .product-description-accordion-panel .product-benefit-card,
    .product-description-accordion-panel .product-benefit-card p,
    .product-description-accordion-panel .product-included-grid,
    .product-description-accordion-panel .product-included-card {
        list-style: none;
    }

    .peptide-calculator {
        padding: 16px;
    }

    .peptide-calculator-field {
        padding: 14px;
        box-shadow: none;
    }

    .peptide-calculator-field>span {
        min-height: auto;
        font-size: 20px;
    }

    .peptide-calculator-result {
        padding: 16px;
        gap: 16px;
    }

    .peptide-calculator-launch {
        align-items: flex-start;
        flex-direction: column;
    }

    .peptide-page-hero,
    .peptide-calculator-layout,
    .peptide-syringe-dimensions,
    .peptide-result-meta {
        grid-template-columns: 1fr;
    }

    .peptide-page-hero h1 {
        font-size: 30px;
    }

    .peptide-page-product {
        grid-template-columns: 85px minmax(0, 1fr);
    }

    .peptide-page-product img {
        width: 72px;
        height: 72px;
    }

    .peptide-calculator--page {
        padding: 0px;
        border: none;
        background: white;
        box-shadow: none;

    }

    .peptide-syringe-options {
        grid-template-columns: 1fr;
    }

    .peptide-calculator-side {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .peptide-result-card>strong {
        font-size: 30px;
    }

    .peptide-syringe-visual {
        grid-template-columns: 24px minmax(0, 1fr) 26px;
    }

    .peptide-syringe-scale {
        margin-right: 26px;
        margin-left: 24px;
    }

    .rich-product-desc {
        padding: 18px;
    }

    .rich-product-desc h1,
    .product-description-wrapper.rich-product-description h1 {
        font-size: 25px !important;
    }

    .rich-product-desc h2,
    .product-description-wrapper.rich-product-description h2 {
        font-size: 20px !important;
    }

    .product-description-tab span {
        font-size: 16px !important;
    }

    .product-description-wrapper.rich-product-description p {
        font-size: 15px !important;
    }

    .product-description-wrapper.rich-product-description p strong {
        font-weight: 600 !important;
    }
}

@media only screen and (min-width: 510px) and (max-width: 820px) {
    .rich-product-desc p {
        margin: 0px;
    }

    .product-detail-box strong,
    .product-benefit-card p {
        margin-top: 0px;
    }

    .product-detail-box,
    .product-benefit-card,
    .product-included-card {
        min-height: auto;
    }

    .product-overview-card--wide {
        grid-column: auto;
    }

    .product-delivery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-description-tab span {
        font-size: 16px;
    }

    .product-description-heading h2 {
        font-size: 30px;
    }

    .product-description-tabs {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-description-tab {
        width: calc((100% / 3) - 10px);
        justify-content: center;
    }

    .product-description-heading {
        padding: 28px 24px 20px;
    }

    .product-description-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 22px 24px 0;
    }

    .product-description-tabs {
        padding: 22px 24px;
    }

    .product-description-panels {
        padding: 0 24px 26px;
    }

    .product-detail-box-grid,
    .product-benefit-grid,
    .product-included-grid,
    .peptide-calculator-grid,
    .peptide-calculator-result {
        grid-template-columns: 1fr;
    }

    .peptide-page-hero,
    .peptide-calculator-layout {
        grid-template-columns: 1fr;
    }

    .peptide-syringe-dimensions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .peptide-calculator-side {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .rich-product-desc {
        padding: 24px;
    }

    .product-description-wrapper.rich-product-description h1 {
        font-size: 26px !important;
    }

    .product-description-wrapper.rich-product-description h2 {
        font-size: 22px !important;
    }

    .product-description-wrapper.rich-product-description p {
        font-size: 15px !important;
    }

    .product-description-wrapper.rich-product-description p strong {
        font-weight: 600 !important;
    }

    .rich-product-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .rich-product-desc h1 {
        font-size: 30px;
    }

    .rich-product-desc h2 {
        font-size: 26px;
    }

    .rich-product-desc h3 {
        font-size: 23px;
    }

    .rich-product-desc h4 {
        font-size: 20px;
    }

    .rich-product-desc h5 {
        font-size: 18px;
    }

    .rich-product-desc ul,
    .rich-product-desc ol {
        margin-left: 18px;
        padding-left: 16px;
    }

    .rich-product-desc th,
    .rich-product-desc td {
        padding: 10px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .product-description-tab {
        width: calc((100% / 4) - 10px);
        justify-content: center;
        align-items: center;
    }

    .product-description-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-details-content.ml-25px {
        margin-left: 0px;
    }

    .product-sticky-cart.is-visible {
        padding: 10px 0px;
    }

    .product-sticky-cart__summary img {
        width: 65px;
        height: 60px;
    }

    .product-area .product-description-wrapper {
        padding: 20px 20px;
    }

    .product-description-quick-grid {
        padding: 20px 30px 0;
    }

    .product-description-heading {
        padding: 20px 30px;
    }

    .product-description-heading h2 {
        font-size: 30px;
    }

    .product-description-quick-card,
    .product-detail-box,
    .product-benefit-card {
        min-height: auto;
    }

    .rich-product-desc {
        padding: 26px;
    }

    .product-description-wrapper.rich-product-description h1 {
        font-size: 26px !important;
    }

    .product-description-wrapper.rich-product-description h2 {
        font-size: 20px !important;
    }

    .product-description-wrapper.rich-product-description p {
        font-size: 14px !important;
    }

    .product-description-wrapper.rich-product-description p strong {
        font-weight: 600 !important;
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1550px) {

    .product-detail-box,
    .product-benefit-card {
        min-height: auto;
    }

    .rich-product-desc {
        padding: 26px;
    }

    .product-description-wrapper.rich-product-description h1 {
        font-size: 26px !important;
    }

    .product-description-wrapper.rich-product-description h2 {
        font-size: 20px !important;
    }

    .product-description-wrapper.rich-product-description p {
        font-size: 14px !important;
    }

    .product-description-wrapper.rich-product-description p strong {
        font-weight: 600 !important;
    }
}

.product-viewer-alert {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--primary-color);
    color: white;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: 0 2px 12px rgba(17, 71, 57, 0.06);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.product-viewer-alert i {
    font-size: 14px;
}

.product-viewer-alert strong {
    font-size: 14px;
    font-weight: 600;
}

.product-viewer-alert.is-updating {
    opacity: 0.62;
    transform: translateY(-2px);
    background: rgba(255, 184, 0, 0.24);
}

.recent-buyer-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 20px;
    padding: 15px 16px;
    border: 1px solid rgba(105, 191, 178, 0.24);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbfa 100%);
    color: #222;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(105, 191, 178, 0.08);
    animation: recentBuyerEnter 0.55s ease both;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.recent-buyer-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 48%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}

.recent-buyer-card.is-changing {
    border-color: rgba(105, 191, 178, 0.55);
    box-shadow: 0 14px 34px rgba(105, 191, 178, 0.18);
    transform: translateY(-2px);
}

.recent-buyer-card.is-changing::before {
    animation: recentBuyerShine 0.85s ease;
}

.recent-buyer-avatar {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #438f85);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 0 rgba(105, 191, 178, 0.36);
    animation: recentBuyerPulse 2.2s ease-in-out infinite;
    transition: transform 0.25s ease;
}

.recent-buyer-card.is-changing .recent-buyer-avatar {
    transform: scale(1.08) rotate(-4deg);
}

.recent-buyer-copy {
    min-width: 0;
    color: #2c3436;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.recent-buyer-line {
    display: block;
    transform-origin: left center;
}

.recent-buyer-line-animate {
    animation: recentBuyerTextIn 0.42s ease both;
}

.recent-buyer-copy strong {
    display: inline-block;
    color: #111;
    font-size: 15px;
    font-weight: 700;
}

.recent-buyer-copy .recent-buyer-city {
    display: inline;
    margin: 0;
    color: #111;
    font-size: 13px;
    font-weight: 700;
}

.recent-buyer-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 7px;
}

.recent-buyer-meta-row,
.recent-buyer-copy .js-recent-buyer-meta {
    width: fit-content;
    display: block;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(105, 191, 178, 0.12);
    color: #457a73;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.recent-buyer-copy .recent-buyer-line,
.recent-buyer-copy .js-recent-buyer-meta {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.recent-buyer-card.is-changing .recent-buyer-copy .recent-buyer-line,
.recent-buyer-card.is-changing .recent-buyer-copy .js-recent-buyer-meta {
    opacity: 0;
    transform: translateY(6px);
}

.product-trust-points {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.product-trust-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(105, 191, 178, 0.2);
    border-radius: 999px;
    background: #f7fbfa;
    color: #243130;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.product-trust-point i {
    color: var(--primary-color);
    font-size: 13px;
}

@keyframes recentBuyerEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes recentBuyerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(105, 191, 178, 0.36);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(105, 191, 178, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(105, 191, 178, 0);
    }
}

@keyframes recentBuyerTextIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes recentBuyerShine {
    from {
        left: -60%;
    }

    to {
        left: 120%;
    }
}

.product-sticky-cart {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9800;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.product-sticky-cart.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

body.has-product-sticky-cart {
    padding-bottom: 92px;
}

.product-sticky-cart__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-sticky-cart__summary {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.product-sticky-cart__summary img {
    width: 75px;
    height: 70px;
    flex: 0 0 75px;
    border-radius: 8px;
    background: #f5f5f5;
    object-fit: cover;
}

.product-sticky-cart__summary div {
    min-width: 0;
}

.product-sticky-cart__title {
    display: block;
    max-width: 520px;
    overflow: hidden;
    color: #161616;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-sticky-cart__summary strong {
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.product-sticky-cart__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.product-sticky-cart__quantity {
    padding: 5px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #f8f9fa;
}

.product-sticky-cart__quantity .custom-btn {
    width: 36px;
    height: 36px;
    border-radius: 7px;
}

.product-sticky-cart__quantity .quantityfield {
    width: 52px;
    height: 36px;
    padding: 0 6px;
    border: 0;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}

.product-sticky-cart__button {
    min-width: 170px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.product-sticky-cart__button:hover {
    background: #4a9e94;
    color: #fff !important;
}

@media only screen and (max-width: 510px) {

    .product-description-wrapper.rich-product-desc p,
    .product-description-quick-card strong,
    .product-detail-box strong,
    .product-benefit-card p {
        font-size: 14px;
    }

    .product-sticky-cart__summary div {
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .product-sticky-cart__summary .sticky-pro-img {
        display: none;
    }

    .recent-buyer-card {
        align-items: flex-start;
        margin: 16px 0;
        padding: 12px;
        flex-direction: column;
        gap: 8px;
    }

    .recent-buyer-avatar {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .recent-buyer-copy {
        font-size: 13px;
        display: flex;
        justify-items: center;
        align-items: center;
        line-height: normal;
    }

    .product-trust-points {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .product-trust-point {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        min-width: 130px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .product-sticky-cart {
        padding: 10px 12px 12px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
    }

    body.has-product-sticky-cart {
        padding-bottom: 138px;
    }

    .product-sticky-cart__inner {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }

    .product-sticky-cart__summary {
        flex: 1 1 55%;
        min-width: 0;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .product-sticky-cart__summary img {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .product-sticky-cart__title {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .product-sticky-cart__summary strong {
        font-size: 20px;
        margin-top: 0px;
    }

    .product-sticky-cart__actions {
        width: 100%;
        gap: 10px;
        display: flex;
        justify-content: flex-end;
    }

    .product-sticky-cart__quantity {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        min-width: 130px;
        padding: 6px 8px;
    }

    .product-sticky-cart__quantity .custom-btn {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .product-sticky-cart__quantity .quantityfield {
        width: 48px;
        height: 34px;
        line-height: 34px;
        padding: 0;
    }

    .product-sticky-cart__button {
        flex: 1 1 auto;
        min-width: 0;
        height: 46px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 510px) and (max-width: 820px) {
    .product-sticky-cart__button {
        font-size: 16px;
        font-weight: 600;
    }

    .recent-buyer-card {
        align-items: flex-start;
        margin: 16px 0;
        padding: 12px;
        flex-direction: column;
        gap: 5px;
    }

    .recent-buyer-avatar {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .recent-buyer-copy {
        font-size: 13px;
        display: flex;
        justify-items: center;
        align-items: center;
        line-height: normal;
    }

    .product-trust-points {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .product-sticky-cart {
        padding: 10px 12px 12px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
    }

    body.has-product-sticky-cart {
        padding-bottom: 138px;
    }

    .product-sticky-cart__summary img {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .product-sticky-cart__title {
        font-size: 18px;
    }

    .product-sticky-cart__summary strong {
        font-size: 20px;
    }

    .product-sticky-cart__quantity .quantityfield {
        width: 48px;
        height: 34px;
        line-height: 34px;
        padding: 0;
    }
}
