/* ================= HERO ================= */

.navbar-nav .nav-link,
.header-wrapper .btn-slant {
    white-space: nowrap !important;
}
.prd-hero {
  position: relative;
  min-height: 170px; 
  padding: 30px 20px; 
  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);
  z-index: 1; 
}

.prd-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  margin-top: 60px;
  width: 100%;
}

/* --- 2. TYPOGRAPHY (Responsive) --- */
.prd-hero-content h1 {
  font-size: 38px; 
  font-weight: 800;
  margin-bottom: 0px;
  margin-top: 50px; 
  letter-spacing: 1.5px;
  line-height: 1.2; 
  text-transform: uppercase;
}

.prd-breadcrumb {
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 10px;
  font-weight: 600;
}

/* --- 3. BREADCRUMB LINKS --- */
.prd-breadcrumb a {
  color: #c70327; 
  text-decoration: none; 
  cursor: pointer;
  transition: color 0.3s ease;
}

.prd-breadcrumb a:hover {
  color: #ff3355; 
}

.prd-breadcrumb .arrow {
  color: #e0002a;
  margin: 0 5px; 
}

.prd-breadcrumb a.bold-link {
  font-weight: 700;
  color: #fff; 
}

.prd-breadcrumb a.bold-link:hover {
  color: #e0002a;
}

/* --- 4. MEDIA QUERIES (The Fix for Mobile) --- */

/* Tablet (Screens below 992px) */
@media (max-width: 991px) {
  .prd-hero {
    min-height: 220px;
  }
  
  .prd-hero-content h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }
}

/* Mobile (Screens below 576px) */
@media (max-width: 575px) {
  .prd-hero {
    min-height: 200px;
    padding: 30px 15px;
  }

  .prd-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  margin-top: 30px;
  width: 100%;
}

  .prd-hero-content h1 {
    font-size: 28px; 
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 0px;
    align-items: center;
  }

  .prd-breadcrumb {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 5px;
  }
  
  .prd-breadcrumb .arrow {
    margin: 0 2px; 
  }
}
/* ================= CONTENT ================= */
.prd-section {
  padding: 50px 20px;
  background: #fff;
}

.prd-container {
  max-width: 1200px;
  margin: auto;
}

.prd-title {
  font-size: 46px;
  font-weight: 800;
  color: #c0002b;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.prd-desc {
  max-width: 1200px;
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* ================= GRID ================= */
/* GRID */
.ci-prd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
}

/* CARD */
.ci-prd-card {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ci-prd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.ci-prd-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.ci-prd-img img {
  max-height: 130px;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.ci-prd-card:hover img {
  transform: scale(1.08);
}

/* TITLE */
.ci-prd-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #c4002f;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* LEARN MORE (HIDDEN BY DEFAULT) */
.ci-learn-more {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

/* SHOW ON HOVER */
.ci-prd-card:hover .ci-learn-more {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ci-prd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ci-prd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ci-prd-grid {
    grid-template-columns: 1fr;
  }
}
