body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ✅ GRID LAYOUT */
.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 40px 30px 120px;
}

/* ---------- LEFT SIDE ---------- */
.intro-section {
  text-align: left;
  padding: 10px;
}

.intro-section .logo img {
  width: 170px;
  margin-bottom: 20px;
}

.intro-section h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #111;
}

.intro-section .description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-top: 10px;
  max-width: 90%;
}

/* ---------- PAYMENT SECTION ---------- */
.payment-section {
  padding: 20px;
}

.payment-details h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;

  padding-bottom: 8px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  outline: none;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding-left: 10px;
}

.country-flag {
  width: 24px;
  height: 18px;

  object-fit: contain;
}

.phone-input input {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
    font-family: "Outfit", sans-serif;
}

/* ---------- OFFER SECTION ---------- */
.offer-section {
  border: 2px dashed #828282;
  border-radius: 10px;
  padding: 18px 15px;
  padding-bottom: 4px;
  margin-top: 25px;
}
.offer-text {
  display: flex;
  align-items: center;
  gap: 2px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.offer-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: #00b341;
  cursor: pointer;
  margin: 0;
}

.offer-item.main-offer label {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 25px;
}
.yes-text {
  white-space: nowrap;
}

.strikethrough {
  text-decoration: line-through;
  color: #484848;
  font-size: 0.9rem;
  margin-right: 6px;
  line-height: 1.2;
}

.new-price {
  font-weight: 700;
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.2;
}

.included label {
  font-weight: 500;
  color: #222;
}

.instant-access {
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;

  line-height: 1.5;
}

.instant-access p:first-child::before {
  content: "🎉 ";
}

.ps-note {
  background: #f6f5f5;
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #444;
}

/* ---------- PRICE SUMMARY ---------- */
.price-summary {
  margin-top: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
}

.total-row {
  border-top: 1.5px solid #848383;
  padding-top: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.pay-button-container button {
  margin-top: 25px;
  text-align: center;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  border: none;
  background-color: #222222;
}
/* ---------- FOOTER ---------- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
}

.footer-total {
  font-size: 0.95rem;
  font-weight: 500;
}

#buy-now-btns {
  background-color: #6a0dad;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .grid-layout {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .intro-section {
    display: flex;
    text-align: center;
  }

  .intro-section .logo img {
    width: 50px;
  }

  .intro-section h1 {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-top: 0;
  }

  .intro-section .description {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 0;
  }

  .payment-section {
    padding: 10px 15px 80px;
  }
  .payment-details h2 {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .ps-note {
    padding-left: 6px;
  }
}

@media (max-width: 480px) {
  .offer-section {
    padding: 14px;
    padding-bottom: 4px;
  }

  .offer-item label {
    font-size: 0.9rem;
  }

  .instant-access,
  .ps-note {
    font-size: 0.9rem;
  }
}
