
/* v98 public flow: /products -> detail only, detail -> choose plan -> apply */
.nn-detail-only-actions{
  grid-template-columns:1fr!important;
}
.nn-detail-only-actions .btn{
  width:100%;
}
.nn-gtn-product-card .nn-gtn-mini-price{
  margin-bottom:8px;
}
.nn-plan-select-section-v98{
  background:#fff!important;
}
.nn-detail-plan-grid-v98{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  max-width:980px;
  margin:0 auto;
}
.nn-detail-plan-card-v98{
  background:#fff;
  border:1.5px solid #e5eaf2;
  border-radius:18px;
  padding:26px 22px;
  text-align:center;
  box-shadow:0 14px 38px rgba(16,24,40,.065);
  transition:.16s ease;
}
.nn-detail-plan-card-v98:hover{
  border-color:#e60023;
  transform:translateY(-3px);
  box-shadow:0 22px 54px rgba(230,0,35,.12);
}
.nn-detail-plan-card-v98 h3{
  font-weight:950;
  color:#101828;
  font-size:1.18rem;
  margin-bottom:16px;
}
.nn-detail-plan-price-v98{
  margin-bottom:12px;
}
.nn-detail-plan-price-v98 strong{
  color:#e60023;
  font-size:2.55rem;
  font-weight:950;
  letter-spacing:-.07em;
}
.nn-detail-plan-price-v98 span{
  color:#475467;
  font-weight:900;
}
.nn-detail-plan-card-v98 p{
  color:#667085;
  font-weight:850;
  min-height:24px;
}
.nn-detail-plan-card-v98 .btn{
  border-radius:999px;
  font-weight:950;
  margin-top:10px;
}
@media(max-width:900px){
  .nn-detail-plan-grid-v98{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:620px){
  .nn-detail-plan-grid-v98{
    grid-template-columns:1fr;
  }
}
