.elementor-14579 .elementor-element.elementor-element-804768c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14579 .elementor-element.elementor-element-804768c.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:1200px) and (min-width:768px){.elementor-14579 .elementor-element.elementor-element-804768c{--width:945px;}}/* Start custom CSS for html, class: .elementor-element-c452723 *//* Base container */
.checkout-wrapper {
  max-width: 520px;
  margin: 60px auto;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Progress bar */
.progress-container {
  width: 100%;
  height: 5px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.progress-line {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  transition: width 0.5s ease;
  border-radius: 10px;
}
.progress-line.full {
  width: 100%;
}

/* Titles */
.checkout-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 35px;
  color: #111;
  text-align: center;
}

/* Inputs */
.input-group {
  margin-bottom: 22px;
  text-align: left;
}
.input-group label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}
.input-icon-group {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 16px;
}
.input-icon-group i {
  font-size: 18px;
  color: #ff6600;
  margin-right: 12px;
}
.input-icon-group input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #222;
}
.input-icon-group input:focus {
  outline: none;
}

/* Coupon Field (SMALL + CENTERED) */
.input-group.coupon-group {
  max-width: 240px;
  margin: 0 auto 20px auto;
  text-align: center;
}
.input-group.coupon-group label {
  text-align: center;
}
.input-group.coupon-group .input-icon-group {
  padding: 8px 12px;
  background: #fffef9;
  border: 1px solid #ffb46a;
  justify-content: center;
}
.input-group.coupon-group input {
  font-size: 14px;
  text-align: center;
}
.input-group.coupon-group i {
  font-size: 14px;
  color: #ff7a00;
  margin-right: 8px;
}

/* Price */
.price-display {
  font-size: 30px;
  font-weight: 800;
  margin: 25px 0 10px;
  color: #111;
  text-align: center;
}

/* Continue Button */
.continue-btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff5e00, #ff7a00);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.continue-btn:hover {
  transform: scale(1.03);
}

/* Payment Modal */
.payment-select-modal h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
.payment-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.pay-option {
  width: 140px;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 18px 12px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.pay-option img {
  height: 48px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pay-option p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #111;
}
.pay-option.selected {
  border-color: #ff6600;
  background: #fff7ee;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

/* Pay now */
.pay-now-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #ff5e00, #ff7a00);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pay-now-btn:hover {
  background: linear-gradient(90deg, #ff4d00, #ff6600);
}

/* Pay4Bit Popup */
.payment-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.payment-popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  width: 95%;
  max-width: 600px;
  height: 90vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.close-popup-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  border: 2px solid #ff7a00;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.close-popup-btn:hover {
  background: linear-gradient(135deg, #ff7a00, #ff5e00);
  color: #fff;
  border-color: #ff5e00;
  transform: scale(1.1);
}
.iframe-scaler {
  width: 100%;
  height: calc(100% - 40px);
  overflow: auto;
  border-radius: 15px;
}
#paymentIframe {
  width: 1200px;
  height: 1000px;
  border: none;
}

@media (max-width: 600px) {
  .payment-popup-content {
    width: 100%;
    height: 75vh;
    max-width: 700px;
  }
  #paymentIframe {
    width: 900px;
    height: 1200px;
  }
}/* End custom CSS */