/* ============================================================
   HP SWIMZ – MY ACCOUNT STYLES
   Dark navy theme · Mobile-first · Desktop via media queries
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS (CSS VARIABLES)
   ============================================================ */
:root {
  /* Background layers */
  --hpsw-bg:           #07091a;
  --hpsw-surface:      #0d1230;
  --hpsw-surface-2:    #111936;
  --hpsw-surface-3:    #172044;

  /* Borders */
  --hpsw-border:       #1e2d5a;
  --hpsw-border-light: #253368;

  /* Brand blues */
  --hpsw-blue:         #1469f5;
  --hpsw-blue-bright:  #3d8bff;
  --hpsw-blue-glow:    rgba(20, 105, 245, .35);

  /* Accent colours */
  --hpsw-teal:         #0dcfcf;
  --hpsw-green:        #22c55e;
  --hpsw-green-bg:     rgba(34, 197, 94, .15);
  --hpsw-red:          #ef4444;
  --hpsw-red-bg:       rgba(239, 68, 68, .15);
  --hpsw-yellow:       #f59e0b;
  --hpsw-yellow-bg:    rgba(245, 158, 11, .15);

  /* Typography */
  --hpsw-text:         #ffffff;
  --hpsw-text-muted:   #8fa3cc;
  --hpsw-text-dim:     #4e6496;
  --hpsw-font:         'Barlow', sans-serif;
  --hpsw-font-cond:    'Barlow Condensed', sans-serif;

  /* Shape & shadow */
  --hpsw-radius:       14px;
  --hpsw-radius-sm:    8px;
  --hpsw-radius-lg:    20px;
  --hpsw-shadow:       0 4px 24px rgba(0, 0, 0, .45);
  --hpsw-shadow-blue:  0 4px 20px rgba(20, 105, 245, .25);
  --hpsw-transition:   .2s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a    { color: inherit; text-decoration: none; }
button { font-family: var(--hpsw-font); cursor: pointer; border: none; background: none; }

/* ============================================================
   3. LAYOUT – FULL PAGE & SIDEBAR (desktop)
   ============================================================ */
.hpsw-layout {
  display: flex;
  min-height: 100vh;
  background: var(--hpsw-bg);
}
.hpsw-layout-main {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

/* Sidebar hidden on mobile; shown on desktop via media query */
.hpsw-sidebar {
  display: none;
  width: 200px;
  background: var(--hpsw-surface);
  border-right: 1px solid var(--hpsw-border);
  padding: 24px 0;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.hpsw-sidebar-logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--hpsw-border);
  margin-bottom: 12px;
}
.hpsw-sidebar-logo img { height: 36px; width: auto; }
.hpsw-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hpsw-text-muted);
  border-left: 3px solid transparent;
  transition: color var(--hpsw-transition), background var(--hpsw-transition), border-color var(--hpsw-transition);
}
.hpsw-sidebar a:hover,
.hpsw-sidebar a.active {
  color: var(--hpsw-text);
  background: var(--hpsw-surface-3);
  border-left-color: var(--hpsw-blue);
}
.hpsw-sidebar a .hpsw-nav-icon { font-size: 16px; width: 20px; text-align: center; }

/* Account wrapper (pages that don't use sidebar layout) */
.hpsw-myaccount {
  font-family: var(--hpsw-font);
  color: var(--hpsw-text);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 80px; /* bottom padding clears sticky bar */
}

/* ============================================================
   4. MOBILE HEADER (sticky top bar)
   ============================================================ */
.hpsw-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--hpsw-surface);
  border-bottom: 1px solid var(--hpsw-border);
  position: sticky;
  top: 0;
  z-index: 700;
}
.hpsw-mobile-header .hpsw-logo img { height: 30px; }
.hpsw-mobile-header-icons { display: flex; gap: 14px; align-items: center; }
.hpsw-mobile-header-icons a,
.hpsw-mobile-header-icons button {
  color: var(--hpsw-text-muted);
  font-size: 18px;
  line-height: 1;
  transition: color var(--hpsw-transition);
}
.hpsw-mobile-header-icons a:hover,
.hpsw-mobile-header-icons button:hover { color: var(--hpsw-text); }
.hpsw-wa-icon { color: #25d366 !important; }

/* ============================================================
   5. STICKY BOTTOM NAV BAR (mobile – Book / WhatsApp / Call)
   ============================================================ */
.hpsw-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: #0b1128;
  border-top: 1px solid var(--hpsw-border);
  height: 60px;
}
.hpsw-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--hpsw-font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity var(--hpsw-transition);
}
.hpsw-sticky-bar a:hover        { opacity: .8; }
.hpsw-sticky-bar .hpsw-bar-book { background: var(--hpsw-green); color: #fff; }
.hpsw-sticky-bar .hpsw-bar-wa   { background: #25d366; color: #fff; }
.hpsw-sticky-bar .hpsw-bar-call {
  background: transparent;
  color: var(--hpsw-text-muted);
  border-left: 1px solid var(--hpsw-border);
}

/* ============================================================
   6. COMMON COMPONENTS
   ============================================================ */

/* ── Section title ──────────────────────────────────────── */
.hpsw-dash-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	    letter-spacing: .05em;
    text-transform: uppercase;
}
.hpsw-dash-section-title a,
.hpsw-view-report-link {
  font-size: 12px;
  color: var(--hpsw-blue-bright);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

/* ── Page head ──────────────────────────────────────────── */
.hpsw-page-head { margin-bottom: 18px; }
.hpsw-page-head h2 {
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 2px;
}
.hpsw-page-head p { font-size: 13px; color: var(--hpsw-text-muted); }

/* ── Buttons ────────────────────────────────────────────── */
.hpsw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--hpsw-blue);
  color: #fff;
  font-family: var(--hpsw-font);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--hpsw-radius-sm);
  padding: 10px 18px;
  box-shadow: var(--hpsw-shadow-blue);
  transition: background var(--hpsw-transition), transform .15s, box-shadow var(--hpsw-transition);
}
.hpsw-btn-primary:hover {
  background: var(--hpsw-blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(20, 105, 245, .4);
}

.hpsw-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--hpsw-blue-bright);
  border: 1.5px solid var(--hpsw-blue);
  font-family: var(--hpsw-font);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--hpsw-radius-sm);
  padding: 9px 18px;
  transition: background var(--hpsw-transition), border-color var(--hpsw-transition), transform .15s;
}
.hpsw-btn-secondary:hover {
  background: var(--hpsw-blue-glow);
  border-color: var(--hpsw-blue-bright);
  transform: translateY(-1px);
}

.hpsw-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--hpsw-red);
  border: 1.5px solid var(--hpsw-red);
  font-family: var(--hpsw-font);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--hpsw-radius-sm);
  padding: 9px 18px;
  transition: background var(--hpsw-transition);
}
.hpsw-btn-danger:hover { background: var(--hpsw-red-bg); }

/* Full-width button modifier */
.w-full,
.hpsw-btn-block { width: 100%; justify-content: center; }

.hpsw-btn-block {
  padding: 13px;
  font-size: 14px;
  letter-spacing: .03em;
  border-radius: var(--hpsw-radius-sm);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.hpsw-btn-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 60%);
  pointer-events: none;
}
.hpsw-btn-block:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

