
.active-product{
  position:relative;
}
.active-product::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:2px;
  height:3px;
  background:var(--red);
  border-radius:4px;
}
.products-hero{
  padding:76px 0;
  background:
    radial-gradient(circle at 88% 20%,rgba(198,17,31,.08),transparent 25%),
    linear-gradient(135deg,#fbfcfd 0%,#eef4f8 100%);
}
.products-hero-grid{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:56px;
  align-items:center;
}
.breadcrumb{
  display:flex;
  gap:9px;
  color:var(--muted);
  font-size:15px;
  margin-bottom:24px;
}
.breadcrumb a{color:var(--navy);font-weight:750;text-decoration:none}
.products-hero h1{
  color:var(--navy);
  max-width:900px;
}
.products-hero-lead{
  font-size:20px;
  color:var(--muted);
  max-width:770px;
}
.products-outline{
  border-color:var(--navy);
  color:var(--navy);
  background:#fff;
}
.products-summary-card{
  min-height:300px;
  padding:34px;
  border-radius:20px;
  background:var(--navy);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
}
.products-summary-card .eyebrow{color:#f3c4c8}
.products-summary-card strong{
  font-size:34px;
  line-height:1.15;
  margin-bottom:13px;
}
.products-summary-card span{
  color:#d8e3ec;
  font-size:17px;
}

.products-hub-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.hub-card{
  display:grid;
  grid-template-columns:230px 1fr;
  min-height:250px;
  border:1px solid var(--line);
  border-radius:15px;
  overflow:hidden;
  background:#fff;
  text-decoration:none;
  transition:.18s;
}
.hub-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.hub-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hub-card>div{padding:24px}
.hub-card>div>span{
  display:inline-grid;
  place-items:center;
  width:42px;height:42px;
  border-radius:10px;
  background:#fff1f2;
  color:var(--red);
  font-weight:900;
  margin-bottom:16px;
}
.hub-card h3{font-size:22px}
.hub-card p{
  color:var(--muted);
  font-size:16px;
}
.hub-card strong{
  color:var(--red);
  font-size:15px;
}

.additional-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:52px;
  align-items:start;
}
.additional-grid>div:first-child p:not(.eyebrow){color:var(--muted)}
.product-pill-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.product-pill-grid span{
  min-height:58px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:10px;
  display:flex;
  align-items:center;
  background:#fff;
  color:var(--navy);
  font-weight:750;
}

.sourcing-section{
  background:var(--navy);
  color:#fff;
}
.sourcing-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}
.sourcing-panel h2{color:#fff}
.sourcing-panel p{color:#dbe6ef}
.sourcing-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}
.whatsapp-solid{
  background:var(--green);
  color:#fff;
}
.whatsapp-solid:hover{background:#0f7f3d}
.sourcing-list{
  display:grid;
  gap:12px;
}
.sourcing-list div{
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  background:rgba(255,255,255,.05);
}
.sourcing-list strong{
  display:block;
  margin-bottom:4px;
}
.sourcing-list span{
  color:#dbe6ef;
  font-size:15px;
}

@media(max-width:920px){
  .products-hero-grid,
  .additional-grid,
  .sourcing-grid{
    grid-template-columns:1fr;
  }
  .products-hub-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .products-hero{padding:54px 0}
  .hub-card{
    grid-template-columns:1fr;
  }
  .hub-card img{
    height:210px;
  }
  .product-pill-grid{
    grid-template-columns:1fr 1fr;
  }
  .sourcing-actions{
    display:grid;
    grid-template-columns:1fr;
  }
}
