/* ========================================
   AITOLIE - Product Detail (Chatbot) fixes
   - pricing/plan cards layout
   ======================================== */

.product-price-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 18px 10px;
}

.product-price-box > p{
  text-align: center;
  margin: 0 0 22px;
}

.product-price-row{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.product-plan{
  flex: 1 1 360px;
  max-width: 520px;
  background: linear-gradient(145deg, #151515 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.product-plan.featured{
  border-color: rgba(201,169,98,0.55);
}

.product-plan .plan-name{
  display: inline-block;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  opacity: .92;
  margin-bottom: 10px;
}

.product-plan .plan-price{
  display: block;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--gold, #C9A962);
  margin: 2px 0 10px;
}

.product-plan .plan-desc{
  color: #cfcfcf;
  opacity: .92;
  margin: 0 0 16px;
}

.product-plan .work-card__buy-btn{
  width: 100%;
  max-width: 360px;
  margin: 14px auto 0;
  border-radius: 14px;
}

.product-plan .work-card__buy-btn--primary{
  border-radius: 14px;
}

/* Option cards spacing */
.product-price-box h3 + div{
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 640px){
  .product-price-box{
    padding-top: 26px;
  }
  .product-plan{
    padding: 22px 18px 18px;
  }
  .product-plan .plan-price{
    font-size: 30px;
  }
  .product-plan .work-card__buy-btn{
    max-width: none;
  }
}
