.checkout-row {
  display: flex;
  flex-direction: row;
}

/* Checkout Form Styling */
.checkout-form-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 15px;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #007bff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  height: auto;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.checkout-submit-section {
  text-align: center;
  margin-top: 30px;
}

.btn-block {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
}

/* Product Info Styling */
.checkout-product-info {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.product-info-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #007bff;
}

.product-info-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.product-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-item .product-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}

.product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-value {
  font-size: 18px;
  font-weight: 700;
  color: #007bff;
}

.currency {
  font-size: 14px;
  color: #666;
}

/* Order Summary */
.order-summary {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-label {
  color: #666;
  font-weight: 500;
}

.summary-value {
  color: #333;
  font-weight: 600;
}

.total-row {
  border-top: 2px solid #007bff;
  padding-top: 12px;
  margin-top: 12px;
  font-size: 16px;
}

.total-row .summary-label,
.total-row .summary-value {
  font-weight: 700;
  color: #333;
}

/* Responsive Design */
@media (max-width: 991px) {
  .checkout-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .checkout-form-wrapper,
  .checkout-product-info {
    padding: 20px;
  }
  .checkout-title {
    font-size: 20px;
  }
  .form-section-title {
    font-size: 16px;
  }
  .product-item {
    flex-direction: column;
    text-align: center;
  }
  .product-item .product-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* Success Message */
.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.alert-success h4 {
  margin-top: 0;
  color: #155724;
}

.select2-container {
  max-width: 100%;
}

/*# sourceMappingURL=checkout.css.map */
