/* =========================================================
  ONE POINT BUY - main.ws-css v3.0
   JustDial-grade design system
   ========================================================= */

/* â”€â”€ RESET & ROOT â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --org:        #E8450A;
  --org-mid:    #F26522;
  --org-light:  #FFF3ED;
  --org-dark:   #C13A08;
  --navy:       #0C2340;
  --navy2:      #163354;
  --blue:       #1A73E8;
  --blue-light: #E8F0FE;
  --green:      #0D8050;
  --green-light:#E6F4EA;
  --red:        #D32F2F;
  --red-light:  #FDECEA;
  --yellow:     #F59E0B;
  --yellow-light:#FFFBEB;
  --text:       #1A1A2E;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --light:      #F8F9FA;
  --white:      #FFFFFF;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  16px;
  --trans:      .2s ease;
  --font-h:     'Nunito', sans-serif;
  --font-b:     'Hind', sans-serif;
}

.ws-app-inline-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }
.ws-app-icon-image { object-fit: contain; }

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text); background: var(--light); font-size: 1rem; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-b); font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* â”€â”€ SCROLLBAR â”€â”€ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }

/* â”€â”€ CONTAINER â”€â”€ */
.ws-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* â”€â”€ TOP STRIP â”€â”€ */
.ws-top-strip { background: var(--navy); color: rgba(255,255,255,.75); font-size: 1rem; padding: 6px 0; }
.ws-top-strip .ws-container { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.ws-top-strip a { color: rgba(255,255,255,.85); }
.ws-top-strip a:hover { color: var(--org-mid); }

/* â”€â”€ HEADER â”€â”€ */
.ws-site-header { background: var(--white); border-bottom: 2px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.ws-header-inner { display: flex; align-items: center; gap: 16px; padding: 10px 16px; flex-wrap: wrap; }

/* Logo */
.ws-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ws-logo-mark {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
  background-image: url("../images/site-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  color: transparent;
}
.ws-logo-mark::before { content: none; }
.ws-logo-name { font-family: var(--font-h); font-size: 1.25rem; font-weight: 900; color: var(--navy); line-height: 1.1; }
.ws-logo-name span { color: var(--org); }
.ws-logo-tag { font-size: 1rem; color: var(--muted); font-weight: 500; white-space: nowrap; }

/* Header Nav */
.ws-header-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; min-width: 0; }
.ws-header-nav a { padding: 6px 12px; font-size: 1rem; font-weight: 600; color: var(--navy); border-radius: var(--radius-sm); transition: all var(--trans); white-space: nowrap; }
.ws-header-nav a:hover { background: var(--org-light); color: var(--org); }
.ws-header-list-biz-btn { margin-left: auto; padding: 8px 14px !important; line-height: 1.2; }
.ws-user-login-widget { position: relative; display: inline-flex; align-items: center; }
.ws-user-login-widget-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.ws-user-login-widget-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--org);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ws-user-login-widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ws-user-login-widget-avatar svg {
  width: 16px;
  height: 16px;
}
.ws-user-login-widget-btn:hover { background: var(--org-light); color: var(--org); }
.ws-user-login-widget-btn[aria-expanded="true"] { background: var(--org-light); color: var(--org); border-color: var(--org); }
.ws-user-login-widget-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  z-index: 120;
  padding: 4px 0;
}
.ws-user-login-widget-list.ws-open { display: block; }
.ws-user-login-widget-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.ws-user-login-widget-list a:hover { background: var(--org-light); color: var(--org); }

.ws-user-login-widget-item-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-user-login-widget-item-icon svg { width: 18px; height: 18px; display: block; }
.ws-user-login-widget-item-text { flex: 1; min-width: 0; }

.ws-user-login-widget-item-icon--dashboard { color: #1A73E8; }
.ws-user-login-widget-item-icon--profile { color: var(--org); }
.ws-user-login-widget-item-icon--logout { color: var(--red); }
.ws-btn-orange { background: var(--org) !important; color: white !important; border-radius: var(--radius-sm) !important; }
.ws-btn-orange:hover { background: var(--org-dark) !important; }

/* Hamburger */
.ws-hamburger { display: none; font-size: 1.4rem; padding: 4px 8px; color: var(--navy); flex-shrink: 0; }
.ws-mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 16px 12px; }
.ws-mobile-nav.ws-open { display: flex; }
.ws-mobile-nav a { padding: 10px 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--navy); }
.ws-mobile-nav a:last-child { border: none; }

