﻿
body {
    background: #f5f6f8;
}

/* LEFT CONTENT */
.left-content .section-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

/* RIGHT FIXED CARD */
.sticky-card {
    position: sticky;
    top: 20px;
}
/* Price Box CARD */
.price-box {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
}

.feature-row {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.imageHW {
    height: 100px;
    width: 100px;
}
/* Image hover for Big Image */
.img-hover-container {
    width: 150px;
    overflow: visible;
    position: relative;
}

    .img-hover-container img {
        width: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: zoom-in;
    }

    .img-hover-container:hover img {
        transform: scale(2);
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,.3);
    }

/* Inclusion Not Inclision */
.allowed::before {
    content: "✔ ";
    color: green;
    font-weight: bold;
}

.disallowed::before {
    content: "✖ ";
    color: red;
    font-weight: bold;
}

.policy::before {
    content: "📌 ";
    margin-right: 6px;
}

.row-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/* Sequence number — square pink box */
.seq {
    min-width: 56px;
    height: 46px;
    background-color: #E91E63; /* pink */
    color: #ffffff;
    border-radius: 6px; /* square with slight rounding */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
}

/* Content — rounded light pink box */
.content {
    background-color: #FCE4EC; /* light pink */
    border-radius: 10px; /* round/pill shape */
    padding: 12px 18px;
    flex: 1;
}

.price::before {
    content: "₹";
    margin-right: 2px;
}


.check-paragraph {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
    font-size: 16px;
}

.check-paragraph::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #20c997; /* Teal */
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 14px;
}


