.elementor-154 .elementor-element.elementor-element-b41d2d2{--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;}/* Start custom CSS for html, class: .elementor-element-d806abb *//* ===============================
   ULTRA PREMIUM PAYMENT PAGE
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Background */

body{
    background: radial-gradient(circle at top,#0f172a,#020617);
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
    color:#fff;
}

.payment-section{
    width:100%;
    display:flex;
    justify-content:center;
}

/* Card */

.payment-card{
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    width:100%;
    max-width:420px;
    padding:45px 30px;
    border-radius:22px;
    text-align:center;
    position:relative;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Badge */

.badge{
    background: rgba(56,189,248,0.15);
    color:#38bdf8;
    font-size:12px;
    padding:6px 14px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:18px;
    font-weight:600;
}

/* Title */

h1{
    font-size:26px;
    margin-bottom:8px;
    color:#fff;
    font-weight:700;
}

.subtitle{
    font-size:14px;
    color:#9ca3af;
}

/* Price */

.price{
    font-size:44px;
    font-weight:800;
    margin:22px 0 28px;
    color:#22c55e;
    text-shadow:0 0 25px rgba(34,197,94,0.6);
}

/* Buttons */

.btn{
    display:block;
    width:100%;
    padding:16px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    margin-bottom:15px;
    transition: all 0.3s ease;
    letter-spacing:0.3px;
}

/* Pay Button */

.btn-pay{
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color:white;
    box-shadow:0 12px 30px rgba(34,197,94,0.4);
}

.btn-pay:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 18px 40px rgba(34,197,94,0.6);
}

/* Done Button */

.btn-done{
    background: #020617;
    color:white;
    border:1px solid rgba(255,255,255,0.15);
}

.btn-done:hover{
    background:#020617;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.6);
}

/* Note */

.note{
    font-size:13px;
    color:#9ca3af;
    margin-top:10px;
    line-height:1.6;
}

/* Trust Line */

.trust{
    margin-top:14px;
    font-size:13px;
    color:#fbbf24;
}

/* Mobile */

@media(max-width:500px){

    .payment-card{
        padding:35px 22px;
    }

    .price{
        font-size:38px;
    }

}/* QR BOX */

.qr-box{
  display:none;
  margin-top:20px;
  padding:20px;
  border-radius:16px;
  background: linear-gradient(145deg,#020617,#020617);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  text-align:center;
}

/* QR IMAGE FIX */

.qr-box img{
  width:220px;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto 15px;
  border-radius:14px;
  padding:12px;
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* QR TITLE */

.qr-box p{
  margin:6px 0;
  color:#e5e7eb;
  font-size:15px;
}

/* CHECK TEXT */

.qr-note{
  color:#22c55e;
  font-weight:600;
  font-size:14px;
}

/* BUTTON STYLE IMPROVE */

.btn-qr{
  background: linear-gradient(135deg,#6366f1,#4f46e5);
  color:#fff;
  border:none;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  width:100%;
  transition:0.3s;
}

.btn-qr:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(79,70,229,0.5);
}

/* MOBILE */

@media(max-width:600px){

  .qr-box img{
    width:180px;
  }

}/* End custom CSS */