body {
    margin: 0;
    padding-top: 3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f7f7;
    overflow-x: hidden !important;
  }



  .product-row::-webkit-scrollbar {
    display: none !important;
  }


  

  

/* Main wrapper */
    .main-wrapper {
        width: 97%;
        margin: 30px auto;
        background: #0a606a;
        padding-bottom: 0px;
        border-radius: 10px;
        padding: 0;
        margin-top: 75px;
    }


    .awning {
        width: 100%;
        height: 1px;
        background: #29a5b4;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .awning div {
        width: 120px;
        height: 60px;
        background: #054e57;
        border-radius: 0 0 60px 60px;
    }

    .heading {
        text-align: center;
        color: white;
        font-size: 30px;
        font-weight: 400;
        margin: 5px 0;
        position: relative;
        top: 20px;
    }

    /* SLIDER */
    .banner-container {
        width: 96%;
        margin: auto;
        border-radius: 5px;
        overflow: hidden;
        position: relative;
    }

    .slider-img {
        width: 100%;
        height: 290px;
        object-fit: contain !important;
        display: none;
    }

    .active-slide {
        display: block;
    }

    /* arrows */
    .arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        background: rgba(0, 0, 0, 0.4);
        color: white;
        padding: 10px 15px;
        font-size: 24px;
        border-radius: 5px;
        user-select: none;
    }

    .left-arrow {
        left: 2px;
    }

    .right-arrow {
        right: 2px;
    }























    /* Product Card 1 */


    .product-row {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px 15px;
    }

    .product-card {
        width: 18%;
        /* min-height: 320px;     
    /* background: #fff; */
        border-radius: 8px;
        padding: 0 0 20px;
        margin-left: 10px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .product-card img {
        width: 95%;
        height: 120px;
        object-fit: contain;
        border-radius: 12px;
    }

    .product-card h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 12px 0;
        line-height: 21px;
        padding: 0 8px;
    }

    .price-box {
        margin-bottom: 10px;
        padding: 0 8px;
    }

    .price {
        font-size: 18px;
        font-weight: 700;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        margin-left: 8px;
        font-size: 15px;
    }

    .cart-btn {
        width: 100%;
        padding: 10px 0;
        border: none;
        background: #0D6EFD;
        color: #fff;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
    }






