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



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


    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0px;
        height: 80px;
        width: 104%;
        background: #ffffff;
        z-index: 1000;
    }

    .nav-container {
        height: 100%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo img {
        height: 155px;
        margin-left: -80px;
        width: auto;
        object-fit: contain;
    }

    .nav-container a {
        text-decoration: none;
    }

    .search-box {
        display: flex;
        width: 40%;
        min-width: 250px;
        margin-left: -150px;
    }

    .search-box input {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-right: 0;
        border-radius: 5px 0 0 5px;
        font-size: 14px;
    }

    .search-box button {
        padding: 8px 15px;
        border: none;
        background: #0066cc;
        color: white;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 14px;
    }

    .phone-btn {
        background: #0066cc;
        padding: 10px 18px;
        color: white;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        margin-left: -150px;
    }





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


    .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;
    }
















    /* FOOTER */
    .footer {
        background: #353434ff;
        padding: 10px 0;
        color: #fff
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        display: flex;
        gap: 60px;
        padding-right: 500px;
    }


    .footer-logo {
        display: flex;
        align-items: flex-start;
    }



    .footer-logo img {
        width: 180px;
        height: auto;
        object-fit: contain;
        margin-top: 0;
        margin-left: -50px;
    }


    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 10px;
        color: #fff;
        font-weight: 600;
        white-space: nowrap;
    }


    .footer-column a {
        color: #ccc;
        font-size: 14px;
        display: block;
        margin: 4px 0;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-social {
        display: flex;
        gap: 20px;
        font-size: 22px;
    }


    .footer-social {
        display: flex;
        gap: 20px;
        font-size: 22px;

    }

    .footer-social a {
        color: #fff;
        text-decoration: none;
        transition: 0.3;

    }









    
/* ===========================================
   RESPONSIVE CLEANED VERSION (NO DUPLICATION)
=========================================== */

/* ======== 768px BELOW (Tablet + Mobile) ======== */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        height: 70px;
        width: 100%;
    }

    .nav-container {
        padding: 0 10px;
        gap: 8px;
    }

    .logo img {
        height: 85px;
        margin-left: -10px;
    }

    .search-box {
        width: 55%;
        margin-left: 0;
    }

    .search-box input {
        font-size: 13px;
        padding: 7px 10px;
    }

    .search-box button {
        font-size: 12px;
        padding: 7px 12px;
    }

    .phone-btn {
        padding: 7px 12px;
        font-size: 12px;
        margin-left: 0;
        white-space: nowrap;
    }

    /* BANNER */
    .banner-container {
        width: 95%;
        margin-top: 10px;
    }

    .slider-img {
        height: 100px;
        object-fit: contain !important;
    }

    .arrows {
        padding: 6px 10px;
        font-size: 20px;
    }

    
    /* FOOTER */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-logo img {
        margin: auto;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        padding-right: 0;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
    }
}



/* ======== 480px BELOW (Small Mobile) ======== */
@media (max-width: 480px) {

    /* ONLY EXTRA OVERRIDES — NO DUPLICATES */

    .navbar {
        height: 58px !important;
    }

    .nav-container {
        padding: 0 5px !important;
        gap: 5px !important;
    }

    .logo img {
        height: 40px !important;
        margin-left: 0 !important;
    }

    .search-box {
        width: 95px !important;
        min-width: 95px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .search-box input {
        padding: 3px 4px !important;
        font-size: 9.5px !important;
    }

    .search-box button {
        padding: 3px 5px !important;
        font-size: 9px !important;
    }

    .phone-btn {
        padding: 4px 5px !important;
        font-size: 9.5px !important;
        margin-right: 10px !important;
    }
}


/* ===========================================
   PRODUCT CARDS — ALWAYS 2 PER ROW RESPONSIVE
=========================================== */

/* Tablet + Mobile (1024px below) */
@media (max-width: 1024px) {

    .product-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    .product-card {
        width: 45% !important;   /* 2 cards in one row */
        margin-left: 0 !important;
    }

    .product-card img {
        height: 140px !important;
    }
}

/* Small Mobile (480px below) */
@media (max-width: 480px) {

    .product-row {
        padding: 10px 0 !important;
        gap: 15px !important;
    }

    .product-card {
        width: 47% !important;  /* 2 cards per row even in small mobile */
    }

    .product-card img {
        height: 120px !important;
    }
}
