.isMobile .bg-green{
    padding: 10px !important;
}

.isMobile .mobileUl, .isMobile .hideMobile, .isMobile .stats-container .storeDesc, .isMobile .stats-container .d-block, .isMobile .stats-container .cvp, .isMobile .hideMobile{
    display: none !important;
}
.isMobile .footerWeb .pt-5{
    padding-top: 1rem !important;
}
.isMobile .header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.isMobile .header-icons i {
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.isMobile .header-icons i:hover {
    color: #fff;
    background-color: #0d6efd; /* Bootstrap primary */
    transform: translateY(-2px);
}

/* Optional: active / highlight (wishlist) */
.isMobile .header-icons .fa-heart {
    color: #dc3545;
}

.isMobile .header-icons .fa-heart:hover {
    background-color: #dc3545;
    color: #fff;
}
.isMobile .container-fluid-custom {
    width: 100% !important;
    margin: 0px !important;
}
.isMobile .side-images {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.isMobile .side-images img{
    width: 32%;
    height: 100px;
    /* border-radius: 50%; */
    object-fit: unset;
    /* border: 2px solid #e9ecef; */
    margin: 0px;
}

.isMobile .heading-title {
    font-size: 15px !important;
    letter-spacing: 1px;
}
.isMobile .main-slider .slick-prev, .isMobile .main-slider .slick-next{
    width: 30px;
    height: 30px;
}
.isMobile .main-slider .slick-slide .slide-image {
    height: 230px !important;
}
.isMobile .slick-list.draggable {
    padding: 0px 10px !important;
}
.isMobile .ring{
    top: 33%;
}

.isMobile .view-all {
    font-size: 10px;
    padding: 4px 9px 2px 10px !important;
    font-weight: 600;
    margin-top: -2px;
}
/* .isMobile .stats-container .storeDesc{

} */

.isMobile .wrapper .slick-slide {
    margin: 5px;
}

.isMobile .col-5th {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0px 6px;
}
.isMobile #product-front img, .isMobile .product-front img{
    padding: 0px 2px;
    height: 126px;
    margin-top: 0px;
    margin-bottom: 0px;
    object-fit: fill;
}
.isMobile .zoomWrapper{
    padding: 12px 1px 1px 1px;
}
.isMobile .inner_panel{
    border: 0;
}
.isMobile .cart-icon{
    font-size: 16px;
}
.isMobile .cartDiv {
    width: 36px;
    height: 27px;
}
.isMobile .heading-title{
    padding: 10px 7px;
}
.isMobile div#product-front, div.product-front{
    box-shadow: 1px 1px 9px 1px #dad4d4a3 !important;
}
.isMobile p.product_title {
    font-weight: 600;
    font-size: 13px;
}
.isMobile .cartDiv{
    background: #dee2e661;
}
.isMobile .hideDesktop{
    display: block;
}

@keyframes slide{
  from{
    transform:translateX(0) ;
    
  }
  to{
    transform:translateX(-100%) ;
  
  }
}
.logos{
  overflow:hidden;
  padding:5px 0 ;
  background:white;
  white-space:nowrap;
  position:relative;
}

.logos:before,
.logos:after{
  /* content:""; */
  position:absolute;
  top:0;
  width:250px;
  height:100%;
  z-index:2;
}
.logos:before{
  left:0;
  /* background:linear-gradient(to left, rgba(255,255,255,0), white); */
}
.logos:after{
  right:0;
  /* background:linear-gradient(to right, rgba(255,255,255,0), white); */
}


.logos:hover .logos-slide{
  animation-play-state:paused;
  
  
}
.logos-slide{
  display:inline-block;
  animation: 15s slide infinite linear;
}
.logos-slide img{
 height: 38px;
margin: 0 12px;
width: 100px;
}

.isMobile .menu-links li.nav-item {
    padding: 4px 10px;
}

/* Hide by default */
.isMobile .mobile-bottom-nav {
    display: flex !important;
    z-index: 9999999;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #fff;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        background: #1d4293;
    }

    .mobile-bottom-nav a {
        flex: 1;
        text-align: center;
        color: #fff;
        font-size: 11px;
        text-decoration: none;
    }

    .mobile-bottom-nav a i {
        font-size: 18px;
        display: block;
        margin-bottom: 3px;
        color: #ffffff;
    }

    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: #fff;
    }

    /* prevent content from hiding behind navbar */
    body {
        padding-bottom: 70px;
    }
}



