    /* Promotional Banner */
        
        .header-megathred .promo-banner {
    background: linear-gradient(135deg, #ffffff 0%, #bbbbd3 100%);
    color: #a19393;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}


  
        .header-megathred .promo-text {
          flex: 1;
          text-align: center;
        }
  
        .header-megathred .promo-text a {
          color: white;
          text-decoration: underline;
          font-weight: 500;
        }
  
        .header-megathred .header-controls {
          display: flex;
          gap: 15px;
          align-items: center;
        }
  
        .header-megathred .dropdown {
          display: flex;
          align-items: center;
          gap: 5px;
          cursor: pointer;
          font-size: 13px;
        }
  
        .header-megathred .dropdown::after {
          content: "▼";
          font-size: 10px;
        }
  
        .header-megathred .flag {
          width: 16px;
          height: 12px;
          background: linear-gradient(
            to bottom,
            #ff0000 33%,
            #ffffff 33%,
            #ffffff 66%,
            #0000ff 66%
          );
          border-radius: 2px;
          margin-right: 5px;
        }
  
        /* Main Header */
        .header-megathred .main-header {
          max-width: 1200px;
          margin: 0 auto;
          background: white;
          padding: 20px 20px;
          /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 20px;
        }
  
        /* Logo */
        .header-megathred .logo {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 24px;
          font-weight: bold;
          color: #333;
          text-decoration: none;
        }
  
        .header-megathred .logo-icon {
          width: 40px;
          height: 40px;
          background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 20px;
        }
  
        /* Search Bar */
        .header-megathred .search-container {
          flex: 1;
          max-width: 500px;
          display: flex;
          position: relative;
        }
  
        .header-megathred .search-input {
          width: 100%;
          padding: 12px 20px;
          border: 2px solid #e5e7eb;
          border-radius: 25px 0 0 25px;
          font-size: 14px;
          outline: none;
          background: #f9fafb;
        }
  
        .header-megathred .search-input::placeholder {
          color: #9ca3af;
        }
  
        .header-megathred .search-input:focus {
          border-color: #4b44b8;
          background: white;
        }
  
        .header-megathred .search-button-s {
          background: #4b44b8;
          border: none;
          padding: 12px 20px;
          border-radius: 0 25px 25px 0;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
        }
  
        .header-megathred .search-button-s:hover {
          background: #3b5bdb;
        }
  
        .header-megathred .search-icon {
          width: 18px;
          height: 18px;
          fill: white;
        }
  
        /* Right Section */
        .header-megathred .header-right {
          display: flex;
          align-items: center;
          gap: 25px;
        }
  
        .header-megathred .call-section {
          display: flex;
          align-items: center;
          gap: 8px;
          color: #333;
        }
  
        .header-megathred .call-icon {
          width: 30px;
          height: 30px;
          fill: #4b44b8;
        }
  
        .header-megathred .call-info {
          display: flex;
          flex-direction: column;
        }
  
        .header-megathred .call-label {
          font-size: 12px;
          color: #666;
        }
  
        .header-megathred .call-number {
          font-size: 14px;
          font-weight: 600;
          color: #333;
        }
  
        .header-megathred .header-icons {
          display: flex;
          align-items: center;
          gap: 15px;
        }
  
        .header-megathred .icon-button {
          position: relative;
          background: none;
          border: none;
          cursor: pointer;
          padding: 8px;
          border-radius: 50%;
          transition: background-color 0.2s;
        }
  
        /*.header-megathred .icon-button:hover {*/
        /*  background: #f3f4f6;*/
        /*}*/
  
        .header-megathred .icon {
          width: 24px;
          height: 24px;
          fill: #666;
        }
  
        .header-megathred .badge {
          position: absolute;
          top: 0;
          right: 0;
          background: #4b44b8;
          color: white;
          border-radius: 50%;
          width: 18px;
          height: 18px;
          font-size: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
        }
  
        .header-megathred .cart-badge {
          background: #ef4444;
        }
  
        /* Responsive */
        @media (max-width: 768px) {
          .header-megathred .main-header {
            flex-wrap: wrap;
            gap: 15px;
          }
  
          .header-megathred .search-container {
            order: 3;
            width: 100%;
            max-width: none;
          }
  
          .header-megathred .call-section {
            display: none;
          }
        }
        
        
        /* Hide mobile-specific elements on desktop */
.mobile-top-row,
.mobile-search-row {
  display: none;
}

/* Responsive mobile layout */
@media (max-width: 768px) {
  .main-header {
    display: none !important; /* hide full header in mobile */
  }

  .mobile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: white;
  }

  .mobile-top-row .logo {
    width: 60%;
  }

  .mobile-top-row .header-icons {
    display: flex;
    gap: 10px;
  }

  .mobile-search-row {
    display: block;
    padding: 6px 20px;
  }

  .mobile-search-row .search-container {
    width: 100%;
    max-width: 100%;
  }
}


  @media (max-width: 768px) {
        
        
div[class^="ruby-row Sngrwprd"] > a:nth-child(odd) > .ruby-col-2 {
    background-color: #f5f5f5; /* Light gray */
}

div[class^="ruby-row Sngrwprd"] > a:nth-child(even) > .ruby-col-2 {
    background-color: #e0e0e0; /* Slightly darker gray */
}

div[class^="ruby-row Sngrowhevy"] > a:nth-child(odd) > .ruby-col-2 {
    background-color: #f5f5f5; /* Light gray */
}

div[class^="ruby-row Sngrowhevy"] > a:nth-child(even) > .ruby-col-2 {
    background-color: #e0e0e0; /* Slightly darker gray */
}





  .ruby-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    width: 100%;
  }

  .ruby-menu li {
    border-bottom: 1px solid #eee;
    /*padding: 0;*/
  }

  .ruby-grid {
    display: none; /* Hidden by default, toggled via JS */
  }

  .submenu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    float: right;
    color: #fff;
    cursor: pointer;
    margin-top: -34px;
  }

  .c-hamburger {
    display: block !important;
  }
}




