   
    
  @media screen and (max-width: 1366px) and (min-width: 770px) {
    #search-form{
      width:100%;
      display:None;
      border:None;
    }
    #search-type{
      width:120px;
    }
  .search {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(245, 245, 240, 0.9); /* Light beige with some transparency */
    border-radius: 10px;
    padding: 0px;
    width: 600px;
    border: 1px solid #ccc; /* Slightly darker border for contrast */
    position: relative;
    height: 37px;
    margin-right: 20px;
  }

  .search input {
    font-size: 15px;
    border: none;
    outline: none;
    width: 50%; /* Adjust width as needed */
    margin-top: 14px; /* Consider adjusting or removing this margin */
    background:transparent;
  }

  }


.recent_list a {
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease-in-out;
}

.recent_list a:hover {
    background-color: #f0f0f0;
}

.scrollList {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.scrollList ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    animation: scrollList 10s linear infinite;
}

.scrollList li {
    padding: 8px 16px;
}

@keyframes scrollList {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

.form-select {
    margin-top: 15px;
    width: 150px;
    font-weight: bold;
}

/* Zomato-style Cart Notification - Persistent across pages */
/* ========== OPTIMIZED CART NOTIFICATION - PERFORMANCE FOCUSED ========== */
/* Using GPU-accelerated properties and minimal repaints */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff; /* Solid color instead of gradient for performance */
    color: #1c1c1c;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Single shadow for performance */
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    min-width: 200px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    /* Only animate transform and opacity (GPU-accelerated) */
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* GPU acceleration hints */
    will-change: transform, opacity;
    contain: layout style paint; /* CSS containment for performance */
}

.cart-notification.show {
    display: flex;
    animation: slideUpCart 0.25s ease-out;
}

.cart-notification.hide {
    animation: slideDownCart 0.25s ease-in forwards;
}

/* Optimized animations - only transform and opacity (GPU-accelerated) */
@keyframes slideUpCart {
    from {
        transform: translate3d(0, 100px, 0); /* translate3d for GPU acceleration */
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideDownCart {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 100px, 0);
        opacity: 0;
    }
}

.cart-notification:hover {
    /* Only transform for hover (GPU-accelerated) */
    transform: translate3d(0, -2px, 0);
}

.cart-notification-icon {
    width: 36px;
    height: 36px;
    background: #d97706; /* Solid color instead of gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: #ffffff;
    /* Minimal shadow for performance */
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.25);
    contain: layout style paint;
}

.cart-notification-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
    contain: layout style; /* Performance optimization */
}

.cart-notification-title {
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    line-height: 1.2;
    color: #1c1c1c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-notification-message {
    font-size: 11px;
    color: #696969;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.cart-notification-count {
    background: #d97706; /* Solid color instead of gradient */
    color: white;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
    display: inline-block;
    width: fit-content;
    /* Minimal shadow */
    box-shadow: 0 1px 2px rgba(217, 119, 6, 0.25);
}

.cart-notification-close {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    /* Only transform for performance */
    transition: transform 0.15s ease, background-color 0.15s ease;
    color: #696969;
    font-size: 12px;
    padding: 0;
    border: none;
    position: absolute;
    top: 6px;
    right: 6px;
    will-change: transform; /* GPU hint */
}

/* ========== BUSINESS ACCOUNT POPUP (ZEPTO-STYLE) ========== */
.business-account-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    padding: 16px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
}

.business-account-popup.show {
    transform: translateY(0);
}

.business-account-popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.business-account-popup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 24px;
}

.business-account-popup-text {
    flex: 1;
    min-width: 0;
}

.business-account-popup-title {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.business-account-popup-description {
    font-size: 13px;
    color: #696969;
    margin: 0;
    line-height: 1.4;
}

.business-account-popup-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

.business-account-popup-apply-btn {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.business-account-popup-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.business-account-popup-apply-btn:active {
    transform: translateY(0);
}

.business-account-popup-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #696969;
    font-size: 18px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.business-account-popup-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {
    .business-account-popup {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        border-radius: 20px;
        bottom: 20px;
    }
    
    .business-account-popup.show {
        transform: translateX(-50%) translateY(0);
    }
}

.cart-notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1); /* Simplified transform */
}

.cart-notification-close:active {
    transform: scale(0.95);
}

.cart-notification.error {
    background: #fff5f5; /* Solid color */
    border: 1px solid #feb2b2;
}

.cart-notification.error .cart-notification-icon {
    background: #e53e3e; /* Solid color */
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.25);
}

.cart-notification.error .cart-notification-title {
    color: #c53030;
}

.cart-notification.notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.cart-notification.notice .cart-notification-icon {
    background: #d97706;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.25);
}

.cart-notification.notice .cart-notification-title {
    color: #92400e;
}

.cart-notification.notice .cart-notification-message {
    color: #78350f;
}

