.pc-hero {
    background: linear-gradient(90deg, #7996C5 0%, #C3D4E7 100%), #7973EF;
}

.pc-hero .col-lg-8 {
    display: flex;
    padding: 40px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.pc-hero-title {
    color: var(--white, #FFF);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -1.28px;
    margin: 0;
}

.pc-hero-subtitle {
    color: var(--white, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pc-calculator {
    padding: 40px 80px 0 80px;
}

.pc-calculator .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pc-calculator .row .col-md-6 {
    flex: 1 0 0;
    max-width: 632px;
    height: -webkit-fill-available;
}

.pc-inputs-card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #F6F6FE;
}

.pc-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue, #4b2da5);
    margin-bottom: 24px;
}

.pc-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.pc-field label {
    color: #28269A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.pc-input-wrap {
    position: relative;
}

.pc-input {
    width: 100%;
    padding: 12px 50px 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.pc-input:focus {
    outline: none;
    border-color: var(--dark-blue, #4b2da5);
    box-shadow: 0 0 0 3px rgba(75, 45, 165, 0.1);
}

.pc-unit-label {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    pointer-events: none;
}

.pc-input[type="number"]::-webkit-inner-spin-button,
.pc-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pc-input[type="number"] {
    -moz-appearance: textfield;
    display: flex;
    height: 48px;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid #B9B7F6;
    background: #FFF;
    box-shadow: 0 0 0 1px #EEE;
}

.pc-syringe-options {
    display: flex;
    gap: 8px;
}

.pc-syringe-btn {
    background: #F6F6FE;
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    color: #28269A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 100px;
    border: 1px solid #B9B7F6;
}

.pc-syringe-btn:hover {
    border-color: var(--dark-blue, #4b2da5);
}

.pc-syringe-btn.active {
    border-radius: 32px;
    border: 1px solid #7973EF;
    background: #7973EF;
    color: white;
}

.pc-syringe-btn.active span {
    color: rgba(255, 255, 255, 0.7);
}

.pc-preset-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-preset-btn {
    background: #F6F6FE;
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #B9B7F6;
    color: #28269A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    min-width: 80px;
}

.pc-preset-btn:hover {
    border-radius: 32px;
    border: 1px solid #7973EF;
    background: #7973EF;
    color: white;
}

.pc-preset-btn.active,
.pc-preset-btn.pc-preset-other.active {
    border-radius: 32px;
    border: 1px solid #7973EF;
    background: #7973EF;
    color: white;
}

.pc-preset-btn.pc-preset-other {
    color: #28269A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.pc-other-input {
    margin-top: 10px;
}

.pc-calculate-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background: var(--dark-blue, #4b2da5);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.pc-calculate-btn:hover {
    background: #3a1f85;
}

.pc-result-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pc-result-message {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 16px;
    background: #F6F6FE;
}

.pc-result-text {
    color: #28269A;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.pc-result-text strong {
    font-weight: 500;
    font-size: 20px;
}

.pc-error-message {
    background: #F2F2FD;
    border-left: 4px solid #7973EF;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    color: #28269A;
    font-size: 14px;
    margin-top: 16px;
    height: auto !important;
}

.pc-syringe-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 160px;
    padding: 24px 0;
}

.pc-syringe-rotate-wrapper {
    transform: rotate(-90deg);
    transform-origin: center center;
    width: 92px;
    height: 460px;
}

.pc-syringe-container {
    position: relative;
    width: 92px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.pc-syringe-plunger {
    position: absolute;
    left: 42px;
    transform: translateX(-50%);
    width: 14px;
    bottom: 30px;
    top: 0;
    background: #9995F2;
    border-radius: 2px;
    z-index: 2;
    transition: bottom 0.5s ease;
}

.pc-syringe-plunger::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 30px;
    height: 92px;
    background: #9995F2;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='92' viewBox='0 0 30 92' fill='none'%3E%3Crect width='11.5' height='92' rx='5.75' transform='matrix(-1 0 0 1 29.9 0)' fill='black'/%3E%3Cpath d='M23 12.6504L11.0936 15.0317C4.64314 16.3218 0 21.9855 0 28.5637V63.4371C0 70.0153 4.64315 75.679 11.0936 76.9691L23 79.3504V12.6504Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='92' viewBox='0 0 30 92' fill='none'%3E%3Crect width='11.5' height='92' rx='5.75' transform='matrix(-1 0 0 1 29.9 0)' fill='black'/%3E%3Cpath d='M23 12.6504L11.0936 15.0317C4.64314 16.3218 0 21.9855 0 28.5637V63.4371C0 70.0153 4.64315 75.679 11.0936 76.9691L23 79.3504V12.6504Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
    border-radius: 0;
}

.pc-plunger-stick {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 57px;
    height: 8px;
    background: #9995F2;
    border-radius: 115px;
}

.pc-syringe-plunger::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 57px;
    height: 6.9px;
    background: #9995F2;
    border-radius: 115px;
}

.pc-syringe-barrel {
    position: absolute;
    width: 57px;
    height: 400px;
    left: 10px;
    bottom: 30px;
    border: 2px solid #28269A;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9.2px;
}

.pc-syringe-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(270deg, #F3CCD4 0%, #EDB2BF 62.14%);
    opacity: 0.65;
    transition: height 0.5s ease, background-color 0.3s;
}

.pc-syringe-ticks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available;
    pointer-events: none;
    margin-top: 15px;
}

.pc-tick {
    position: absolute;
    right: 0;
    height: 1px;
}

.pc-tick-major {
    width: 40%;
    background: #444;
}

.pc-tick-minor {
    width: 25%;
    background: #28269A;
}

.pc-tick-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 11px;
    font-weight: 600;
    color: #28269A;
    white-space: nowrap;
    z-index: 2;
}

.pc-syringe-needle {
    position: absolute;
    bottom: 0;
    left: 36px;
    transform: translateX(-40%);
    height: 27px;
}

.pc-syringe-needle svg {
    transform: rotate(90deg);
}

.pc-fill-label {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--blue-100, #F2F2FD);
    color: #28269A;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.pc-wysiwyg-section .container {
    padding: 0 80px;
}

.pc-wysiwyg-content h2,
.pc-wysiwyg-content h3,
.pc-wysiwyg-content h4 {
    color: #000070;
    margin-bottom: 12px;
}

.pc-wysiwyg-content p {
    color: #000070;
    line-height: 1.7;
    margin-bottom: 16px;
}

.pc-wysiwyg-content ul,
.pc-wysiwyg-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.pc-wysiwyg-content li {
    margin-bottom: 6px;
    color: #000070;
    line-height: 1.6;
}

.peptide-calculator-page .productsub-img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

.peptide-calculator-page .productsub-img,
.peptide-calculator-page .productsub-details {
    flex: 1 1 50%;
    max-width: 50%;
}

.peptide-calculator-page .productsub-cart {
    width: 100%;
}

.peptide-calculator-page .productsub-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.peptide-calculator-page .peptide-why-choose-section {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 60px;
}

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

    .peptide-calculator-page .peptide-explore-swiper,
    .peptide-calculator-page .peptide-explore-swiper .swiper-slide {
        touch-action: pan-y pinch-zoom;
    }

}

@media screen and (max-width: 768px) {
    .peptide-calculator-page .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .pc-hero {
        padding: 12px;
    }

    .pc-hero-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .pc-hero-subtitle {
        font-size: 15px;
    }

    .pc-calculator {
        padding: 12px 0;
    }

    .pc-section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .pc-inputs-card {
        padding: 16px;
    }

    .pc-syringe-visual {
        padding: 8px 0;
        height: unset;
    }

    .pc-syringe-options {
        flex-direction: row;
    }

    .pc-preset-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .pc-field {
        margin-bottom: 14px;
    }

    .pc-syringe-rotate-wrapper {
        width: 60px;
        height: 100%;
    }

    .pc-syringe-barrel {
        height: 240px;
    }

    .pc-syringe-container {
        height: 320px;
    }

    .peptide-calculator-page .productsub-img,
    .peptide-calculator-page .productsub-details {
        max-width: 100% !important;
        flex: 1 1 100%;
    }
}

@media screen and (max-width:767px) {
    .pc-result-card {
        margin-top: 8px;
    }
}

.peptides-why-div {
    background: #F6F6FE;
    border-radius: 20px;
    margin: 40px 80px;
}

.peptides-why-div .container-why {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 24px;

}

.peptides-why-div .container-why .left,
.peptides-why-div .container-why .right {
    width: 50%;
}

.peptides-why-div .container-why .left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 24px;
    border-right: 1px solid #D9D9F9;
}