/* View-all / Membership buttons */
.hpsw-view-all-btn {
  background: transparent;
  border: 1px solid var(--hpsw-blue);
  color: var(--hpsw-blue-bright);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all var(--hpsw-transition);
}
.hpsw-view-all-btn:hover { background: var(--hpsw-blue); color: #fff; }

.hpsw-view-membership-btn {
  flex-shrink: 0;
  background: var(--hpsw-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: background var(--hpsw-transition);
}
.hpsw-view-membership-btn:hover { background: var(--hpsw-blue-bright); }

/* Contact / book-new buttons */
.hpsw-contact-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--hpsw-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--hpsw-radius-sm);
  padding: 9px 20px;
  align-self: flex-start;
  transition: background var(--hpsw-transition);
}
.hpsw-contact-btn:hover { background: var(--hpsw-blue-bright); }

.hpsw-book-new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--hpsw-surface-3);
  border: 1.5px dashed var(--hpsw-border-light);
  border-radius: var(--hpsw-radius-sm);
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hpsw-blue-bright);
  transition: border-color var(--hpsw-transition), background var(--hpsw-transition);
}
.hpsw-book-new-btn:hover {
  border-color: var(--hpsw-blue);
  background: var(--hpsw-blue-glow);
}

/* ── Status / badge pills ───────────────────────────────── */
.hpsw-status-badge,
.hpsw-nb-badge,
.hpsw-booking-status-badge,
.hpsw-detail-status-badge {
  display: inline-block;
  font-family: var(--hpsw-font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 10px;
}
/* upcoming */
.hpsw-nb-badge.upcoming,
.hpsw-booking-status-badge.hpsw-status-upcoming,
.hpsw-detail-status-badge.hpsw-status-upcoming {
  background: var(--hpsw-blue-glow);
  color: var(--hpsw-blue-bright);
  border: 1px solid var(--hpsw-blue);
  width: fit-content;
    font-size: 12px;
}
/* completed */
.hpsw-booking-status-badge.hpsw-status-completed,
.hpsw-detail-status-badge.hpsw-status-completed {
  background: var(--hpsw-green-bg);
  color: var(--hpsw-green);
  border: 1px solid rgba(34, 197, 94, .4);
    width: fit-content;
    font-size: 12px
}
/* cancelled */
.hpsw-booking-status-badge.hpsw-status-cancelled,
.hpsw-detail-status-badge.hpsw-status-cancelled {
  background: var(--hpsw-red-bg);
  color: var(--hpsw-red);
  border: 1px solid rgba(239, 68, 68, .4);
    width: fit-content;
    font-size: 12px
}

/* Progress badge pills (used in stage cards) */
.hpsw-badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hpsw-badge-pill.complete    { background: rgba(34, 197, 94, .15); color:#fff; }
.hpsw-badge-pill.in_progress { background: rgba(245, 158, 11, .15); color: var(--hpsw-yellow); }
.hpsw-badge-pill.not_started { background: #f1071c; color:#fff; }

/* Stage status badge (COMPLETE / IN PROGRESS / NOT STARTED) */
.hpsw-stage-status {
  display: inline-block;
  font-family: var(--hpsw-font-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 2px 7px;
  margin-top: 4px;
}
.hpsw-stage-status.complete     { background: var(--hpsw-green-bg);   color: var(--hpsw-green); }
.hpsw-stage-status.in-progress  { background: var(--hpsw-yellow-bg);  color: var(--hpsw-yellow); }
.hpsw-stage-status.not-started  { background: rgba(255, 255, 255, .06); color: var(--hpsw-text-dim); }

/* ── Alerts ─────────────────────────────────────────────── */
.hpsw-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--hpsw-radius-sm);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: hpsw-fade-up .3s ease both;
}
.hpsw-alert-success {
  background: var(--hpsw-green-bg);
  border: 1px solid rgba(34, 197, 94, .35);
  color: var(--hpsw-green);
}
.hpsw-alert-error {
  background: var(--hpsw-red-bg);
  border: 1px solid rgba(239, 68, 68, .35);
  color: var(--hpsw-red);
}

/* ── Empty state ────────────────────────────────────────── */
.hpsw-empty-state {
  text-align: center;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hpsw-empty-icon { font-size: 48px; }
.hpsw-empty-state h3 { font-size: 18px; font-weight: 700; color: var(--hpsw-text); }
.hpsw-empty-state p  { font-size: 13px; color: var(--hpsw-text-muted); }

/* ── Mini progress bar ──────────────────────────────────── */
.hpsw-mini-bar {
  height: 5px;
  background: var(--hpsw-surface-3);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.hpsw-mini-bar-fill {
  height: 100%;
  background: var(--hpsw-green);
  border-radius: 3px;
  transition: width .8s ease;
}

/* ── SVG progress ring ──────────────────────────────────── */
.hpsw-ring-bg   { stroke: #eef4ff; }
.hpsw-ring-fill {
  stroke: #1469f5;
  stroke-linecap: round;
  transition: stroke-dashoffset .6s ease;
  animation: hpsw-ring-spin .8s cubic-bezier(.4, 0, .2, 1) both;
}
.hpsw-ring-pct {
  font-family: var(--hpsw-font-cond);
  font-size: 20px;
  font-weight: 800;
  fill: var(--hpsw-text);
  dominant-baseline: middle;
}
.hpsw-ring-sub {
  font-size: 10px;
  color: var(--hpsw-text-muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.3;
}

/* ============================================================
   7. DASHBOARD
   ============================================================ */

/* ── Header card ────────────────────────────────────────── */
.hpsw-dash-header {
    background: #fff;
    border: 1px solid #eaeaea;
  border-radius: var(--hpsw-radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.hpsw-dash-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hpsw-blue-glow) 0%, transparent 70%);
  pointer-events: none;
}


/* Greeting text */
.hpsw-dash-greeting { flex: 1; min-width: 0; }
.hpsw-dash-greeting h1 {
    font-family: var(--hpsw-font-cond);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 2px;
    text-transform: capitalize;
}
.hpsw-dash-greeting h1 span{
	 color: #3858e9;
} 
.hpsw-dash-greeting p {
    font-size: 18px;
    color: #212529;
    margin-bottom: 4px;
    font-weight: 600;
}
.hpsw-next-booking-image{
    width:100%;
    height:100%;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:18px;
}

.hpsw-next-booking-image img{
    width:100%;
    height:100%;
    object-fit:scale-down;
    display:block;
}
.hpsw-member-since {
display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #fff;
}
.hpsw-updcoming-booking {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hpsw-member-since::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238fa3cc' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86-1-4.62-1.22 5.32L9 13H7v2h2.5l1.23-2.57.78 2.57H13v-2h-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Two-column dashboard grid ──────────────────────────── */
.hpsw-dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}


/* ── Next Booking card ──────────────────────────────────── */
.hpsw-next-booking-card {
    background: #fff;
    border: 1px solid #eee;
  border-radius: var(--hpsw-radius);
  padding: 16px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--hpsw-transition);
}
.hpsw-next-booking-card:hover { border-color: var(--hpsw-blue); }
.hpsw-next-booking-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5594c7, #1469f5);
}
.hpsw-dash-progress-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5594c7, #1469f5);
}
.hpsw-nb-badge { margin-bottom: 8px; }
.hpsw-nb-product {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.hpsw-nb-meta { display: flex; flex-direction: column; }
.hpsw-nb-meta-row {
font-size: 16px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 12px;
}
.hpsw-nb-meta-row svg {
    fill: #3858e9;
}
.hpsw-nb-meta-row i {
	 color: #3858e9;
}
.hpsw-nb-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--hpsw-radius-sm);
  margin-bottom: 12px;
}
.hpsw-updcoming-booking-data {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 12px;
    grid-template-columns: 50% 50%;
}

/* No-booking state */
.hpsw-no-booking {
  text-align: center;
  padding: 28px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
      gap: 40px;
    justify-content: center;
}
.hpsw-no-booking-icon img {width: 200px;}
.hpsw-no-booking p { color: var(--hpsw-text-muted); font-size: 13px; }
.hpsw-no-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}
/* ── Progress card ──────────────────────────────────────── */
.hpsw-dash-progress-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hpsw-dash-ring-wrap { flex-shrink: 0; }
.hpsw-dash-prog-stats {
  flex: 1;
  display: flex;
   flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.hpsw-dps-row { display: flex; align-items: center; gap: 10px; }
.hpsw-dps-val {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}
/* ================================
   HP Swimz - My Progress Card
================================ */

.hpsw-dash-progress-card{
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--hpsw-radius);
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--hpsw-transition);
}


