/* =========================================================
   JV HEALTHCARE PRODUCT PAGE
   Designed for Twenty Thirteen
   ========================================================= */


/* ---------- MAIN FULL WIDTH AREA ---------- */

.jv-product-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f5f8fb;
    padding: 30px 0 80px;
    box-sizing: border-box;
}


/* ---------- MAIN CONTAINER ---------- */

.jv-product-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ---------- BREADCRUMB ---------- */

.jv-product-breadcrumb {
    font-size: 15px;
    margin-bottom: 25px;
    color: #687782;
}

.jv-product-breadcrumb a {
    color: #087f8c;
    text-decoration: none;
    font-weight: 600;
}

.jv-product-breadcrumb a:hover {
    text-decoration: underline;
}


/* ---------- HERO ---------- */

.jv-product-hero {
    display: flex;
    align-items: stretch;
    gap: 55px;

    background: #ffffff;

    padding: 55px;

    border-radius: 25px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.08);

    margin-bottom: 35px;
}


/* ---------- IMAGE ---------- */

.jv-product-image-area {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jv-product-image-box {
    width: 100%;
    max-width: 500px;

    min-height: 420px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #f8fbfd;

    border-radius: 22px;

    padding: 30px;

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.jv-product-image-box:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}


.jv-product-main-image {
    max-width: 100%;
    max-height: 430px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform 0.4s ease;
}

.jv-product-image-box:hover .jv-product-main-image {
    transform: scale(1.05);
}


.jv-no-product-image {
    font-size: 20px;
    color: #999;
}


/* ---------- PRODUCT INFORMATION ---------- */

.jv-product-main-info {
    width: 55%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ---------- CATEGORY ---------- */

.jv-product-category {
    display: inline-block;

    width: fit-content;

    padding: 7px 16px;

    background: #e5f7f8;

    color: #087f8c;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 15px;
}


/* ---------- TITLE ---------- */

.jv-product-title {
    font-size: 48px !important;

    line-height: 1.1 !important;

    margin: 0 0 30px !important;

    color: #12343b !important;

    font-weight: 800 !important;
}


/* ---------- INFO ROW ---------- */

.jv-product-info-row {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid #e7edf0;

    font-size: 18px;
}


.jv-info-label {
    width: 125px;

    flex-shrink: 0;

    font-weight: 700;

    color: #12343b;
}


.jv-info-value {
    color: #53656d;

    line-height: 1.5;
}


.jv-mrp {
    color: #087f8c;

    font-weight: 800;

    font-size: 22px;
}


/* ---------- CONTACT BOX ---------- */

.jv-product-contact-box {
    margin-top: 30px;

    padding: 25px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #087f8c,
        #0b6875
    );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(8, 127, 140, 0.22);
}


.jv-contact-title {
    font-size: 22px;

    font-weight: 800;

    margin-bottom: 8px;
}


.jv-contact-text {
    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 18px;

    opacity: 0.95;
}


.jv-product-button {
    display: inline-block;

    padding: 12px 25px;

    background: #ffffff;

    color: #087f8c;

    border-radius: 30px;

    text-decoration: none !important;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.jv-product-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.18);

    color: #087f8c;
}


/* ---------- CONTENT SECTIONS ---------- */

.jv-product-content-section,
.jv-product-information-section {
    background: #ffffff;

    border-radius: 20px;

    padding: 35px 40px;

    margin-bottom: 25px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.06);
}


.jv-product-content-section h2,
.jv-product-information-section h2 {
    font-size: 30px !important;

    color: #12343b !important;

    margin: 0 0 20px !important;

    font-weight: 800 !important;
}


.jv-product-content,
.jv-section-content {
    color: #52636b;

    font-size: 18px;

    line-height: 1.8;
}


.jv-section-content p {
    margin-bottom: 15px;
}


.jv-section-content ul {
    padding-left: 25px;
}


.jv-section-content li {
    margin-bottom: 8px;
}


/* ---------- INFORMATION SECTION ---------- */

.jv-product-information-section {
    display: flex;

    gap: 25px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.jv-product-information-section:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.09);
}


.jv-section-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f7f8;

    color: #087f8c;

    font-size: 25px;

    font-weight: 800;
}


/* ---------- QUALITY ---------- */

.jv-quality-section {
    text-align: center;

    background: #12343b;

    color: #141414;

    padding: 45px;

    border-radius: 22px;

    margin-top: 35px;
}


.jv-quality-section h2 {
    color: #141414 !important;

    font-size: 30px !important;

    margin-bottom: 15px !important;
}


.jv-quality-section p {
    text: #141414 !important;
    max-width: 850px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.7;

    opacity: 0.9;
}


/* ---------- BADGES ---------- */

.jv-quality-badges {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}


.jv-quality-badge {
    min-width: 120px;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.3);

    border-radius: 30px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .jv-product-hero {
        flex-direction: column;

        padding: 35px;
    }

    .jv-product-image-area,
    .jv-product-main-info {
        width: 100%;
    }

    .jv-product-image-box {
        max-width: 600px;

        margin: 0 auto;
    }

    .jv-product-title {
        font-size: 40px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .jv-product-full-width {
        padding: 20px 0 50px;
    }

    .jv-product-container {
        width: 94%;
    }

    .jv-product-hero {
        padding: 20px;

        gap: 25px;

        border-radius: 18px;
    }

    .jv-product-image-box {
        min-height: 280px;

        padding: 20px;

        border-radius: 16px;
    }

    .jv-product-title {
        font-size: 32px !important;

        margin-bottom: 20px !important;
    }

    .jv-product-info-row {
        flex-direction: column;

        gap: 5px;

        font-size: 16px;
    }

    .jv-info-label {
        width: 100%;
    }

    .jv-product-content-section,
    .jv-product-information-section {
        padding: 25px 20px;

        border-radius: 16px;
    }

    .jv-product-content-section h2,
    .jv-product-information-section h2 {
        font-size: 25px !important;
    }

    .jv-product-content,
    .jv-section-content {
        font-size: 16px;
    }

    .jv-product-information-section {
        gap: 15px;
    }

    .jv-section-icon {
        width: 45px;
        height: 45px;

        min-width: 45px;
    }

    .jv-quality-section {
        padding: 30px 20px;
    }

    .jv-quality-section h2 {
        font-size: 24px !important;
    }

}