.container-fluid {
    padding: 0 100px;
}
.topHeader {
    background-color: #1aada3;
}

.searchDiv .input-group input::placeholder {
    color: #000;
    font-size: 14px;
    font-weight: 200;
}
.header {

            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
.hAmout {
    margin-left: 13px;
    font-size: 14px;
}
 .pageViewContentHrere p {
    font-weight: 200;
    margin-bottom: 20px;
}
.nav-menu {
    margin-top: 20px;
}
        .nav-item {
            position: relative;
                display: inline-block;
        }

        .nav-link {
            color: #000;
            text-decoration: none;
            padding: 15px 8px;
            display: flex;
            align-items: center;
                font-weight: 200;
                font-size: 12px;
                    text-transform: uppercase;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link:hover {
       
            color: #1aada3;
            transform: translateY(-2px);
        }

    

        .nav-link:hover::before {
            left: 100%;
        }

        .dropdown-arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
               color: #000;
                font-weight: 200;
                font-size: 14px;
                text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 5px;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item:hover {
            color: #1aada3;
            transform: translateX(5px);
        }


        .dropdown-item:hover::before {
            width: 100%;
        }

        .blog-dropdown {
            min-width: 250px;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

      

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 10px 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                margin-top: 10px;
            }

            .hero-title {
                font-size: 36px;
            }
        }








/* Overlay Background */
.popup-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    border-radius: 10px;
    width: 100%;
    margin: 15px;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.4s ease-in-out;
}
.popup-content img{
    width: 100%;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Button Style */
#okBtn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#okBtn:hover {
    background: #0056b3;
}

/* Popup Animation */
@keyframes popupFade {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}












 .search-container {
            position:relative;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 25px;
            transition: all 0.3s ease;
            overflow: hidden;
            width: 35px;
            height: 35px;
        }

        .search-wrapper.expanded {
            width: 300px;
            background: #ffffff;
            border: 2px solid #007bff;
            box-shadow: 0 4px 12px rgba(0,123,255,0.15);
        }

        .search-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
            flex-shrink: 0;
            z-index: 2;
        }

        .search-wrapper.expanded .search-icon {
            color: #007bff;
        }

        .search-input {
            border: none;
            outline: none;
            background: transparent;
            width: 0;
            padding: 0;
            font-size: 14px;
            color: #333;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .search-wrapper.expanded .search-input {
            width: calc(100% - 70px);
            padding: 8px 15px 8px 0;
            opacity: 1;
        }

        .search-input::placeholder {
            color: #999;
        }

        .close-btn {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #999;
            opacity: 0;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .search-wrapper.expanded .close-btn {
            opacity: 1;
        }

        .close-btn:hover {
            color: #ff4757;
        }


















.topHeaderRight ul li {
    display: inline-block;
}

.topHeaderRight ul li a {
    font-size: 14px;
    display: block;
    color: #000;
}
.topheaderLeft p {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    margin: 0;
    font-size: 14px;
}
.topheaderLeft p a {
    color: #fff;
}

.topHeaderRight ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.homeCtg {
    background: #f7f7f7;
    padding: 10px 0;
    margin-top: 10px;
}


.homeTopEventText {
    background: #E0F7FA;
    padding: 10px;
    margin-top: 10px;
}

.homeTopEventText p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}




.productBox img {
    width: 100%;
        border-radius: 8px;
            transition: 0.5s all;
}

