/* ===== PROFILE PAGE ===== */

.profile-container {
    max-width: 900px;
    margin: 110px auto 60px auto;
    padding: 0 20px;
  }
  
  .profile-info h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }
  
  .profile-subtitle {
    color: #7a6b57;
    margin-bottom: 40px;
  }
  
  .orders-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8e1d8;
    padding-bottom: 8px;
  }
  
  /* ===== ORDER CARD ===== */
  
  .order-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-left: 6px solid #a8997e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  }
  
  .order-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ===== STATUS BADGES ===== */
  
  .status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .status-paid {
    background-color: #e6f4ea;
    color: #1e7e34;
  }
  
  .status-pending {
    background-color: #fff3cd;
    color: #856404;
  }
  
  /* ===== ORDER META ===== */
  
  .order-meta {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #5a4631;
  }
  
  /* ===== ORDER ITEMS ===== */
  
  .order-items {
    margin-top: 12px;
    padding-left: 18px;
  }
  
  .order-items li {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  
  /* Optional subtle divider between sections inside card */
  .order-meta + .order-meta {
    margin-top: 6px;
  }

  .order-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #5a4631;
  }
  
  .order-items li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
  }
  
  .item-name {
    font-weight: 500;
  }
  
  .item-qty {
    color: #7a6b57;
    font-size: 0.9rem;
  }

  .order-card {
    width: 100%;
    box-sizing: border-box;
  }

  main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }