/* ================= HERO ================= */
.prd-hero {
  position: relative;
  height: 320px;
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 45, 0.75);
}

.prd-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.prd-hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.prd-breadcrumb {
  font-size: 14px;
  letter-spacing: 1px;
}

.prd-breadcrumb span {
  color: #e0002a;
}

.prd-breadcrumb strong {
  color: #fff;
}

/* ================= CONTENT ================= */
.prd-section {
  padding: 90px 20px;
  background: #fff;
}

.prd-container {
  max-width: 1200px;
  margin: auto;
}

.prd-title {
  font-size: 40px;
  font-weight: 700;
  color: #c0002b;
  margin-bottom: 18px;
}

.prd-desc {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 70px;
}

/* ================= GRID ================= */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}

.prd-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.prd-card img {
  width: 120px;
  height: 150px;
  margin-bottom: 16px;
}

.prd-card h4 {
  font-size: 15px;
  letter-spacing: 1px;
  color: #b00024;
  font-weight: 700;
}

/* Hover */
.prd-card:hover img {
  transform: scale(1.08);
  transition: 0.4s;
}

/* Active animation */
.prd-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .prd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .prd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prd-hero-content h1 {
    font-size: 32px;
  }

  .prd-title {
    font-size: 32px;
  }
}