.hpsw-view-report-link{
    font-size:14px;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.hpsw-dash-progress-top{
    display:flex;
    align-items:center;
    gap:35px;
    margin-bottom:30px;
}

.hpsw-dash-ring-wrap{
    position:relative;
    width:220px;
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hpsw-ring{
    width:220px;
    height:220px;
	fill: rgb(20 105 245);
}

.hpsw-ring-pct{
    font-size:18px;
    font-weight:700;
    fill:#0f172a;
}

.hpsw-ring-sub{
position: absolute;
    text-align: center;
    font-size: 14px;
    color: #475569;
    line-height: 16px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
}

.hpsw-dash-prog-stats{
    flex:1;
}

.hpsw-dps-row:last-child{
    border-bottom:none;
}

.hpsw-dps-icon{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1557ff;
    font-size: 32px;
}

.hpsw-dps-content{
    display:flex;
    flex-direction:column;
}

.hpsw-btn-secondary{
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    border:2px solid #1557ff;
    border-radius:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    color:#1557ff;
    transition:0.3s;
}

.hpsw-btn-secondary:hover{
    background:#1557ff;
    color:#fff;
}

@media(max-width:767px){

    .hpsw-dash-progress-top{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .hpsw-dash-prog-stats{
        width:100%;
    }

    .hpsw-dps-row{
        justify-content:center;
    }

    .hpsw-ring-wrap{
        width:160px;
        height:160px;
    }

    .hpsw-ring{
        width:160px;
        height:160px;
    }

    .hpsw-dps-val{
        font-size:18px;
    }
}

/* Keep-going message strip */
.hpsw-dash-keep-going {
  background: var(--hpsw-surface-3);
  border: 1px solid var(--hpsw-border);
  border-left: 3px solid var(--hpsw-blue);
  border-radius: var(--hpsw-radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hpsw-text);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hpsw-dash-keep-going span { font-size: 11px; font-weight: 400; color: var(--hpsw-text-muted); }

/* ── Account tiles grid ─────────────────────────────────── */
.hpsw-dash-account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.hpsw-account-tile {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "icon label arrow" "icon sub arrow";
  align-items: center;
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius);
  padding: 14px 16px;
  gap: 0 10px;
  transition: border-color var(--hpsw-transition), background var(--hpsw-transition), transform .15s;
}
.hpsw-account-tile:hover {
  border-color: var(--hpsw-blue);
  background: var(--hpsw-surface-3);
  transform: translateY(-2px);
}
.hpsw-tile-icon  { grid-area: icon;  font-size: 20px; text-align: center; }
.hpsw-tile-label { grid-area: label; font-size: 13px; font-weight: 700; color: var(--hpsw-text); }
.hpsw-tile-sub   { grid-area: sub;   font-size: 11px; color: var(--hpsw-text-muted); }
.hpsw-tile-arrow {
  grid-area: arrow;
  font-size: 22px;
  color: var(--hpsw-text-dim);
  font-weight: 300;
  line-height: 1;
  transition: color var(--hpsw-transition), transform var(--hpsw-transition);
}
.hpsw-account-tile:hover .hpsw-tile-arrow {
  color: var(--hpsw-blue-bright);
  transform: translateX(3px);
}

/* ── Quick actions panel ────────────────────────────────── */
.hpsw-dash-quick-actions {
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius);
  padding: 18px;
  margin-bottom: 20px;
}
.hpsw-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.hpsw-qa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--hpsw-surface-3);
  border: 1.5px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius-sm);
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hpsw-text);
  text-align: center;
  transition: background var(--hpsw-transition), border-color var(--hpsw-transition), transform .15s;
}
.hpsw-qa-btn:hover {
  border-color: var(--hpsw-blue);
  background: var(--hpsw-blue-glow);
  transform: translateY(-2px);
}

