html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}


.btn-teal {
    background: #006d6f;
    color: #fff;
    border-radius: 8px;
}

.btn-teal:hover {
    background: #005456;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card img {
    height: 200px;
    border-radius: 10px;
    object-fit: contain;
}

/* PRICE */
.price {
    color: #008080;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 5 CARDS PER ROW RESPONSIVE */
@media (max-width: 1200px) {
    .col-5-custom {
        width: 25%;
        max-width: 1200px;
    }
}


@media (max-width: 576px) {
    .col-5-custom {
        width: 50%;
    }
}

/* SPECS */
.specs {
    padding-left: 18px;
    font-size: 14px;
}

.specs li {
    margin-bottom: 4px;
}

.view-all {
    text-decoration: none;
    font-weight: 600;
}

/* VIDEO GRID */
.video-slide {
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

/* PRODUCT CATEGORIES */
.col-category {
    width: 12.5%;
}

.category-image-sm {
    width: 95px;
    height: 95px;
    margin: 0 auto 6px;
    border-radius: 50%;
    border: 2px solid rgb(16, 16, 236);   /* ✅ Correct way */
    background: #f3f6fa;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
} 

.category-image-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title-sm {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

.category-card:hover .category-image-sm {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}


@media (max-width: 576px) {
 /*   .col-category {
        width: 50%;
    }
  */   

   .col-category {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 6px;
    }

    .category-image-sm {
        width: 75px;
        height: 75px;
    }

    .category-title-sm {
        font-size: 10px;
    }  
}

/* WHY CHOOSE US */
.why-choose-us {
    background: #f8f9fb;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.why-list .why-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
}

.why-list span {
    color: #008080;
    font-weight: bold;
    font-size: 18px;
}

.why-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

.why-card h3 {
    color: #9de9e9;
    font-size: 34px;
    font-weight: 700;
}

.why-card:hover {
    transform: translateY(-6px);
}

.col-5 {
    flex: 0 0 20%;
    max-width: 20%;
}


@media (max-width: 992px) {
    .col-category {
        width: 25%;
    }

    .col-5 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    
    .col-5-custom {
        width: 33.33%;
    }

}


@media (max-width: 576px) {
        .col-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }}
    /*
   .col-5 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 6px;
    }

    .product-card {
        padding: 4px;
    }

    .product-card img {
        height: 150px;
    }

    .product-title {
        font-size: 14px;
        min-height: 40px;
    }

    .btn-teal {
        font-size: 14px;
        padding: 6px;
    }

 */

/* ---------  Horizontal Product Card --------- */

.col-10-custom {
    flex: 0 0 33%;
    max-width: 33%;
}
*/
/* FORCE HORIZONTAL ALWAYS */
.product-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    height: 100%;
}

/* LEFT IMAGE */
.product-card-horizontal .product-img {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-card-horizontal .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT BODY */
.product-card-horizontal .product-body {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* SPECS */
.spec-list {
    padding-left: 0;
    list-style: none;
    font-size: 13px;
    margin: 0;
}

.spec-list li {
    margin-bottom: 3px;
}

/* MOBILE ONLY */
@media (max-width: 576px) {
    .product-card-horizontal {
        flex-direction: column !important;
    }

    .product-card-horizontal .product-img {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        
    }

    .product-card-horizontal .product-body {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.links-txt{
 color:#045a5a;
 text-decoration:none; 
 font-size: 18px;
 font-weight: 600;
}

/* 2 Line Ellipsis for Product Title */
.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;           /* Keeps card height consistent */
    line-height: 1.3;
}