 
    .logo-img {
      height: 35px;
    }

    .cart-badge {
      background-color: red;
      color: white;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 50%;
      position: absolute;
      top: -4px;
      right: -8px;
    }

    .icon-wrapper {
      position: relative;
      font-size: 18px;
    }

    .deliver-box {
      background-color: #e6f3fb;
      padding: 10px;
    }

    .main-menu ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .main-menu ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 8px 10px;
      display: inline-block;
    }

    .main-menu ul li a:hover {
      color: #007bff;
    }

    @media (min-width: 992px) {
      .desktop-header,
      .desktop-menu {
        display: flex !important;
      }

      .mobile-header,
      .mobile-delivery {
        display: none !important;
      }
    }

    @media (max-width: 991.98px) {
      .desktop-header,
      .desktop-menu {
        display: none !important;
      }

      .mobile-header,
      .mobile-delivery {
        display: flex !important;
      }
    }
 
    .carousel-item img {
      border-radius: 25px;
      width: 100%;
      height: auto;
    }

    .carousel {
      margin-top: 20px;
    }
    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 1050; /* higher than carousel and other content */
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
  
    .category-card {
      text-align: center;
      margin-bottom: 30px;
      
    }
    .category-img {
      width: 100%;
      
      object-fit: cover;
      border-radius: 15px;
      position: relative;
      transition: transform 0.3s ease;
    }
    .category-img:hover {
      transform: scale(1.05);
    }
    .tooltip-custom {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: rgba(0,0,0,0.75);
      color: #fff;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      display: none;
      z-index: 10;
    }
    .image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      cursor: pointer;
    }
    .image-wrapper:hover .tooltip-custom {
      display: block;
    }
 
    .product-card {
      border-radius: 15px;
      border: 1px solid #eee;
      overflow: hidden;
      position: relative;
      transition: box-shadow 0.3s ease;
      border: 1px solid rgba(134, 134, 134, 0.5);
    }
     
   
    .product-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 15px;
      position: relative;
      transition: transform 0.3s ease;
    }
    .fav-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #007bff;
      font-size: 20px;
      cursor: pointer;
    }
    .price {
      font-weight: bold;
      font-size: 1rem;
    }
    .old-price {
      text-decoration: line-through;
      color: gray;
      font-size: 0.9rem;
    }
    .discount {
      color: orange;
      font-size: 0.9rem;
    }
    .rating {
      background-color: #28a745;
      color: white;
      padding: 2px 8px;
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 500;
      display: inline-block;
    }
    .review-count {
      color: #007bff;
      font-size: 0.9rem;
    }
    .product-img:hover {
      transform: scale(1.05);
    }
 
    .carousel-inner img {
      border-radius: 20px;
      height: auto;
      width: 100%;
      object-fit: cover;
    }
    .carousel-indicators [data-bs-target] {
      background-color: #0d6efd;
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .carousel-indicators {
      bottom: -30px;
    }
 
       .category-cards {
      background-color: white;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      border: 1px solid #ddd;
      height: 100%;
    }

    .category-image {
      width: 50%;
      object-fit: cover;
      height: 100%;
    }

    .category-content {
      padding: 20px;
      width: 50%;
    }

    .category-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .category-list {
      color: #555;
      line-height: 1.8;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    @media (max-width: 768px) {
      .category-cards {
        flex-direction: column;
      }
      .category-image, .category-content {
        width: 100%;
      }
      .category-image {
        height: 200px;
      }
    }
    
    
    .section-bg {
      background-color: #eef2f3;
      padding: 40px;
      border-radius: 20px;
    }
 
    .banner-wrapper {
      border-radius: 20px;
      overflow: hidden;
    }

    .banner-image {
      width: 100%;
      display: block;
      height: auto;
    }
  
    .testimonial-card {
      border: 1px solid #ddd;
      border-radius: 20px;
      padding: 25px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: 0.3s;
    }

    .testimonial-card:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .rating-badge {
      background-color: #28a745;
      color: white;
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 14px;
      margin-right: 10px;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      margin-top: 15px;
      font-size: 14px;
      color: #888;
      flex-wrap: wrap;
    }

    .testimonial-footer strong {
      color: #222;
      font-weight: 600;
    }

    .view-all-btn {
      background-color: #004c63;
      color: white;
      padding: 10px 25px;
      border-radius: 10px;
      font-weight: 600;
    }

    @media (max-width: 767px) {
      .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
      }
    }
 
    body {
      font-family: 'Poppins', sans-serif;
    }

    .footer-wrapper {
      background-color: #f2f7f8;
      border-radius: 25px;
      padding: 40px 20px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a {
      color: #000;
      text-decoration: none;
      font-size: 12px;
    }

    .footer-links ul li a:hover {
      text-decoration: underline;
    }

    .social-icons i {
      font-size: 20px;
      color: white;
    }

    .social-icon-circle {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin-left: 20px;
    }

    .footer-bottom {
      font-size: 14px;
      padding: 20px 0;
    }

    .footer-logo {
      max-height: 40px;
    }

    .payment-icons img {
      height: 24px;
      margin-right: 8px;
    }

    .app-badges img {
      height: 40px;
      margin-top: 10px;
    }

    .qr-code {
      max-width: 80px;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .social-icon-circle {
        margin-bottom: 10px;
      }
    }
 
  .dropdown-menu {
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .dropdown-menu li {
    padding: 5px 10px;
    cursor: pointer;
  }

  .dropdown-menu li:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
  }

  .cart-badge {
    font-size: 0.6rem;
    padding: 2px 5px;
  }
 
  .side-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Changed from right */
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out; /* Changed */
    z-index: 1055;
  }

  .side-menu.open {
    left: 0; /* Slide in from left */
  }

  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1050;
  }

  .menu-backdrop.active {
    display: block;
  }

  .tb-megamenu-nav li {
    margin-bottom: 10px;
  }

  .tb-megamenu-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  .tb-megamenu-nav li a:hover {
    color: #007bff;
  }
 