.productBox {
    display: block;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    color: #000;
    margin-bottom: 20px;
}
.productBox:hover img {
    transform: scale(1.1);
}
.newArvialProduct {
    margin-top: 10px;
}
.sectionHead {background: #fcf4e9;padding: 30px;text-align: center; margin-bottom: 10px;}

.sectionHead h2 {
    margin: 0;
    color: #cc8119;
}

.productBadge {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top: -1px;
}

.productBadge span {
    font-size: 12px;
    background-color: #ffff;
    text-align: center;
    padding: 8px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.homeProudctLeft img {
    width: 100%;
}

.homeProudctGrid img {
    width: 100%;
    transition: 0.5s all;
    border-radius: 8px;
}
.homeProudctGrid:hover img {
    transform: scale(1.1);
}
.homeProudctGrid {
    position: relative;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}

.homeProductBadge {
    position: absolute;
    bottom: -6px;
    text-align: center;
    width: 100%;
}

.homeProductBadge span {
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    color: #000;
}

.homeProudctLeft {
    display: block;
    position: relative;
}

.homeCgtTitle {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.homeCgtTitle span {
    text-align: center;
    font-size: 24px;
    color: #fff;
    z-index: 999;
    padding: 3px 0;
}

.homeProduct {
    padding-bottom: 50px;
}

.homeLeargeCtg .homeProudctLeft {
    margin: 40px 0;
}
.homeFevricRight img {
    width: 100%;
}

.homeFavric {
    padding-bottom: 50px;
    padding-top: 10px;
}

.homeFevricLeft h1 {
    font-weight: 300;
    margin-bottom: 18px;
}

.homeFevricLeft h6 {
    font-weight: 400;
}

.homeFevricLeft p {
    font-weight: 200;
    margin-top: 10px;
}


.footerTopGrid img {
    width: 100%;
}

.footerTopGrid {
    text-align: center;
}

.footerTop {
    background: #f3f3f3;
    padding: 50px 0;
}

.footerTopGrid i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.footerTopGrid h4 {
    font-weight: 300;
    color: #444;
    padding-bottom: 10px;
}
.emailSubscirbeMain {
    background-color: #37383f;
    padding: 50px 0;
}
.emailSubscirbeMain .form-control {
    background: unset;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #bbbaba;
}
.emailSubscirbeMain .input-group-text {
    background-color: #f0ad4e;
    color: #fff;
    border: none;
    border-radius: 0;
    display: block;
}
.emailSubscribeLeft h5 i {
    color: #dab90a;
}
.emailSubscribeLeft h5 {
    color: #fff;
}
.emailSubscribeRight h5 i {
    color: #f0ad4e;
}

.emailSubscribeRight h5 {
    color: #fff;
}
.emailSubscribeRight p {
    color: #6c747b;
}

.productCtgGrid img {
    width: 100%;
}

.productCtgGridInfo {
    text-align: center;
    height: 120px;
}


.productCtgGrid button {
    border: none;
    background-color: #000;
    color: #fff;
    display: block;
    width: 100%;
    padding: 5px;
    display: block;
    transition: 0.5s all;
}

.productCtgGrid:hover button {
    background-color: red;
    color: #fff;
}

.productCtgGrid {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0px 0px 5px 3px #efefef;
    position: relative;
    transition: 0.5s all;
}
.productCtgGrid:hover {
    border: 1px solid #e15608;
}


.saleBadge {
    position: absolute;
    top: 0;
    right: 0;
}

.saleBadge span {
    display: block;
    background-color: #f44336;
    color: #fff;
    padding: 2px 15px;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.productCtgGridInfo h6 {
    color: #000;
    font-size: 16px;
    margin: 0;
    padding: 5px 0;
    overflow: hidden;
    height: 45px;
}

.discountAmout span {
    background-color: #000;
    color: #fff;
    padding: 1px 5px;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 10px;
}

.productPrice {
    color: #000;
    margin-bottom: 10px;
}

.productPrice del {
    color: red;
    font-size: 14px;
}
.productCategoryMain {
    padding-top: 30px;
}

.categorySearch .form-control {
    border-radius: 0;
}

.categorySearch .input-group-text {
    border-radius: 0;
}
.singlePrductInfoGrid h3 {
    font-weight: 300;
}


  .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 80%;
      width: 100%;
    }

    .mySwiper {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }




  .color-selector {
    display: flex;
    gap: 10px;
    margin-top: 0px;
  }

  .color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: transform 0.2s, border 0.2s;
  }

  .color-option.active {
    border: 4px solid #000;
    transform: scale(1.1);
  }

  .color-label {
    margin-top: 20px;
    font-size: 18px;
  }
  
  .size-selector {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    
    .size-selector .size-option {
        min-width: 60px;
        height: 30px;
        cursor: pointer;
        border: 1px solid #ccc;
        transition: transform 0.2s, border 0.2s;
        text-align: center;
    }
    
    .size-option.active {
        background: black;
        color: white;
        border-color: black;
    }

.productSelector {
    margin-bottom: 10px;
}

.productCallOrder .btn {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
}
.productCallOrder .btn i {
    font-size: 20px;
}
.emailSubscribeRight {
    text-align: center;
}



.filter-section ul {
    padding: 10px;
}

.filter-section ul .lavel2 {
    margin-left: 15px;
}

.filter-section .ctgItem {
    display: flex;
    margin-bottom: 5px;
}


 .breadcrumb-container {
    background: #5966ac;
    color: #fff;
    border-radius: 0px;
    padding: 0px 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

       .breadcrumb {
            display: flex
        ;
            align-items: center;
            margin: 0;
        }

        .breadcrumb-item {
                color: #fff;
            font-size: 12px;
            font-weight: 200;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb-item:hover {
            color: #2563eb;
            cursor: pointer;
        }

        .breadcrumb-item.active {
            color: #fff;
            font-weight: 600;
        }

        .breadcrumb-separator {
            margin: 0 8px;
            color: #fff;
            font-size: 14px;
        }

        .clear-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

       
        .clear-btn:hover .cross-icon {
            color: #ef4444;
        }

        .cross-icon {
            width: 16px;
            height: 16px;
            color: #fff;
            transition: color 0.2s ease;
            font-size: 18px;
            font-weight: bold;
            line-height: 1;
        }

        .empty-state {
            color: #999;
            font-size: 14px;
            font-style: italic;
            display: none;
        }

        .breadcrumb.hidden {
            display: none;
        }
.contactInfo {
    padding: 20px;
    box-shadow: 0 0 5px #e1d8d8;
}
.contaictUsForm {
    border: 1px solid #f7f7f7;
    padding: 20px;
}
.contaictUsForm h5 {
    margin-bottom: 10px;
}
.headerMidPart {
    border-bottom: 1px solid #f4f4f4;
}
/*category sidber fillter*/

.filter-sidebar {
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 0;
            overflow: hidden;
            /*max-width: 320px;*/
        }
        
        .filter-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 20px;
            
        }
        
        .filter-header h5 {
            margin: 0;
            font-weight: 600;
            font-size: 16px;
        }
        
        .filter-section {
            border-bottom: 1px solid #e9ecef;
        }
        
        .filter-section:last-child {
            border-bottom: none;
        }
        
        .section-header {
            padding: 18px 20px;
            background: #fafbfc;
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: #495057;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .section-header:hover {
            background: #f1f3f4;
            color: #667eea;
        }
        
        .section-header::after {
                content: "\f107";
                font-family: "FontAwesome";
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }
        
        .section-header[aria-expanded="true"]::after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .section-content {
            padding: 0 20px 20px 20px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px 0;
            transition: all 0.2s ease;
        }
        
        .filter-option:hover {
            background: rgba(102, 126, 234, 0.05);
            border-radius: 6px;
            padding-left: 8px;
            padding-right: 8px;
        }
        
        .form-check-input {
            border: 2px solid #dee2e6;
            border-radius: 4px;
            width: 18px;
            height: 18px;
            margin-right: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            
        }
        
        .form-check-input:checked {
            background-color: #667eea;
            border-color: #667eea;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }
        
        .form-check-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .form-check-label {
            color: #000;
            font-weight: 500;
            cursor: pointer;
            margin: 0;
            font-size: 14px;
            flex: 1;
            display: flex;
        }
        
        .subcategory {
            margin-left: 30px;
            position: relative;
        }
        
        .subcategory::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            width: 12px;
            height: 1px;
            background: #dee2e6;
        }
        
        .filter-actions {
            padding: 20px;
            background: #fafbfc;
            border-top: 1px solid #e9ecef;
        }
        
        .btn-clear {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border: none;
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-clear:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
            color: white;
        }
        
        .product-count {
            color: #6c757d;
            font-size: 12px;
            margin-left: auto;
            padding: 2px 8px;
            background: #e9ecef;
            border-radius: 12px;
        }
        
    
        
        /* Animation for collapse */
        .collapse {
            transition: height 0.35s ease;
        }
        
        
        
        .relatedGrid .homeProductBadge {
            position: absolute;
            bottom: 35px;
        }
                .relatedGrid button {
                width: 100%;
                background-color: #000;
                color: #fff;
                border: none;
                padding: 3px;
            }
        
   

    .topHeaderRight ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        font-family: Arial, sans-serif;
    }

    .topHeaderRight ul li {
        position: relative;
    }

    .topHeaderRight ul li a {
        display: block;
        text-decoration: none;
        color: #fff;
        padding: 10px 15px;
        font-size: 14px;
        transition: 0.3s;
    }

    .topHeaderRight ul li a:hover {
        background-color: #000;
        color: #fff;
    }

    /* Dropdown Menu */
    .topHeaderRight ul li .dropdown1 {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        min-width: 180px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        z-index: 999;
    }

    .topHeaderRight ul li .dropdown1 a {
        display: block;
        padding: 10px 15px;
        color: #333;
        font-size: 14px;
        transition: background-color 0.3s;
        border-bottom: 1px solid #f1f1f1;
    }

    .topHeaderRight ul li .dropdown1 a:hover {
        background-color: #000;
        color: #fff;
    }

    .topHeaderRight ul li:hover .dropdown1 {
        display: block;
    }
        
        
        .mobileTopHeaderLeft img {
            width: 64px;
            margin-left: 20px;
        }
        .mobileTopHeaderLeft {
            display: flex
        ;
            align-items: center;
        }
        
        .mobileTopHeaderRight ul li {
            display: inline-block;
        }
        
        .mobileTopHeaderRight ul li a {
            color: #000;
        }
                
        .mobileTopHeader {
            background-color: #fff;
            position: fixed;
            top: 0px;
            width: 100%;
            z-index: 999;
            padding: 5px 0;
            display: none;
        }
        
        
        .mobileTopHeaderRight ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.mobileTopHeaderRight ul li {
    position: relative;
}

.mobileTopHeaderRight ul li a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 5px;
}

.mobileTopHeaderRight ul li a:hover {
    color: #000;
}

/* Dropdown Menu */
.mobile-dropdown {
    display: none;
    position: absolute;
    top: 49px;
    right: 0;
    background-color: #000;
    width: 180px;
    overflow: hidden;
    z-index: 1000;
}

.mobile-dropdown a {
    display: block !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    color: #fff !important;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-dropdown a:hover {
    background-color: #000;
    color: #fff;
}

.updwonArrow {
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    color: #333;
}

.rotate-arrow {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.category-box a {
    color: #000;
}
.relatedGrid img {
    border-radius: 0;
}
a.btn.btn-block.btn-dark.btn-icon-right.btn-rounded.btn-checkout {
    border-radius: 0;
}
.checkOut h4 {
    font-weight: 300;
}
.checkOut label {
    font-weight: 300;
}
.checkOut .form-control::placeholder {
    font-weight: 300;
    font-size: 14px;
}
.custom_select .form-control {
    font-weight: 300;
    font-size: 14px;
}
.order_review h4 {
    font-weight: 300;
}

.shop-table thead tr th {
    font-weight: 300;
}




    /* Mobile responsiveness */
        @media (max-width: 768px) {
            .productCallOrder .btn {
                margin-bottom: 8px;
                padding: 8px 20px;
            }
            .productCtgGridInfo{
                height: 100px;
            }
            .dashboardArea .nav-tabs {
                display: none;
            }
            .mobileTopHeader {
                display: block;
                box-shadow: -7px -5px 9px 0px;
            }
            .productCategoryMain {
                padding-top: 80px;
            }
            .productCtgGridInfo h6{
                font-size:12px;
                height: 34px;
            }
            .rowContain {
                margin: 0 -5px;
            }
            
            #wowslider-container1{
                margin-top: 55px;
            }
            
            .dashboardArea {
                padding-top: 50px;
            }
            
            .rowContain .col-6 {
                padding: 5px;
            }
            .productCtgGrid button{
                font-size: 14px;
                padding:3px;
            }
            
            .homeProudctLeft {
                margin-bottom: 20px;
            }
            .headerMidPart {
                display: none;
            }
            .filter-sidebar {
                max-width: 100%;
            }
            .container-fluid {
                padding: 0 15px;
            }
            .topHeader {
                display: none;
            }
            .SingleProcutprice span {
                font-size: 14px !important;
            }
            .singlePrductInfoGrid h3 {
                font-size: 20px;
            }
            .productCategorySideBar {
                display: none;
            }
            .emailSubscribeLeft {
                margin-bottom: 24px;
            }
            
            .emailSubscribeLeft h5 {
                font-size: 15px;
            }
            
            .emailSubscribe {
                margin-top: 10px;
            }
            
            .emailSubscribeRight h5 {
                font-size: 15px;
            }
            .footerTopGrid {
                margin-bottom: 20px;
            }
            .footerMainPart {
                padding: 20px 0;
            }
            .orderSummryTable table tbody tr td {
                font-size: 14px;
            }
            
                                    
            
            
            
        }