/* ========== MOBILE RESPONSIVE - COMPACT FLOATING DESIGN ========== */
@media (max-width: 768px) {
    .cart-notification {
        bottom: 85px; /* Above bottom nav */
        right: 12px !important;
        left: auto !important;
        min-width: 200px !important;
        max-width: calc(100% - 24px) !important;
        width: auto !important;
        padding: 10px 12px;
        border-radius: 14px;
        box-sizing: border-box;
        display: none;
    }

    .cart-notification.show {
        display: flex !important;
    }

    .cart-notification-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .cart-notification-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        padding-right: 24px; /* Space for close button */
    }

    .cart-notification-title {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-notification-message {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 140px;
    }

    .cart-notification-close {
        width: 20px;
        height: 20px;
        font-size: 11px;
        flex-shrink: 0;
        position: absolute;
        top: 6px;
        right: 6px;
        margin-left: 0;
        align-self: auto;
    }

    .cart-notification-count {
        font-size: 9px;
        padding: 1px 5px;
    }
}

/* Extra small devices - Even more compact */
@media (max-width: 360px) {
    .cart-notification {
        bottom: 80px;
        right: 10px;
        padding: 8px 10px;
        gap: 8px;
        min-width: 180px;
        max-width: calc(100% - 20px);
    }

    .cart-notification-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .cart-notification-title {
        font-size: 11px;
    }

    .cart-notification-message {
        font-size: 9px;
        max-width: 120px;
    }

    .cart-notification-close {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }

    .cart-notification-count {
        font-size: 8px;
        padding: 1px 4px;
    }
}

  @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
  }

  /* ========== HEADER: Language toggle + User icon (robust, clean, easy to tap) ========== */
  .header-right {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .header-right .language-toggle-form {
    margin: 0;
    border: none;
    padding: 0;
  }
  .header-right .lang-btn {
    min-width: 100px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .header-right .lang-btn:hover {
    background: #f5f5f5;
    border-color: #999;
  }
  .header-right .lang-btn:active {
    background: #eee;
  }
  .header-right .user-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: background 0.2s, border-color 0.2s;
  }
  .header-right .user-icon-link:hover {
    background: #eee;
    border-color: #ccc;
  }
  .header-right .user-icon-link:active {
    background: #e0e0e0;
  }
  .header-right #user-icon {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .header-right {
      gap: 14px;
      top: 8px;
      right: 8px;
    }
    .header-right .lang-btn {
      min-width: 88px;
      min-height: 38px;
      padding: 6px 12px;
      font-size: 13px;
    }
    .header-right .user-icon-link {
      min-width: 42px;
      min-height: 42px;
    }
    .header-right #user-icon {
      font-size: 20px;
    }
  }
  
  
   
    @media screen and (max-width: 768px) {
      .hide-on-mobile {
        display: none !important;
      }
      .seasonal{
      margin-left:163px;
      margin-top:50px;
        
      width:100%;
      }
      .seasonal-btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        border: none;
        border-radius: 25px;
        background: linear-gradient(45deg, 
            #ff7e00,   /* Autumn (Orange) */
            #ffdf00,   /* Summer (Yellow) */
            #1e90ff,   /* Winter (Blue) */
            #00a86b    /* Spring (Green) */
        );
        background-size: 300% 300%;
        transition: 0.5s;
        animation: gradientMove 6s infinite alternate;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .seasonal-btn:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    
   
    }
  
      /* Style for dropdown menu */
      .dropdown-menu {
          display: none;
          position: absolute;
          background-color: #fff;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          padding: 10px;
          z-index: 1000; /* Adjust z-index as needed */
      }
  
      .dropdown-menu.show {
          display: block;
      }
  
      /* Style for dropdown menu items */
      .dropdown-menu li {
          list-style: none;
          margin: 0;
          padding: 0;
      }
  
      .dropdown-menu li a {
          display: block;
          padding: 8px 12px;
          color: #333;
          text-decoration: none;
      }
  
      .dropdown-menu li a:hover {
          background-color: #f5f5f5;
      }
     
      .full-height-navbar {
        height: 100vh; /* Set the height to 100% of the viewport height */
      }
      
      /* Hide scrollbar for WebKit (Chrome, Safari, etc.) */
      .product-dropdown-menu .container-fluid::-webkit-scrollbar {
        display: none;
      }
      
      /* Hide scrollbar for Firefox */
      .product-dropdown-menu .container-fluid {
        scrollbar-width: none;
      }
      
      /* Other styles you may have */
      .product-dropdown-menu-horizontal {   
        display: none;
        position: absolute;
        top: 100%; /* Add some margin from the product button */
        left:0;
        z-index: 1000;
        width: 700px; /* Adjust the width as needed */
        max-height: 200px; /* Maximum height of the dropdown */
        overflow-x: auto; /* Enable horizontal scrollbar if needed */
        background-color: #fff;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: .25rem;
      }
      
      .product-dropdown-menu-horizontal.show {
        display: block;
      }
      
      .product-dropdown-menu .container-fluid {
        display: flex; /* Use flexbox to ensure items are in a single row */
        flex-wrap: nowrap; /* Prevent items from wrapping */
        overflow-y: auto; /* Enable horizontal scrollbar if needed */
        width:1200px;
        height:150px;
      }
      
      .product-dropdown-menu .container-fluid .row {
        flex: 0 0 auto; /* Ensure rows don't grow */
        background-color:#f3e8ff;
      }
      
      .product-dropdown-menu .container-fluid .col-md-4 {
        flex: 1 1 auto; /* Allow columns to grow */
        width: auto; /* Allow columns to adjust width based on content */
      }
      
      .product-dropdown-menu .dropdown-item {
        display: inline-block; /* Display items inline */
        width: 150px; /* Adjust width of each item */
        margin-right: 1px; /* Add spacing between items */
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        height:100px;
      }
      form {
        outline: none; /* Removes the outline around the form */
        text-decoration: none; /* Removes any text decoration like underline */
    }
    
      .product-card_p {
        width: 120px; /* Make the card fill the container */
        height: 85px; /* Allow height to adjust based on content */
        margin-top:10px;
        background-color:#49281f;
      }
      
      .product-card_p img {
        max-width: 100%; /* Make sure images don't overflow the card */
        height: 100px;
        width: 100%;
        margin-top:5px;
        margin-left:20px;
      }
      br {
        display: none;
        }
      .cart-count-badge {
        position: absolute;
        top: -10px; /* Adjust position as needed */
        right: -20px; /* Adjust position as needed */
        background-color:tranparent ; /* Background color for the badge */
        color: white; /* Text color */
        border-radius: 30%; /* Makes the badge a circle */
        padding: 5px 10px; /* Padding to make it look like a circle */
        font-size: 14px; /* Font size */
        font-weight: bold; /* Bold text */
        display: flex; /* Flexbox for centering text */
        align-items: center; /* Center text vertically */
        justify-content: center; /* Center text horizontally */
    }
    .operational-notice {
      font-size: 14px;
      font-weight: bold;
      color: red;
      margin-left: 5px; /* Space after logo */
      white-space: nowrap; /* Prevents text from wrapping */ 
  }
  
  @media (max-width: 768px) {
      .operational-notice {
          font-size: 12px; /* Smaller text for mobile */
      }
  }

  /* —— Nav search bar: aligned with standalone /search/ page (Zepto-like field) —— */
  .search.mx-auto {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    gap: 4px;
    padding: 6px 12px 10px !important;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .search.mx-auto #search-form {
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    width: 100%;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    padding: 0 !important;
  }
  .search.mx-auto .search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0 !important;
    padding: 0 10px 0 12px !important;
    min-height: 46px !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid #e4e4e7 !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    transition: box-shadow 0.15s ease;
    overflow: visible !important;
  }
  .search.mx-auto .search-container:focus-within {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
    transform: none !important;
  }
  .search.mx-auto #search-input.form-control {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 10px 42px 10px 0 !important;
    margin-top: 0 !important;
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
  }
  .search.mx-auto #search-input::placeholder {
    color: #a1a1aa;
    font-weight: 500;
  }
  .search.mx-auto .search-button {
    position: absolute;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    padding: 6px !important;
    cursor: pointer;
    font-size: 16px !important;
    color: #52525c !important;
  }

  /* Zepto-style: nav bar field is a teaser — opens /search/ hub (field is readonly). */
  .search.mx-auto #search-input.mb-nav-search-teaser {
    cursor: pointer;
    caret-color: transparent;
  }

  #product_special {
    position: relative;
    z-index: 2;
  }

  /* Category picker: Bootstrap 5 dropdown — menu MUST live inside #product_special or it sits in-flow under the search strip */
  #product_special .dropdown-menu.product-dropdown-menu:not(.show) {
    display: none !important;
  }
  #product_special .dropdown-menu.product-dropdown-menu {
    margin-top: 6px !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: auto;
    max-height: min(52vh, 300px);
  }

  /* Sticky header + search — no divider lines, no phantom form underlines */
  .mb-site-header.desktop-nav {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
  }
  .mb-site-header .navbar.sticky-top,
  .mb-site-header nav.navbar.navbar-expand-lg {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    --bs-navbar-border-width: 0 !important;
    padding-bottom: 0 !important;
  }
  .mb-site-header .navbar .container-fluid {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding-bottom: 0 !important;
  }
  .mb-site-header .search.mx-auto {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 4px !important;
  }
  .mb-site-header #search-form,
  .mb-site-header #search-form.d-flex {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }
  .mb-site-header .search.mx-auto #search-input.form-control,
  .mb-site-header #search-input {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background-clip: padding-box !important;
  }
  .mb-site-header .search.mx-auto #search-input.form-control:focus,
  .mb-site-header #search-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Kill hairline/shadow stripe under sticky search row (looks like form underline) */
  .desktop-nav .navbar.sticky-top,
  .desktop-nav nav.navbar.navbar-expand-lg {
    border-bottom: none !important;
    box-shadow: none !important;
    --bs-navbar-border-width: 0;
  }
  .desktop-nav .search.mx-auto {
    border-bottom: none !important;
    box-shadow: none !important;
  }
  
