.payment-section {
  padding: 100px 20px;
  background: #0f0f0f;
  color: white;
}

.payment-wrapper {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr;

  gap: 30px;
}

/* LEFT */
.payment-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.payment-header h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.payment-header p {
  color: #aaa;
}

/* CARDS */
.customer-card,
.payment-methods,
.payment-summary {
  background: #151515;

  border-radius: 20px;

  padding: 30px;

  border: 1px solid #222;
}

.customer-card h3,
.payment-methods h3,
.payment-summary h3 {
  margin-bottom: 25px;
}

/* CUSTOMER */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.customer-grid div {
  background: #101010;

  border-radius: 14px;

  padding: 18px;

  border: 1px solid #222;
}

.customer-grid span {
  display: block;

  color: #888;

  font-size: 13px;

  margin-bottom: 8px;
}

.customer-grid strong {
  font-size: 15px;
}

/* METHODS */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.method-card {
  background: #101010;

  border-radius: 16px;

  padding: 22px;

  border: 1px solid #222;

  cursor: pointer;

  transition: 0.3s ease;
}

.method-card:hover,
.method-card.active {
  border-color: #f59e0b;
}

.method-card h4 {
  margin-bottom: 8px;
}

.method-card p {
  color: #aaa;
  font-size: 14px;
}

/* SUMMARY */
.summary-items {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.summary-left img {
  width: 60px;
  height: 75px;

  object-fit: cover;

  border-radius: 10px;
}

.summary-left h4 {
  margin-bottom: 6px;
}

.summary-left p {
  color: #aaa;
  font-size: 14px;
}

/* TOTAL */
.payment-total {
  display: flex;
  justify-content: space-between;

  padding-top: 25px;

  border-top: 1px solid #222;

  margin-bottom: 25px;
}

.payment-total strong {
  color: #f59e0b;
  font-size: 24px;
}

/* BUTTON */
.pay-btn {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    #f59e0b,
    #f97316
  );

  color: black;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

/* SUCCESS */
.payment-success {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #0f0f0f;

  color: white;

  padding: 20px;
}

.success-box {
  width: 100%;
  max-width: 550px;

  background: #151515;

  border-radius: 24px;

  padding: 50px 30px;

  text-align: center;

  border: 1px solid #222;
}

.success-icon {
  width: 90px;
  height: 90px;

  margin: auto auto 25px;

  border-radius: 50%;

  background: rgba(34,197,94,0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;

  color: #22c55e;
}

.success-box h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.success-box p {
  color: #aaa;
  margin-bottom: 30px;
}

.success-summary {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 35px;
}

.success-summary div {
  flex: 1;

  background: #101010;

  border-radius: 16px;

  padding: 20px;
}

.success-summary span {
  display: block;

  color: #888;

  margin-bottom: 8px;
}

.success-summary strong {
  font-size: 18px;
}

.success-box button {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 12px;

  background: #f59e0b;

  color: black;

  font-weight: bold;

  cursor: pointer;
}
.method-card {
  background: #101010;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #222;
  cursor: pointer;
  transition: 0.3s ease;
}

.method-card:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.method-card.active {
  border: 2px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

/* TABLET */
@media (max-width: 992px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .payment-section {
    padding: 80px 15px;
  }

  .customer-grid,
  .methods-grid {
    grid-template-columns: 1fr;
  }

  .success-summary {
    flex-direction: column;
  }

  .payment-header h2 {
    font-size: 30px;
  }
}