/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

/* Side Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    overflow-y: auto;
}

/* Active State */
.mobile-side-menu.active {
    left: 0;
    z-index: 9999911;
    height: 92%;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1d4293 !important;
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Search */
.menu-search {
    padding: 10px;
}
.menu-search input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Links */
.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-links li a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
}
.menu-links li a:hover {
    background: #f5f5f5;
}

.isMobile .mobile-toggle {
    width: 24px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    top: 7px;
    position: absolute;
    left: 12px;
}

.isMobile .mobile-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
}
.isMobile .footerWeb{
    text-align: center;
}

/* Active (X icon) */
/* .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
} */

.isMobile .container-fluid-custom .navbar-light{
    display: none !important;;
}

.isMobile .menu-links li a.active{
    background: #1d429312;
}
.isMobile .container-fluid-custom .logo {
     margin-left: 33% !important;
}

.isMobile .search_icon {
    margin-top: 6px;
}

.isMobile .price-cart-box {
    background: #1d42930a !important;
    /* border: 1px solid #ddd; */
    padding: 3px 2px 3px 5px !important;
    margin-top: 0px !important;
}
.isMobile .stats-container .col-md-12{
    padding: 4px !important;
}
.isMobile .float_btns{
    display: none;
}
.isMobile .inner_panel .text-dark{
    margin-bottom: 6px !important;
}
.isMobile .mt-5, .isMobile .my-5 {
    margin-top: 1rem !important;
}
.isMobile .bg_product{
    display: block !important;
}
.isMobile .pt-2, .isMobile .py-2{
    margin-bottom: 1rem !important;
}
.isMobile .mb-5, .isMobile .my-5 {
    margin-bottom: 1rem !important;
}
.isMobile .carousel_slider_blogs img {
    width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: 8px;
    display: block;
}
.isMobile .text-input{
    display: none;
}
.isMobile .pt-50{
    padding-top: 0px;
}
.isMobile .search-field {
    width: 105%;
    margin-top: 6%;
    height: 36px;
}
.isMobile .storesSection div#product-front, div.product-front {
    margin-bottom: 25px;
}
.isMobile .storesSection .stats-container {
    min-height: 50px;
}
.isMobile .storesSection  .product_title_store{
    margin-bottom: 0px;
}
.isMobile .storesSection #product-front img, .isMobile .product-front img{
    object-fit: contain !important;
    width: 100%;
    height: 76px;
}
/* .isMobile .storesSection .stats-container .col-md-12{
    display: none !important;
} */

.isMobile .storesSection .stats-container .cvp{
    display: block !important;
    margin-top: -3px;
}
.isMobile .storesSection  .main_btn_m {
    padding: 2px;
    margin: 0px;
    font-size: 13px;
}
.isMobile .my-sticky-element.catSide{
    display: none;
}
.isMobile .container-fluid-custom .logo{
    padding: 0px 0px !important;
}

.isMobile span.text-primary.qtyAndTime {
    margin-top: 8px !important;
    background: #fff;
    color: #8edb92 !important;
    padding: 0px;
    margin: 0px;
}
.popular-list {
  max-height: 70vh;
  overflow-y: auto;
}

/* Left thumbnail */
.isMobile .item-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f1f1;
    flex-shrink: 0;
    margin-right: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.isMobile .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps image clean */
  display: block;
}


.isMobile .popular-list a{
    color: #4a4c4ef5;
    font-weight: 500;
}

/* Smooth scrollbar (optional) */
.popular-list::-webkit-scrollbar {
  width: 6px;
}

.popular-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.isMobile .fw-semibold {
    font-size: 14px;
}

.isMobile .fw-semibold.price {
    color: #aeaeaed1 !important;
}

.mobile-side-menu {
  transition: all 0.3s ease;
}

.mobile-side-menu.full-width {
  width: 98%;
      z-index: 999999;
}
.isMobile .position-relative {
    position: relative !important;
    padding: 3px 10px;
}
/* .isMobile  #sidebar-cart a.close-button{
    top: 2%;
    right: 5%;
}
.isMobile #sidebar-cart div.totals{
    bottom: 70px;
}
.isMobile #sidebar-cart a.close-button{
    top: 10%;
    right: 5%;
    left: 0px;
}
.isMobile #sidebar-cart{
    width: 100%;
} */


.isMobile .cart-item {
  padding-bottom: 12px;
  border-bottom: 1px dashed #e5e5e5;
}

