/* Customer Dashboard Custom Styles */
    .dashboard-section {
      padding: 0 0 60px 0;
      background: #f1f5f9;
      min-height: calc(100vh - 140px);
    }

    /* Premium welcome banner */
    .dashboard-welcome-banner {
      background: linear-gradient(135deg, #0a0f1e 0%, #0d1a2e 50%, #0a1f1a 100%);
      padding: 100px 0 32px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }
    .dashboard-welcome-banner::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 32px;
      background: #f1f5f9;
      border-radius: 24px 24px 0 0;
    }
    .welcome-banner-orb1 {
      position: absolute; top: -40px; right: 60px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(15,118,110,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .welcome-banner-orb2 {
      position: absolute; bottom: 0; left: -40px;
      width: 160px; height: 160px; border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .welcome-inner {
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      z-index: 1;
    }
    .welcome-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0f766e, #14b8a6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 1.4rem;
      font-family: 'Montserrat', sans-serif;
      border: 3px solid rgba(255,255,255,0.15);
      flex-shrink: 0;
    }
    .welcome-text h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: #f1f5f9;
      margin-bottom: 4px;
    }
    .welcome-text p {
      font-size: 0.85rem;
      color: #94a3b8;
    }

    .dashboard-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 30px;
      align-items: start;
    }

    @media (max-width: 991px) {
      .dashboard-layout {
        grid-template-columns: 1fr;
      }
    }

    /* Sidebar Navigation */
    .dashboard-sidebar {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }

    .user-summary {
      text-align: center;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .user-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--primary-bg);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin: 0 auto 16px auto;
      border: 2px solid var(--primary-light);
    }

    .user-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      word-break: break-word;
    }

    .user-email {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-top: 4px;
      word-break: break-all;
    }

    .dashboard-nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .dashboard-nav-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: var(--transition);
    }

    .dashboard-nav-item:hover {
      color: var(--primary);
      background: var(--primary-bg);
    }

    .dashboard-nav-item-logout {
      margin-top: 20px;
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }

    .dashboard-nav-item-logout:hover {
      color: var(--error);
      background: rgba(239, 68, 68, 0.05);
    }

    /* Content Area */
    .dashboard-content {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 40px;
      box-shadow: var(--shadow-sm);
      min-height: 480px;
    }

    @media (max-width: 576px) {
      .dashboard-content {
        padding: 24px;
      }
    }

    .content-pane {
      display: none;
    }

    .content-pane.active {
      display: block;
    }

    .pane-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Form Layouts */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    @media (max-width: 576px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

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

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      color: var(--text);
      background: var(--surface);
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary);
      background: #FFFFFF;
    }

    /* Address Cards */
    .addresses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .address-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 20px;
      position: relative;
      transition: var(--transition);
    }

    .address-card.default {
      border-color: var(--primary);
      background: var(--primary-bg);
    }

    .address-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 0.75rem;
      padding: 4px 8px;
      border-radius: 4px;
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 600;
    }

    .address-details {
      margin-top: 10px;
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .address-actions {
      display: flex;
      gap: 16px;
      margin-top: 16px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .address-action-btn {
      color: var(--primary);
      cursor: pointer;
    }

    .address-action-btn.delete {
      color: var(--error);
    }

    /* Wishlist Grid */
    .wishlist-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }

    /* Orders List */
    .order-row {
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
      overflow: hidden;
    }

    .order-header {
      background: var(--surface);
      padding: 16px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--border);
      font-size: 0.85rem;
    }

    .order-meta-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .order-meta-label {
      color: var(--text-secondary);
      text-transform: uppercase;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .order-meta-val {
      font-weight: 700;
      color: var(--text);
    }

    .order-body {
      padding: 20px;
    }

    .order-product-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
    }

    .order-product-item:last-child {
      margin-bottom: 0;
    }

    .order-product-thumb {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .order-product-info {
      flex: 1;
    }

    .order-product-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .order-product-qty {
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    /* Badges */
    .status-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: capitalize;
    }

    .status-pending { background: #FEF3C7; color: #D97706; }
    .status-confirmed { background: #DBEAFE; color: #2563EB; }
    .status-shipped { background: #E0F2FE; color: #0284C7; }
    .status-delivered { background: #D1FAE5; color: #059669; }
    .status-cancelled { background: #FEE2E2; color: #DC2626; }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.4);
      z-index: 1001;
      align-items: center;
      justify-content: center;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 30px;
      width: 100%;
      max-width: 500px;
      box-shadow: var(--shadow-xl);
    }