.search {
  width: 100%;
  position: relative;
  display: flex;
}


@media screen and (max-width: 768px) {
 
  .aa-dropdown-menu {
    max-height: 200px;
    max-width: 305px;
    overflow-y: auto;
  }
 
  .search {
    width: 95%;
  }
  

  /*.ruby-menu-demo-header,*/
  /*.syslogo {*/
  /*  display: none !important;*/
  /*}*/
  .moblogo {
    display: block !important;
  }
  .moblogo {
    margin-left: 2px;
  }
}
.suggestion-description,
.suggestion-difflent {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


h3.gcom__typeahead-results-heading {
  margin-top: 0 !important;
}
.aa-input {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}
.aa-input:focus {
  outline: 0;
  border-color: #3f51b5;
}
.suggestion-item {
     width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.suggestion-item:hover {
  background-color: #e8e8e8;
}
.suggestion-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: cover;
  border: 1px solid #e8e8e8;
}
.suggestion-difflent {
  font-size: 12px;
  display: -webkit-box;
  color: #25255b;
}
.suggestion-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  color: inherit;
}
.atagproduct {
  text-decoration: none !important;
  color: #000;
}
.algolia-autocomplete {
  width: 90%;
}
.searchbtn {
  float: right;
}
div.ruby-menu-demo-header {
  z-index: 3 !important;
      background: #342f7f;
}
.typer {
  display: block;
}
.gcom__typeahead-results-heading {
  align-items: center;
  display: flex;
  font-weight: 400;
  margin-bottom: 0;
  margin-right: 16px;
  padding-bottom: 8px;
  padding-top: 8px;
  position: relative;
}
.gcom__typeahead-results-heading-label {
  background-color: #fff;
  color: #272264;
  font-size: 14px;
  line-height: 1.2;
  padding-left: 5px;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}
.gcom__typeahead-results-heading:after {
  background-color: #d8d8d8;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.suggestion-header {
  color: #272264;
  background-color: #fff;
}
.sugges-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suggestion-description {
  font-size: 12px;
  display: -webkit-box;
}
.aa-hint {
  opacity: 0 !important;
}
.aa-dropdown-menu {
  max-height: 500px;
       width: 100%;
  overflow-y: auto;
}
.ruby-row > a:hover {
  background: #ff670f !important;
  color: #fff !important;
}

div.ruby-wrapper {
    background: #342f7f !important;
}

ul.ruby-menu>li>a {
    color: #ffffff !important;
}

    .certificate_badge {
    position: fixed;
    right: 0;
    z-index: 6;
}
.certificate_badge img {
    height: 148px;
}
 @media (max-width: 768px) {
     .certificate_badge{
         display:none;
     }
 }
 
 
      /* Container for the icon + submenu */
.icon-button-with-submenu {
  position: relative;
  display: inline-block;
}

/* Submenu styling: directly below the icon, centered */
.user-submenu {
  display: none;
  position: absolute;
  top: 66%; /* directly below the icon */
  left: 50%;
  transform: translateX(-50%); /* center horizontally */
  background: #fff;
  min-width: 150px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  margin-top: 10px;
}

.user-submenu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.user-submenu li:last-child {
  border-bottom: none;
}

.user-submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.3s;
}

.user-submenu li a:hover {
  background-color: #f5f5f5;
}

/* Show submenu on hover */
.icon-button-with-submenu:hover .user-submenu {
  display: block;
}
