/* HERO */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 50%;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 60px 0 0px 0px;
  align-items:center;
}

.intro-image img {
  width: 100%;
  border-radius: 12px;
}
.intro-text h2{
	margin-bottom:15px;
}
.intro-text p{
	margin: 10px 0px 10px 0px;
    font-size: 18px;
	text-align:justify;
}
/* APPLICATION */
.product-application {
  background: #fff2e6; /* soft orange */
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-left {
  background: #ff7a00; /* main orange block */
}

.app-right {
  padding: 60px;
}

.app-icons div {
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ffe4cc;
  font-size: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* DEFAULT CARD */
.benefit-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card h4{
    margin-bottom: 10px;
}

/* ICON COLOR */
.benefit-card h4::before {
  content: "✔";
  color: #ff7a00;
  margin-right: 8px;
}

/* HOVER EFFECT */
.benefit-card:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-5px);
}

/* HOVER TEXT FIX */
.benefit-card:hover p,
.benefit-card:hover h4 {
  color: #fff;
}

/* ACTIVE ORANGE CARDS (ONLY 2) */
.benefit-card.highlight {
  background: #ff7a00;
  color: #fff;
}

/* TEXT FIX FOR ACTIVE */
.benefit-card.highlight p,
.benefit-card.highlight h4 {
  color: #fff;
}

.benefit-card:hover h4::before {
  color: #fff;
}

/* ICON ON ACTIVE (highlight) → WHITE */
.benefit-card.highlight h4::before {
  color: #fff;
}

.product-specs{
    padding:40px 0px;
}

/* SPEC TABLE */
.spec-table,
.spec-table table{
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table td,th {
  padding: 12px 26px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

/* ODD ROW (LIGHT ORANGE) */
.spec-table tr.odd th,
.spec-table tr.odd td {
  background: #e3794a;
  color: white;
}

/* EVEN ROW (WHITE) */
.spec-table tr.even th,
.spec-table tr.even td {
  background: #ffffff;
}

.product-specs h2,
.product-benefits h2{
    margin-bottom: 30px;
    text-align: center;
}



/* SECTION */
.why-premium {
  padding: 70px 20px;
}

/* HEADER */
.why-header {
  margin-bottom: 40px;
  text-align: center;
}

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

/* CARD */
.why-premium-card {
  position: relative;
  background: linear-gradient(135deg, #ffbf84, transparent);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: left;
  overflow: hidden;
  transition: all 0.35s ease;
  display:flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}


/* ORANGE GLOW LAYER */
.why-premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 0 rgba(255,122,0,0);
  transition: 0.3s;
}

/* ICON BOX */
.icon-box {
  width: 55px;
  height: 55px;
   background: #ff7a00;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  /*stroke: #ff7a00;*/
  fill: none;
  stroke-width: 2;
}

/* TEXT */
.why-premium-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.why-premium-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER EFFECT */
.why-premium-card:hover {
  transform: translateY(-8px);
}

.why-premium-card:hover::before {
  opacity: 1;
}

.why-premium-card:hover::after {
  box-shadow: 0 15px 35px rgba(255,122,0,0.2);
}

/* ICON ON HOVER */
.why-premium-card:hover .icon-box {
  background: #ff7a00;
}

.why-premium-card:hover svg {
  stroke: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero-content,
    .hero-content h1{
        width:100%;
        font-size:20px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .intro-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px 0;
    }
    .intro-text h2{
        font-size:20px;
        margin-bottom: 10px;
    }
    .why-premium {
      padding: 0px 16px 40px 16px;
    }
    .spec-table{
        padding:0px 10px;
    }
  .why-premium-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scrollbar-width: none;
  }

  .why-premium-card {
    min-width: 80%;
  }

}
