﻿/* ===== KavachAV GLOBAL STYLES ===== */
:root {
    --KavachAV-blue: #1e5ec7;
    --KavachAV-blue-dark: #154a9f;
    --KavachAV-gray-bg: #f8fafc;
    --KavachAV-text-dark: #1e293b;
    --KavachAV-text-medium: #334155;
    --KavachAV-text-light: #64748b;
    --KavachAV-border: #e9ecef;
    --KavachAV-gray-light: #f1f5f9;
    --KavachAV-award-bg: #d7d7d9;
    --KavachAV-promise-bg: #F2F2F0;
}

/* ===== PRODUCT HERO SECTION ===== */
.c-prodhero {
    position: relative;
    width: 100%;
}

.c-prodhero__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

    .c-prodhero__wrap.img-right {
        flex-direction: column;
    }

.c-prodhero__img-sec {
    width: 100%;
    line-height: 0;
}

.c-prodhero__picture {
    display: block;
    width: 100%;
}

.c-prodhero__picture__img {
    width: 100%;
    height: 100%;
/*    object-fit: cover;*/
    border-radius: 16px;
}

.c-prodhero__content {
    flex: 1;
    padding: 0 20px;
}

.c-prodhero__title {
    margin-bottom: 16px;
}

.c-prodhero__title__size-44 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--KavachAV-text-dark);
}

.c-prodhero__title__size-36 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--KavachAV-text-dark);
}

.c-prodhero__subtitle {
    margin-bottom: 24px;
}

    .c-prodhero__subtitle p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--KavachAV-text-medium);
        margin-bottom: 16px;
    }

/* Product pricing toggle */
.t-toggle {
    /*    background: var(--KavachAV-gray-light);*/
    background: #121212;
    border-radius: 40px;
    padding: 4px;
    display: inline-block;
    margin-bottom: 20px;
    width: auto;
    min-width: 200px;
}

.t-toggle__rgroup {
    display: flex;
    border: none;
    position: relative;
}

.t-toggle__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.t-toggle__radio-label {
    flex: 1;
    text-align: center;
    /*    padding: 4px 8px;*/
    font-size: 18px;
    font-weight: 600;
    /*    color: var(--KavachAV-text-light);*/
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    z-index: 2;
    position: relative;
}

.t-toggle__radio:checked + .t-toggle__radio-label {
    background: white;
    /*    color: var(--KavachAV-blue);*/
    color: #121212;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.c-prodhero__pricecont {
    margin-bottom: 5px;
}

.c-prodhero__discprice {
    font-size: 28px;
    font-weight: 800;
    color: var(--KavachAV-text-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.c-prodhero__sale-after {
    font-size: 14px;
    color: var(--KavachAV-text-light);
    font-weight: 400;
    margin-left: 4px;
}

.c-prodhero__ctawrap {
    margin: 20px 0;
}

.c-prodhero__cta {
    display: inline-block;
    width: auto;
    min-width: 200px;
}

.c-prodhero__note {
    font-size: 13px;
    color: var(--KavachAV-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

    .c-prodhero__note a {
        color: var(--KavachAV-blue);
        text-decoration: none;
        font-weight: 500;
    }

        .c-prodhero__note a:hover {
            text-decoration: underline;
        }

.c-prodhero__devicecnt {
    font-size: 14px;
    color: var(--KavachAV-text-medium);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--KavachAV-border);
}

.c-prodhero__osimgcont {
    margin-top: 20px;
}

.c-prodhero__osimg {
    max-width: 100%;
    height: auto;
}

/* Desktop product hero */
@media (min-width: 768px) {
    .c-prodhero__wrap {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

        .c-prodhero__wrap.img-right {
            flex-direction: row-reverse;
        }

    .c-prodhero__img-sec {
        flex: 1;
    }

    .c-prodhero__content {
        flex: 1;
        padding: 0;
    }

    .c-prodhero__title__size-44 {
        font-size: 42px;
    }

    .c-prodhero__title__size-36 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .c-prodhero__title__size-44 {
        font-size: 48px;
    }

    .c-prodhero__title__size-36 {
        font-size: 42px;
    }
}