.peptides-why-div .container-why .left h3 {
    color: #000070;
    margin: 0;
    font-size: 21px;
    font-weight: normal;
}

.peptides-why-div .container-why .left p {
    color: #000070;
    font-size: 16px;
}

.peptides-why-div .container-why .right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.peptides-why-div .container-why .right .row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}


.peptides-why-div .container-why .right .row p {
    color: #000070;
    font-size: 16px;
}

@media(max-width: 1024px) {
    .peptides-why-div .container-why .left {
        flex: 1 1 0;
    }

    .peptides-why-div .container-why .left,
    .peptides-why-div .container-why .right {
        width: auto;
    }

}

@media(max-width: 768px) {

    .peptides-why-div {
        margin: 24px 20px;
    }

    .peptides-why-div .container-why {
        flex-direction: column;
        padding: 16px;
    }

    .peptides-why-div .container-why .left {
        border-right: unset;
        padding-right: unset;
        padding-bottom: 24px;
        border-bottom: 1px solid #D9D9F9;
    }

    .peptides-why-div .container-why .left h3 {
        font-size: 16px;
    }
}

.peptides-why-div .container-why .right .row svg {
    min-width: 24px;
    min-height: 24px;
}


.swiper-wrapper {
    background: white;
    display: flex;
    flex-direction: row;
    width: -webkit-fill-available;
}

