/* Nav Cart Icon — loaded in base templates for landing pages */
.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--brand, #77e0b5);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  margin: 0 2px;
  vertical-align: middle;
}
.nav-cart-link:hover {
  background: var(--brand-soft, rgba(119, 224, 181, 0.15));
  color: var(--brand-contrast, #a0ffd9);
  transform: scale(1.08);
}
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--brand, #77e0b5);
  color: var(--bg, #0b0d10);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.nav-cart-badge {
  animation: cart-pulse 2s ease-in-out 1;
}
