.bg-dark {
  background-color: #062d58 !important;
}

/* Owl Carousel */
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  display: inline;
}

.owl-carousel-promo .owl-nav button.owl-prev::before,
.owl-carousel-promo .owl-nav button.owl-next::before {
  color: rgba(255, 255, 255, 0);
}

/* Dropdown Menu */
#navbarDropdown-9+.dropdown-menu {
  left: -140px;
}

.nav-icon .bi-list {
  padding: 10px;
  border: 1px solid #f2f2f2;
}

/* Responsive */
@media (min-width: 992px) {
  .dropdown-lg .dropdown-menu {
    min-width: 500px !important;
  }

  .nav-item .nav-icon {
    padding: 0 0.625rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-nav .dropdown-menu {
    width: 20rem !important;
    left: -280px !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav:first-child .nav-item {
    margin-right: 0px !important;
  }
}

/*WTB*/
.shopping-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* normal spacing */
  margin-top: 10px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 8px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 20px;
}

/* Each item */
.shopping-icon {
  position: relative;
  width: 70px;
  height: 70px;
}

/* Icon card */
.shopping-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 100%;
  height: 100%;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  text-decoration: none;

  z-index: 10;
  position: relative;
}

.shopping-icon a:hover {
  transform: translateY(-3px);
}

/* Icon image */
.shopping-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

/* Tooltip BELOW card */
.tooltip-slide {
  position: absolute;
  top: 100%;
  /* place below card */
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;

  width: max-content;
  max-width: 160px;
  font-size: 12px;
  text-align: left;
  line-height: 1.3;

  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;

  z-index: 9999;
}

/* Tooltip arrow */
.tooltip-slide::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
}

/* Show tooltip */
.shopping-icon:hover .tooltip-slide {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.partner-link {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #007bff;
}

.partner-link:hover {
  text-decoration: underline;
}

/*End WTB*/