html {
    overflow-x: hidden;
  }
  
  body {
    overflow-x: clip;
  }

/* =========================
   DASHBOARD USER
========================= */

/* Hero Dashboard */

.dashboard-hero {
    background:
      linear-gradient(90deg, #1e362b 0%, #1c3429 45%, rgba(28,42,41,0.35) 100%),
      url("../images/hero-catalog-image.png");
    background-size: cover;
    background-position: center right;
    padding: 30px 0 30px 10px;
    margin-bottom: 20px;
  }
  
  .dashboard-hero-content {
    max-width: 1200px;
  }
  
  .dashboard-hero-content h1 {
    font-family: 'Bitter', serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .dashboard-hero-content span {
    display: block;
    width: 325px;
    height: 6px;
    background-color: #e7a22b;
    margin-bottom: 10px;
  }
  
  .dashboard-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
  }
  
  
  /* Page Layout */
  
  .dashboard-page {
    background-color: #F4F1EC;
    padding: 30px;
  }
  
  .dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
  }
  
  
  /* Sidebar */

  .dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  
    position: sticky;
    top: 20px;
    align-self: start;
  }
  
  
  /* User Card */
  
  .dashboard-user-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px 0 7px;
    text-align: center;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
  }
  
  .dashboard-avatar {
    width: 55px;
    height: 55px;
    margin: 5px auto 5px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    background: #e7a22b;
    color: #fff;
  
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  
  .dashboard-user-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e362b;
    margin-bottom: 5px;
  }
  
  .dashboard-user-card h3::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background-color: #1e362b;
    border-radius: 99px;
    margin: 5px auto;
  }
  
  .dashboard-user-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #1e362b;
  }
  
  
  /* Dashboard Menu */
  
  .dashboard-menu {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }
  
  .dashboard-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
  
    padding: 10px 20px;
  
    text-decoration: none;
    color: #1e362b;
  
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
  
    transition: 0.3s ease;
  }
  
  .dashboard-menu a + a {
    border-top: 1px solid rgba(30,54,43,0.2);
  }
  
  .dashboard-menu a i {
    font-size: 14px;
    color: #1e362b;
  }
  
  .dashboard-menu a:hover {
    background: rgba(78, 132, 108, 0.3);
    color: #1e362b;
  }
  
  
  /* Content Area */
  
  .dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  
  /* Statistic Cards */
  
  .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .dashboard-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
  }
  
  .dashboard-stat-card i {
    font-size: 30px;
    color: #70998A;
  }
  
  .dashboard-stat-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e362b;
    margin: 12px 0 4px;
  }
  
  .dashboard-stat-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1e362b;
    margin: 0;
  }
  
  
  /* Summary Panel */
  
  .dashboard-panel {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
  }
  
  .dashboard-panel h2 {
    font-family: 'Bitter', serif;
    font-size: 24px;
    font-weight: 800;
    color: #1e362b;
    margin-bottom: 5px;
  }
  
  .dashboard-panel h2::after {
    content: "";
    display: block;
    width: 125px;
    height: 4px;
    background-color: #e7a22b;
    border-radius: 99px;
    margin-top: 8px;
    margin-bottom: 10px;
  }
  
  .dashboard-panel p {
    font-family: 'Bitter', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1e362b;
    margin: 0;
  }
  
  
  /* =========================
     DASHBOARD ACTIVITY
  ========================= */
  
  /* Activity Wrapper */
  
  .dashboard-activity-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
  }
  
  
  /* Activity Card */
  
  .dashboard-activity-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
  
    box-shadow:
      0 4px 10px rgba(0,0,0,0.06),
      0 12px 28px rgba(0,0,0,0.08);
  }
  
  
  /* Activity Header */
  
  .dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  
    margin-bottom: 10px;
    padding-bottom: 10px;
  
    border-bottom: 1px solid #1e362b;
  }
  
  .dashboard-card-label {
    display: inline-block;
    margin-bottom: 5px;
  
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  
    color: #70998A;
  }
  
  .dashboard-card-header h2 {
    margin: 0;
  
    font-family: 'Bitter', serif;
    font-size: 24px;
    font-weight: 800;
  
    color: #1e362b;
  }
  
  .dashboard-card-header a {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
  
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
  
    color: #fff;
    background-color: #1e362b;
  
    transition: .3s ease;
  }
  
  .dashboard-card-header a:hover {
    color: #fff;
    background-color: #70998A;
    transform: translateY(-2px);
  }
  
  
  /* Activity List */
  
  .dashboard-latest-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .dashboard-loading-text {
    margin: 0;
  
    font-family: 'Bitter', serif;
    font-size: 12px;
  
    color: #1e362b;
  }
  
  
  /* Activity Item */
  
  .dashboard-item {
    padding: 14px 16px;
  
    border-radius: 10px;
  
    background: rgba(78, 132, 108, 0.15);
  
    transition: .3s ease;
  }
  
  .dashboard-item:hover {
    background: rgba(78, 132, 108, 0.3);
    transform: translateY(-2px);
  }
  
  .dashboard-item-title {
    margin-bottom: 6px;
  
    font-family: 'Bitter', serif;
    font-size: 16px;
    font-weight: 600;
  
    color: #1e362b;
  }
  
  .dashboard-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
  
    font-family: 'Bitter', serif;
    font-size: 12px;
  
    color: #1e362b;
  }
  
  .dashboard-item-meta i {
    font-size: 12px;
  }
  
  
  /* Purchase Status */
  
  .dashboard-item-status {
    display: inline-block;
  
    margin-bottom: 8px;
    padding: 4px 10px;
  
    border-radius: 999px;
  
    background: #1e362b;
  
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
  
    color: #fff;
  }
  
  .dashboard-item-status.status-pending {
    background-color: #e7a22b;
    color: #fff;
  }
  
  .dashboard-item-status.status-approved {
    background-color: #70998A;
    color: #fff;
  }
  
  .dashboard-item-status.status-completed {
    background-color: #1e362b;
    color: #fff;
  }
  
  .dashboard-item-status.status-cancelled {
    background-color: #c0392b;
    color: #fff;
  }
  
  
  /* Purchase Download Area */
  
  .dashboard-download-area {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgb(30, 54, 43, 0.3);
  }
  
  .dashboard-download-area a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
    padding: 5px 10px;
    border-radius: 8px;
  
    background: #972727;
    color: #fff;
  
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
  
    transition: 0.3s ease;
  }
  
  .dashboard-download-area a:hover {
    background: #c03a3a;
    color: #fff;
  }
  
  
  /* Empty State */
  
  .dashboard-empty-state {
    text-align: center;
    padding: 30px 20px;
  }
  
  .dashboard-empty-state i {
    font-size: 30px;
    color: #70998A;
  }
  
  .dashboard-empty-state h3 {
    margin: 10px 0 6px;
  
    font-family: 'Bitter', serif;
    font-size: 20px;
    font-weight: 700;
  
    color: #1e362b;
  }
  
  .dashboard-empty-state p {
    margin: 0;
  
    font-family: 'Bitter', serif;
    font-size: 12px;
  
    color: #6b7a72;
  }
  
  /* =========================
     DASHBOARD RESPONSIVE
  ========================= */
  
  @media (max-width: 992px) {
    .dashboard-wrapper {
      grid-template-columns: 1fr;
    }
  
    .dashboard-stats {
      grid-template-columns: 1fr;
    }
  }