/* Product Category 5 – FlyonUI Style */

.pc5-wrap {
  background: #ffffff;
  padding: 60px 0;
}

.pc5-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 16px;
}

.pc5-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pc5-subtitle {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
}

.pc5-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 6px;
  color: #111827;
}

.pc5-heading p {
  color: #6b7280;
  margin-top: 8px;
}

/* Slider Area */
.pc5-slider-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.pc5-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #3b82f6;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.pc5-nav:hover {
  background: #2563eb;
}

/* Slider */
.pc5-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.pc5-slider::-webkit-scrollbar {
  display: none;
}

/* Item */
.pc5-item {
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  text-decoration: none;
  transition: 0.3s;
}

.pc5-item:hover {
  background: #eef2ff;
  transform: translateY(-4px);
}

/* Icon */
.pc5-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc5-icon img {
  width: 34px;
  height: auto;
}

/* Text */
.pc5-item span {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}
