.custom-product-page-main-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-inline: 16px;
}

.cppms-head {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.cppms-head span {
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.cppms-head p {
    font-weight: 700;
    background: linear-gradient(90deg, #007BFF 40.84%, #22D253 71.31%, #101010 98.34%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    margin: 0;
}

.cppms-product-image .custom_image {
    vertical-align: bottom;
    width: 670px;
}

.cppms-product-atc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(55px);
    padding: 20px;
}


.cppms-product-atc-left ins{
    text-decoration: none;
}

.cppms-product-atc-left ins .woocommerce-Price-amount,
.cppms-product-atc-left bdi{
  text-decoration: none;
    color: #007BFF;
    font-weight: 800;
    font-size: 20px;
}

.cppms-product-atc-left del bdi {
    font-size: 16px !important;
    color: #888;
    font-weight: 600 !important;
}

.cppms-product-atc-right .cppms_add_to_cart_button {
    background: #068FFF;
    padding: 13px 24px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    color: white;
    font-size: clamp(14px, calc(100vw - 768px), 16px);
    transition: background-color 0.3s ease;
}

.cppms-product-atc-right .cppms_add_to_cart_button svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {

    .cppms-head span {
        font-size: 16px;
    }

    .cppms-head p {
        font-size: 40px;
    }

    .cppms-product-image .custom_image {
        width: 380px;
    }

    .cppms-product-atc {
        padding: 15px;
        gap: 10px;
    }

    .cppms-product-atc {
        flex-wrap: wrap;
    }

    .cppms-product-atc-left,
    .cppms-product-atc-right {
        width: 100%;
    }

    .cppms-product-atc-right .cppms_add_to_cart_button {
        width: 100%;
        justify-content: center;
    }

    .cppms-product-atc-left {
        text-align: center;
    }

}