* {
  font-family: 'Mulish', sans-serif !important;
}

body {
  margin: 0;
}


.logo-wrapper {
  max-height: 75px;
}

.logo {
  height: auto;
  max-height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}



/*------------ Top Header csss ---------------------------------------------------------------------------------------------------*/



.header2 {
  background-color: #16BAE4;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 3px #000;
}

.header2 a:hover {
  text-decoration: none;
  color: #000;
}


.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding: 0 4px;
  /* Adjust spacing around text */
}

.nav-links span {
  color: white;
  font-size: 13px;
  padding: 0 2px;
  /* Tight space around '|' */
}


/*---------------------------------------------------------------------------------------------------------------*/




.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ccc;
  /* Optional: subtle hover color change */
  text-decoration: none;
}

.desktop-footer {
  background-color: #223459;
  color: white;
  padding: 40px 30px 20px;

}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;

}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 2px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.footer-column ul li:hover {
  text-decoration: none;
  color: white;
}

.footer-column.social .icons i {
  font-size: 16px;
  margin-right: 12px;
  color: #ccc;
  cursor: pointer;
}

.footer-column.social .icons i:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* Variant Picker Drawer */
.variant-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 23, 32, 0.5);
  z-index: 200000;
  display: none;
}

.variant-picker-overlay.is-open {
  display: block;
}

.variant-picker-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(350px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.variant-picker-overlay.is-open .variant-picker-drawer {
  transform: translateX(0);
}

.variant-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #eceff3;
}

.variant-picker-title {
  font-size: 18px;
  font-weight: 800;
  color: #243447;
}

.variant-picker-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f3f5f7;
  color: #44505f;
  font-size: 18px;
  line-height: 1;
}

.variant-picker-product {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f2f6;
  align-items: flex-start;
}

.variant-picker-product img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #edf0f5;
}

.variant-picker-product h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #243447;
}

.variant-picker-stock {
  min-height: 18px;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: #6b7280;
}

.variant-picker-product-meta {
  flex: 1;
  min-width: 0;
}

.variant-picker-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.variant-picker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.variant-picker-chip.mrp {
  background: #D5E1ED !important;
  color: #000 !important;
  border: 1px solid #D5E1ED !important;
}

.variant-picker-chip.pay {
  background: #ffe1c7 !important;
  color: #000 !important;
  border: 1px solid #ffe1c7 !important;
}

.variant-picker-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px 18px;
}

.variant-picker-group {
  margin-bottom: 18px;
}

.variant-picker-group-title {
  font-size: 14px;
  font-weight: 800;
  color: #243447;
  margin-bottom: 10px;
}

.variant-picker-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-picker-option {
  min-width: 54px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #d6dce4;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.18s ease;
}

.variant-picker-option:hover:not(:disabled) {
  border-color: #ff7700;
  color: #ff7700;
}

.variant-picker-option.is-selected {
  background: #ff7700;
  border-color: #ff7700;
  color: #fff !important;
}

.variant-picker-option.is-selected:hover:not(:disabled),
.variant-picker-option.is-selected:focus:not(:disabled),
.variant-picker-option.is-selected:active:not(:disabled) {
  background: #ff7700;
  border-color: #ff7700;
  color: #fff !important;
}

.variant-picker-option:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.variant-picker-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid #eceff3;
}

.variant-picker-status {
  font-size: 13px;
  color: #6b7280;
  margin-right: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.variant-picker-continue {
  min-width: auto;
  flex: 0 0 auto;
  padding: 8px 18px !important;
  border: none !important;
  border-radius: 50px !important;
  background: #223459;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  width: auto !important;
  min-height: 0 !important;
  line-height: 1 !important;
}

.variant-picker-continue .btn-icon-circle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
}