/* â”€â”€ HERO â”€â”€ */
.ws-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 50%, #0f2d54 100%); padding: 56px 0 52px; position: relative; overflow: visible; }
.ws-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.ws-w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.ws-hero-inner { position: relative; text-align: center; }
.ws-hero-pill { display: inline-block; background: rgba(232,69,10,.2); border: 1px solid rgba(232,69,10,.4); color: var(--org-mid); padding: 4px 16px; border-radius: 50px; font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: none; margin-bottom: 14px; }
.ws-hero h1,
.ws-hero .ws-h1 { font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white; line-height: 1.2; margin-bottom: 10px; }
.ws-hero h1 em,
.ws-hero .ws-h1 em { color: var(--org-mid); font-style: normal; }
.ws-hero .ws-hero-highlight-red { color: #f26522; font-size: inherit; font-weight: inherit; line-height: inherit; }
.ws-hero-sub { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 28px; }

/* Hero Search Box */
.ws-hero-search-box { background: white; border-radius: var(--radius-lg); padding: 6px; display: flex; gap: 4px; max-width: 780px; margin: 0 auto 20px; box-shadow: 0 8px 32px rgba(0,0,0,.25); position: relative; z-index: 20; overflow: visible; }
.ws-hsb-field { position: relative; overflow: visible; }
.ws-hsb-field { flex: 1; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-right: 1.5px solid var(--border); min-width: 0; font-size: 1.125rem; }
.ws-hsb-field:last-of-type { border-right: none; }
.ws-hsb-icon { font-size: 1.125rem; flex-shrink: 0; }
.ws-hsb-field input { width: 100%; border: none; outline: none; font-size: 1.125rem; color: var(--text); background: transparent; }
.ws-hsb-field input::placeholder { color: var(--muted); }
.ws-hsb-btn { background: var(--org); color: white; padding: 12px 28px; border-radius: var(--radius); font-weight: 800; font-size: 1.125rem; font-family: var(--font-h); transition: background var(--trans); white-space: nowrap; flex-shrink: 0; }
.ws-hsb-btn:hover { background: var(--org-dark); }
.ws-hsb-loc { max-width: 220px; }

/* Popular Tags */
.ws-popular { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ws-popular span { font-size: 1rem; color: rgba(255,255,255,.5); }
.ws-popular a { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); padding: 4px 14px; border-radius: 50px; font-size: 1rem; font-weight: 600; transition: all var(--trans); }
.ws-popular a:hover { background: var(--org); border-color: var(--org); color: white; }

/* City Autocomplete */
.ws-city-autocomplete-box { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1.5px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 600; max-height: 220px; overflow-y: auto; box-shadow: var(--shadow-lg); }
.ws-cac-item { padding: 9px 14px; cursor: pointer; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; transition: background var(--trans); }
.ws-cac-item:hover { background: var(--org-light); color: var(--org-dark); }
.ws-cac-item small { font-size: 1rem; color: var(--muted); }
.ws-city-autocomplete-google,
.ws-query-autocomplete-google {
  width: 100%;
  display: block;
  min-height: 44px;
  --gmpx-font-family-base: Nunito, Hind, Arial, sans-serif;
  --gmpx-font-size-base: 16px;
  --gmpx-color-surface: #ffffff;
  --gmpx-color-on-surface: #0f2f53;
  --gmpx-color-outline: #d8e3ef;
  --gmpx-color-primary: #f26522;
  --gmpx-border-radius: 10px;
}

/* â”€â”€ SECTIONS â”€â”€ */
.ws-section { padding: 48px 0; }
.ws-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.ws-section-title { font-family: var(--font-h); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 900; color: var(--navy); }
.ws-section-sub { font-size: 1rem; color: var(--muted); margin-top: 2px; }

/* Heading level hooks — use on h1–h4 (pairs with contextual rules below) */
.ws-h1,
.ws-h2,
.ws-h3,
.ws-h4 {
  font-family: var(--font-h);
}
.ws-h1 { font-weight: 900; }
.ws-h2 { font-weight: 800; }
.ws-h3 { font-weight: 800; }
.ws-h4 { font-weight: 800; }

.ws-view-all { color: var(--org); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.ws-view-all:hover { text-decoration: underline; }

/* â”€â”€ CATEGORY GRID â”€â”€ */
.ws-category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.ws-category-card {
  --category-accent: #2563eb;
  --category-accent-soft: #dbeafe;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 12px 14px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}
.ws-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, .35);
  border-color: color-mix(in srgb, var(--category-accent) 38%, white);
  background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 10px 24px rgba(2, 132, 199, .14);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--category-accent) 18%, transparent);
}
.ws-category-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform .2s ease;
}
.ws-category-card:hover .ws-category-icon-wrap {
  transform: translateY(-1px) scale(1.03);
  box-shadow: none;
}
.ws-category-icon {
  font-size: 0;
  line-height: 0;
}
.ws-category-icon .ws-app-inline-icon {
  width: 22px;
  height: 22px;
}
.ws-category-icon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.ws-category-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}
.ws-category-card:hover .ws-category-name { color: #0f3d8a; }

/* Category specific accent themes */
.ws-category-card--food-dining { --category-accent: #ef4444; --category-accent-soft: #fee2e2; }
.ws-category-card--health-medical { --category-accent: #06b6d4; --category-accent-soft: #cffafe; }
.ws-category-card--home-services { --category-accent: #0ea5e9; --category-accent-soft: #e0f2fe; }
.ws-category-card--education { --category-accent: #4f46e5; --category-accent-soft: #e0e7ff; }
.ws-category-card--beauty-wellness { --category-accent: #ec4899; --category-accent-soft: #fce7f3; }
.ws-category-card--shopping-retail { --category-accent: #f97316; --category-accent-soft: #ffedd5; }
.ws-category-card--finance-legal { --category-accent: #0f766e; --category-accent-soft: #ccfbf1; }
.ws-category-card--automobile { --category-accent: #475569; --category-accent-soft: #e2e8f0; }
.ws-category-card--travel-tourism { --category-accent: #0284c7; --category-accent-soft: #dbeafe; }
.ws-category-card--real-estate { --category-accent: #2563eb; --category-accent-soft: #dbeafe; }
.ws-category-card--events-weddings { --category-accent: #db2777; --category-accent-soft: #fce7f3; }
.ws-category-card--it-tech-services { --category-accent: #6366f1; --category-accent-soft: #e0e7ff; }
.ws-category-card--courier-logistics { --category-accent: #f59e0b; --category-accent-soft: #fef3c7; }
.ws-category-card--pet-services { --category-accent: #14b8a6; --category-accent-soft: #ccfbf1; }
.ws-category-card--religious-spiritual { --category-accent: #a855f7; --category-accent-soft: #f3e8ff; }
.ws-category-card--government-utility { --category-accent: #334155; --category-accent-soft: #e2e8f0; }
.ws-category-card--sports-recreation { --category-accent: #22c55e; --category-accent-soft: #dcfce7; }
.ws-category-card--printing-media { --category-accent: #7c3aed; --category-accent-soft: #ede9fe; }
.ws-category-card--nursery-plants { --category-accent: #16a34a; --category-accent-soft: #dcfce7; }
.ws-category-card--industrial-b2b { --category-accent: #6b7280; --category-accent-soft: #f3f4f6; }

/* â”€â”€ BUSINESS CARD GRID â”€â”€ */
.ws-biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ws-biz-grid, .ws-biz-grid * { text-transform: none; }
.ws-biz-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--trans); display: flex; flex-direction: column; }
.ws-biz-card:hover { box-shadow: var(--shadow-lg); border-color: var(--org); transform: translateY(-2px); }
.ws-biz-card-top { padding: 16px; flex: 1; }
.ws-biz-card-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.ws-biz-logo-placeholder { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy); color: white; font-family: var(--font-h); font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-biz-logo-placeholder svg { width: 24px; height: 24px; }
.ws-biz-info { flex: 1; min-width: 0; }
.ws-biz-verified { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 2px; display: inline-flex; align-items: center; gap: 6px; line-height: 1.2; }
.ws-biz-verified svg { width: 16px; height: 16px; }
.ws-biz-name { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ws-biz-category { font-size: 1rem; color: var(--muted); line-height: 1.3; margin-top: 2px; }
.ws-biz-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ws-biz-addr { display: flex; align-items: flex-start; gap: 6px; font-size: 1rem; color: var(--muted); margin-bottom: 6px; line-height: 1.35; }
.ws-biz-addr-icon { flex-shrink: 0; margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; color: var(--org); }
.ws-biz-addr-icon svg { width: 16px; height: 16px; }
.ws-biz-timings { font-size: 1rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.ws-open-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.ws-biz-card-foot { display: flex; border-top: 1px solid var(--border); }
.ws-biz-foot-btn { flex: 1; padding: 10px 6px; font-size: 1rem; font-weight: 700; color: var(--navy); text-align: center; transition: background var(--trans); border-right: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; gap: 6px; line-height: 1; }
.ws-biz-foot-btn svg { width: 16px; height: 16px; }
.ws-biz-foot-btn:last-child { border-right: none; }
.ws-biz-foot-btn:hover { background: var(--org-light); color: var(--org); }

/* Rating badge */
.ws-rating-badge { background: var(--green); color: white; padding: 2px 7px; border-radius: 4px; font-size: 1rem; font-weight: 800; font-family: var(--font-h); }
.ws-rating-badge svg { width: 13px; height: 13px; }
.ws-rating-badge.ws-mid { background: var(--yellow); }
.ws-rating-badge.ws-low { background: var(--red); }
.ws-rating-count { font-size: 1rem; color: var(--muted); }

/* â”€â”€ STATS BAND â”€â”€ */
.ws-stats-band { background: var(--navy); padding: 28px 0; }
.ws-stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.ws-stat { text-align: center; }
.ws-stat strong { display: block; font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--org-mid); }
.ws-stat span { font-size: 1rem; color: rgba(255,255,255,.6); text-transform: none; letter-spacing: .06em; }

/* â”€â”€ CTA STRIP â”€â”€ */
.ws-cta-strip { background: linear-gradient(135deg, var(--org) 0%, var(--org-dark) 100%); padding: 40px 0; }
.ws-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.ws-cta-text h2,
.ws-cta-text .ws-h2 { font-family: var(--font-h); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 900; color: white; margin-bottom: 6px; }
.ws-cta-text p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 560px; }
.ws-btn-cta-lg { background: white; color: var(--org); padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-h); font-weight: 900; font-size: 1rem; transition: all var(--trans); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ws-btn-cta-lg:hover { background: var(--navy); color: white; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ws-btn-section { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; transition: all var(--trans); display: inline-block; }
.ws-btn-section:hover { border-color: var(--navy); background: var(--navy); color: white; }

/* â”€â”€ FOOTER â”€â”€ */
.ws-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 48px; }
.ws-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 32px; }
.ws-footer-brand .ws-logo-name { color: white; }
.ws-footer-brand .ws-logo-tag { color: rgba(255,255,255,.4); }
.ws-footer-brand p { font-size: 1rem; color: rgba(255,255,255,.5); margin-top: 10px; line-height: 1.7; }
.ws-footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.ws-footer-social a { font-size: .95rem; color: rgba(255,255,255,.62); }
.ws-footer-social a:hover { color: var(--org-mid); }
.ws-footer-col h4,
.ws-footer-col .ws-h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: white; margin-bottom: 12px; text-transform: none; letter-spacing: .06em; }
.ws-footer-col a { display: block; font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 7px; transition: color var(--trans); }
.ws-footer-col a:hover { color: var(--org-mid); }
.ws-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; font-size: .95rem; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.55); }
.ws-footer-bottom a { color: rgba(255,255,255,.55); }
.ws-footer-bottom a:hover { color: var(--org-mid); }

/* â”€â”€ SEARCH PAGE â”€â”€ */
.ws-search-bar-strip { background: var(--white); border-bottom: 2px solid var(--border); padding: 14px 0; position: static; top: auto; z-index: auto; }
.ws-sbs-inner { display: flex; gap: 8px; flex-wrap: wrap; }
.ws-sbs-inner input, .ws-sbs-inner select { flex: 1; min-width: 140px; padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; outline: none; transition: border-color var(--trans); background: var(--white); }
.ws-sbs-inner input:focus, .ws-sbs-inner select:focus { border-color: var(--org); }
.ws-sbs-btn { background: var(--org); color: white; padding: 9px 24px; border-radius: var(--radius-sm); font-weight: 800; font-size: 1rem; transition: background var(--trans); white-space: nowrap; }
.ws-sbs-btn:hover { background: var(--org-dark); }
.ws-results-layout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; padding: 20px 0 48px; align-items: start; }
.ws-filter-panel { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 130px; }
.ws-filter-panel h3,
.ws-filter-panel .ws-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.ws-f-filter { margin-bottom: 14px; }
.ws-f-filter label { display: block; font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: none; letter-spacing: .05em; margin-bottom: 5px; }
.ws-f-filter input, .ws-f-filter select { width: 100%; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; outline: none; transition: border-color var(--trans); }
.ws-f-filter input:focus, .ws-f-filter select:focus { border-color: var(--org); }
.ws-results-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.ws-results-count { font-size: 1rem; color: var(--muted); }
.ws-results-count strong { color: var(--navy); }
.ws-results-sort select { padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; outline: none; }

/* Business List Item */
.ws-biz-list-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; display: flex; gap: 14px; transition: all var(--trans); }
.ws-biz-list-item:hover { box-shadow: var(--shadow); border-color: var(--org); }
.ws-bli-logo { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--navy); color: white; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-bli-body { flex: 1; min-width: 0; }
.ws-bli-name a { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); }
.ws-bli-name a:hover { color: var(--org); }
.ws-bli-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 4px 0; }
.ws-bli-desc { font-size: 1rem; color: var(--muted); margin: 6px 0; line-height: 1.6; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ws-bli-actions { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 8px; flex-shrink: 0; width: 150px; margin-left: auto; }
.ws-call-btn { background: var(--green); color: white; padding: 8px 12px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; text-align: center; display: inline-flex; align-items: center; justify-content: center; min-height: 40px; transition: background var(--trans); }
.ws-call-btn:hover { background: #096B3E; }
.ws-whatsapp-btn { background: #25D366; color: white; padding: 8px 12px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; text-align: center; display: inline-flex; align-items: center; justify-content: center; min-height: 40px; transition: background var(--trans); }
.ws-whatsapp-btn:hover { background: #1EB855; }
.ws-view-btn { background: var(--blue-light); color: var(--blue); padding: 8px 12px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; text-align: center; display: inline-flex; align-items: center; justify-content: center; min-height: 40px; transition: all var(--trans); }
.ws-view-btn:hover { background: var(--blue); color: white; }

/* Pagination */
.ws-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.ws-page-btn { min-width: 38px; height: 38px; padding: 0 10px; border-radius: 10px; border: 1px solid #d8e0ea; font-weight: 800; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; transition: all var(--trans); cursor: pointer; background: var(--white); color: var(--navy); box-shadow: 0 2px 6px rgba(15,23,42,0.05); }
.ws-page-btn:hover:not(:disabled) { border-color: var(--org); color: var(--org); }
.ws-page-btn.ws-active { background: var(--org); color: white; border-color: var(--org); }
.ws-page-btn:disabled { opacity: .4; cursor: default; }
.ws-page-nav { font-size: 1.2rem; line-height: 1; padding-bottom: 2px; }
.ws-page-ellipsis { color: #64748b; font-weight: 700; letter-spacing: 1px; padding: 0 2px; }

/* Pill */
.ws-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 50px; font-size: 1rem; font-weight: 700; }
.ws-pill-green { background: var(--green-light); color: var(--green); }
.ws-pill-orange { background: var(--org-light); color: var(--org); }
.ws-pill-blue { background: var(--blue-light); color: var(--blue); }

/* Business list premium UI pass */
.ws-business-list-template .ws-search-bar-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.95) 100%);
  border-bottom: 1px solid #dfe8f3;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(8px);
  top: 64px;
}
.ws-business-list-template .ws-sbs-inner form {
  background: #ffffff;
  border: 1px solid #dce6f2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 10px;
}
.ws-business-list-template .ws-search-top-form {
  display: flex;
  gap: 8px;
  flex: 1;
  align-items: center;
}
.ws-business-list-template .ws-search-top-query {
  flex: 2;
}
.ws-business-list-template .ws-search-top-city-wrap {
  position: relative;
  flex: 1;
  min-width: 140px;
}
.ws-business-list-template .ws-search-top-select {
  flex: 1;
  min-width: 140px;
}
.ws-business-list-template .ws-sbs-inner input,
.ws-business-list-template .ws-sbs-inner select {
  border: 1px solid #d8e3ef;
  border-radius: 12px;
  min-height: 46px;
  box-shadow: inset 0 1px 1px rgba(2, 6, 23, 0.03);
}
.ws-business-list-template .ws-sbs-inner input:focus,
.ws-business-list-template .ws-sbs-inner select:focus {
  border-color: #f26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.14);
}
.ws-business-list-template .ws-sbs-btn {
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 26px;
  background: #fff4ee;
  color: #f26522;
  border: 1px solid #ffd7c6;
  box-shadow: 0 6px 14px rgba(242, 101, 34, 0.16);
}
.ws-business-list-template .ws-sbs-btn:hover {
  transform: translateY(-1px);
  background: #f26522;
  color: #ffffff;
  border-color: #f26522;
}
.ws-business-list-template .ws-results-layout {
  gap: 24px;
  padding-top: 24px;
}
.ws-business-list-template .ws-filter-panel {
  border: 1px solid #dce6f2;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.ws-business-list-template .ws-filter-panel .ws-h3 {
  color: #0f2f53;
}
.ws-business-list-template .ws-f-filter input,
.ws-business-list-template .ws-f-filter select {
  border: 1px solid #d7e2ee;
  border-radius: 12px;
  min-height: 44px;
}
.ws-business-list-template .ws-f-filter input:focus,
.ws-business-list-template .ws-f-filter select:focus {
  border-color: #f26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.14);
}
.ws-business-list-template .ws-btn-section {
  border-radius: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fbff;
  border: 1px solid #d9e6f4;
  color: #1f4d80;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}
.ws-business-list-template .ws-btn-section:hover {
  background: #eaf2fc;
  border-color: #c8dbf2;
  color: #0f2f53;
}
.ws-business-list-template .ws-results-meta {
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
.ws-business-list-template .ws-results-count {
  color: #334155;
}
.ws-business-list-template .ws-results-sort select {
  border-radius: 10px;
  min-height: 40px;
  border: 1px solid #d7e2ee;
}
.ws-business-list-template .ws-bli-tag {
  border-radius: 999px;
  border-color: #dbe7f3;
  background: #f8fbff;
  color: #334155;
}
.ws-business-list-template .ws-active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.ws-business-list-template .ws-biz-list-item {
  border: 1px solid #dce6f2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.ws-business-list-template .ws-biz-list-item:hover {
  border-color: #f6b191;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}
.ws-business-list-template .ws-bli-logo {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f2f53 0%, #1f4d80 100%);
  box-shadow: 0 8px 18px rgba(15, 47, 83, 0.22);
}
.ws-business-list-template .ws-bli-name a {
  font-size: 1.08rem;
  line-height: 1.4;
}
.ws-business-list-template .ws-bli-desc {
  color: #54667b;
}
.ws-business-list-template .ws-bli-meta {
  gap: 10px;
}
.ws-business-list-template .ws-bli-actions {
  width: 230px;
  gap: 12px;
  align-self: center;
}
.ws-business-list-template .ws-call-btn,
.ws-business-list-template .ws-view-btn {
  border-radius: 12px;
  min-height: 46px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  padding: 10px 14px;
  font-size: .95rem;
}
.ws-business-list-template .ws-call-btn {
  background: linear-gradient(180deg, #ecfbf5 0%, #e0f7ec 100%);
  color: #0a7a4a;
  border: 1px solid #b9e7d2;
  box-shadow: 0 6px 14px rgba(10, 122, 74, 0.12);
}
.ws-business-list-template .ws-call-btn:hover {
  background: linear-gradient(180deg, #e2f7ed 0%, #d4f1e3 100%);
  border-color: #95d8b8;
  color: #075f3a;
}
.ws-business-list-template .ws-view-btn {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
  border: 1px solid #d3dfec;
  color: #2f4f70;
}
.ws-business-list-template .ws-view-btn:hover {
  background: linear-gradient(180deg, #eef4fc 0%, #e3edf8 100%);
  border-color: #bfd2e6;
  color: #1f3c5e;
}
.ws-business-list-template .ws-call-btn.ws-login-required {
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
  color: #5f7083;
  border: 1px solid #d5e0eb;
  box-shadow: none;
  cursor: default;
}
.ws-business-list-template .ws-call-btn.ws-login-required:hover {
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
  color: #5f7083;
  border-color: #d5e0eb;
}
.ws-business-list-template .ws-bli-action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ws-business-list-template .ws-bli-action-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.ws-business-list-template .ws-bli-action-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  letter-spacing: .1px;
}
.ws-business-list-template .ws-pagination {
  margin-top: 28px;
}
.ws-business-list-template .ws-page-btn {
  border-radius: 12px;
  min-width: 40px;
  height: 40px;
  border-color: #d8e3ef;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.05);
  background: #f8fbff;
  color: #38506b;
}
.ws-business-list-template .ws-page-btn:hover {
  transform: translateY(-1px);
  background: #edf3fb;
  border-color: #cbd9ea;
  color: #1f3d60;
}
.ws-business-list-template .ws-page-btn.ws-active {
  background: #fff3ec;
  border-color: #ffcdb6;
  color: #f26522;
  box-shadow: 0 6px 14px rgba(242, 101, 34, 0.18);
}
.ws-business-list-template .ws-empty-state {
  border: 1px dashed #c9d7e8;
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f7ff 100%);
}
.ws-business-list-template .ws-popular-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ws-business-list-template .ws-popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ws-business-list-template .ws-popular-links a {
  background: #f8fbff;
  border: 1px solid #dbe7f3;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  transition: all var(--trans);
}
.ws-business-list-template .ws-popular-links a:hover {
  border-color: #f6b191;
  color: #f26522;
  background: #fff6f1;
}

@media (max-width: 768px) {
  .ws-business-list-template .ws-sbs-inner form {
    padding: 8px;
    border-radius: 14px;
  }
  .ws-business-list-template .ws-search-top-form {
    flex-direction: column;
    align-items: stretch;
  }
  .ws-business-list-template .ws-search-top-city-wrap,
  .ws-business-list-template .ws-search-top-select,
  .ws-business-list-template .ws-search-top-query {
    width: 100%;
  }
  .ws-business-list-template .ws-biz-list-item {
    padding: 14px;
  }
  .ws-business-list-template .ws-bli-actions {
    width: 100%;
    gap: 10px;
  }
  .ws-business-list-template .ws-call-btn,
  .ws-business-list-template .ws-view-btn {
    min-height: 44px;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
  }
}

/* â”€â”€ FORMS â”€â”€ */
.ws-f-group { margin-bottom: 16px; }
.ws-f-group label { display: block; font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: none; letter-spacing: 0; margin-bottom: 5px; }
.ws-f-group input, .ws-f-group select, .ws-f-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; outline: none; transition: border-color var(--trans); background: var(--white); color: var(--text); }
.ws-f-group input:focus, .ws-f-group select:focus, .ws-f-group textarea:focus { border-color: var(--org); }
.ws-password-wrap { position: relative; }
.ws-password-wrap input { padding-right: 44px; }
.ws-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.ws-password-toggle:hover { background: #f8fafc; color: #334155; }
.ws-password-toggle:focus { border-color: var(--org); }
.ws-password-toggle .ws-eye-open { display: none; }
.ws-password-toggle .ws-eye-off { display: inline; }
.ws-password-toggle.ws-visible .ws-eye-open { display: inline; }
.ws-password-toggle.ws-visible .ws-eye-off { display: none; }
.ws-custom-select-wrap { position: relative; width: 100%; }
select.ws-custom-select.ws-custom-select-native-hidden { display: none !important; }
.ws-custom-select-trigger {
  width: 100%;
  min-height: 44px;
  padding: 10px 38px 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--muted);
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.ws-custom-select-wrap.has-value .ws-custom-select-trigger { color: var(--text); }
.ws-custom-select-trigger:focus { border-color: var(--org); }
.ws-custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .2s ease;
}
.ws-custom-select-wrap.ws-open .ws-custom-select-trigger::after { transform: translateY(-45%) rotate(-135deg); }
.ws-custom-select-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(15,23,42,.16);
  z-index: 999;
  padding: 8px;
}
.ws-custom-select-wrap.ws-open .ws-custom-select-panel { display: block; }
.ws-custom-select-search {
  width: 100%;
  height: 38px;
  border: 1px solid #d7dde7;
  border-radius: 9px;
  padding: 7px 10px;
  outline: none;
  margin-bottom: 8px;
  font-size: .95rem;
}
.ws-custom-select-search:focus { border-color: var(--org); }
.ws-custom-select-options { max-height: 220px; overflow-y: auto; display: flex; flex-direction: column; gap: 3px; }
.ws-custom-select-option {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: .95rem;
}
.ws-custom-select-option:hover { background: #f8fafc; }
.ws-custom-select-option.active { background: color-mix(in srgb, var(--org) 12%, #fff); color: var(--org-dark); font-weight: 700; }
.ws-custom-select-option:disabled { color: #9ca3af; cursor: not-allowed; }
.ws-f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ws-f-hint { font-size: 1rem; color: var(--muted); margin-top: 4px; }
.ws-btn-submit { width: 100%; padding: 13px; background: var(--org); color: white; border-radius: var(--radius-sm); font-family: var(--font-h); font-weight: 800; font-size: 1rem; transition: background var(--trans); }
.ws-btn-submit:hover { background: var(--org-dark); }
.ws-alert { display: none; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.ws-alert-success { display: block; background: var(--green-light); color: var(--green); border: 1.5px solid var(--green); }
.ws-alert-error { background: var(--red-light); color: var(--red); border: 1.5px solid var(--red); }
.ws-alert-warn { display: block; background: var(--yellow-light); color: #92400E; border: 1.5px solid var(--yellow); }
.ws-alert-info { display: block; background: var(--blue-light); color: var(--blue); border: 1.5px solid var(--blue); }

/* â”€â”€ AUTH PAGES â”€â”€ */
.ws-form-page { min-height: calc(100vh - 65px); display: flex; align-items: center; justify-content: center; padding: 32px 16px; background: var(--light); }
.ws-form-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; width: 100%; max-width: 460px; }
.ws-form-logo { margin-bottom: 20px; }
.ws-form-box h1,
.ws-form-box .ws-h1 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.ws-form-desc { color: var(--muted); font-size: 1rem; margin-bottom: 22px; }
.ws-form-switch { text-align: center; font-size: 1rem; color: var(--muted); margin-top: 14px; }
.ws-form-switch a { color: var(--org); font-weight: 700; }
.ws-login-page .ws-form-box { text-align: center; }
.ws-login-page .ws-form-logo { display: flex; justify-content: center; }
.ws-login-page .ws-form-logo .ws-logo { justify-content: center; }
.ws-login-page .ws-f-group label { text-align: left; }
.ws-register-page .ws-form-box { text-align: center; }
.ws-register-page .ws-form-logo { display: flex; justify-content: center; }
.ws-register-page .ws-form-logo .ws-logo { justify-content: center; }
.ws-register-page .ws-f-group label { text-align: left; }
.ws-field-error {
  margin-top: 6px;
  width: 100%;
  display: block;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--red);
  font-weight: 600;
  text-align: left;
}
.ws-f-group .ws-field-error { padding-left: 2px; }
.ws-f-group input + .ws-field-error,
.ws-f-group select + .ws-field-error,
.ws-f-group textarea + .ws-field-error { margin-top: 6px; }
.ws-f-group[style*="display:flex"] .ws-field-error { flex-basis: 100%; }
.ws-terms-row { flex-wrap: wrap; }
.ws-terms-row .ws-field-error { flex-basis: 100%; width: 100%; margin-top: 8px; }
.ws-register-popup-backdrop { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.45); z-index: 2000; padding: 16px; }
.ws-register-popup-card { width: 100%; max-width: 430px; background: var(--white); border-radius: 14px; padding: 16px 16px 14px; box-shadow: 0 18px 55px rgba(0,0,0,.18); text-align: left; border: 1px solid rgba(229,231,235,.95); }
.ws-register-popup-card .ws-h3 { margin-bottom: 0; font-size: 1.05rem; line-height: 1.25; }
.ws-register-popup-card p { color: var(--text); margin-top: 10px; margin-bottom: 12px; font-size: .95rem; line-height: 1.55; }
.ws-popup-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ws-popup-close {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ws-popup-close:hover { background: var(--org-light); color: var(--org); border-color: color-mix(in srgb, var(--org) 35%, var(--border)); }
.ws-popup-actions { display: flex; justify-content: flex-end; }
.ws-popup-btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  font-family: var(--font-h);
  font-size: .95rem;
  background: var(--org);
  color: var(--white);
}
.ws-popup-btn:hover { background: var(--org-dark); }
.ws-register-popup-success .ws-register-popup-card { border-color: #8dd8b2; }
.ws-register-popup-success .ws-register-popup-card .ws-h3 { color: var(--green); }
.ws-register-popup-error .ws-register-popup-card { border-color: #f4b2b2; }
.ws-register-popup-error .ws-register-popup-card .ws-h3 { color: var(--red); }
.ws-btn-submit:disabled { opacity: .9; cursor: not-allowed; }
.ws-btn-spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: 8px; animation: ws-spin .8s linear infinite; }
@keyframes ws-spin { to { transform: rotate(360deg); } }

/* â”€â”€ PAGE HEADER â”€â”€ */
.ws-page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 32px 0; color: white; }
.ws-page-header h1,
.ws-page-header .ws-h1 { font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 4px; }
.ws-page-header p { color: rgba(255,255,255,.65); font-size: 1rem; }
.ws-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 8px; flex-wrap: wrap; }
.ws-breadcrumb a { color: rgba(255,255,255,.7); }
.ws-breadcrumb a:hover { color: var(--org-mid); }

/* Contact page (modern) */
body.ws-contact .ws-contact-hero {
  padding: 36px 0 34px;
  background: radial-gradient(circle at 20% 20%, #1f3a5f 0%, var(--navy) 45%, var(--navy2) 100%);
}
body.ws-contact .ws-contact-shell { padding: 38px 0 68px; }
body.ws-contact .ws-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}
body.ws-contact .ws-contact-card {
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  position: static;
  top: auto;
}
body.ws-contact .ws-contact-form-card { padding: 26px; }
body.ws-contact .ws-contact-card-head h2,
body.ws-contact .ws-contact-card-head .ws-h2 { font-family: var(--font-h); font-size: 1.35rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
body.ws-contact .ws-contact-card-head p { color: var(--muted); margin-bottom: 18px; }
body.ws-contact .ws-contact-form .ws-f-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
body.ws-contact .ws-contact-form .ws-f-group { margin-bottom: 14px; }
body.ws-contact .ws-contact-form .ws-f-group label { font-weight: 800; color: #516175; margin-bottom: 7px; display: block; }
body.ws-contact .ws-contact-form input,
body.ws-contact .ws-contact-form select,
body.ws-contact .ws-contact-form textarea {
  width: 100%;
  border: 1px solid #d2dce8;
  border-radius: 11px;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.ws-contact .ws-contact-form textarea { min-height: 130px; resize: vertical; }
body.ws-contact .ws-contact-form input:focus,
body.ws-contact .ws-contact-form select:focus,
body.ws-contact .ws-contact-form textarea:focus {
  outline: 0;
  border-color: var(--org);
  box-shadow: 0 0 0 3px rgba(232, 69, 10, .12);
}
body.ws-contact .ws-contact-submit-btn {
  margin-top: 4px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 900;
}
body.ws-contact .ws-contact-side { display: grid; gap: 16px; }
body.ws-contact .ws-contact-info-card { padding: 22px; }
body.ws-contact .ws-contact-info-card h3,
body.ws-contact .ws-contact-info-card .ws-h3 { margin-bottom: 14px; }
body.ws-contact .ws-contact-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e4eaf2;
}
body.ws-contact .ws-contact-info-row.ws-contact-info-row-last { border-bottom: 0; }
body.ws-contact .ws-contact-icon {
  flex-shrink: 0;
  min-width: 58px;
  border-radius: 999px;
  background: #f5f8fc;
  border: 1px solid #dde5ef;
  padding: 5px 9px;
  text-align: center;
  color: #607086;
  font-size: .8rem;
  font-weight: 800;
}
body.ws-contact .ws-contact-info-row p { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #74869b; margin-bottom: 4px; font-weight: 800; }
body.ws-contact .ws-contact-info-row strong { display: block; color: #0f172a; font-size: .95rem; margin-bottom: 2px; }
body.ws-contact .ws-contact-info-row small { color: #6b7b8f; font-size: .8rem; }
body.ws-contact .ws-contact-faq-card {
  padding: 20px;
  background: linear-gradient(170deg, #0f172a 0%, #1e293b 100%);
  border-color: #1e293b;
}
body.ws-contact .ws-contact-faq-card h3,
body.ws-contact .ws-contact-faq-card .ws-h3 { color: #fff; margin-bottom: 12px; }
body.ws-contact .ws-contact-faq-card div { margin-bottom: 10px; }
body.ws-contact .ws-contact-faq-card div:last-child { margin-bottom: 0; }
body.ws-contact .ws-contact-faq-card strong { display: block; color: #fcb07d; margin-bottom: 3px; font-size: .92rem; }
body.ws-contact .ws-contact-faq-card p { color: rgba(255, 255, 255, .74); font-size: .82rem; line-height: 1.55; }
@media (max-width: 992px) {
  body.ws-contact .ws-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.ws-contact .ws-contact-shell { padding: 26px 0 58px; }
  body.ws-contact .ws-contact-form-card { padding: 18px; }
  body.ws-contact .ws-contact-form .ws-f-row { grid-template-columns: 1fr; }
  body.ws-contact .ws-contact-submit-btn { width: 100%; }
}

/* â”€â”€ BUSINESS DETAIL â”€â”€ */
.ws-biz-detail-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 28px 0; color: white; }
.ws-bdh-inner { display: flex; gap: 18px; align-items: flex-start; }
.ws-bdh-logo { width: 70px; height: 70px; border-radius: var(--radius); background: var(--org); color: white; font-size: 2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-bdh-category { font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.ws-bdh-name { font-family: var(--font-h); font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 900; color: white; margin-bottom: 8px; }
.ws-bdh-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.ws-bdh-breadcrumb { margin-bottom: 10px; }
.ws-bdh-addr { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.45; }
.ws-bdh-addr .ws-app-icon-image { width: 15px; height: 15px; flex-shrink: 0; transform: translateY(-1px); }
.ws-biz-detail-body { display: grid; grid-template-columns: 1fr 310px; gap: 24px; padding: 24px 0; align-items: start; }
.ws-detail-section { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.ws-detail-section h2,
.ws-detail-section .ws-h2 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--org); }
.ws-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ws-info-item small { font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--muted); }
.ws-info-item p { font-size: 1rem; color: var(--text); margin-top: 3px; font-weight: 600; }
.ws-contact-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 118px; }
.ws-contact-card h3,
.ws-contact-card .ws-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.ws-contact-card-exact {
  border-radius: 12px;
  border-color: #cfd8e3;
  background: #f3f5f7;
  padding: 12px 12px 10px;
}
.ws-contact-card-exact .ws-h3 { line-height: 1.35; margin-bottom: 8px; font-size: 1rem; color: #0b2f57; }
.ws-big-call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: white; padding: 12px; border-radius: var(--radius-sm); font-weight: 800; font-family: var(--font-h); font-size: 1rem; margin-bottom: 8px; transition: background var(--trans); }
.ws-big-call-btn:hover { background: #096B3E; }
.ws-contact-info-row { display: flex; gap: 8px; padding: 8px 0; border-bottom: 1px solid #d3dbe5; align-items: flex-start; }
.ws-contact-info-row:last-child { border-bottom: none; }
.ws-ci-icon { font-size: 1.1rem; flex-shrink: 0; }
.ws-ci-label { display: block; font-size: 1rem; text-transform: none; letter-spacing: 0; color: #4f647a; font-weight: 800; margin-bottom: 2px; }
.ws-ci-value { font-size: 1rem; font-weight: 700; color: #122a44; }
.ws-locked-box-exact { text-align: center; background: #f0f3f6; border: 1px dashed #d5dce6; border-radius: 10px; padding: 8px 8px 10px; margin-bottom: 8px; }
.ws-locked-box-exact .ws-lock-icon { width: 32px; height: 32px; margin: 0 auto 4px; color: #f59e0b; display: inline-flex; align-items: center; justify-content: center; }
.ws-locked-box-exact .ws-lock-icon .ws-app-icon-image { width: 18px; height: 18px; filter: saturate(1.05) brightness(1.02); }
.ws-locked-box-exact p { margin-bottom: 3px; font-size: 1rem; color: #5a6c82; line-height: 1.4; }
.ws-locked-box-exact small { display: block; color: #7d8da1; font-size: 1rem; margin-bottom: 6px; line-height: 1.35; }
.ws-lock-btn-exact { background: #f26522; color: #fff; border-radius: 8px; width: 100%; display: inline-flex; justify-content: center; align-items: center; padding: 9px 8px; min-height: 38px; font-weight: 800; font-size: 1rem; }
.ws-lock-btn-exact:hover { background: #f26522; color: #fff; filter: brightness(.97); }
.ws-lock-login-inline { margin-top: 6px; font-size: 1rem; color: #8a98aa; }
.ws-lock-login-inline a { color: #f26522; font-weight: 700; }
.ws-side-action-primary { width: 100%; margin-top: 8px; margin-bottom: 6px; background: #0b2f57; font-size: 1rem; min-height: 38px; padding: 9px 8px; border-radius: 8px; }
.ws-side-action-primary:hover { background: #0b2f57; filter: brightness(.96); }
.ws-side-action-secondary { display: block; width: 100%; text-align: center; background: #f8fafc; border: 1px solid #d3dbe5; color: #0f2f53; border-radius: 8px; padding: 8px 8px; min-height: 36px; font-size: 1rem; font-weight: 800; }
.ws-side-action-secondary:hover { border-color: #c3cedb; color: #0f2f53; }
.ws-contact-card-exact .ws-ci-icon { width: 16px; height: 16px; margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; }
.ws-contact-card-exact .ws-ci-icon .ws-app-icon-image { width: 14px; height: 14px; }
.ws-contact-card-exact .ws-contact-info-row:first-of-type .ws-ci-icon .ws-app-icon-image { filter: hue-rotate(325deg) saturate(1.35) brightness(1.02); }
.ws-contact-card-exact .ws-contact-info-row:nth-of-type(2) .ws-ci-icon .ws-app-icon-image { filter: grayscale(0.15) saturate(0.85) brightness(0.85); }
.ws-contact-card-exact .ws-side-action-primary .ws-app-icon-image { width: 13px; height: 13px; }
.ws-text-org { color: var(--org) !important; }
.ws-text-muted { color: var(--muted); }
.ws-fw-bold { font-weight: 700; }

/* Reviews */
.ws-review-form {
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
  border: 1px solid #e3ebf4;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
}
.ws-review-form h3,
.ws-review-form .ws-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.ws-review-form .ws-star-picker { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.ws-star-picker span { font-size: 1.6rem; color: #d5dbe3; cursor: pointer; transition: color .2s ease, transform .15s ease; }
.ws-star-picker span:hover { color: var(--yellow); }
.ws-review-input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1.5px solid #d6e0eb;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font-size: 1rem;
  color: #0f172a;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ws-review-input::placeholder { color: #94a3b8; }
.ws-review-input:focus {
  border-color: #f26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.14);
  outline: none;
}
.ws-review-form textarea.ws-review-input { min-height: 108px; resize: vertical; line-height: 1.6; }
.ws-review-submit {
  margin-top: 10px;
  min-width: 190px;
  text-align: center;
  border-radius: 10px;
  border-color: #f26522;
  background: #f26522;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(242, 101, 34, 0.24);
}
.ws-review-submit:hover {
  border-color: #dc5416;
  background: #dc5416;
  color: #fff;
}
.ws-review-card { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 10px; }
.ws-review-summary { background: var(--light); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px; }
.ws-review-summary strong { display: block; font-size: 2rem; line-height: 1; color: var(--navy); font-family: var(--font-h); margin-bottom: 6px; }
.ws-review-summary small { color: var(--muted); font-size: 1rem; }

.ws-review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.ws-reviewer-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.ws-review-date { font-size: 1rem; color: var(--muted); }
.ws-review-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 6px; }
.ws-review-text { font-size: 1rem; color: var(--text); line-height: 1.7; }
.ws-bli-tag { background: var(--light); border: 1.5px solid var(--border); padding: 4px 12px; border-radius: 50px; font-size: 1rem; font-weight: 600; color: var(--text); }
.ws-bli-tag:hover { border-color: var(--org); color: var(--org); }

/* â”€â”€ DASHBOARD â”€â”€ */
.ws-dash-wrap { display: flex; min-height: calc(100vh - 65px); }
.ws-dash-sidebar { width: 230px; background: var(--navy); color: white; flex-shrink: 0; padding: 24px 0; position: sticky; top: 65px; height: calc(100vh - 65px); overflow-y: auto; }
.ws-ds-user { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 12px; }
.ws-ds-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--org); color: white; font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.ws-ds-name { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: white; }
.ws-ds-role { font-size: 1rem; color: rgba(255,255,255,.5); }
.ws-ds-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.65); transition: all var(--trans); }
.ws-ds-nav a:hover, .ws-ds-nav a.ws-active { background: rgba(255,255,255,.1); color: white; }
.ws-ds-nav a.ws-active { border-left: 3px solid var(--org); }
.ws-nav-ic { font-size: 1rem; }
.ws-ds-notif-dot { background: var(--red); color: white; font-size: 1rem; font-weight: 800; padding: 2px 6px; border-radius: 50px; margin-left: auto; }
.ws-dash-main { flex: 1; padding: 28px; background: var(--light); min-width: 0; }
.ws-dash-title { font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.ws-dash-sub { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }

/* Customer Portal scoped hooks (no cross-page conflicts) */
body.ws-customer-portal #ws-cspWrap,
body.ws-customer-profile #ws-cspWrap,
body.ws-customer-business-listings #ws-cspWrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Horizontal top menu for customer pages */
body.ws-customer-portal .ws-csp-main-menu-bar,
body.ws-customer-profile .ws-csp-main-menu-bar,
body.ws-customer-business-listings .ws-csp-main-menu-bar {
  width: 100%;
  margin-top: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  position: relative;
  top: auto;
  z-index: 50;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

body.ws-customer-portal #ws-cspNav,
body.ws-customer-profile #ws-cspNav,
body.ws-customer-business-listings #ws-cspNav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.ws-customer-portal #ws-cspNav::-webkit-scrollbar,
body.ws-customer-profile #ws-cspNav::-webkit-scrollbar,
body.ws-customer-business-listings #ws-cspNav::-webkit-scrollbar { display: none; }

body.ws-customer-portal .ws-csp-main-menu-bar .ws-csp-nav a,
body.ws-customer-profile .ws-csp-main-menu-bar .ws-csp-nav a,
body.ws-customer-business-listings .ws-csp-main-menu-bar .ws-csp-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-h);
  color: var(--navy);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
body.ws-customer-portal .ws-csp-main-menu-bar .ws-csp-nav a:hover,
body.ws-customer-profile .ws-csp-main-menu-bar .ws-csp-nav a:hover,
body.ws-customer-business-listings .ws-csp-main-menu-bar .ws-csp-nav a:hover {
  background: var(--org-light);
  color: var(--org);
  border-color: color-mix(in srgb, var(--org) 22%, var(--border));
}
body.ws-customer-portal .ws-csp-main-menu-bar .ws-csp-nav a.ws-csp-active,
body.ws-customer-profile .ws-csp-main-menu-bar .ws-csp-nav a.ws-csp-active,
body.ws-customer-business-listings .ws-csp-main-menu-bar .ws-csp-nav a.ws-csp-active {
  background: var(--org);
  color: white;
  border-color: var(--org);
  box-shadow: 0 10px 20px rgba(232, 69, 10, .18);
}
body.ws-customer-portal .ws-csp-main-menu-bar .ws-csp-navic,
body.ws-customer-profile .ws-csp-main-menu-bar .ws-csp-navic,
body.ws-customer-business-listings .ws-csp-main-menu-bar .ws-csp-navic {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.ws-customer-portal .ws-csp-main-menu-bar .ws-csp-navic img,
body.ws-customer-profile .ws-csp-main-menu-bar .ws-csp-navic img,
body.ws-customer-business-listings .ws-csp-main-menu-bar .ws-csp-navic img {
  width: 18px;
  height: 18px;
}

body.ws-customer-portal #ws-cspMain,
body.ws-customer-profile #ws-cspMain,
body.ws-customer-business-listings #ws-cspMain {
  flex: 1;
  padding: 18px;
  background: var(--light);
  min-width: 0;
  border-radius: 16px;
}
body.ws-customer-portal #ws-cspWrap .ws-csp-title,
body.ws-customer-profile #ws-cspWrap .ws-csp-title,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-title { font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; letter-spacing: .1px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-subtitle,
body.ws-customer-profile #ws-cspWrap .ws-csp-subtitle,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 20px; max-width: 68ch; }

body.ws-customer-portal #ws-cspWrap .ws-csp-stats,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-stat-card,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-stat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
body.ws-customer-portal #ws-cspWrap .ws-csp-stat-card strong,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-stat-card strong { display: block; font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; }
body.ws-customer-portal #ws-cspWrap .ws-csp-stat-card span,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-stat-card span { font-size: 1rem; color: var(--muted); text-transform: none; letter-spacing: .05em; }

body.ws-customer-portal #ws-cspWrap .ws-csp-card,
body.ws-customer-profile #ws-cspWrap .ws-csp-card,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-cardHead,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-cardHead { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
body.ws-customer-portal #ws-cspWrap .ws-csp-cardHead a,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-cardHead a { font-size: 1rem; color: var(--org); font-weight: 800; }
body.ws-customer-portal #ws-cspWrap .ws-csp-h3,
body.ws-customer-business-listings #ws-cspWrap .ws-csp-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }

body.ws-customer-business-listings #ws-cspWrap .ws-csp-listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
body.ws-customer-business-listings #ws-cspWrap .ws-csp-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--org);
  color: white;
  font-weight: 900;
  font-family: var(--font-h);
  border: 1px solid var(--org);
}
body.ws-customer-business-listings #ws-cspWrap .ws-csp-primary-btn:hover { background: var(--org-dark); border-color: var(--org-dark); }
body.ws-customer-business-listings #ws-cspWrap .ws-csp-search { display: flex; align-items: center; gap: 10px; }
body.ws-customer-business-listings #ws-cspWrap .ws-csp-search input {
  width: min(360px, 52vw);
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  outline: none;
}
body.ws-customer-business-listings #ws-cspWrap .ws-csp-search input:focus { border-color: color-mix(in srgb, var(--org) 30%, var(--border)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--org) 16%, transparent); }
body.ws-customer-business-listings #ws-cspWrap .ws-csp-link { font-weight: 800; color: var(--org); }

body.ws-customer-portal #ws-cspWrap .ws-csp-notif-item { display: flex; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
body.ws-customer-portal #ws-cspWrap .ws-csp-notif-item.ws-csp-unread { background: var(--org-light); }
body.ws-customer-portal #ws-cspWrap .ws-csp-notif-item:last-child { border: none; }
body.ws-customer-portal #ws-cspWrap .ws-csp-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--org); flex-shrink: 0; margin-top: 6px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-notif-msg { font-size: 1rem; }
body.ws-customer-portal #ws-cspWrap .ws-csp-notif-time { font-size: 1rem; color: var(--muted); margin-top: 3px; }

body.ws-customer-portal #ws-cspWrap .ws-csp-empty-state { text-align: center; padding: 48px 24px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-ei { font-size: 3rem; margin-bottom: 12px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-empty-state .ws-csp-h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-empty-state p { font-size: 1rem; color: var(--muted); }

body.ws-customer-portal #ws-cspWrap .ws-csp-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
body.ws-customer-portal #ws-cspWrap .ws-csp-info-item small { font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--muted); }
body.ws-customer-portal #ws-cspWrap .ws-csp-info-item p { font-size: 1rem; color: var(--text); margin-top: 3px; font-weight: 600; }

body.ws-customer-portal #ws-cspWrap .ws-csp-status-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-transform: none; }
body.ws-customer-portal #ws-cspWrap .ws-csp-st-approved { background: var(--green-light); color: var(--green); }
body.ws-customer-portal #ws-cspWrap .ws-csp-st-pending { background: var(--yellow-light); color: #92400E; }
body.ws-customer-portal #ws-cspWrap .ws-csp-st-rejected { background: var(--red-light); color: var(--red); }
body.ws-customer-portal #ws-cspWrap .ws-csp-st-active { background: var(--green-light); color: var(--green); }

body.ws-customer-portal #ws-cspWrap .ws-csp-ab-btn { padding: 5px 10px; border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all var(--trans); border: none; }
body.ws-customer-portal #ws-cspWrap .ws-csp-ab-view { background: var(--blue-light); color: var(--blue); }
body.ws-customer-portal #ws-cspWrap .ws-csp-ab-reject { background: var(--red-light); color: var(--red); }

body.ws-customer-portal #ws-cspWrap .ws-csp-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--org); color: white; padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 900; font-family: var(--font-h); transition: background var(--trans); }
body.ws-customer-portal #ws-cspWrap .ws-csp-cta:hover { background: var(--org-dark); }

/* Customer Profile (modern UI) */
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border: 1.5px solid var(--border);
  box-shadow: 0 10px 26px rgba(2, 132, 199, .08);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--org) 0%, var(--org-mid) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(232,69,10,.22);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-headtext { min-width: 0; flex: 1; }
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-actions { display: flex; gap: 10px; flex-shrink: 0; }
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 900;
  font-family: var(--font-h);
  color: var(--navy);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action:hover { background: var(--org-light); color: var(--org); border-color: color-mix(in srgb, var(--org) 35%, var(--border)); }
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-card { padding: 18px; }

body.ws-customer-profile #ws-cspWrap .ws-csp-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: var(--white);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 6px;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  word-break: break-word;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 1rem;
  font-family: var(--font-r);
  color: var(--navy);
  background: var(--white);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-form input:focus {
  outline: 0;
  border-color: var(--org);
  box-shadow: 0 0 0 3px rgba(232, 69, 10, .12);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-form .ws-csp-profile-grid {
  gap: 16px;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-form .ws-csp-profile-item {
  border-radius: 16px;
  padding: 15px 15px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-form .ws-csp-profile-label {
  font-size: .88rem;
  letter-spacing: .01em;
  margin-bottom: 8px;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action.ws-csp-profile-action-primary {
  border-color: var(--org);
  background: var(--org);
  color: var(--white);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action.ws-csp-profile-action-primary:hover {
  background: var(--org-dark);
  border-color: var(--org-dark);
  color: var(--white);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action.ws-csp-profile-action-secondary {
  background: var(--light);
}
body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action.ws-csp-profile-action-secondary:hover {
  background: #eceff5;
  color: var(--navy);
  border-color: var(--border);
}

@media (max-width: 768px) {
  body.ws-customer-profile #ws-cspWrap .ws-csp-profile-header { flex-direction: column; align-items: flex-start; }
  body.ws-customer-profile #ws-cspWrap .ws-csp-profile-actions { width: 100%; }
  body.ws-customer-profile #ws-cspWrap .ws-csp-profile-action { width: 100%; }
  body.ws-customer-profile #ws-cspWrap .ws-csp-profile-grid { grid-template-columns: 1fr; }
  body.ws-customer-profile #ws-cspWrap .ws-csp-profile-edit-actions { justify-content: flex-start; }
}
.ws-stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.ws-stat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.ws-stat-card strong { display: block; font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; }
.ws-stat-card span { font-size: 1rem; color: var(--muted); text-transform: none; letter-spacing: .05em; }
.ws-card-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.ws-card-box-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.ws-card-box-head h3,
.ws-card-box-head .ws-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); }
.ws-card-box-head a { font-size: 1rem; color: var(--org); font-weight: 700; }
table { width: 100%; border-collapse: collapse; font-size: 1rem; }
th { padding: 10px 14px; text-align: left; font-size: 1rem; text-transform: none; letter-spacing: .05em; color: var(--muted); background: var(--light); border-bottom: 1px solid var(--border); }
td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--light); }
.ws-status-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-transform: none; }
.ws-st-approved { background: var(--green-light); color: var(--green); }
.ws-st-pending { background: var(--yellow-light); color: #92400E; }
.ws-st-rejected { background: var(--red-light); color: var(--red); }
.ws-st-active { background: var(--green-light); color: var(--green); }
.ws-st-blocked { background: var(--red-light); color: var(--red); }
.ws-ab-btn { padding: 5px 10px; border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all var(--trans); border: none; }
.ws-ab-view { background: var(--blue-light); color: var(--blue); }
.ws-ab-approve { background: var(--green-light); color: var(--green); }
.ws-ab-reject { background: var(--red-light); color: var(--red); }
.ws-ab-block { background: var(--yellow-light); color: #92400E; }
.ws-notif-item { display: flex; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.ws-notif-item.ws-unread { background: var(--org-light); }
.ws-notif-item:last-child { border: none; }
.ws-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--org); flex-shrink: 0; margin-top: 6px; }
.ws-notif-msg { font-size: 1rem; }
.ws-notif-time { font-size: 1rem; color: var(--muted); margin-top: 3px; }

/* MODAL */
.ws-modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; overflow-y: auto; padding: 20px; }
.ws-modal-box { background: var(--white); border-radius: var(--radius); max-width: 640px; margin: 40px auto; overflow: hidden; }
.ws-modal-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1.5px solid var(--border); }
.ws-modal-head h2,
.ws-modal-head .ws-h2 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.ws-modal-close { font-size: 1.3rem; color: var(--muted); cursor: pointer; transition: color var(--trans); }
.ws-modal-close:hover { color: var(--red); }
#ws-modalBody { padding: 22px; }
#ws-modalActions { padding: 0 22px 22px; }

/* Empty State */
.ws-empty-state { text-align: center; padding: 48px 24px; }
.ws-ei { font-size: 3rem; margin-bottom: 12px; }
.ws-empty-state h3,
.ws-empty-state .ws-h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ws-empty-state p { font-size: 1rem; color: var(--muted); }

/* Spinner */
.ws-spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--org); border-radius: 50%; animation: spin .8s linear infinite; margin: 80px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* How it Works */
.ws-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ws-step { text-align: center; padding: 24px 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); }
.ws-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--org); color: white; font-family: var(--font-h); font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.ws-step h3,
.ws-step .ws-h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ws-step p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .ws-category-grid { grid-template-columns: repeat(4, 1fr); }
  .ws-biz-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ws-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .ws-steps-grid { grid-template-columns: repeat(2, 1fr); }
  body.ws-customer-business-listings #ws-cspWrap .ws-csp-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ws-hamburger { display: block; }
  .ws-header-nav { display: none; }
  .ws-hero-search-box { flex-direction: column; gap: 8px; padding: 10px; }
  .ws-hsb-field { border-right: none; border-bottom: 1.5px solid var(--border); padding: 8px; }
  .ws-hsb-field:last-of-type { border-bottom: none; }
  .ws-hsb-loc { max-width: 100%; }
  .ws-results-layout { grid-template-columns: 1fr; }
  .ws-filter-panel { position: static; }
  .ws-biz-list-item { flex-direction: column; }
  .ws-bli-actions { flex-direction: row; width: 100%; margin-left: 0; }
  .ws-call-btn, .ws-whatsapp-btn, .ws-view-btn { flex: 1; }
  .ws-biz-detail-body { grid-template-columns: 1fr; }
  .ws-contact-card { position: static; }
  .ws-info-grid { grid-template-columns: 1fr; }
  .ws-f-row { grid-template-columns: 1fr; }
  .ws-dash-sidebar { display: none; }
  body.ws-customer-portal .ws-csp-main-menu-bar,
  body.ws-customer-profile .ws-csp-main-menu-bar,
  body.ws-customer-business-listings .ws-csp-main-menu-bar {
    top: auto;
    border-radius: 14px;
    padding: 8px;
  }
  .ws-cta-inner { flex-direction: column; text-align: center; }
  .ws-footer-grid { grid-template-columns: 1fr 1fr; }
  .ws-biz-grid { grid-template-columns: 1fr; }
  .ws-category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .ws-category-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .ws-footer-grid { grid-template-columns: 1fr; }
  .ws-footer-bottom { flex-direction: column; align-items: flex-start; }
  .ws-hero-search-box { border-radius: var(--radius); }
  .ws-form-box { padding: 24px 16px; }
}

/* â”€â”€ UTILITY CLASSES â”€â”€ */
.ws-text-green { color: var(--green); }
.ws-text-red { color: var(--red); }
.ws-text-navy { color: var(--navy); }
.ws-fw-900 { font-weight: 900; }
.ws-font-h { font-family: var(--font-h); }
.ws-d-none { display: none !important; }
.ws-d-flex { display: flex; }
.ws-gap-8 { gap: 8px; }
.ws-mt-8 { margin-top: 8px; }
.ws-mt-16 { margin-top: 16px; }
.ws-mb-0 { margin-bottom: 0; }
.ws-text-center { text-align: center; }
.ws-w-full { width: 100%; }

/* ===== PAGE: about ===== */
.ws-about-hero{background:linear-gradient(135deg,var(--navy) 0%,#163354 100%);padding:60px 0;text-align:center;color:white}
.ws-about-hero h1,.ws-about-hero .ws-h1{font-family:var(--font-h);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:900;margin-bottom:12px}
.ws-about-hero h1 span,.ws-about-hero .ws-h1 span{color:var(--org)}
.ws-about-hero p{font-size:1.05rem;color:rgba(255,255,255,.7);max-width:600px;margin:0 auto}
.ws-mission-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.ws-mission-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:28px 20px;text-align:center;transition:all var(--trans)}
.ws-mission-card:hover{box-shadow:var(--shadow-lg);border-color:var(--org);transform:translateY(-3px)}
.ws-mission-icon{font-size:2.5rem;margin-bottom:14px}
.ws-mission-card h3,.ws-mission-card .ws-h3{font-family:var(--font-h);font-size:1rem;font-weight:800;color:var(--navy);margin-bottom:8px}
.ws-mission-card p{font-size: 1rem;color:var(--muted);line-height:1.7}
.ws-team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.ws-team-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:24px 16px;text-align:center}
.ws-team-avatar{width:70px;height:70px;border-radius:50%;background:var(--org);color:white;font-family:var(--font-h);font-size:1.6rem;font-weight:900;display:flex;align-items:center;justify-content:center;margin:0 auto 12px}
.ws-team-name{font-weight:700;font-size: 1rem;color:var(--navy)}
.ws-team-role{font-size: 1rem;color:var(--muted)}
.ws-timeline{position:relative;padding:0 0 0 32px;border-left:3px solid var(--org)}
.ws-tl-item{position:relative;margin-bottom:28px}
.ws-tl-dot{width:14px;height:14px;border-radius:50%;background:var(--org);position:absolute;left:-39px;top:4px;border:3px solid white;box-shadow:0 0 0 2px var(--org)}
.ws-tl-year{font-family:var(--font-h);font-weight:900;color:var(--org);font-size: 1rem;margin-bottom:4px}
.ws-tl-item h4,.ws-tl-item .ws-h4{font-family:var(--font-h);font-weight:800;color:var(--navy);margin-bottom:4px}
.ws-tl-item p{font-size: 1rem;color:var(--muted);line-height:1.7}
@media(max-width:768px){.ws-mission-grid,.ws-team-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.ws-mission-grid,.ws-team-grid{grid-template-columns:1fr}}

/* ===== PAGE: cities ===== */
.ws-cities-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.ws-city-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:18px 14px;text-align:center;transition:all var(--trans);cursor:pointer}
.ws-city-card:hover{border-color:var(--org);background:var(--org-light);transform:translateY(-2px);box-shadow:var(--shadow)}
.ws-city-card:hover .ws-city-name{color:var(--org)}
.ws-city-icon{font-size:1.8rem;margin-bottom:8px}
.ws-city-name{font-family:var(--font-h);font-weight:800;font-size: 1rem;color:var(--navy);margin-bottom:4px}
.ws-city-count{font-size: 1rem;color:var(--muted)}
.ws-state-section{margin-bottom:40px}
.ws-state-title{font-family:var(--font-h);font-size:1rem;font-weight:800;color:var(--navy);margin-bottom:16px;padding-bottom:8px;border-bottom:2px solid var(--org);display:flex;align-items:center;gap:8px}
@media(max-width:1024px){.ws-cities-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:768px){.ws-cities-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:480px){.ws-cities-grid{grid-template-columns:repeat(2,1fr)}}

/* ===== PAGE: home ===== */
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* ===== PAGE: list-business ===== */
.ws-price-hero{background:linear-gradient(135deg,var(--navy) 0%,#1a3a6b 100%);padding:52px 0;color:white;text-align:center}
.ws-price-hero h1,.ws-price-hero .ws-h1{font-family:var(--font-h);font-size:clamp(2.4rem,5vw,3.3rem);font-weight:900;line-height:1.15;margin-bottom:10px}
.ws-price-hero h1 span,.ws-price-hero .ws-h1 span{color:var(--org-mid);font-size:inherit;font-weight:inherit}
.ws-price-tag{display:inline-block;background:var(--org);color:white;font-family:var(--font-h);font-size:2.5rem;font-weight:900;padding:10px 28px;border-radius:var(--radius);margin:16px 0}
.ws-price-strike{font-size:1.1rem;color:rgba(255,255,255,.5);text-decoration:line-through;margin-bottom:6px}
.ws-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:32px}
.ws-feat-item{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:20px 16px;text-align:center}
.ws-feat-item .ws-feat-icon{font-size:2rem;margin-bottom:10px}
.ws-feat-item h3,.ws-feat-item .ws-h3{font-family:var(--font-h);font-size: 1rem;font-weight:800;color:var(--navy);margin-bottom:6px}
.ws-feat-item p{font-size: 1rem;color:var(--muted);line-height:1.6}
.ws-form-section{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);padding:28px}
.ws-step-pill{display:inline-flex;align-items:center;gap:8px;background:var(--navy);color:white;padding:6px 16px;border-radius:50px;font-size: 1rem;font-weight:700;margin-bottom:16px}
.ws-pay-btn{width:100%;padding:16px;background:var(--org);color:white;border:none;border-radius:var(--radius-sm);font-family:var(--font-h);font-weight:900;font-size:1.1rem;cursor:pointer;transition:background .2s;display:flex;align-items:center;justify-content:center;gap:8px}
.ws-pay-btn:hover{background:var(--org-dark)}
.ws-rzp-note{background:var(--light);border:1.5px solid var(--border);border-radius:var(--radius-sm);padding:14px;margin-top:14px;font-size: 1rem;color:var(--muted);text-align:center;line-height:1.7}
.ws-success-box{display:none;background:var(--green-light);border:2px solid var(--green);border-radius:var(--radius);padding:28px;text-align:center}
.ws-success-box h2,.ws-success-box .ws-h2{font-family:var(--font-h);color:var(--green);font-size:1.4rem;font-weight:900;margin-bottom:8px}
.ws-guarantee{background:var(--navy);color:white;border-radius:var(--radius);padding:24px;margin-top:20px}
.ws-guarantee h3,.ws-guarantee .ws-h3{font-family:var(--font-h);font-size:1rem;font-weight:900;color:var(--org-mid);margin-bottom:14px}
@media(max-width:768px){.ws-features-grid{grid-template-columns:1fr 1fr}.ws-layout-2col{grid-template-columns:1fr!important}}
@media(max-width:480px){.ws-features-grid{grid-template-columns:1fr}}

/* ===== PAGE: privacy ===== */
.ws-legal-body{max-width:820px;margin:0 auto;padding:40px 16px 64px}
.ws-legal-body h2,.ws-legal-body .ws-h2{font-family:var(--font-h);font-size:1.1rem;font-weight:800;color:var(--navy);margin:28px 0 10px;padding-bottom:6px;border-bottom:2px solid var(--org)}
.ws-legal-body h3,.ws-legal-body .ws-h3{font-family:var(--font-h);font-size: 1rem;font-weight:700;color:var(--navy);margin:16px 0 6px}
.ws-legal-body p{font-size: 1rem;color:var(--text);line-height:1.9;margin-bottom:12px}
.ws-legal-body ul{margin:0 0 12px 20px}
.ws-legal-body ul li{font-size: 1rem;color:var(--text);line-height:1.9;margin-bottom:4px}
.ws-legal-toc{background:var(--light);border:1.5px solid var(--border);border-radius:var(--radius);padding:20px;margin-bottom:32px}
.ws-legal-toc h3,.ws-legal-toc .ws-h3{font-family:var(--font-h);font-weight:800;color:var(--navy);margin-bottom:10px;font-size:.9rem}
.ws-legal-toc a{display:block;font-size: 1rem;color:var(--org);margin-bottom:5px}
.ws-legal-toc a:hover{text-decoration:underline}
.ws-last-updated{background:var(--org-light);border-left:4px solid var(--org);padding:10px 14px;border-radius:var(--radius-sm);font-size: 1rem;color:var(--org-dark);font-weight:600;margin-bottom:24px}

/* ===== PAGE: terms ===== */
.ws-legal-body{max-width:820px;margin:0 auto;padding:40px 16px 64px}
.ws-legal-body h2,.ws-legal-body .ws-h2{font-family:var(--font-h);font-size:1.1rem;font-weight:800;color:var(--navy);margin:28px 0 10px;padding-bottom:6px;border-bottom:2px solid var(--org)}
.ws-legal-body p{font-size: 1rem;color:var(--text);line-height:1.9;margin-bottom:12px}
.ws-legal-body ul{margin:0 0 12px 20px}
.ws-legal-body ul li{font-size: 1rem;color:var(--text);line-height:1.9;margin-bottom:4px}
.ws-last-updated{background:var(--org-light);border-left:4px solid var(--org);padding:10px 14px;border-radius:var(--radius-sm);font-size: 1rem;color:var(--org-dark);font-weight:600;margin-bottom:24px}

