/* =========================
   PREMIUM MATERIALS SECTION
========================= */

.products-premium {
  padding: 80px 8%;
  background: #f9fafb;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-soft-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
}

.products-header h1 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.products-header p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 20px;
}

.product-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.product-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .products-header h1 {
    font-size: 28px;
  }

  .products-premium {
    padding: 60px 5%;
  }

}

/* =========================
   PREMIUM ROOF STYLES SECTION
========================= */

.roof-styles-premium {
  padding: 100px 8%;
  background: #f8f9fb;
}

.roof-styles-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.roof-styles-header .section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(254, 7, 0, 0.08);
  color: #FE0700;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.roof-styles-header h1 {
  font-size: 42px;
  color: #111;
  line-height: 1.3;
  margin-bottom: 20px;
}

.roof-styles-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}


/* GRID */

.roof-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* CARD */

.style-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: fit-content;
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


/* IMAGE */

.style-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.style-card:hover img {
  transform: scale(1.05);
}


/* CONTENT */

.style-content {
  padding: 25px;
}

.style-content h2 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.style-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* BUTTON */

.style-btn {
  display: inline-block;
  text-decoration: none;
  background: #FE0700;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.style-btn:hover {
  background: #d90400;
  transform: translateY(-2px);
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .products-grid {
    grid-template-columns: 1fr;
  }

  .roof-styles-grid {
    grid-template-columns: 1fr;
  }

  .roof-styles-premium {
    padding: 70px 5%;
  }

  .roof-styles-header h1 {
    font-size: 30px;
  }

  .style-card img {
    height: 220px;
  }

}