.elementor-102810 .elementor-element.elementor-element-76dce4d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9d1fecc *//* VIP Luxe Checkout Style - FULL CSS with Coupon Input */

.checkout-wrapper {
  max-width: 580px;
  margin: 60px auto;
  width: 100%;
  background: linear-gradient(to bottom right, #ffffff, #f5f2f8);
  border-radius: 24px;
  padding: 50px 35px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e6ddfa;
}

.progress-container {
  width: 100%;
  height: 6px;
  background: #e5d7fd;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 35px;
}

.progress-line {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #a67cfd, #e484ff);
  transition: width 0.5s ease;
  border-radius: 20px;
}

.progress-line.full {
  width: 100%;
}

.checkout-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #2e0d53;
  text-align: center;
}

.input-group {
  margin-bottom: 26px;
  text-align: left;
}

.input-group label {
  font-size: 16px;
  font-weight: 700;
  color: #4a0072;
  display: block;
  margin-bottom: 10px;
}

.input-icon-group {
  display: flex;
  align-items: center;
  background: #fdf7ff;
  border: 2px solid #ddbaff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: inset 0 1px 4px rgba(210, 170, 255, 0.2);
}

.input-icon-group i {
  font-size: 18px;
  color: #b26aff;
  margin-right: 14px;
}

.input-icon-group input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  color: #2b004d;
}

.input-icon-group input:focus {
  outline: none;
}

.vip-coupon-section {
  max-width: 340px;
  margin: 20px auto 30px;
  text-align: center;
}

.vip-coupon-section label {
  font-weight: 700;
  color: #4d007a;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.vip-coupon-wrapper {
  display: flex;
  background: #fdf5ff;
  border: 2px dashed #d8b6ff;
  border-radius: 50px;
  overflow: hidden;
  align-items: center;
}

.vip-coupon-wrapper input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  background: transparent;
  color: #440066;
}

.vip-coupon-wrapper input:focus {
  outline: none;
}

.vip-coupon-wrapper button {
  background: linear-gradient(90deg, #ff6600, #ff3c94);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: background 0.3s ease;
}

.vip-coupon-wrapper button:hover {
  background: linear-gradient(90deg, #ff3c94, #ff6600);
}

#vipDiscountMessage {
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #28a745;
}
 */

.price-display {
  font-size: 32px;
  font-weight: 900;
  margin: 30px 0;
  color: #4b0082;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.continue-btn, .pay-now-btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(90deg, #7b2ff7, #f107a3);
  color: white;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.continue-btn:hover, .pay-now-btn:hover {
  transform: scale(1.05);
}

.payment-select-modal h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  color: #3c0066;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.pay-option {
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 20px 14px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pay-option img {
  height: 52px;
  margin-bottom: 12px;
  display: block;
}

.pay-option p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #330066;
}

.pay-option.selected {
  border-color: #cc66ff;
  background: #fef2ff;
  box-shadow: 0 6px 20px rgba(204, 102, 255, 0.25);
}

/* ✅ PAYMENT POPUP FULL FIXED (for crypto or future use) */
.payment-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.payment-popup-content {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  width: 96%;
  max-width: 620px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: visible;
  max-height: none;
}

#paymentIframe {
  width: 100%;
  height: auto;
  min-height: 400px;
  border: none;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .checkout-wrapper {
    padding: 30px 20px;
  }

  .payment-popup-content {
    width: 100%;
    padding: 16px;
    max-height: 95vh;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .pay-option {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-76dce4d *//* Apply full opacity to all images on the page */
img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
/* Apply full opacity to all images on the page */
img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}/* End custom CSS */