body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f8f9fa;
}

/* Container 80% width desktop */
.container-80 {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

/* Row wrapper for cards */
.product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Single Card */
.product-card {
    flex: 1 1 calc(50% - 10px); /* 2 cards per row desktop */
    display: flex; /* horizontal split */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px; 
    align-items: stretch; /* equal height */
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Card left image/video */
.product-card img,
.product-card video {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-card img:hover,
.product-card video:hover {
    transform: scale(1.05);
}

/* Card right content */
.product-card-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* text upar rahe */
    align-items: flex-start;     /* text left aligned */
}

.product-card-content p {
    font-size: clamp(12px, 1.5vw, 16px);
    color: #555;
    margin-bottom: 10px;
}
.product-card-content ul {
    font-size: clamp(10px, 1.2vw, 14px);
    color: #555;
    padding-left: 18px;
    margin: 0;
}
.product-card-content ul li {
    margin-bottom: 6px;
    position: relative;
}
.product-card-content ul li::before {
    content: "✔";
    color: #f664ad;
    margin-right: 6px;
}

/* Product title box */
.product-title {
    background: #f664ad;
    padding: clamp(8px, 2vw, 16px) clamp(12px, 3vw, 20px);
    margin-bottom: 12px;
    width: 109%;
    display: flex;
    justify-content: flex-start;  /* left aligned */
    align-items: center;          /* vertical center */
    text-align: left;             /* text left aligned */
    border-top-left-radius: 10px;  /* top-left corner */
    border-bottom-left-radius: 10px; /* bottom-left corner */
    border-top-right-radius: 0;   /* right top corner 0 */
    border-bottom-right-radius: 0; /* right bottom corner 0 */
    text-transform: uppercase;
    height: 65px;

}
.dishwash-title {
    background: #ecb803; /* alag color */
}   
.toilet-title {
    background: #2030c1; /* alag color */
}
.liquid-title {
    background: #ec15a6; /* alag color */
}
.white-title {
    background: #7ea1b9; /* alag color */
}
.bathroom-title {
    background: #db216c; /* alag color */
}
.cuff-title {
    background: #323639; /* alag color */
}
.floor-title {
    background: #cd9f67; /* alag color */
}
.supremo-title {
    background: #c12752; /* alag color */
}
.thela-title {
    background: #d88893; /* alag color */
}


.product-title h2 {
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;

}

/* call Now button */
.call-btn {
    margin-top: 10px;           
    align-self: center;         
    padding: 2px 8px;
    background: #fff;           
    color: #a2999d;             
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: none;   /* hover/click transition disable */
    margin-bottom: 0px;
}
/* Buy Now button */
.buy-btn {
    margin-top: auto;           
    align-self: center;         
    padding: 2px 8px;
    background: #fff;           
    color: #f664ad;             
    border: 2px solid #f664ad;   
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: none;   /* hover/click transition disable */
    margin-bottom: 0px;
}

/* Hover pe koi effect nahi */
.buy-btn:hover {
    background: #fff;
    color: #f664ad;
    border: 2px solid #f664ad;
}

/* Mobile / click pe black border avoid (focus & active reset) */
.buy-btn:active,
.buy-btn:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #f664ad;
    background: #fff;
    color: #f664ad;
}


.table-bordered {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border: 1px solid #000;

}

.table-bordered th,
.table-bordered td {
    border: 1px solid #000;
    padding: 2px 4px;   /* kam padding → kam height */
    text-align: center;
    font-size: 8px;    /* font chhoti kar di */
    line-height: 1.2;   /* aur height control ke liye */
}

.table-bordered th {
    background-color: #8e8787ff;
    font-weight: bold;
    color: #fff;
}
.store-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;  
    margin-top: 18px;
}

.store-title p {
    margin: 0 0 8px 0; 
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.store-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    padding-left: 18px; 
    margin-bottom: 15px;
}

.store-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-icon:hover {
    transform: scale(1.1);
}


/* Mobile view: full width container & card */
@media (max-width: 768px) {
    .container-80 {
        width: 100%;
        padding: 20px;
    }

    .product-card {
        flex: 1 1 100%; /* full width */
        min-height: 300px;
        flex-direction: row; /* horizontal split */
    }

    .product-card img,
    .product-card video {
        width: 50%; /* adjust for mobile */
        height: auto;
    }

    .product-card-content {
        width: 50%;
        padding: 10px;
    }
}

h4, .h4 {
    font-size: calc(1.0rem + 0.3vw);
    font-weight: bold;
}

/* Extra small devices 300px - 450px */
@media (max-width: 450px) {
    .product-card-content h2 {
        font-size: clamp(12px, 4vw, 18px);
    }
    .product-card-content p {
        font-size: clamp(10px, 2.5vw, 14px);
    }
    .product-card-content ul {
        font-size: clamp(9px, 3vw, 12px);
    }
}

/* Common header style */
.table-bordered th {
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* Dishwash */
.dishwash-title,
.dishwash-title + p + table th {
    background: #dcb603;
}

/* Toilet Cleaner */
.toilet-title,
.toilet-title + p + table th {
    background: #1825af;
}

/* White Surface Phenyl */
.white-title,
.white-title + p + table th {
    background: #ff3131;
}

/* Bathroom Cleaner */
.bathroom-title,
.bathroom-title + p + table th {
    background: #cd1e61;
}

/* Floor Cleaner */
.floor-title,
.floor-title + p + table th {
    background: #e4c02f;
}

/* Liquid Detergent */
.liquid-title,
.liquid-title + p + table th {
    background: #fe409c;
}

/* Cuff & Collar */
.cuff-title,
.cuff-title + p + table th {
    background: #000000;
}

/* Supremo */
.supremo-title,
.supremo-title + p + table th {
    background: #ca244d;
}

/* Combo Kit / Bag */
.thela-title,
.thela-title + p + table th {
    background: #ff66c4;
}

 

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .call-box a {
    font-size: 14px;   /* text छोटा करें */
    padding: 6px 12px; /* padding छोटा करें */
    width: 80%;        /* almost full width, center automatically */
    margin: 10px auto; /* horizontally center करें */
  }
}
