/* ===== AUTH PAGE ===== */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(92, 37, 141, 0.85),
    rgba(67, 137, 162, 0.85)
  );
  backdrop-filter: blur(2px);
}

.auth-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.auth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.auth-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-input {
  border-radius: 10px;
  height: 48px;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.auth-input:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.auth-button {
  border-radius: 10px;
  height: 48px;
  font-weight: 600;
  background: linear-gradient(135deg, #6f42c1, #4e73df);
  border: none;
  transition: all 0.3s ease;
}

.auth-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 115, 223, 0.4);
}

.auth-link {
  font-size: 14px;
  color: #6f42c1;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

/* ===== DOMAIN / SSL CARD STYLE ===== */

.product-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

/* Title */
.product-card h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */
.product-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* Price */
.product-card .price {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}

/* Button */
.product-card .btn-custom {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  color: #fff;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.product-card .btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 114, 255, 0.4);
}

/* ===== CART STYLE ===== */

.empty-cart-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 60px 30px;
  border-radius: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.empty-cart-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 60px 30px;
  border-radius: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.qty-control {
  gap: 5px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: bold;
}
.checkout-section {
  padding: 120px 0;
}

.checkout-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  padding: 50px;
  border-radius: 18px;
  color: #fff;
  max-width: 750px;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ===== Titles ===== */

.checkout-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.checkout-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ===== Order Summary ===== */

.order-summary div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.order-summary div:last-child {
  border-bottom: none;
}

.order-summary h4 {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
}

/* ===== Payment Method ===== */

.payment-options {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option {
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-option:hover {
  background: rgba(255, 255, 255, 0.12);
}

.payment-option input {
  accent-color: #00c6ff;
  transform: scale(1.2);
}

/* ===== Buttons ===== */

.btn-primary,
.checkout-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover,
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

/* ===== Payment Status ===== */

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-pending {
  background: #ffc107;
  color: #000;
}

/* ===== Payment Layout ===== */

.payment-card {
  max-width: 700px;
  margin: auto;
}

.payment-info {
  margin-top: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

.info-row span {
  opacity: 0.85;
}

.info-row strong {
  font-weight: 600;
  color: #fff;
}

/* ===== Status Badge ===== */

.status-badge {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.status-pending {
  background: #ffc107;
  color: #000;
}

.status-paid {
  background: #28a745;
  color: #fff;
}

.status-cancelled {
  background: #fe5234;
  color: #fff;
}

/* ===== Payment Button ===== */

.pay-btn {
  background: linear-gradient(45deg, #00c853, #009624);
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  color: #fff;
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
}

.info-row {
  display: flex;
  align-items: center; /* bikin sejajar vertikal */
  justify-content: space-between;
  padding: 20px 0;
}

.col-order {
  width: 50%;
}
.col-price {
  width: 20%;
}
.col-status {
  width: 20%;
}

.col-action {
  width: 30%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.col-action form {
  margin: 0; /* hapus margin bawaan form */
}

.navbar-brand img {
  height: 35px;
  width: 120px;
  /* width: auto; */
  object-fit: contain;
}
