.product-showcase-card{
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(127,208,210,0.08), rgba(85,195,165,0.06));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.product-showcase-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  align-items:stretch;
}

.product-showcase-image,
.product-showcase-features{
  background:transparent;
}

.product-showcase-image{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px;
  border-right:1px solid rgba(255,255,255,0.04);
}

.product-showcase-image img{
  max-width:100%;
  max-height:360px;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
}

.product-showcase-features{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:42px 36px;
}

.product-feature-list{
  margin:0;
  padding-left:22px;
}

.product-feature-list li{
  margin-bottom:16px;
  color:var(--text);
  font-size:16px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:-0.01em;
}

.product-feature-list li::marker{
  color:var(--accent2);
}

.product-feature-list li:last-child{
  margin-bottom:0;
}

.product-showcase-bottom{
  padding:34px 36px 38px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.product-showcase-bottom h2{
  margin-bottom:16px;
}

.product-showcase-bottom .muted{
  max-width:980px;
}

.products-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:34px;
  align-items:stretch;
}

.feature-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  border:1px solid rgba(85,195,165,0.28);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(85,195,165,0.14), rgba(127,208,210,0.08));
  box-shadow:var(--shadow);
}

.feature-list{
  margin:0;
  padding-left:0;
  list-style:none;
  width:100%;
  display:grid;
  gap:14px;
}

.feature-list li{
  color:#dff7ee;
  font-size:18px;
  line-height:1.5;
  letter-spacing:-0.015em;
  font-weight:600;
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.feature-list li::before{
  content:"•";
  color:var(--accent2);
  font-size:22px;
  line-height:1;
  margin-top:2px;
  flex:0 0 auto;
}

@media (max-width: 900px) {
  .product-showcase-top {
    grid-template-columns: 1fr;
  }

  .product-showcase-image {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .product-showcase-features {
    padding: 28px 24px;
  }

  .product-showcase-bottom {
    padding: 28px 24px 30px;
  }

  .products-hero-grid{grid-template-columns:1fr}
  .product-showcase-image{min-height:240px; padding:20px}
  .product-showcase-image img{max-height:260px; width:100%}
  .product-feature-list{padding-left:18px}
  .product-feature-list li{font-size:15px}
  .feature-list li{font-size:16px}
}