/* Need help block */
.hpsw-need-help {
  border-top: 1px solid var(--hpsw-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hpsw-need-help span { font-size: 13px; font-weight: 700; color: var(--hpsw-text); }
.hpsw-need-help p    { font-size: 12px; color: var(--hpsw-text-muted); }

/* ============================================================
   8. BOOKING HISTORY PAGE
   ============================================================ */

/* Filter tabs */
.hpsw-filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius-sm);
  padding: 4px;
}
.hpsw-filter-tab {
  flex: 1;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hpsw-text-muted);
  border-radius: 6px;
  transition: background var(--hpsw-transition), color var(--hpsw-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hpsw-filter-tab.active                  { background: var(--hpsw-blue); color: #fff; }
.hpsw-filter-tab:not(.active):hover      { color: var(--hpsw-text); }
.hpsw-tab-count {
  background: rgba(255, 255, 255, .15);
  border-radius: 20px;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
}
.hpsw-filter-tab.active .hpsw-tab-count  { background: rgba(255, 255, 255, .25); }

/* ── Tabs ──────────────────────────────────────────────────────────────────── */
.hpsw-tabs {
  display: flex;
  gap: 0;
  background: var(--hpsw-navy-mid);
  border-radius: var(--hpsw-radius);
  padding: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}
.hpsw-tabs .hpsw-tab {
  flex: 1;
border: 0;
    color: #000;
  padding: 10px 16px;
  border-radius: var(--hpsw-radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--hpsw-transition);
  box-shadow: inset 0px 0px 3px 2px rgb(20 105 245);
    background: var(--hpsw-navy-mid);
    border-radius: var(--hpsw-radius);
}
.hpsw-tabs .hpsw-tab:hover { color: var(--hpsw-white); }
.hpsw-tabs .hpsw-tab.active {
  background: var(--hpsw-blue);
  color: var(--hpsw-white);
  box-shadow: 0 2px 8px rgba(26,111,196,.4);
}
/* ── Overview Card ─────────────────────────────────────────────────────────── */
.hpsw-overview-card {
  background: var(--hpsw-navy-mid);
  border-radius: var(--hpsw-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  box-shadow: var(--hpsw-shadow);
  flex-wrap: wrap;
}
.hpsw-ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px;position: relative; }
.hpsw-ring-bg   { stroke:#eef4ff; }
.hpsw-ring-fill { stroke: #1469f5; transition: stroke-dashoffset 1s ease; }
.hpsw-ring-pct  { font-size: 22px; font-weight: 700; fill: var(--hpsw-white); }
.hpsw-ring-label { font-size: 12px;
    color: #111;
    text-align: center;
    position: absolute;
    bottom: 15%;
    line-height: 16px;}

.hpsw-overview-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hpsw-ov-stat { text-align: center; }
.hpsw-ov-num  { font-size: 22px; font-weight: 700; color:#1469f5; }
.hpsw-ov-lbl  { font-size: 12px; color: #111; margin-top: 4px; }

/* ── Stage Cards Grid ──────────────────────────────────────────────────────── */
.hpsw-stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.hpsw-stage-card {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--hpsw-shadow);
  border-left: 4px solid var(--hpsw-navy-light);
  transition: transform var(--hpsw-transition), box-shadow var(--hpsw-transition);
  cursor: default;
  flex-direction: column;
}
.hpsw-stage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.hpsw-stage-card-icon { font-size: 36px; min-width: 36px; }
.hpsw-stage-card-info { flex: 1; }
.hpsw-stage-card-label{ font-size: 14px;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700; }
.hpsw-stage-card-name { font-size: 14px; font-weight: 600; color: #111; margin: 3px 0 8px; }
.hpsw-stage-card-pct  {     font-size: 14px;
    color: #0066cc;
    margin-top: 4px;
    font-weight: 800; }

/* ── Mini Progress Bar ─────────────────────────────────────────────────────── */
.hpsw-mini-bar {
  height: 5px;
  background: #d9e1ef;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.hpsw-mini-bar-fill {
  height: 100%;
  background: var(--hpsw-green);
  border-radius: 3px;
  transition: width .8s ease;
}

/* ── Badge Pills ───────────────────────────────────────────────────────────── */
.hpsw-badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hpsw-badge-pill.complete    { background: rgba(0,200,83,.8);  color: #fff; }
.hpsw-badge-pill.in_progress { background: rgba(245,166,35,.8);color: #fff; }
.hpsw-badge-pill.not_started { background: #e72234;color: #fff; }
/* ── By Skills ─────────────────────────────────────────────────────────────── */
.hpsw-skills-stage-block {
   background: #fff;
    border: 0;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--hpsw-shadow);
}
.hpsw-skills-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--hpsw-transition);
}
.hpsw-skills-stage-header:hover { background: var(--hpsw-navy-light); }
.hpsw-skills-stage-left { display: flex; align-items: center; gap: 14px; }
.hpsw-stage-icon { font-size: 24px; }
.hpsw-skills-stage-title { font-size: 15px; font-weight: 600; color: var(--hpsw-white); }
.hpsw-skills-stage-sub   { font-size: 12px; color: var(--hpsw-text-muted); margin-top: 3px; }
.hpsw-skills-stage-right { display: flex; align-items: center; gap: 12px; }
.hpsw-chevron { color: var(--hpsw-text-muted); font-size: 16px; transition: transform var(--hpsw-transition); }
.hpsw-skills-stage-header.open .hpsw-chevron { transform: rotate(180deg); }

.hpsw-skills-list { display: none; padding: 0 20px 20px; }
.hpsw-skills-list.open { display: block; }

.hpsw-skill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hpsw-skill-item:last-of-type { border-bottom: none; }
.hpsw-skill-icon { font-size: 18px; min-width: 22px; padding-top: 1px; }
.hpsw-skill-body { flex: 1; }
.hpsw-skill-text { font-size: 13px; color: var(--hpsw-text); line-height: 1.5; }
.hpsw-skill-date { font-size: 11px; color: var(--hpsw-green); margin-top: 4px; }
.hpsw-skill-no   { font-size: 11px; color: var(--hpsw-text-muted); min-width: 28px; text-align: right; }

.hpsw-skill-passed .hpsw-skill-text     { color: #111; }
.hpsw-skill-in_progress .hpsw-skill-text{ color: #111; }

.hpsw-view-all-wrap { text-align: center; padding-top: 16px; }
.hpsw-view-all-btn {
  background: transparent;
  border: 1px solid var(--hpsw-blue);
  color: var(--hpsw-blue-bright);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all var(--hpsw-transition);
}
.hpsw-view-all-btn:hover { background: var(--hpsw-blue); color: #fff; }

/* ── Summary ───────────────────────────────────────────────────────────────── */
.hpsw-summary-header { padding: 16px 0 8px; }
.hpsw-summary-header h2 { color: #111; margin: 0 0 4px; font-size: 22px; }
.hpsw-summary-header p  { color:  #111; margin: 0; }

.hpsw-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.hpsw-summary-card {
 background: #fff;
    border: 1px solid #eee;
  padding: 20px;
  box-shadow: var(--hpsw-shadow);
  transition: transform var(--hpsw-transition);
}
.hpsw-summary-card:hover { transform: translateY(-2px); }
.hpsw-summary-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hpsw-summary-icon       { font-size: 22px; }
.hpsw-summary-stage-name { font-size: 12px; color: var(--hpsw-text-muted); flex: 1; }
.hpsw-summary-pct-badge  {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--hpsw-navy-light);
  padding: 2px 8px;
  border-radius: 10px;
}
.hpsw-summary-pct-badge.done { color: var(--hpsw-green); background: rgba(0,200,83,.12); }
.hpsw-summary-card-name  { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 10px; }
.hpsw-bar-full            { height: 7px; background: var(--hpsw-navy-light); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.hpsw-bar-full-fill       { height: 100%; background: linear-gradient(90deg, var(--hpsw-blue), var(--hpsw-green)); border-radius: 4px; transition: width 1s ease; }
.hpsw-summary-card-stat  { font-size: 12px; color: var(--hpsw-text-muted); }
.hpsw-summary-card-ip    { font-size: 11px; color: var(--hpsw-amber); margin-top: 3px; }
/* ── Tab Panels ────────────────────────────────────────────────────────────── */
.hpsw-tab-panel { display: none; }
.hpsw-tab-panel.active { display: block; }

/* Month group */
.hpsw-booking-month-group { margin-bottom: 20px; }
.hpsw-month-label {
  font-family: var(--hpsw-font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hpsw-text-dim);
  margin-bottom: 8px;
  padding-left: 2px;
}

/* Booking item row */
.hpsw-booking-item {
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color var(--hpsw-transition), background var(--hpsw-transition), transform .15s;
}
.hpsw-booking-item:hover {
  border-color: var(--hpsw-blue);
  background: #e5e7eb;
  transform: translateX(2px);
}
.hpsw-booking-item-left    { flex: 1; min-width: 0; }
.hpsw-booking-status-badge { margin-bottom: 6px; }
.hpsw-booking-product      { font-size: 14px; font-weight: 700; color: var(--hpsw-text); margin-bottom: 6px; }
.hpsw-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 11px;
  color: var(--hpsw-text-muted);
}
.hpsw-booking-item-right { flex-shrink: 0; }
.hpsw-booking-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--hpsw-surface-3);
  border: 1px solid var(--hpsw-border);
  border-radius: 50%;
  font-size: 18px;
  color: var(--hpsw-text-muted);
  transition: background var(--hpsw-transition), color var(--hpsw-transition), border-color var(--hpsw-transition);
}
.hpsw-booking-item:hover .hpsw-booking-arrow {
  background: #e5e7eb;
  color: #fff;
  border-color: var(--hpsw-blue);
}

/* ── Booking detail overlay ─────────────────────────────── */
.hpsw-booking-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--hpsw-bg);
  overflow-y: auto;
  padding: 20px 16px 100px;
}
.hpsw-booking-detail-card { max-width: 520px; margin: 0 auto; }
.hpsw-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hpsw-blue-bright);
  margin-bottom: 20px;
  transition: opacity var(--hpsw-transition);
}
.hpsw-back-btn:hover { opacity: .7; }
.hpsw-booking-detail-card h3 {
  font-family: var(--hpsw-font-cond);
  font-size: 22px;
  font-weight: 800;
  color: var(--hpsw-text);
  margin-bottom: 14px;
}
.hpsw-detail-status-badge { margin-bottom: 10px; }
.hpsw-detail-product      { font-size: 18px; font-weight: 700; color: var(--hpsw-text); margin-bottom: 12px; }
.hpsw-detail-img          { width: 100%; height: 160px; object-fit: cover; border-radius: var(--hpsw-radius); margin-bottom: 14px; }
.hpsw-detail-rows {
  background: #fff;
  border: 0;
  border-radius: var(--hpsw-radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.hpsw-detail-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--hpsw-text); }
.hpsw-detail-confirmed {
  background: var(--hpsw-green-bg);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: var(--hpsw-radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hpsw-green);
  margin-bottom: 14px;
}
.hpsw-detail-confirmed span { font-size: 12px; font-weight: 400; color: var(--hpsw-text-muted); }
.hpsw-detail-meta-rows {
    background: #ffffff;
    border: 0;
  border-radius: var(--hpsw-radius);
  overflow: hidden;
  margin-bottom: 18px;
}
.hpsw-detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--hpsw-border);
}
.hpsw-detail-meta-row:last-child { border-bottom: none; }
.hpsw-detail-meta-row span   { color: var(--hpsw-text-muted); }
.hpsw-detail-meta-row strong { color: var(--hpsw-text); font-weight: 700; }
.hpsw-detail-actions { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   9. PROGRESS / REPORTS PAGE
   ============================================================ */

/* Filter bar */
.hpsw-prog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hpsw-prog-filter-bar h2 { font-family: var(--hpsw-font-cond); font-size: 22px; font-weight: 800; }
.hpsw-prog-select {
  appearance: none;
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius-sm);
  color: var(--hpsw-text);
  font-family: var(--hpsw-font);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 28px 7px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238fa3cc' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 18px;
}

/* Big ring card */
.hpsw-prog-ring-card {
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.hpsw-prog-ring-card .hpsw-ring     { width: 110px; height: 110px; }
.hpsw-prog-ring-card .hpsw-ring-pct { font-size: 24px; }
.hpsw-prog-stats-col { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.hpsw-prog-stat      { display: flex; align-items: center; gap: 10px; }
.hpsw-prog-stat-icon { font-size: 20px; }
.hpsw-prog-stat-val  { font-family: var(--hpsw-font-cond); font-size: 22px; font-weight: 800; color: var(--hpsw-text); }
.hpsw-prog-stat-lbl  { font-size: 11px; color: var(--hpsw-text-muted); }

/* Stage grid (3-up) */
.hpsw-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.hpsw-stage-card {
background: #fff;
    border: 1px solid #eee;
  border-radius: var(--hpsw-radius);
  padding: 0;
  text-align: center;
  transition: border-color var(--hpsw-transition);
}
.hpsw-stage-card:hover { border-color: var(--hpsw-blue); }
.hpsw-stage-label {
  font-family: var(--hpsw-font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hpsw-text-muted);
  margin-bottom: 4px;
}
.hpsw-stage-num  { font-family: var(--hpsw-font-cond); font-size: 28px; font-weight: 800; color: var(--hpsw-text); line-height: 1; margin-bottom: 8px; }
.hpsw-stage-icon { font-size: 22px; margin-bottom: 8px; }
.hpsw-stage-name { font-size: 10px; color: var(--hpsw-text-muted); line-height: 1.3; margin-bottom: 8px; }

/* Stage progress bar */
.hpsw-stage-bar-wrap {
  background: var(--hpsw-surface-3);
  border-radius: 20px;
  height: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}
.hpsw-stage-bar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--hpsw-blue), var(--hpsw-teal));
  transition: width .5s ease;
}
.hpsw-stage-pct { font-size: 10px; font-weight: 700; color: var(--hpsw-text-muted); }

/* Report tabs (By Stages / By Skills / Summary) */
.hpsw-report-tabs {
  display: flex;
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius-sm);
  padding: 4px;
  margin-bottom: 18px;
}
.hpsw-report-tab {
  flex: 1;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hpsw-text-muted);
  border-radius: 6px;
  text-align: center;
  transition: background var(--hpsw-transition), color var(--hpsw-transition);
}
.hpsw-report-tab.active { background: var(--hpsw-blue); color: #fff; }

/* Report stage row */
.hpsw-report-stage-row {
  background: var(--hpsw-surface);
  border: 1px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--hpsw-transition);
}
.hpsw-report-stage-row:hover { border-color: var(--hpsw-blue); }
.hpsw-rsr-icon   { font-size: 28px; flex-shrink: 0; }
.hpsw-rsr-info   { flex: 1; min-width: 0; }
.hpsw-rsr-name   { font-size: 14px; font-weight: 700; color: var(--hpsw-text); margin-bottom: 4px; }
.hpsw-rsr-count  { font-size: 11px; color: var(--hpsw-text-muted); }
.hpsw-rsr-right  { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.hpsw-rsr-pct    { font-family: var(--hpsw-font-cond); font-size: 20px; font-weight: 800; color: var(--hpsw-text); }
.hpsw-rsr-arrow  { font-size: 20px; color: var(--hpsw-text-dim); }

/* Skills stage block (accordion) */
.hpsw-skills-stage-block {
  background: #fff;
   border: 1px solid #dbe8fd;
  border-radius: var(--hpsw-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--hpsw-shadow);
}
.hpsw-skills-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--hpsw-transition);
}
.hpsw-skills-stage-header:hover { background: #1469f540; }
.hpsw-skills-stage-left  { display: flex; align-items: center; gap: 14px; }
.hpsw-stage-icon         { font-size: 24px; }
.hpsw-skills-stage-title {font-size: 14px;
    font-weight: 600;
    color: #111; }
.hpsw-skills-stage-sub   { font-size: 12px; color: #111; margin-top: 3px; }
.hpsw-skills-stage-right { display: flex; align-items: center; gap: 12px; }
.hpsw-chevron {
  color: #111;
  font-size: 16px;
  transition: transform var(--hpsw-transition);
}
.hpsw-skills-stage-header.open .hpsw-chevron { transform: rotate(180deg); }

.hpsw-skills-list      { display: none; padding: 0 20px 20px; }
.hpsw-skills-list.open { display: block; }

.hpsw-skill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
   background: #fff;
   border: 1px solid #dbe8fd;
  border-radius: var(--hpsw-radius);
  padding: 12px 14px;
  margin-bottom: 8px;
}
.hpsw-skill-item:last-child { margin-bottom: 0; }

/* Skill check circle */
.hpsw-skill-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}
.hpsw-skill-check.passed      { background: var(--hpsw-green);    color: #fff; }
.hpsw-skill-check.in-progress { background: var(--hpsw-yellow);   color: #000; }
.hpsw-skill-check.not-started {
  background: var(--hpsw-surface-3);
  color: var(--hpsw-text-dim);
  border: 1.5px solid var(--hpsw-border);
}

.hpsw-skill-text  { font-size: 13px; color: #111; line-height: 1.45; }
.hpsw-skill-date  { font-size: 11px; color: var(--hpsw-green); margin-top: 4px; }

/* Skill legend */
.hpsw-skill-legend { display: flex; gap: 14px; margin-bottom: 16px; }
.hpsw-legend-item  { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--hpsw-text-muted); }
.hpsw-legend-dot   { width: 8px; height: 8px; border-radius: 50%; }
.hpsw-legend-dot.passed      { background: var(--hpsw-green); }
.hpsw-legend-dot.in-progress { background: var(--hpsw-yellow); }
.hpsw-legend-dot.not-started { background: var(--hpsw-text-dim); }

.hpsw-view-all-wrap { text-align: center; padding-top: 16px; }

/* ── Stage detail page ──────────────────────────────────── */
.hpsw-stage-detail { max-width: 580px; margin: 0 auto; }
.hpsw-stage-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hpsw-stage-detail-head h2 { font-family: var(--hpsw-font-cond); font-size: 20px; font-weight: 800; }
.hpsw-stage-detail-head .hpsw-stage-status { align-self: flex-start; }
.hpsw-skill-count-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--hpsw-text-muted);
  margin-bottom: 8px;
}
.hpsw-skill-count-bar strong { color: var(--hpsw-text); }
.hpsw-skill-list { display: flex; flex-direction: column; gap: 8px; }

/* ── Summary cards ──────────────────────────────────────── */
.hpsw-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
.hpsw-summary-card:hover { transform: translateY(-2px); }
.hpsw-summary-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hpsw-summary-icon       { font-size: 22px; }
.hpsw-summary-stage-name { font-size: 12px; color: var(--hpsw-text-muted); flex: 1; }
.hpsw-summary-pct-badge  {
  font-size: 13px;
  font-weight: 700;
  color: var(--hpsw-text-muted);
  background: var(--hpsw-surface-3);
  padding: 2px 8px;
  border-radius: 10px;
}
.hpsw-summary-pct-badge.done { color: var(--hpsw-green); background: rgba(34, 197, 94, .12); }
.hpsw-summary-card-name  { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 10px; }
.hpsw-bar-full           { height: 7px; background: var(--hpsw-surface-3); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.hpsw-bar-full-fill      { height: 100%; background: linear-gradient(90deg, var(--hpsw-blue), var(--hpsw-green)); border-radius: 4px; transition: width 1s ease; }
.hpsw-summary-card-stat  { font-size: 12px; color: var(--hpsw-text-muted); }
.hpsw-summary-card-ip    { font-size: 11px; color: var(--hpsw-yellow); margin-top: 3px; }

/* ============================================================
   10. PROFILE & CHANGE PASSWORD FORMS
   ============================================================ */
.hpsw-profile-form-card {
 background: #fff;
    border: 1px solid #eaeaea;
  border-radius: var(--hpsw-radius-lg);
  padding: 22px 20px;
  animation: hpsw-fade-up .35s ease both;
}

/* Form layout */
.hpsw-form-row   { display: grid; gap: 14px; }
.hpsw-form-row-2 { grid-template-columns: 1fr 1fr; }

.hpsw-profile-form-card .hpsw-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.hpsw-profile-form-card .hpsw-form-row .hpsw-form-group { margin-bottom: 0; }

/* Labels */
.hpsw-profile-form-card label,
.hpsw-form-label {
  display: block;
  font-family: var(--hpsw-font);
  font-size: 14px;
  font-weight: 700;
  color: #3858e9;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Inputs */
.hpsw-form-input,
.hpsw-form-select,
.hpsw-profile-form-card input[type="text"],
.hpsw-profile-form-card input[type="email"],
.hpsw-profile-form-card input[type="tel"],
.hpsw-profile-form-card input[type="date"],
.hpsw-profile-form-card input[type="password"] {
  width: 100%;
  background: var(--hpsw-surface-3);
  border: 1.5px solid var(--hpsw-border);
  border-radius: var(--hpsw-radius-sm);
  color: var(--hpsw-text);
  font-family: var(--hpsw-font);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--hpsw-transition), box-shadow var(--hpsw-transition), background var(--hpsw-transition);
  -webkit-appearance: none;
  appearance: none;
}
.hpsw-form-input[type="date"],
.hpsw-profile-form-card input[type="date"] { color-scheme: dark; }
.hpsw-form-input::placeholder,
.hpsw-profile-form-card input::placeholder { color: var(--hpsw-text-dim); font-weight: 400; }
.hpsw-form-input:focus,
.hpsw-form-select:focus,
.hpsw-profile-form-card input:focus {
  border-color: var(--hpsw-blue);
  background: var(--hpsw-surface-2);
  box-shadow: 0 0 0 3px var(--hpsw-blue-glow);
}

/* Disabled field */
.hpsw-input-disabled,
.hpsw-profile-form-card input[disabled] {
  opacity: .55;
  cursor: not-allowed;
  background: var(--hpsw-bg) !important;
  border-color: var(--hpsw-border) !important;
  box-shadow: none !important;
}

/* Field hint */
.hpsw-field-note,
.hpsw-pw-hint {
  font-size: 11px;
  color: var(--hpsw-text-dim);
  line-height: 1.4;
  margin-top: 5px;
}

/* Icon-wrapped input */
.hpsw-input-icon-wrap    { position: relative; display: flex; align-items: center; }
.hpsw-input-icon-wrap input { padding-right: 44px !important; }
.hpsw-input-icon {
  position: absolute;
  right: 13px;
  font-size: 16px;
  pointer-events: none;
  color: var(--hpsw-text-muted);
  line-height: 1;
}
/* Password toggle */
.hpsw-toggle-pw,
.hpsw-pw-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  padding: 6px;
  font-size: 16px;
  color: var(--hpsw-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--hpsw-transition);
  border-radius: 4px;
}
.hpsw-toggle-pw:hover,
.hpsw-pw-toggle:hover { color: var(--hpsw-text); }

/* Section divider */
.hpsw-form-divider {
  font-family: var(--hpsw-font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hpsw-text-muted);
  padding: 14px 0 10px;
  border-top: 1px solid var(--hpsw-border);
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hpsw-form-divider::after { content: ''; flex: 1; height: 1px; background: var(--hpsw-border); }

/* Password strength */
.hpsw-pw-strength { display: flex; gap: 4px; margin-top: 6px; }
.hpsw-pw-strength-bar {
  flex: 1;
  height: 4px;
  border-radius: 20px;
  background: var(--hpsw-surface-3);
  transition: background .3s;
}
.hpsw-pw-strength-bar.weak   { background: var(--hpsw-red); }
.hpsw-pw-strength-bar.fair   { background: var(--hpsw-yellow); }
.hpsw-pw-strength-bar.strong { background: var(--hpsw-green); }
.hpsw-pw-strength-label { font-size: 11px; color: var(--hpsw-text-dim); margin-top: 4px; }


/* ── Avatar upload card ─────────────────────────────────── */
.hpsw-avatar-card { margin-bottom: 16px; }

.hpsw-avatar-upload-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Avatar circle */
.hpsw-avatar-preview-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}
.hpsw-avatar-preview-img,
.hpsw-avatar-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2.5px solid var(--hpsw-blue);
  display: block;
}
.hpsw-avatar-preview-img {
  object-fit: cover;
}
.hpsw-avatar-initials {
  background: var(--hpsw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hpsw-font-cond);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

/* Camera overlay on hover */
.hpsw-avatar-edit-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--hpsw-transition);
  font-size: 22px;
  color: transparent;
}
.hpsw-avatar-preview-wrap:hover .hpsw-avatar-edit-overlay {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

/* Info column */
.hpsw-avatar-upload-info {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}
.hpsw-avatar-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.hpsw-avatar-upload-btn {
    display: flex;
    flex-direction: column;
    gap: 0px;
} 
.hpsw-avatar-upload-info strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--hpsw-blue);
    text-transform: uppercase;
}
.hpsw-avatar-upload-info span {
  font-size: 14px;
  color: #495057;
  text-transform: uppercase;
}
.hpsw-avatar-choose-btn {
  align-self: flex-start;
  cursor: pointer;
  font-size: 14px;
  padding: 7px 14px;
}
.hpsw-avatar-remove-btn {
  align-self: flex-start;
  font-size: 14px;
  padding: 7px 14px;
}

/* Upload progress bar */
.hpsw-upload-progress {
  height: 4px;
  background: var(--hpsw-surface-3);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 14px;
}
.hpsw-upload-progress-bar {
  height: 100%;
  background: var(--hpsw-blue);
  border-radius: 20px;
  width: 0%;
  transition: width 0.2s ease;
}

/* ============================================================
   11. ANIMATIONS & UTILITIES
   ============================================================ */
@keyframes hpsw-ring-spin {
  from { stroke-dashoffset: 264; }
}
@keyframes hpsw-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered fade-up for repeated items */
.hpsw-next-booking-card,
.hpsw-dash-progress-card,
.hpsw-account-tile,
.hpsw-booking-item,
.hpsw-stage-card,
.hpsw-report-stage-row {
  animation: hpsw-fade-up .35s ease both;
}
.hpsw-account-tile:nth-child(1)  { animation-delay: .05s; }
.hpsw-account-tile:nth-child(2)  { animation-delay: .10s; }
.hpsw-account-tile:nth-child(3)  { animation-delay: .15s; }
.hpsw-account-tile:nth-child(4)  { animation-delay: .20s; }
.hpsw-booking-item:nth-child(1)  { animation-delay: .05s; }
.hpsw-booking-item:nth-child(2)  { animation-delay: .10s; }
.hpsw-booking-item:nth-child(3)  { animation-delay: .15s; }
.hpsw-booking-item:nth-child(4)  { animation-delay: .20s; }
.hpsw-stage-card:nth-child(1)    { animation-delay: .05s; }
.hpsw-stage-card:nth-child(2)    { animation-delay: .10s; }
.hpsw-stage-card:nth-child(3)    { animation-delay: .15s; }
.hpsw-stage-card:nth-child(4)    { animation-delay: .20s; }
.hpsw-stage-card:nth-child(5)    { animation-delay: .25s; }
.hpsw-stage-card:nth-child(6)    { animation-delay: .30s; }

/* Scrollbar */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--hpsw-bg); }
::-webkit-scrollbar-thumb { background: var(--hpsw-border); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--hpsw-blue); }

/* ============================================================
   12. RESPONSIVE – TABLET  (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .hpsw-profile-form-card {
    padding: 28px;
  }
  .hpsw-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   13. RESPONSIVE – DESKTOP  (≥ 900px)
   ============================================================ */
@media (min-width: 900px) {
  /* Show sidebar; hide mobile chrome */
  .hpsw-sidebar       { display: flex; }
  .hpsw-sticky-bar    { display: none; }
  .hpsw-mobile-header { display: none; }

  .hpsw-layout-main { padding: 32px; }
  .hpsw-myaccount {
    padding: 28px 32px 32px;
    margin: 0 auto;
  }
  .hpsw-dash-header     { padding: 24px 28px; }
  .hpsw-dash-grid       { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hpsw-stage-grid      { grid-template-columns: repeat(3, 1fr); }
  .hpsw-dash-account-grid { grid-template-columns: repeat(4, 1fr); }
  .hpsw-summary-grid    { grid-template-columns: repeat(3, 1fr); }

  .hpsw-booking-detail-overlay { padding: 32px; }
}

/* ============================================================
   14. SMALL MOBILE OVERRIDES  (≤ 500px)
   ============================================================ */
@media (max-width: 500px) {
  .hpsw-form-row-2 { grid-template-columns: 1fr; }
  .hpsw-stage-grid { grid-template-columns: 1fr 1fr; }
}

.support-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.support-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:28px 24px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e5e7eb;
    transition:all .3s ease;
    cursor:pointer;
}

