/* ==========================================================================
   Shared Page Section Styles
   Used by: checkout, receipt, shopping-cart, contact-us, etc.
   ========================================================================== */

.page-section {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Header styling for section titles */
.section-header {
  font-weight: 600;
  color: #333;
  font-size: 1.75rem;
}

/* Divider line style */
.divider {
  border: 0;
  border-top: 2px solid #e3bc5c;
  opacity: 0.8;
  margin: 1rem 0;
}

/* Keep buttons visually consistent */
.custom-outline-btn {
  border: 2px solid #e3bc5c;
  color: #333;
  background: transparent;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.custom-outline-btn:hover {
  background-color: #e3bc5c;
  color: #000;
}

/* Consistent spacing for main containers */
main.container {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Adjust padding for small devices */
@media (max-width: 576px) {
  .page-section {
    padding: 20px;
  }
}

.section-header i {
  margin-left: 10px; /* adjust as needed */
}

