.checkout-trust {
    margin-top: 3rem;
    border-top: solid 1px #312f2f;
    text-align: center;
}

.checkout-trust .trust-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-badges span {
  background: rgba(108,99,255,0.15);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #d1d1d1;
}

.payment-logos {
      display: flex
;
    justify-content: center;
    gap: 1rem;
    background: #856103;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 10px;
}

.payment-logos img {
  height: 28px;
  opacity: 100;
  transition: opacity 0.3s;
}

.payment-logos img:hover {
  opacity: 1;
}


/* Layout responsive */
.checkout-summary {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.checkout-details {
  flex: 2;
  order: 1;
}

.checkout-box {
    flex: 1;
  order: 2;
  background: rgba(18, 18, 28, .9);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #eee;
}
@media (max-width: 768px) {
  .checkout-summary {
    flex-direction: column;
  }
  .checkout-details {
    order: 1; /* pehle details card */
  }
  .checkout-box {
    order: 2; 
    padding: 10px!important;
  }
  .checkout-title{
      font-size: 20px !important;
  }
  .checkout-sub{
      font-size: 13px!important;
  }
  .checkout-hero{
    margin: 10px!important;
  }
}

/* Modify Tabs */
.modify-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.modify-tabs button {
  background: rgba(255,255,255,0.08);
  border: none;
  padding: .7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  color: #eee;
  font-weight: 500;
  transition: all .3s ease;
}
.modify-tabs button.active {
  background: linear-gradient(135deg, #6f67f5, #35328f);
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}
.modify-tabs button:hover {
  background: rgba(255,255,255,0.15);
}


.checkout-hero {
    padding: 0.5rem 0.5rem;
    text-align: center;
    background: radial-gradient(circle at 20% 30%, rgba(108, 99, 255, .25), transparent 70%), radial-gradient(circle at 80% 70%, rgba(255, 184, 0, .18), transparent 60%), #0f111a;
    color: #fff;
    margin: 70px;
    border-radius: 15px;
}
.checkout-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.checkout-sub {
  font-size: 1.1rem;
  color: #bbb;
  margin-top: .5rem;
}


.card {
  background: rgba(18,18,28,.9); /* dark glass */
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  color: #eee;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.section-subtitle {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  color: #bbb;
}
.highlight {
  font-weight: 600;
  color: #6c63ff;
}
.price {
  font-size: 1.2rem;
  color: #ffb800;
}
.checkout-features {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.checkout-features li {
  margin-bottom: .5rem;
  font-size: .95rem;
  color: #ddd;
}

/* Plan Image */
.plan-image {
  margin-bottom: 1rem;
  text-align: center;
}
.plan-image img {
    max-width: 15%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
    position: absolute;
    right: 10px;
    top: 10px;
}

/* Checkout Box */
.checkout-total {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.checkout-box h3{
    color: #04e321;
}
.buy-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  
  /* Colors */
  background: linear-gradient(135deg, #6c63ff, #ffb800);
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,.3);
}

.buy-btn:hover {
  background: linear-gradient(135deg, #5a52e5, #e6a500);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.4);
}

.secondary-btn {
  margin-top: 1rem;
  background: rgba(255,255,255,0.08);
  color: #eee;
}
.secondary-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* Modify Section */
.modify-plan {
  margin-top: 2rem;
}
.modify-tabs label {
  display: block;
  margin-top: .8rem;
  font-weight: 500;
  color: #ccc;
}
.modify-tabs select {
  width: 100%;
  padding: .6rem;
  border: 1px solid #333;
  background: #1c1f2a;
  color: #eee;
  border-radius: 8px;
  margin-top: .3rem;
}