.support-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    border-radius:16px;
}

.card-content{
    flex:1;
    padding:0 18px;
}

.card-content h3{
    margin:0 0 8px;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
}

.card-content p{
    margin:0;
    font-size:16px;
    line-height:1.5;
    color:#4b5563;
}

.card-arrow{
    font-size:36px;
    font-weight:300;
}

/* BLUE CARD */
.support-card.blue{
    background:#f5f8ff;
    border-color:#dbe7ff;
}

.support-card.blue .card-icon,
.support-card.blue h3,
.support-card.blue .card-arrow{
    color:#2563eb;
}

/* GREEN CARD */
.support-card.green{
    background:#f3fff6;
    border-color:#d8f5df;
}

.support-card.green .card-icon,
.support-card.green h3,
.support-card.green .card-arrow{
    color:#16a34a;
}

/* PURPLE CARD */
.support-card.purple{
    background:#fcf7ff;
    border-color:#eadcff;
}

.support-card.purple .card-icon,
.support-card.purple h3,
.support-card.purple .card-arrow{
    color:#9333ea;
}
.hp-overview-stats{
display: flex;
    flex-direction: row;
    gap: 35px;
    padding-top: 0;
    align-items: flex-start;
}

.hp-overview-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.hp-overview-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#f5f8ff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.hp-overview-content h3{
    margin:0;
    font-size:34px;
    line-height:1;
    font-weight:700;
    color:#111827;
}

.hp-overview-content p{
    margin:8px 0 0;
    font-size:15px;
    color:#6b7280;
    font-weight:500;
}

.hp-overview-icon .icon-svg {
    width: 35px;
    height: 35px;
}
/* MOBILE */
@media(max-width:768px){

    .support-cards{
        grid-template-columns:1fr;
    }

    .card-content h3{
        font-size:20px;
    }

    .card-content p{
        font-size:14px;
    }
}
/* =========================================================
   BOOKING HISTORY DESIGN
========================================================= */

.hpsw-bookings{
    max-width:900px;
    margin:0 auto;
    padding:20px;
    font-family:Inter,sans-serif;
}

/* =========================================================
   HEADER
========================================================= */

.hpsw-page-head{
    margin-bottom:24px;
}

.hpsw-page-head h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.hpsw-page-head p{
    margin-top:8px;
    color:#6b7280;
    font-size:15px;
}

/* =========================================================
   FILTER TABS
========================================================= */

