/**
 * Split from numart_main.css for maintainability.
 */

/* Product tags wrapper */
#tags,
.cart-modal-tags {
  display: flex;
  flex-wrap: wrap;
  /* allow wrapping */
  gap: 8px;
  /* spacing between tags */
  padding: 8px 0;
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* Brand and category blocks inside #tags */
#tags .my-brand,
.cart-modal-tags .my-brand {
  font-weight: bold;
  color: #333;
}

#tags .main-category,
.main-category {
  margin-left: 1rem;
}

/* Style the actual links */
#tags a,
.cart-modal-tags a {
  display: inline-block;
  background: linear-gradient(135deg, var(--nm-gray-50), #ececec);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#tags a:hover,
.cart-modal-tags a:hover {
  background: linear-gradient(135deg, #ff6f61, #ff8a75);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

