/* ============================================================
   HYBRID INVERTER PRODUCT PAGE
   ============================================================ */

/* ---------- Page Wrapper ---------- */
.hybrid-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

/* ---------- Breadcrumb ---------- */
.hybrid-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hybrid-breadcrumb a {
  color: #64748b;
  transition: color 0.25s;
}
.hybrid-breadcrumb a:hover {
  color: #16a34a;
}
.hybrid-breadcrumb i {
  font-size: 0.6rem;
  color: #cbd5e1;
}
.hybrid-breadcrumb span {
  color: #0f172a;
  font-weight: 600;
}

/* ---------- Hero Card ---------- */
.hybrid-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
}

/* ---------- Gallery ---------- */
.hybrid-gallery {
  position: relative;
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
}
.hybrid-gallery > img {
  width: 85%;
  max-height: 340px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}
.hybrid-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f59e0b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

/* Thumbnails */
.hybrid-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.hybrid-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-width: 90px;
}
.hybrid-thumb img {
  width: 70px;
  height: 55px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hybrid-thumb span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}
.hybrid-thumb.active {
  border-color: #16a34a;
  box-shadow: 0 2px 12px rgba(22,163,74,0.2);
}
.hybrid-thumb.active span {
  color: #16a34a;
}
.hybrid-thumb:hover:not(.active) {
  border-color: #94a3b8;
}

/* ---------- Intro ---------- */
.hybrid-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hybrid-intro .hybrid-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #16a34a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hybrid-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 8px;
}
.hybrid-intro h1 em {
  font-style: normal;
  color: #16a34a;
}
.hybrid-intro h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 14px;
}
.hybrid-intro p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Instructions (inline styles also in blade, these reinforce) */
.hybrid-instructions {
  margin-top: 12px;
  border: 1px solid #dce6f1;
  border-radius: 11px;
  overflow: hidden;
}
.hybrid-instructions h3 {
  margin: 0;
  padding: 11px 16px;
  background: #0b4d83;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
}
.hybrid-instructions ol {
  margin: 0;
  padding: 12px 18px 12px 34px;
  background: #f6f9fc;
}
.hybrid-instructions li {
  padding: 5px 0;
  color: #213c5d;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ---------- Sections ---------- */
.hybrid-section {
  margin-top: 40px;
}
.hybrid-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
}
.hybrid-line {
  display: block;
  width: 44px;
  height: 3px;
  background: #16a34a;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ---------- Features Grid ---------- */
.hybrid-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hybrid-features article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hybrid-features article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.08);
  border-color: #16a34a;
}
.hybrid-features article i {
  font-size: 1.5rem;
  color: #16a34a;
  margin-bottom: 10px;
  display: block;
}
.hybrid-features article b {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.hybrid-features article small {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.4;
}

/* ---------- Specifications Table ---------- */
.hybrid-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce4eb;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(10,22,40,0.04);
}
.hybrid-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
  font-size: 0.78rem;
}
.hybrid-table th,
.hybrid-table td {
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  text-align: center;
  vertical-align: middle;
}
.hybrid-table th {
  background: #0b4d83;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.hybrid-table th:first-child,
.hybrid-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  min-width: 220px;
}
.hybrid-table tr.table-head td {
  background: #e8f5e9;
  color: #166534;
  font-weight: 800;
  font-size: 0.78rem;
  text-align: left;
  letter-spacing: 0.3px;
}
.hybrid-table tbody tr:hover:not(.table-head) {
  background: #f0fdf4;
}
.hybrid-note {
  margin-top: 12px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hybrid-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }
  .hybrid-gallery > img {
    max-height: 280px;
  }
  .hybrid-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .hybrid-intro h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hybrid-page {
    padding: 18px 14px 40px;
  }
  .hybrid-hero-card {
    padding: 16px;
    border-radius: 12px;
  }
  .hybrid-gallery {
    padding: 20px 12px 14px;
  }
  .hybrid-gallery > img {
    max-height: 200px;
  }
  .hybrid-thumbs {
    gap: 6px;
    flex-wrap: wrap;
  }
  .hybrid-thumb {
    min-width: 75px;
    padding: 4px;
  }
  .hybrid-thumb img {
    width: 55px;
    height: 42px;
  }
  .hybrid-intro h1 {
    font-size: 1.6rem;
  }
  .hybrid-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hybrid-features article {
    padding: 14px 10px;
  }
  .hybrid-section h2 {
    font-size: 1.3rem;
  }
  .hybrid-table {
    font-size: 0.72rem;
  }
  .hybrid-table th,
  .hybrid-table td {
    padding: 8px 10px;
  }
}