.hpsw-filter-tabs{
    display:flex;
    align-items:center;
    gap:0;
    border:1px solid #e5e7eb;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:28px;
    background:#fff;
}

.hpsw-filter-tab{
    flex:1;
    border:none;
    background:#fff;
    padding:16px 20px;
    font-size:15px;
    font-weight:600;
    color:#6b7280;
    cursor:pointer;
    position:relative;
    transition:all .3s ease;
}

.hpsw-filter-tab:hover{
    background:#f9fafb;
}

.hpsw-filter-tab.active{
    color:#2563eb;
    background:#f8fbff;
}

.hpsw-filter-tab.active:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#2563eb;
}

.hpsw-tab-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:22px;
    height:22px;
    border-radius:50px;
    background:#eef2ff;
    color:#2563eb;
    font-size:12px;
    margin-left:8px;
    padding:0 7px;
}

/* =========================================================
   MONTH GROUP
========================================================= */

.hpsw-booking-month-group{
    margin-bottom:35px;
}

.hpsw-month-label{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:18px;
}

/* =========================================================
   BOOKING CARD
========================================================= */

.hpsw-booking-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:22px;
    margin-bottom:16px;
    transition:all .3s ease;
}

.hpsw-booking-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* =========================================================
   LEFT SIDE
========================================================= */

.hpsw-booking-item-left{
    display:flex;
    flex-direction:column;
    gap:12px;
    flex:1;
}

/* =========================================================
   STATUS
========================================================= */

.hpsw-booking-status-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    padding:7px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* Approved */

.hpsw-status-approved{
    background:#ecfdf3;
    color:#16a34a;
}

/* Pending */

.hpsw-status-pending{
    background:#fff7ed;
    color:#ea580c;
}

/* Cancelled */

.hpsw-status-canceled{
    background:#fef2f2;
    color:#dc2626;
}

/* Rejected */

.hpsw-status-rejected{
    background:#f3f4f6;
    color:#6b7280;
}

/* =========================================================
   SERVICE IMAGE
========================================================= */

.hpsw-booking-service-image{
    width:72px;
    height:72px;
    border-radius:16px;
    overflow:hidden;
    background:#f3f4f6;
}

.hpsw-booking-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
   TITLE
========================================================= */

.hpsw-booking-product{
    font-size:20px;
    font-weight:700;
    color:#111827;
}

/* =========================================================
   META
========================================================= */

.hpsw-booking-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px 20px;
}

.hpsw-booking-meta span{
    display:flex;
    align-items:center;
    gap:7px;
    color:#6b7280;
    font-size:14px;
    font-weight:500;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.hpsw-booking-item-right{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hpsw-booking-arrow{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111827;
    font-size:28px;
    transition:all .3s ease;
}

.hpsw-booking-arrow:hover{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
}

/* =========================================================
   DETAIL MODAL
========================================================= */

.hpsw-booking-detail-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.hpsw-booking-detail-card{
    width:100%;
    max-width:700px;
    background:#fff;
    border-radius:28px;
    padding:35px;
    position:relative;
    overflow:auto;
    max-height:90vh;
}

.hpsw-back-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
    margin-bottom:20px;
}

.hpsw-detail-product{
    font-size:30px;
    font-weight:700;
    margin:18px 0;
    color:#111827;
}

.hpsw-detail-image{
    margin-top:18px;
}

.hpsw-detail-image img{
    width:100%;
    border-radius:20px;
	    height: 200px;
    object-fit: scale-down;
}

.hpsw-detail-rows{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:25px 0;
}

.hpsw-detail-row{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    color:#374151;
    padding:14px 18px;
    background:#f9fafb;
    border-radius:14px;
}

.hpsw-detail-confirmed{
    background:#ecfdf3;
    color:#15803d;
    border-radius:18px;
    padding:18px;
    margin:25px 0;
    font-weight:700;
}

.hpsw-detail-confirmed span{
    display:block;
    margin-top:6px;
    font-size:14px;
    font-weight:500;
}

.hpsw-detail-meta-rows{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hpsw-detail-meta-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:18px;
    border:1px solid #e5e7eb;
    border-radius:16px;
}

.hpsw-detail-meta-row span{
    color:#6b7280;
    font-size:14px;
}

.hpsw-detail-meta-row strong{
    color:#111827;
    font-size:15px;
}

.hpsw-detail-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.hpsw-btn-secondary,
.hpsw-btn-danger{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:all .3s ease;
}

.hpsw-btn-secondary{
    background:#111827;
    color:#fff;
}

.hpsw-btn-secondary:hover{
    opacity:.9;
}

.hpsw-btn-danger{
    background:#dc2626;
    color:#fff;
}

.hpsw-btn-danger:hover{
    background:#b91c1c;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.hpsw-empty-state{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:60px 30px;
    text-align:center;
}

.hpsw-empty-icon{
    font-size:60px;
    margin-bottom:20px;
}

.hpsw-empty-state h3{
    margin:0;
    font-size:28px;
    color:#111827;
}

.hpsw-empty-state p{
    margin-top:10px;
    color:#6b7280;
}

.hpsw-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:24px;
    padding:14px 28px;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.hpsw-btn-primary:hover{
    background:#1d4ed8;
}
.woocommerce-account .woocommerce-MyAccount-navigation > ul li a{
font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat';		

}
.hpsw-profile-form-card label, .hpsw-form-label{
	    color: #fff;
}
/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .hpsw-booking-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .hpsw-booking-item-right{
        width:100%;
        justify-content:flex-end;
    }

    .hpsw-detail-actions{
        flex-direction:column;
    }

    .hpsw-detail-product{
        font-size:24px;
    }

    .hpsw-filter-tab{
        font-size:13px;
        padding:14px 10px;
    }
		.hpsw-dash-header{
		
    flex-direction: column;
	}
	.hpsw-overview-card{
		padding: 22px;
		    gap: 12px;
    margin-bottom: 12px;
	    justify-content: center;
		flex-direction: column;
	}
	.hpsw-stage-card{
		flex-direction: column;
	}
	.hpsw-skills-stage-title {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}
.hpsw-badge-pill {
    display: inline-block;
    padding: 3px 8px;
    font-size: 9px;
}
.hpsw-skills-stage-left {
    gap: 10px;
}
.hpsw-skills-stage-header{
	    padding: 14px 8px;
		    display: grid;
    align-items: center;
    grid-template-columns: 65% 35%;
}
.hp-overview-stats{
	    flex-direction: column;
    gap: 14px;
}
.hpsw-avatar-upload-info{
	    flex-direction: column;
}
.hpsw-profile-form-card label, .hpsw-form-label{
	    color: #fff;
}
}
.hpsw-skill-icon{
    width:32px;
    min-width:32px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hpsw-skill-icon svg{
    width:24px;
    height:24px;
	  fill: #fff;
}
.hpsw-action-buttons{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.hpsw-action-buttons a{
    flex:1;
    height:54px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    color:#fff;
    transition:.3s;
}

.hpsw-btn-book{
    background:linear-gradient(90deg,#0d6efd,#1f59ff);
}

.hpsw-btn-whatsapp{
    background:#12b84f;
}

.hpsw-btn-call{
    background:#011a52;
}

.hpsw-action-buttons a:hover{
    transform:translateY(-2px);
    opacity:.95;
}
@media(max-width:768px){

    .hpsw-action-buttons{
        flex-direction:column;
    }

}
