/* CHECKOUT PROCESS STYLES */

.checkout-section {
  padding: 60px 0;
  background: var(--gray-50);
  min-height: calc(100vh - 300px);
}

/* Cart Styles */
.cart-table {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.cart-table th {
  background: var(--gray-50);
  color: #07484a;
  font-weight: 700;
  padding: 15px 20px;
  border: none;
}

.cart-table td {
  padding: 20px;
  vertical-align: middle;
  border-color: var(--gray-100);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-product-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: 10px;
}

.cart-product-info h6 {
  color: #07484a;
  margin-bottom: 5px;
  font-weight: 600;
}

.cart-product-info p {
  font-size: 13px;
  margin-bottom: 0;
}

.cart-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: fit-content;
}

.cart-qty-btn {
  padding: 5px 10px;
  background: none;
  border: none;
  color: #07484a;
}

.cart-qty-input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: 14px;
}

.cart-item-price {
  font-weight: 700;
  color: #07484a;
}

.btn-remove {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.btn-remove:hover {
  color: #dc3545;
}

/* Summary Card */
.summary-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--gray-100);
}

.summary-title {
  color: #07484a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--gray-600);
}

.summary-row.total {
  color: #07484a;
  font-weight: 700;
  font-size: 20px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px dashed var(--gray-100);
}

.btn-checkout {
  width: 100%;
  padding: 12px;
  font-weight: 700;
  margin-top: 20px;
  border-radius: 10px;
}

/* Checkout Form Styles */
.checkout-form-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 25px;
}

.checkout-step-title {
  color: #07484a;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-step-title .step-number {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.payment-method {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.payment-method.active,
.payment-method:hover {
  border-color: var(--primary);
  background: rgba(255, 193, 7, 0.05);
}

.payment-method i {
  font-size: 24px;
  color: #07484a;
}

/* Thank You Page */
.success-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e3fcef;
  color: #00875a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.success-icon i {
  width: 40px;
}

.order-badge {
  background: var(--gray-50);
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  color: #07484a;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
}
