/* ==========================================================================
   Related Categories Component (Inspired by EyeBuyDirect)
   ========================================================================== */

.related-categories-section {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  direction: rtl;
  text-align: right;
}

.related-categories-header {
  margin-bottom: 16px;
}

.related-categories-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.3px;
}

.related-categories-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.related-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  color: #334155;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.related-category-pill .pill-icon {
  font-size: 12px;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.related-category-pill:hover {
  background: #f8fafc;
  border-color: #d4af37;
  color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.related-category-pill:hover .pill-icon {
  color: #b8860b;
  transform: scale(1.15);
}

.related-category-pill:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 768px) {
  .related-categories-section {
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .related-categories-title {
    font-size: 17px;
  }

  .related-categories-pills {
    gap: 8px;
  }

  .related-category-pill {
    padding: 7px 14px;
    font-size: 12.5px;
    gap: 6px;
  }

  .related-category-pill .pill-icon {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .related-category-pill {
    padding: 6px 12px;
    font-size: 12px;
  }
}
