/* Payment Method Dialog */
/* .payment-method-dialog {
  padding: 2rem;
  background: white;
  max-width: 600px;
} */


.payment-header h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 0.75rem;
}


.payment-amount {
  color: #737373;
  line-height: 1.25rem;
  font-size: 0.9rem;
  text-align: start;
  font-weight: 500;
  margin-bottom: 1.5rem;
}


.payment-option {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}


.payment-option:hover {
  border-color: #8B5CF6;
}


.payment-option.auto-renewal {
  background: #FBEFFF;
}


.payment-option-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
}


.payment-option-phonepe {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 1.5rem;
}



.payment-checkbox,
.payment-radio {
  width: 21.5px;
  height: 21.5px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #8B5CF6;
  border-radius: 20px;
  border: 1px solid #9DA4AE;
}


.auto-renewal-content{
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    align-items: start;
}


.auto-renewal-content h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F0F0F;
  line-height: 1.25rem;
  text-align: start;
}


.auto-renewal-content p {
  font-size: 0.88rem;
  color: #737373;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: start;
}


.payment-method-info {
  display: flex;
  align-items: center;
  flex: 1;
}


.phonepe-logo {
  display: flex;
  align-items: center;
  gap:0.5rem;
}


.phonepe-logo h3{
    color: #0F0F0F;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
}


.payment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E0E0E0;
}


.payment-total h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #141414;
  margin: 0;
}

.order-success-dialog{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.success-title{
  font-size: 2rem;
  line-height: 3rem;
  text-align: start;
}

.success-description{
  text-align: start;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-method-dialog {
    padding: 1.5rem;
  }


  .payment-footer {
    flex-direction: column;
    align-items: stretch;
  }



}
