@charset "UTF-8";

/* =========================================================
   DIVINE HEALTH — SITE-WIDE PREMIUM COMMERCE NAVIGATION
   Palette: #000 / #fff / #00a79d only (plus transparent RGBA).
========================================================= */

.dh-commerce-nav,
.dh-commerce-nav * {
  box-sizing: border-box;
}

.dh-commerce-nav {
  position: relative;
  z-index: 990;
  width: 100%;
  padding: 9px 18px 11px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 167, 157, 0.18);
}

.dh-commerce-nav-inner {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: 6px;
  gap: 5px;
  background: #fff;
  border: 1px solid rgba(0, 167, 157, 0.24);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dh-commerce-nav-link {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  padding: 8px 9px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  color: #000 !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dh-commerce-nav-link i {
  flex: 0 0 auto;
  color: #00a79d;
  font-size: 16px;
  line-height: 1;
  transition: color .2s ease;
}

.dh-commerce-nav-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dh-commerce-nav-link:hover,
.dh-commerce-nav-link:focus-visible,
.dh-commerce-nav-link.is-active {
  color: #fff !important;
  background: #00a79d;
  border-color: #00a79d;
  box-shadow: 0 7px 18px rgba(0, 167, 157, 0.25);
  outline: 0;
  transform: translateY(-1px);
}

.dh-commerce-nav-link:hover i,
.dh-commerce-nav-link:focus-visible i,
.dh-commerce-nav-link.is-active i {
  color: #fff;
}

.dh-commerce-nav-link:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #00a79d;
}

.dh-commerce-nav-link b {
  display: inline-grid;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  place-items: center;
  color: #00a79d;
  background: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1180px) {
  .dh-commerce-nav {
    padding-right: 12px;
    padding-left: 12px;
  }

  .dh-commerce-nav-inner {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #00a79d #fff;
  }

  .dh-commerce-nav-link {
    flex: 0 0 auto;
    min-width: 128px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .dh-commerce-nav {
    padding: 7px 8px 9px;
  }

  .dh-commerce-nav-inner {
    padding: 5px;
    gap: 4px;
    border-radius: 13px;
  }

  .dh-commerce-nav-link {
    min-width: 112px;
    min-height: 43px;
    padding: 7px 8px;
    gap: 6px;
    border-radius: 9px;
    font-size: 12px;
  }

  .dh-commerce-nav-link i {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dh-commerce-nav-link {
    transition: none;
  }
}