.isMobile .cart-items {
  max-height: 55vh;
  overflow-y: auto;
}

.isMobile .cart-summary {
  background: #fff;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.08);
}
.isMobile .offcanvas-header{
    padding: 10px;
}
.isMobile .cart-summary .justify-content-between{
    font-weight: 600;
}
.isMobile .cart-items .text-end{
     width: 100px;
}

.isMobile .card{ 
    padding: 9px;
}
.isMobile .card-body{
    margin-top: 1px;
    padding: 0px !important;
    margin-bottom: 10px;
}
.isMobile .shopping-cart{
    margin-top: 10px;
    margin-left: 0px;
    display: none;
}
.isMobile .categories-bar{
    display: none;
}
.isMobile .login-form h4{
    font-size: 19px;
}
.isMobile .productName {
    display: none;
}
.isMobile h1.text-blue.font-weight-normal.pricing.position-relative.font-family {
    font-size: 20px !important;
    margin-bottom: 10px;
}
.isMobile .divDescription {
    margin-top: 12px;
    padding: 5px;
}
.isMobile .trusted-partner{
    width: 24px;
    float: right;
    margin-top: 4px;
}

/* 3-dot loader animation */
.isMobile #searchLoader .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background-color: #333;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.isMobile #searchLoader .dot:nth-child(2) {
    animation-delay: 0.2s;
}
.isMobile #searchLoader .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
.isMobile .cart_add{
    right: unset;
    left: unset;
    margin-left: 5px;
    /* padding: 0px !important; */
}


/* Cart item wrapper */
.isMobile .cart_html_mobile .product {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    margin-bottom: 12px;
}

/* Make product link behave like container */
.isMobile .cart_html_mobile .product-link {
    display: flex;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* Product image */
.isMobile .cart_html_mobile .product-image {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.isMobile .cart_html_mobile .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product details */
.isMobile .cart_html_mobile .product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Title */
.isMobile .cart_html_mobile .product-details h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #222;
}

/* Quantity + price row */
.isMobile .cart_html_mobile .qty-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quantity buttons */
.isMobile .cart_html_mobile .qty form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.isMobile .cart_html_mobile .qty-input {
    width: 42px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #f9f9f9;
}

.isMobile .cart_html_mobile .minus-button,
.isMobile .cart_html_mobile .plus-button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.isMobile .cart_html_mobile .minus-button:active,
.isMobile .cart_html_mobile .plus-button:active {
    background: #e0e0e0;
}

/* Price */
.isMobile .cart_html_mobile .productPrice {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    white-space: nowrap;
}

/* Remove button */
.isMobile .cart_html_mobile .remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #ff4d4f;
    text-decoration: none;
}
.isMobile .cart_html_mobile {
    height: 55vh;              /* Adjust: 50–70vh */
    max-height: 70vh;
    min-height: 40vh;

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    padding: 10px;
    background: #fff;
}
/* Optional: cleaner scrollbar */
.isMobile .cart_html_mobile::-webkit-scrollbar {
    width: 4px;
}
.isMobile .cart_html_mobile::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
}

.isMobile .cartWeb{
    bottom: 9%;
    left: 0;
    width: 100%;
    height: 80vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}
.isMobile .product_detail img {
    width: 120px !important;
    min-height: 120px !important;
}
.isMobile .user-access-page .col-md-5 .inner-box{
    display: none;
}
.isMobile .wrapper .price{
    font-size: 15px;
}
.isMobile .price .currency-symbol{
    font-size: 12px;
}
.isMobile .promoTimeLeft{
    position: absolute;
    bottom: -13px;
    width: max-content;
    font-size: 10px;
    background: #fff;
    right: 50%;
}
.isMobile .sale-price-main{
     margin-left: 3px;
}
.isMobile .iTRDZL .item-name .f-15{
    max-width: 152px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.isMobile .iTRDZL .item-name{
    margin-left: 4px;
}
.isMobile .zoomWrapper img:hover{
    transform: unset;
    -webkit-transform: unset;
}
/* Touch-friendly */
@media (max-width: 576px) {
    .isMobile .cart_html_mobile .product {
        padding: 10px;
    }

    .isMobile .cart_html_mobile .product-image {
        width: 64px;
        height: 64px;
    }

    .isMobile .cart_html_mobile .product-details h3 {
        font-size: 13px;
        max-width: 95%;
    }
}