:root {
  --angahi-navy: #1E3557;
  --angahi-green-soft: #EAF9EF;
  --angahi-green-deep: #43C467;
  --angahi-border: #D9E1EA;
  --angahi-card: #FFFFFF;
  --angahi-accent: #F0F7F2;
}

.restaurant-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 24px;
  max-width: 1440px;
}

.restaurant-subnav__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--angahi-card);
  border: 1px solid var(--angahi-border);
  color: var(--angahi-navy);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
}

.restaurant-subnav__item:hover {
  background: var(--angahi-accent);
  color: var(--angahi-navy);
}

.restaurant-subnav__item--active {
  background: var(--angahi-navy);
  border-color: var(--angahi-navy);
  color: white;
}

@media (max-width: 768px) {
  .restaurant-subnav {
    margin-bottom: 18px;
  }
}

.restaurant-cart-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #12284c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

/* --- Cart icon + count badge style (larger, clearly visible) --- */
.restaurant-cart-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
  color: #12284c;
}

.restaurant-cart-indicator svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
}

.restaurant-cart-indicator .restaurant-cart-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #12284c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(18, 40, 76, 0.18);
}

.restaurant-product-page__breadcrumb .restaurant-cart-indicator {
  margin-left: 8px;
}

.storefront-panel h3 .restaurant-cart-indicator {
  margin-left: 8px;
}

.restaurant-subnav .restaurant-cart-indicator,
.restaurant-subnav a .restaurant-cart-indicator {
  margin-left: 8px;
}