.swiper-wrapper .product-tags {
    position: absolute;
    display: flex;
    height: 36px;
    padding: var(--Spacing-0, 0px) var(--Spacing-6, 24px);
    justify-content: center;
    align-items: center;
    border-radius: var(--Spacing-6, 24px);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 6px 0px var(--palette-200, #E6E6FB) inset;
    gap: 10px;
    top: 30px;
    right: 35px;
}

.swiper-wrapper .product-tags a,
.swiper-wrapper .product-tags a:visited {
    color: var(--palette-700, #514DC5);
    font-size: var(--Text-Body-Small, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

.swiper-wrapper .product {
    background: white;
    border: 1px solid var(--palette-300, #D9D9F9);
    display: flex;
    padding: 40px 40px 10px 40px;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-wrapper ul.products,
{
gap: 0;
}

.swiper-wrapper .product-content {
    display: flex;
    flex-direction: column;
}

.swiper-wrapper .product-content .add_to_cart_button {
    border: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: var(--palette-600, #7973EF);
    color: var(--white, #FFF);
    font-family: 'KH-Teka';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    height: 40px;
    cursor: pointer;
}

.swiper-wrapper .product-content .d-block.pdt-title {
    color: #000070;
    font-size: var(--Headers-H-5, 28px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Headers-H-4, 38px);
    letter-spacing: -0.28px;
    text-decoration: none;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.swiper-wrapper .product-content .add_to_cart_button {
    text-decoration: none;
}

.swiper-wrapper .product-content .short-description {
    color: var(--palette-700, #514DC5);
    font-size: var(--Text-Body-Small, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

.swiper-wrapper .product-content .price {
    color: var(--palette-600, #7973EF) !important;
    font-size: var(--Headers-H-5, 24px) !important;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Headers-H-4, 38px);
    letter-spacing: -0.28px;
}


.swiper-wrapper .product-content .quantity-cart {
    padding-top: 1em;
    gap: 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-wrapper .product-content .quantity-cart .add_to_cart_button {
    display: flex;
    height: var(--Spacing-8, 40px);
    padding: var(--Spacing-0, 0px) var(--Spacing-7, 5px);
    justify-content: center;
    align-items: center;
    color: var(--white, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    gap: 10px;
    border-radius: 24px;
    background: var(--palette-600, #7973EF);
    flex: 1 0 0;
}

.swiper-wrapper .product-content .custom-quantity-buttons {
    gap: var(--Spacing-1, 4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-wrapper .product-content .quantity-cart .quantity-field {
    width: 13px;
    color: var(--palette-600, #7973EF);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    width: var(--Spacing-8, 40px);
    height: var(--Spacing-8, 40px);
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Spacing-6, 24px);
    border: 1px solid var(--palette-400, #B9B7F6);
}

.swiper-wrapper .product-content .quantity-cart .quantity-btn {
    display: flex;
    width: var(--Spacing-8, 40px);
    height: var(--Spacing-8, 40px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: var(--Spacing-6, 24px);
    border: 1px solid var(--palette-400, #B9B7F6);
}

.swiper-wrapper .product-content .quantity-cart .quantity-btn:after {
    content: unset !important;
}

.swiper-wrapper .product-content .quantity-cart .added_to_cart {
    display: none !important;
}

.title-div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 80px;
    background: #7973EF;
}


.title-div h3 {
    margin: 0;
    font-family: "KH-Teka", Sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: white;
}

.generic-buttons,
.newest-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.newest-buttons .previous-button-newest,
.newest-buttons .next-button-newest {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 100px;
    justify-content: center;
    cursor: pointer;
   	border: 1px solid var(--palette-400, #B9B7F6);
	background-color: #02010100;
}


.newest-buttons .previous-button-newest:hover,
.newest-buttons .next-button-newest:hover {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 5px 0px var(--palette-600, white) inset;
}

@media(max-width:1024px) {
    .swiper-wrapper .product-content .quantity-cart .add_to_cart_button {
        padding: 10px;
        flex: unset;
    }

}

@media(max-width: 768px) {
    #image-baner-five img {
        width: 100px !important;
    }

    .title-div {
        padding: 1em 2em;
        gap: 10px;
    }

    .generic-buttons .previous-button-generic,
    .generic-buttons .next-button-generic {
        width: 45px;
        height: 45px;
    }
}

@media(max-width: 1024px) {
    .pc-calculator .row {
        flex-direction: column;
    }
}

@media(max-width: 400px) {
    .pc-syringe-container {
        height: 300px;
    }

    .pc-syringe-barrel {
        height: 220px;
    }
}