.variant-picker-continue:hover:not(:disabled) {
  background: #014E91 !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}

.variant-picker-continue:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Quick View Popup Price Colors */
.popup-product-card > div > div[style*="gap:10px;align-items:center;margin-bottom:8px;flex-wrap:wrap;"] > span:first-child {
  background: #D5E1ED !important;
  color: #000 !important;
}

.popup-product-card > div > div[style*="gap:10px;align-items:center;margin-bottom:8px;flex-wrap:wrap;"] > span:nth-of-type(2) {
  background: #ffe1c7 !important;
  color: #000 !important;
}

@media (max-width: 768px) {
  .variant-picker-drawer {
    width: 100%;
  }

  .variant-picker-product {
    padding: 14px 16px;
  }

  .variant-picker-body {
    padding: 12px 16px 16px;
  }

  .variant-picker-footer {
    padding: 12px 16px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .variant-picker-continue {
    width: auto !important;
    min-width: auto !important;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .desktop-footer {
    padding: 20px 30px;

  }

  .footer-container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
    flex: none;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    font-size: 16px;
  }

  .footer-column.social .icons i {
    font-size: 20px;
    margin-right: 15px;
  }

  .footer-bottom {
    font-size: 16px;
    margin-top: 20px;
  }
}



/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FF7700;
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
  z-index: 1000;
  transition: opacity 0.3s;
}

.scroll-to-top:hover {
  opacity: 0.85;
}




/*---------------------------------------------------------------------------------------------------------------*/


/* Nav Bar 1st Css */

.logo {
  height: 60px;
  width: auto;
  cursor: pointer;
}

.navbar:first-of-type {
  position: relative;
  z-index: 1050;
  /* Ensure first navbar is above second */
}

.navbar .dropdown-menu {
  position: absolute;
  z-index: 1060;
  /* Dropdown above both navbars */
}

.navbar form .btn-primary {
  background-color: #0288d1;
  border: none;
}

.navbar form .form-control {
  border-left: none;
}

.badge {
  font-size: 0.6rem;
}


/* Mobile All button styling */
.dropdown-mobile .btn {
  background-color: #99d052;
  color: #fff;
  /* White text */
  border: none;
}

.dropdown-mobile .btn:hover {
  background-color: #88be45;
}

/* Custom border-radius on 3 sides */
.dropdown-desktop .btn,
.dropdown-mobile .btn,
.input-group .btn,
.input-group .form-control {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6;
  /* no rounding */
}


/* navbar.css */

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  padding: 0 0.5px !important;
}

.navbar .logo {
  max-height: 75px;
}

.input-group .dropdown-toggle {
  background-color: #99d052;
  border: 1px solid #ced4da;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #3faee1;
  color: white;
}

@media (max-width: 991.98px) {
  .dropdown-desktop {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .dropdown-mobile {
    display: none !important;
  }
}







/*---------------------------------------------------------------------------------------------------------------*/



/*  2nd Nav bar Css */

/* For second navbar */
.second-navbar {
  position: relative;
  z-index: 1000;
}

.navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0px;


}

.navbar-nav a:hover {
  text-decoration: none;
  color: rgb(230, 22, 22);
  transform: scale(1.05);

}


/* Hide second navbar by default */
.second-navbar {
  display: none;
}

/* Show only on large screens (desktop and up) */
@media (min-width: 992px) {
  .second-navbar {
    display: block;
  }

  .category-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    /* Keeps it below primary nav (z-index ~1050) */
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 0;
    /* Remove default padding */
  }

  .category-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    /* Better spacing between items */
  }

  /* Optional pipe separator */

}

.nav-btn.prev,
.nav-btn.next {
  background-color: transparent !important;
  box-shadow: none !important;
}


/*---------------------------------------------------------------------------------------------------------------*/


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.popup {
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 380px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 40px;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #999;
}

/* Responsive Design Synchronization */
@media (max-width: 768px) {
  .popup {
    padding: 15px !important;
    padding-top: 35px !important;
    max-width: 350px !important;
  }

  .popup-close {
    top: 6px;
    right: 6px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .popup {
    padding: 12px !important;
    padding-top: 30px !important;
    max-width: 320px !important;
  }

  .popup-close {
    top: 5px;
    right: 5px;
    font-size: 12px;
  }
}

/* Popup/Toast Notification */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease-in-out;
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-notification.success {
  background-color: #FF7700;
}

.toast-notification.error {
  background-color: #dc3545;
}

/* Header Search Results Popup */
#headerSearchResultsPopup {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  max-height: 350px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 250px;
  z-index: 9999;
}

#headerSearchResultsPopup .search-result-item:hover {
  background: #f5faff;
}

#headerSearchResultsPopup .search-result-item:last-child {
  border-bottom: none;
}
