/**
 * WorkForce Theme — Main Stylesheet
 *
 * Table of Contents
 *   1. Design tokens (CSS variables)
 *   2. Reset + base typography
 *   3. Layout helpers + container
 *   4. Buttons
 *   5. Chips, badges, inputs, cards
 *   6. Navbar (desktop + mobile)
 *   7. Footer
 *   8. Page hero + generic page body
 *   9. Homepage (hero, stats, specialties slider, pricing, reviews, CTA)
 *  10. Services listing + filters + worker card
 *  11. Worker profile (single-service_provider)
 *  12. Booking wizard (4-step)
 *  13. Auth pages (login, register, forgot-password, OTP)
 *  14. My-account / profile
 *  15. Policies / about / contact
 *  16. 404
 *  17. Utilities + animations
 *  18. WooCommerce overrides (checkout)
 *  19. Responsive breakpoints
 */


/* ---------- 1. Design tokens ---------- */

:root {
	--wf-primary: #1a4d47;
	--wf-primary-hover: #0f3834;
	--wf-primary-soft: #f0f7f6;
	--wf-accent: #ff8c42;
	--wf-accent-hover: #e67d3a;
	--wf-accent-soft: #fff4ec;
	--wf-bg: #f8f7f4;
	--wf-surface: #ffffff;
	--wf-muted: #5a6c68;
	--wf-text: #0f1f1d;
	--wf-border: rgba(26, 77, 71, 0.15);
	--wf-border-strong: rgba(26, 77, 71, 0.3);
	--wf-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.1);
	--wf-shadow-nav: 0 0 5px rgba(0, 0, 0, 0.25);
	--wf-shadow-hover: 0 8px 24px rgba(26, 77, 71, 0.12);
	--wf-radius-sm: 8px;
	--wf-radius: 12px;
	--wf-radius-lg: 16px;
	--wf-radius-xl: 20px;
	--wf-radius-pill: 999px;
	--wf-font-ar: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
	--wf-font-brand: 'Poppins', 'Cairo', sans-serif;
	--wf-success: #16a34a;
	--wf-warning: #eab308;
	--wf-danger: #dc2626;
	--wf-star: #fbbf24;
	--wf-container: 1200px;
	--wf-header-height: 80px;
	--wf-transition: 0.25s ease;
}


/* ---------- 2. Reset + base typography ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body {
	max-width: 100%;
	overflow-x: clip;
}
body {
	margin: 0;
	font-family: var(--wf-font-ar);
	font-size: 16px;
	line-height: 1.6;
	color: var(--wf-text);
	background-color: var(--wf-bg);
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
}
img, video, svg, iframe, embed, object { max-width: 100%; height: auto; }
table { max-width: 100%; }

/* Hide empty WooCommerce notice wrappers left inside our account pages. */
.wf-account .woocommerce-notices-wrapper:empty,
.wf-account .woocommerce-NoticeGroup:empty { display: none !important; }
.wf-account__content .woocommerce-notices-wrapper:empty { display: none !important; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.3; color: var(--wf-primary); font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--wf-primary); text-decoration: none; transition: color var(--wf-transition); }
a:hover { color: var(--wf-accent); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

ul, ol { padding: 0; margin: 0 0 1em; list-style-position: inside; }
.wf-brand-font { font-family: var(--wf-font-brand); font-weight: 800; letter-spacing: 0.02em; }


/* ---------- 3. Layout helpers + container ---------- */

.wf-container {
	width: 100%;
	max-width: var(--wf-container);
	margin-inline: auto;
	padding-inline: 20px;
}
.wf-section { padding: 64px 0; }
.wf-section--sm { padding: 40px 0; }
.wf-section--lg { padding: 96px 0; }
.wf-section__head { text-align: center; margin-bottom: 40px; }
.wf-section__eyebrow { color: var(--wf-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.875rem; margin-bottom: 8px; }
.wf-section__title { font-size: clamp(1.75rem, 2.5vw, 2.5rem); margin-bottom: 12px; }
.wf-section__subtitle { color: var(--wf-muted); max-width: 700px; margin-inline: auto; }

.wf-grid { display: grid; gap: 24px; }
.wf-flex { display: flex; gap: 12px; }
.wf-flex--center { align-items: center; justify-content: center; }
.wf-flex--between { align-items: center; justify-content: space-between; }
.wf-hide-mobile { display: revert; }
.wf-show-mobile { display: none; }


/* ---------- 4. Buttons ---------- */

.wf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--wf-radius-pill);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	border: none;
	cursor: pointer;
	transition: all var(--wf-transition);
	text-decoration: none;
	white-space: nowrap;
}
.wf-btn--primary { background: var(--wf-accent); color: #fff; }
.wf-btn--primary:hover { background: var(--wf-accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--wf-shadow-hover); }
.wf-btn--secondary { background: var(--wf-primary); color: #fff; }
.wf-btn--secondary:hover { background: var(--wf-primary-hover); color: #fff; transform: translateY(-1px); }
.wf-btn--ghost { background: transparent; color: var(--wf-primary); border: 1.5px solid var(--wf-primary); }
.wf-btn--ghost:hover { background: var(--wf-primary-soft); color: var(--wf-primary); }
.wf-btn--block { width: 100%; }
.wf-btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.wf-btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.wf-btn:disabled, .wf-btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; }
.wf-btn__icon { width: 18px; height: 18px; }


/* ---------- 5. Chips, badges, inputs, cards ---------- */

.wf-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: var(--wf-radius-pill);
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid transparent;
}
.wf-chip--accent { background: var(--wf-accent-soft); color: var(--wf-accent); }
.wf-chip--outline { background: transparent; border-color: var(--wf-border); color: var(--wf-muted); }
.wf-chip--toggle { cursor: pointer; transition: all var(--wf-transition); }
.wf-chip--toggle:hover { border-color: var(--wf-primary); }
.wf-chip--toggle.is-active { background: var(--wf-primary); color: #fff; border-color: var(--wf-primary); }

.wf-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border-radius: var(--wf-radius-pill);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}
.wf-badge--success { background: rgba(22, 163, 74, 0.12); color: var(--wf-success); }
.wf-badge--warning { background: rgba(234, 179, 8, 0.15); color: #a16207; }
.wf-badge--danger { background: rgba(220, 38, 38, 0.12); color: var(--wf-danger); }
.wf-badge--muted { background: rgba(0,0,0,0.06); color: var(--wf-muted); }

.wf-field { display: block; margin-bottom: 16px; }
.wf-field__label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--wf-primary); font-size: 0.92rem; }
.wf-field__required { color: var(--wf-danger); margin-inline-start: 4px; }
.wf-input, .wf-textarea, .wf-select {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-size: 0.95rem;
	color: var(--wf-text);
	background: #fff;
	border: 1.5px solid var(--wf-border);
	border-radius: var(--wf-radius);
	transition: border-color var(--wf-transition), box-shadow var(--wf-transition);
	font-family: inherit;
}
.wf-input:focus, .wf-textarea:focus, .wf-select:focus {
	outline: none;
	border-color: var(--wf-accent);
	box-shadow: 0 0 0 3px rgba(255,140,66,0.15);
}
.wf-input:disabled { background: #f8f7f4; cursor: not-allowed; }
.wf-textarea { min-height: 100px; resize: vertical; }
.wf-field__hint { display: block; color: var(--wf-muted); font-size: 0.8rem; margin-top: 4px; }
.wf-field__error { display: block; color: var(--wf-danger); font-size: 0.82rem; margin-top: 4px; font-weight: 600; }

.wf-check { display: inline-flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 0.92rem; color: var(--wf-text); }
.wf-check input { margin-top: 4px; accent-color: var(--wf-accent); width: 16px; height: 16px; }

.wf-card {
	background: var(--wf-surface);
	border-radius: var(--wf-radius-lg);
	padding: 24px;
	box-shadow: var(--wf-shadow-card);
	transition: transform var(--wf-transition), box-shadow var(--wf-transition);
}
.wf-card:hover { transform: translateY(-2px); box-shadow: var(--wf-shadow-hover); }
.wf-card--flat { box-shadow: none; border: 1px solid var(--wf-border); }
.wf-card--accent-border { border: 2px solid transparent; }
.wf-card--accent-border.is-active { border-color: var(--wf-accent); }

.wf-stars { display: inline-flex; gap: 2px; align-items: center; }
.wf-stars svg { width: 16px; height: 16px; fill: var(--wf-star); }
.wf-stars--empty svg { fill: rgba(0,0,0,0.15); }
.wf-stars--interactive svg { cursor: pointer; transition: transform 0.15s; }
.wf-stars--interactive svg:hover { transform: scale(1.15); }

.wf-phone-compound {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--wf-border);
	border-radius: var(--wf-radius);
	overflow: hidden;
	background: #fff;
	transition: border-color var(--wf-transition);
}
.wf-phone-compound:focus-within { border-color: var(--wf-accent); box-shadow: 0 0 0 3px rgba(255,140,66,0.15); }
.wf-phone-compound__prefix {
	padding: 12px 14px;
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	font-weight: 700;
	border-inline-end: 1px solid var(--wf-border);
	direction: ltr;
	unicode-bidi: isolate;
	min-width: 72px;
	text-align: center;
}
.wf-phone-compound input {
	flex: 1;
	border: none;
	padding: 12px 14px;
	font-size: 0.95rem;
	background: transparent;
	direction: ltr;
	text-align: start;
}
.wf-phone-compound input:focus { outline: none; }


/* ---------- 6. Navbar ---------- */

.wf-navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	box-shadow: var(--wf-shadow-nav);
}
.wf-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--wf-header-height);
	padding-block: 12px;
}
.wf-navbar__brand { display: flex; align-items: center; gap: 10px; }
.wf-navbar__brand img { height: 44px; width: auto; }
.wf-navbar__brand-mark {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--wf-primary);
	color: #fff;
	align-items: center;
	justify-content: center;
	font-family: var(--wf-font-brand);
	font-weight: 900;
	font-size: 20px;
}
.wf-navbar__wordmark {
	font-family: var(--wf-font-brand);
	font-weight: 800;
	color: var(--wf-primary);
	line-height: 1.05;
	letter-spacing: 0.01em;
	font-size: 0.95rem;
}
.wf-navbar__wordmark span { color: var(--wf-accent); }

.wf-nav__list { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.wf-nav__list > li > a {
	display: inline-block;
	padding: 10px 14px;
	border-radius: var(--wf-radius-sm);
	color: var(--wf-text);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all var(--wf-transition);
}
.wf-nav__list > li > a:hover,
.wf-nav__list > li.current-menu-item > a,
.wf-nav__list > li.current_page_item > a {
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
}

.wf-navbar__actions { display: flex; align-items: center; gap: 8px; }
.wf-search {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid var(--wf-border);
	border-radius: var(--wf-radius-pill);
	overflow: hidden;
	transition: width 0.3s ease, border-color var(--wf-transition);
	width: 40px;
	background: #fff;
}
.wf-search.is-expanded { width: 240px; border-color: var(--wf-primary); }
.wf-search__btn {
	width: 40px; height: 40px;
	background: transparent;
	border: none;
	color: var(--wf-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.wf-search__btn svg { width: 18px; height: 18px; }
.wf-search__input {
	flex: 1;
	width: 0;
	min-width: 0;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 0.9rem;
	transition: padding 0.3s ease;
}
.wf-search.is-expanded .wf-search__input { padding: 8px 12px; }
.wf-search__input:focus { outline: none; }

.wf-navbar__user-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: var(--wf-radius-pill);
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	font-weight: 600;
	font-size: 0.9rem;
}
.wf-navbar__user-link:hover { background: var(--wf-primary); color: #fff; }

.wf-navbar__toggle {
	display: none;
	width: 44px; height: 44px;
	border: none;
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	border-radius: var(--wf-radius);
	align-items: center;
	justify-content: center;
}
.wf-navbar__toggle svg { width: 22px; height: 22px; }

.wf-drawer {
	display: none;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
	background: #fff;
	border-top: 1px solid var(--wf-border);
}
.wf-drawer.is-open { max-height: 80vh; }
.wf-drawer__inner { padding: 16px 20px 24px; }
.wf-drawer__search { margin-bottom: 16px; }
.wf-drawer__search input {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--wf-border);
	border-radius: var(--wf-radius);
	font-size: 0.95rem;
}
.wf-drawer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.wf-drawer__list a {
	display: block;
	padding: 12px 14px;
	border-radius: var(--wf-radius);
	color: var(--wf-text);
	font-weight: 600;
}
.wf-drawer__list a:hover { background: var(--wf-primary-soft); color: var(--wf-primary); }
.wf-drawer__divider { height: 1px; background: var(--wf-border); margin: 12px 0; }


/* ---------- 7. Footer ---------- */

.wf-footer {
	background: var(--wf-primary);
	color: #e4efed;
	padding: 64px 0 0;
	margin-top: 80px;
}
.wf-footer a { color: #e4efed; }
.wf-footer a:hover { color: var(--wf-accent); }
.wf-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 1.5fr;
	gap: 32px;
	padding-bottom: 48px;
}
.wf-footer__col { min-width: 0; }
.wf-footer__col--contact { min-width: 0; }
.wf-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.wf-footer__brand img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.wf-footer__tagline { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }
.wf-footer__social { display: flex; gap: 10px; }
.wf-footer__social a {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--wf-transition);
}
.wf-footer__social a:hover { background: var(--wf-accent); color: #fff; }
.wf-footer__social svg { width: 18px; height: 18px; }

.wf-footer__col h4 {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 16px;
	position: relative;
	padding-bottom: 10px;
}
.wf-footer__col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 36px;
	height: 2px;
	background: var(--wf-accent);
	border-radius: 2px;
}
.wf-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.wf-footer__col ul a { font-size: 0.9rem; }
.wf-footer__contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.9rem; min-width: 0; }
.wf-footer__contact-item svg { width: 18px; height: 18px; flex: none; color: var(--wf-accent); margin-top: 2px; }
.wf-footer__contact-item .wf-footer__contact-value {
	min-width: 0;
	flex: 1 1 auto;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
	line-height: 1.6;
}
.wf-footer__contact-item a.wf-footer__contact-value { text-decoration: none; }

.wf-footer__payments {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 24px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
}
.wf-footer__payments-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.wf-footer__payments-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.wf-footer__payments-icon {
	display: inline-flex;
	padding: 6px 12px;
	background: rgba(255,255,255,0.08);
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.wf-footer__copy {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.6);
	font-size: 0.85rem;
}


/* ---------- 8. Page hero + generic page body ---------- */

.wf-page-hero {
	padding: 72px 0 56px;
	background: linear-gradient(135deg, var(--wf-primary) 0%, #0f3834 100%);
	color: #fff;
	text-align: center;
}
.wf-page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }
.wf-page-hero p { color: rgba(255,255,255,0.85); margin-top: 10px; }
.wf-page-body { padding: 48px 0 64px; }
.wf-page-body--wide { max-width: 1400px; }
.wf-page-body--tight { padding-top: 0; }

/* Services page — light header + stats (Figma) */
.wf-services-head {
	background: linear-gradient(to bottom, #f8f7f4 0%, #ffffff 100%);
	padding: 48px 0 32px;
	text-align: center;
}
.wf-services-head__title {
	color: var(--wf-primary);
	font-weight: 800;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.15;
	margin: 0 0 4px;
}
.wf-services-head__sub {
	color: var(--wf-accent, #ff8c42);
	font-weight: 800;
	font-size: clamp(1.3rem, 3vw, 2.25rem);
	line-height: 1.2;
	margin: 0 0 16px;
}
.wf-services-head__desc {
	color: var(--wf-muted);
	max-width: 640px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.7;
}

.wf-services-stats { margin-bottom: 32px; }
.wf-services-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: -16px;
}
.wf-services-stat {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	padding: 24px;
	text-align: center;
}
.wf-services-stat__value {
	color: var(--wf-accent, #ff8c42);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	margin: 0 0 4px;
	line-height: 1.1;
}
.wf-services-stat__label {
	color: var(--wf-muted);
	font-size: 0.95rem;
	margin: 0;
}

@media (max-width: 820px) {
	.wf-services-head { padding: 32px 0 24px; }
	.wf-services-stats__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 0; }
	.wf-services-stat { padding: 18px; }
}
.wf-breadcrumb { font-size: 0.85rem; color: var(--wf-muted); margin-bottom: 16px; }
.wf-breadcrumb a { color: var(--wf-muted); }
.wf-breadcrumb a:hover { color: var(--wf-accent); }
.wf-breadcrumb__sep { margin-inline: 6px; opacity: 0.5; }


/* ---------- 9. Homepage (Figma-aligned) ---------- */

/* Hero */
.wf-hero {
	position: relative;
	padding: 56px 0 72px;
	background: linear-gradient(225deg, #f8f7f4 0%, #f8f7f4 55%, #fef3ea 100%);
	overflow: hidden;
}
.wf-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.wf-hero__text { min-width: 0; }
.wf-hero__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 140, 66, 0.10);
	border: 1px solid rgba(255, 140, 66, 0.25);
	color: var(--wf-accent);
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 22px;
}
.wf-hero__chip-star { color: var(--wf-accent); }
.wf-hero__title {
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.18;
	color: var(--wf-primary);
	margin: 0 0 6px;
	font-weight: 800;
}
.wf-hero__title-accent {
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.18;
	color: var(--wf-accent);
	font-weight: 800;
	margin: 0 0 20px;
}
.wf-hero__subtitle {
	font-size: 1.05rem;
	color: var(--wf-muted);
	line-height: 1.8;
	margin: 0 0 24px;
	max-width: 560px;
}
.wf-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}
.wf-hero__pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(26, 77, 71, 0.15);
	color: var(--wf-primary);
	font-weight: 600;
	font-size: 0.875rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.wf-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--wf-accent);
	color: #fff;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	box-shadow: 0 10px 24px rgba(255, 140, 66, 0.28);
	transition: background var(--wf-transition), transform var(--wf-transition), box-shadow var(--wf-transition);
}
.wf-hero__cta:hover {
	background: var(--wf-accent-hover);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(255, 140, 66, 0.34);
}
.wf-hero__media { position: relative; }
.wf-hero__media-frame {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(26, 77, 71, 0.22);
}
.wf-hero__media-frame img {
	display: block;
	width: 100%;
	height: clamp(360px, 50vw, 520px);
	object-fit: cover;
}
.wf-hero__badge {
	position: absolute;
	top: 16px;
	inset-inline-start: 16px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 12px 16px;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	gap: 12px;
}
.wf-hero__badge-text { display: flex; flex-direction: column; line-height: 1.25; text-align: start; }
.wf-hero__badge-text strong { font-size: 0.9rem; color: var(--wf-primary); font-weight: 700; }
.wf-hero__badge-text span { font-size: 0.75rem; color: var(--wf-muted); }
.wf-hero__badge-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 140, 66, 0.18);
	color: var(--wf-accent);
	flex: 0 0 auto;
}

/* Stats */
.wf-stats {
	position: relative;
	padding: 0 0 0;
	margin-top: -48px;
	z-index: 2;
}
.wf-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wf-stats__card {
	background: #fff;
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: box-shadow var(--wf-transition), transform var(--wf-transition);
}
.wf-stats__card:hover { box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.wf-stats__value {
	font-family: var(--wf-font-brand);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--wf-accent);
	line-height: 1;
	margin-bottom: 8px;
}
.wf-stats__label { color: var(--wf-muted); font-weight: 600; font-size: 1rem; }

/* Specialties (clean layout: image on top, text below, dots) */
.wf-specialties { padding: 80px 0; }
.wf-specialties__inner {
	max-width: 900px;
	margin-inline: auto;
}
.wf-specialties__stage { position: relative; }
.wf-specialties__slide {
	display: none;
}
.wf-specialties__slide.is-active { display: block; }
.wf-specialties__image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 22px 50px rgba(26, 77, 71, 0.18);
	margin-bottom: 28px;
	background: #eee;
}
.wf-specialties__image img {
	display: block;
	width: 100%;
	height: clamp(280px, 40vw, 500px);
	object-fit: cover;
}
.wf-specialties__content { text-align: center; padding: 0 16px; }
.wf-specialties__title {
	font-size: clamp(1.4rem, 2.4vw, 2.25rem);
	color: var(--wf-primary);
	font-weight: 800;
	margin: 0 0 14px;
}
.wf-specialties__desc {
	color: var(--wf-muted);
	font-size: 1.05rem;
	line-height: 1.8;
	max-width: 720px;
	margin: 0 auto;
}
.wf-specialties__dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 36px;
}
.wf-specialties__dots .wf-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: #d1d5db;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background var(--wf-transition), width var(--wf-transition);
}
.wf-specialties__dots .wf-slider__dot:hover { background: #9ca3af; }
.wf-specialties__dots .wf-slider__dot.is-active {
	width: 32px;
	background: var(--wf-accent);
}

/* Pricing */
.wf-pricing {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
}
.wf-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.wf-pricing-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 20px;
	padding: 36px 24px;
	text-align: center;
	cursor: pointer;
	transition: transform var(--wf-transition), border-color var(--wf-transition), box-shadow var(--wf-transition);
	outline: none;
}
.wf-pricing-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 140, 66, 0.5);
}
.wf-pricing-card:focus-visible {
	border-color: var(--wf-accent);
	box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.25);
}
.wf-pricing-card.is-active {
	border-color: var(--wf-accent);
	box-shadow: 0 14px 30px rgba(255, 140, 66, 0.20);
}
.wf-pricing-card__title {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--wf-primary);
	margin: 0 0 18px;
}
.wf-pricing-card__price {
	font-family: var(--wf-font-brand);
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--wf-accent);
	line-height: 1;
	margin-bottom: 8px;
}
.wf-pricing-card__unit {
	color: var(--wf-muted);
	font-weight: 600;
	margin-bottom: 14px;
}
.wf-pricing-card__desc {
	color: var(--wf-muted);
	font-size: 0.9rem;
	margin: 0;
}

/* Reviews */
.wf-reviews { padding: 80px 0; background: #fff; }
.wf-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.wf-review-card {
	background: #fff;
	border-radius: 20px;
	padding: 24px 22px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	text-align: start;
}
.wf-review-card__stars {
	display: flex;
	gap: 4px;
	justify-content: flex-start;
	color: var(--wf-accent);
	margin-bottom: 14px;
}
.wf-review-card__stars .wf-stars svg { width: 16px; height: 16px; fill: var(--wf-accent); color: var(--wf-accent); }
.wf-review-card__stars .wf-stars__empty svg { fill: #e5e7eb; color: #e5e7eb; }
.wf-review-card__text {
	color: var(--wf-muted);
	line-height: 1.85;
	margin: 0 0 16px;
	font-size: 0.98rem;
}
.wf-review-card__name {
	font-weight: 800;
	color: var(--wf-primary);
	font-size: 0.98rem;
}

/* CTA / Contact */
.wf-cta-bar {
	background: var(--wf-primary);
	color: #fff;
	padding: 64px 0;
}
.wf-cta-bar__inner { text-align: center; }
.wf-cta-bar__title {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 10px;
}
.wf-cta-bar__sub {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 30px;
	font-size: 1.05rem;
}
.wf-cta-bar__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}
.wf-cta-bar__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	border-radius: 10px;
	font-weight: 600;
	transition: background var(--wf-transition);
}
.wf-cta-bar__pill:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.wf-cta-bar__pill svg { color: var(--wf-accent); flex: 0 0 auto; }


/* ---------- 10. Services listing + filters + worker card ---------- */

.wf-services-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: flex-start;
}
.wf-filters {
	background: #fff;
	border-radius: var(--wf-radius-lg);
	padding: 20px;
	box-shadow: var(--wf-shadow-card);
	position: sticky;
	top: calc(var(--wf-header-height) + 12px);
}
.wf-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 16px;
}
.wf-filters__head-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	color: var(--wf-primary);
	font-weight: 800;
	margin: 0;
}
.wf-filters__head-actions { display: inline-flex; align-items: center; gap: 8px; }
.wf-filters__reset-pill {
	appearance: none;
	background: transparent;
	border: 1px solid var(--wf-accent, #ff8c42);
	color: var(--wf-accent, #ff8c42);
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--wf-transition), color var(--wf-transition);
}
.wf-filters__reset-pill:hover { background: #fff8f3; }
.wf-filters__reset-pill[hidden] { display: none; }
.wf-filters__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: var(--wf-primary);
	cursor: pointer;
	transition: background var(--wf-transition), transform var(--wf-transition);
}
.wf-filters__toggle:hover { background: var(--wf-primary-soft); }
.wf-filters__toggle svg { transition: transform 0.2s; }
.wf-filters[data-open="true"] .wf-filters__toggle svg { transform: rotate(180deg); }
.wf-filters__group { border-bottom: 1px solid var(--wf-border); padding: 14px 0; }
.wf-filters__group:first-child { padding-top: 0; }
.wf-filters__group:last-child { border-bottom: none; padding-bottom: 0; }
.wf-filters__title { font-size: 0.95rem; color: var(--wf-primary); margin-bottom: 10px; }
.wf-filters__options { display: grid; gap: 6px; }
.wf-filters__chip-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.wf-filters__reset {
	width: 100%;
	padding: 10px;
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	border: none;
	border-radius: var(--wf-radius);
	font-weight: 600;
	cursor: pointer;
	transition: background var(--wf-transition);
}
.wf-filters__reset:hover { background: var(--wf-primary); color: #fff; }

.wf-services__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 12px;
}
.wf-services__count { color: var(--wf-muted); font-size: 0.92rem; }
.wf-services__sort { display: flex; gap: 8px; align-items: center; }
.wf-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}
.wf-services__empty {
	padding: 64px 20px;
	text-align: center;
	background: #fff;
	border-radius: var(--wf-radius-lg);
	color: var(--wf-muted);
}

.wf-worker-card {
	background: #fff;
	border-radius: var(--wf-radius-lg);
	overflow: hidden;
	box-shadow: var(--wf-shadow-card);
	transition: transform var(--wf-transition), box-shadow var(--wf-transition);
	display: flex;
	flex-direction: column;
}
.wf-worker-card:hover { transform: translateY(-4px); box-shadow: var(--wf-shadow-hover); }
.wf-worker-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.wf-worker-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.wf-worker-card:hover .wf-worker-card__media img { transform: scale(1.05); }
.wf-worker-card__nationality {
	position: absolute;
	top: 10px;
	inset-inline-end: 10px;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(4px);
	padding: 4px 10px;
	border-radius: var(--wf-radius-pill);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--wf-primary);
	display: flex; gap: 4px; align-items: center;
}
.wf-worker-card__rating-badge {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	background: var(--wf-accent);
	color: #fff;
	padding: 4px 10px;
	border-radius: var(--wf-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	display: flex; gap: 4px; align-items: center;
}
.wf-worker-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wf-worker-card__name { font-size: 1.05rem; margin: 0; }
.wf-worker-card__meta { color: var(--wf-muted); font-size: 0.85rem; display: flex; gap: 10px; flex-wrap: wrap; }
.wf-worker-card__skills { display: flex; flex-wrap: wrap; gap: 4px; margin: 4px 0; }
.wf-worker-card__skills .wf-chip { font-size: 0.72rem; padding: 3px 8px; }
.wf-worker-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.wf-worker-card__price { font-family: var(--wf-font-brand); font-weight: 800; color: var(--wf-accent); font-size: 1.1rem; }
.wf-worker-card__price-unit { color: var(--wf-muted); font-size: 0.78rem; font-weight: 600; }


/* ---------- 11. Worker profile ---------- */

.wf-profile-hero {
	background: linear-gradient(135deg, var(--wf-primary) 0%, #0f3834 100%);
	color: #fff;
	padding: 48px 0 72px;
	position: relative;
	overflow: hidden;
}
.wf-profile-hero .wf-breadcrumb { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.wf-profile-hero .wf-breadcrumb a { color: rgba(255,255,255,0.75); }
.wf-profile-hero .wf-breadcrumb a:hover { color: var(--wf-accent); }
.wf-profile-hero__grid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
}
.wf-profile-hero__avatar {
	width: 120px; height: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	background: #fff;
	overflow: hidden;
}
.wf-profile-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wf-profile-hero__name { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.wf-profile-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wf-profile-hero__meta .wf-chip { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }

.wf-profile-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 28px;
	margin-top: -36px;
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
}
.wf-profile-main > section { background: #fff; border-radius: var(--wf-radius-lg); padding: 24px; box-shadow: var(--wf-shadow-card); margin-bottom: 20px; }
.wf-profile-main h2 { font-size: 1.25rem; }
.wf-profile-sidebar > div { background: #fff; border-radius: var(--wf-radius-lg); padding: 20px; box-shadow: var(--wf-shadow-card); margin-bottom: 16px; }
.wf-profile-sidebar__stat { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--wf-border); }
.wf-profile-sidebar__stat:last-child { border-bottom: none; }
.wf-profile-sidebar__stat-label { color: var(--wf-muted); font-size: 0.9rem; }
.wf-profile-sidebar__stat-value { font-weight: 700; color: var(--wf-primary); }

.wf-review-list { display: grid; gap: 12px; }
.wf-review-list__item { padding: 14px; border: 1px solid var(--wf-border); border-radius: var(--wf-radius); }
.wf-review-list__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.wf-review-list__name { font-weight: 700; }
.wf-review-list__date { color: var(--wf-muted); font-size: 0.8rem; }

.wf-review-form { display: grid; gap: 12px; padding-top: 12px; border-top: 1px solid var(--wf-border); margin-top: 16px; }
.wf-review-form__stars { display: flex; gap: 4px; }
.wf-review-form__stars button {
	background: none; border: none; cursor: pointer;
	padding: 2px;
	color: rgba(0,0,0,0.15);
	transition: color 0.15s, transform 0.15s;
}
.wf-review-form__stars button.is-on { color: var(--wf-star); }
.wf-review-form__stars button:hover { transform: scale(1.12); }
.wf-review-form__stars svg { width: 26px; height: 26px; fill: currentColor; }


/* ---------- 11b. Worker profile (Figma) ---------- */

.wf-provider-hero {
	background: var(--wf-primary);
	color: #fff;
	padding: 40px 0 56px;
}
.wf-breadcrumb--light,
.wf-provider-hero .wf-breadcrumb {
	color: rgba(255,255,255,0.7);
	font-size: 0.82rem;
	margin-bottom: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.wf-breadcrumb--light a { color: rgba(255,255,255,0.7); text-decoration: none; }
.wf-breadcrumb--light a:hover { color: #fff; }
.wf-breadcrumb--light span { color: rgba(255,255,255,0.4); }

.wf-provider-hero__card {
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.20);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 28px;
	display: flex;
	gap: 28px;
	align-items: flex-start;
}
.wf-provider-hero__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid rgba(255,255,255,0.30);
	flex-shrink: 0;
}
.wf-provider-hero__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wf-provider-hero__info { flex: 1; min-width: 0; }
.wf-provider-hero__info h1 {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	line-height: 1.2;
	margin: 0 0 6px;
}
.wf-provider-hero__specialty {
	color: rgba(255,255,255,0.75);
	font-size: 1rem;
	margin: 0 0 14px;
}
.wf-provider-hero__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: rgba(255,255,255,0.85);
	font-size: 0.9rem;
}
.wf-provider-hero__rating .wf-stars,
.wf-provider-hero__rating .wf-stars svg { color: var(--wf-star, #f5b301); }

.wf-provider-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.wf-provider-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 0.82rem;
	padding: 6px 12px;
	border-radius: 999px;
}
.wf-provider-chip--price { color: var(--wf-accent, #ff8c42); font-weight: 800; }

.wf-provider-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 220px;
	max-width: 100%;
	height: 50px;
	padding: 0 28px;
	font-weight: 800;
	font-size: 1rem;
	border-radius: 12px;
}

.wf-provider-body { padding: 36px 0 64px; }
.wf-provider-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	align-items: flex-start;
}
.wf-provider-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.wf-provider-side  { display: flex; flex-direction: column; gap: 16px; }

.wf-provider-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 0 5px rgba(0,0,0,0.10);
	padding: 24px;
}
.wf-provider-card h2,
.wf-provider-card h3 {
	color: var(--wf-primary);
	font-weight: 800;
	margin: 0 0 16px;
}
.wf-provider-card h2 { font-size: 1.15rem; }
.wf-provider-card h3 { font-size: 1rem; }
.wf-provider-card__bio { color: var(--wf-muted); font-size: 0.95rem; line-height: 1.85; }
.wf-provider-card__bio p:last-child { margin-bottom: 0; }

.wf-provider-card__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wf-skill-pill {
	background: #f0f7f6;
	color: var(--wf-primary);
	border: 1px solid #d0e9e7;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
}

.wf-provider-card__reviews { display: flex; flex-direction: column; gap: 14px; }
.wf-provider-card__reviews .wf-review-card {
	background: #f8f7f4;
	border-radius: 16px;
	padding: 16px;
	box-shadow: none;
}
.wf-provider-card__reviews .wf-review-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.wf-provider-card__reviews .wf-review-card__user { display: flex; align-items: center; gap: 10px; }
.wf-provider-card__reviews .wf-review-card__avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #d0e9e7;
	color: var(--wf-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}
.wf-provider-card__reviews .wf-review-card__user strong { color: var(--wf-primary); font-size: 0.9rem; }
.wf-provider-card__reviews .wf-review-card__head time { color: var(--wf-muted); font-size: 0.8rem; }
.wf-provider-card__reviews .wf-review-card__stars { margin-bottom: 8px; color: var(--wf-star, #f5b301); }
.wf-provider-card__reviews .wf-review-card__stars .wf-stars svg { width: 16px; height: 16px; }
.wf-provider-card__reviews .wf-review-card__text { color: var(--wf-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.wf-review-form { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; border: none; }
.wf-review-form .wf-form-row { display: flex; flex-direction: column; gap: 8px; }
.wf-review-form .wf-form-row > label { font-weight: 600; color: var(--wf-primary); font-size: 0.92rem; }
.wf-review-form .wf-textarea { min-height: 110px; resize: vertical; }
.wf-star-selector { display: flex; gap: 6px; }
.wf-star-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #e5e7eb;
	transition: color 0.15s, transform 0.15s;
}
.wf-star-btn.is-on,
.wf-star-btn:hover { color: var(--wf-primary); }
.wf-star-btn:hover { transform: scale(1.08); }
.wf-star-btn svg { display: block; }

.wf-provider-stats ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wf-provider-stats li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(26,77,71,0.08);
}
.wf-provider-stats li:last-child { border-bottom: none; padding-bottom: 0; }
.wf-provider-stats li strong { color: var(--wf-primary); font-weight: 800; font-size: 0.9rem; }
.wf-provider-stats li span { color: var(--wf-muted); font-size: 0.85rem; }

.wf-provider-cta {
	background: var(--wf-primary);
	color: #fff;
	border-radius: 20px;
	padding: 22px;
	text-align: center;
	box-shadow: 0 0 5px rgba(0,0,0,0.10);
}
.wf-provider-cta__kicker { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0 0 2px; }
.wf-provider-cta__title { color: #fff; font-weight: 800; font-size: 1.1rem; margin: 0 0 14px; }
.wf-provider-cta .wf-btn--primary { height: 44px; font-size: 0.95rem; }
.wf-provider-cta__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 10px;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 8px 0;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.wf-provider-cta__wa:hover { color: #fff; }

.wf-provider-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 0 5px rgba(0,0,0,0.10);
	padding: 14px;
	color: var(--wf-primary);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}
.wf-provider-back:hover { background: #f0f7f6; color: var(--wf-primary); }

@media (max-width: 900px) {
	.wf-provider-layout { grid-template-columns: 1fr; }
	.wf-provider-hero__card { flex-direction: column; align-items: center; text-align: center; }
	.wf-provider-hero__info { text-align: center; }
	.wf-provider-hero__rating,
	.wf-provider-hero__chips { justify-content: center; }
	.wf-provider-hero__cta { width: 100%; }
}


/* ---------- 12. Booking wizard ---------- */

.wf-booking { padding: 40px 0 72px; }
.wf-booking__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 28px;
	align-items: flex-start;
}
.wf-booking__main {
	background: #fff;
	border-radius: var(--wf-radius-xl);
	padding: 28px;
	box-shadow: var(--wf-shadow-card);
}
.wf-booking__summary {
	background: #fff;
	border-radius: var(--wf-radius-xl);
	padding: 24px;
	box-shadow: var(--wf-shadow-card);
	position: sticky;
	top: calc(var(--wf-header-height) + 12px);
}
.wf-booking__summary h3 { margin-bottom: 12px; }
.wf-booking__summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.wf-booking__summary-row--total { border-top: 2px solid var(--wf-border); padding-top: 12px; margin-top: 8px; font-weight: 800; font-size: 1.05rem; color: var(--wf-primary); }
.wf-booking__worker-mini { display: flex; gap: 10px; align-items: center; padding: 10px; background: var(--wf-primary-soft); border-radius: var(--wf-radius); margin-bottom: 14px; }
.wf-booking__worker-mini img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* Stepper */
.wf-stepper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
	position: relative;
	counter-reset: step;
}
.wf-stepper__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	gap: 6px;
}
.wf-stepper__circle {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--wf-border);
	color: var(--wf-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	transition: all 0.3s ease;
}
.wf-stepper__label { font-size: 0.82rem; color: var(--wf-muted); font-weight: 600; text-align: center; }
.wf-stepper__item.is-active .wf-stepper__circle { background: var(--wf-accent); border-color: var(--wf-accent); color: #fff; box-shadow: 0 0 0 6px rgba(255,140,66,0.15); }
.wf-stepper__item.is-active .wf-stepper__label { color: var(--wf-primary); }
.wf-stepper__item.is-done .wf-stepper__circle { background: var(--wf-primary); border-color: var(--wf-primary); color: #fff; }
.wf-stepper__item + .wf-stepper__item::before {
	content: '';
	position: absolute;
	top: 18px;
	inset-inline-end: 50%;
	height: 2px;
	width: 100%;
	background: var(--wf-border);
	z-index: -1;
}
.wf-stepper__item.is-done + .wf-stepper__item::before,
.wf-stepper__item.is-active + .wf-stepper__item::before { background: linear-gradient(to left, var(--wf-primary), var(--wf-border)); }

.wf-step { display: none; animation: fadeInUp 0.35s ease both; }
.wf-step.is-active { display: block; }
.wf-step__head { margin-bottom: 20px; }
.wf-step__title { font-size: 1.3rem; margin: 0 0 4px; }
.wf-step__desc { color: var(--wf-muted); margin: 0; }

.wf-service-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
}
.wf-service-types__item {
	background: #fff;
	border: 2px solid var(--wf-border);
	border-radius: var(--wf-radius-lg);
	padding: 20px 16px;
	text-align: center;
	cursor: pointer;
	transition: all var(--wf-transition);
}
.wf-service-types__item:hover { border-color: var(--wf-primary); }
.wf-service-types__item.is-active { border-color: var(--wf-accent); background: var(--wf-accent-soft); }
.wf-service-types__emoji { font-size: 2rem; margin-bottom: 6px; }
.wf-service-types__label { font-weight: 700; color: var(--wf-primary); }
.wf-service-types__price { color: var(--wf-accent); font-weight: 700; font-size: 0.95rem; }

.wf-quantity {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}
.wf-quantity button {
	width: 36px; height: 36px;
	border-radius: 10px;
	border: 1.5px solid var(--wf-border);
	background: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--wf-primary);
	cursor: pointer;
	transition: all var(--wf-transition);
}
.wf-quantity button:hover:not(:disabled) { border-color: var(--wf-primary); background: var(--wf-primary-soft); }
.wf-quantity button:disabled { opacity: 0.4; cursor: not-allowed; }
.wf-quantity input {
	width: 60px; padding: 8px; text-align: center;
	border: 1.5px solid var(--wf-border);
	border-radius: 10px; font-weight: 700;
}

.wf-payment-methods { display: grid; gap: 10px; }
.wf-payment-method {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 2px solid var(--wf-border);
	border-radius: var(--wf-radius);
	cursor: pointer;
	transition: all var(--wf-transition);
}
.wf-payment-method:hover { border-color: var(--wf-primary); }
.wf-payment-method.is-active { border-color: var(--wf-accent); background: var(--wf-accent-soft); }
.wf-payment-method__icon { width: 40px; height: 40px; background: var(--wf-primary-soft); color: var(--wf-primary); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; flex: none; }
.wf-payment-method__info { flex: 1; }
.wf-payment-method__title { font-weight: 700; color: var(--wf-primary); }
.wf-payment-method__desc { color: var(--wf-muted); font-size: 0.85rem; }

.wf-card-number-input { letter-spacing: 0.1em; direction: ltr; text-align: start; }

.wf-step__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; border-top: 1px solid var(--wf-border); padding-top: 20px; }

/* ---------- Services listing pagination ---------- */
.wf-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 32px 0 8px;
	flex-wrap: wrap;
}
.wf-pagination[hidden] { display: none; }
.wf-pagination__pages { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.wf-pagination__btn {
	appearance: none;
	-webkit-appearance: none;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 10px;
	border: 1px solid var(--wf-border, #e5e7eb);
	background: #fff;
	color: var(--wf-primary, #1f2937);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wf-pagination__btn:hover:not(:disabled) {
	border-color: var(--wf-accent, #f97316);
	color: var(--wf-accent, #f97316);
}
.wf-pagination__btn.is-active {
	background: var(--wf-accent, #f97316);
	color: #fff;
	border-color: var(--wf-accent, #f97316);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.wf-pagination__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.wf-pagination__btn--nav svg { display: block; }
.wf-pagination__gap { color: var(--wf-muted, #9ca3af); padding: 0 4px; }
@media (max-width: 480px) {
	.wf-pagination__btn { min-width: 36px; height: 36px; padding: 0 8px; font-size: 0.85rem; }
}


/* ---------- Booking slot picker ---------- */
.wf-form__hint { display: block; font-size: 0.85rem; color: var(--wf-muted); margin-top: 6px; }
.wf-slots-row { margin-top: 12px; }
.wf-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	gap: 10px;
	margin-top: 10px;
	padding: 14px;
	background: var(--wf-primary-soft, #f8f7f4);
	border: 1px solid var(--wf-border, #e5e7eb);
	border-radius: 14px;
	min-height: 72px;
}
.wf-slots__empty {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--wf-muted, #6b7280);
	text-align: center;
	font-size: 0.95rem;
	padding: 16px 8px;
}
.wf-slots__empty.is-error { color: #dc2626; }
.wf-slot {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid var(--wf-border, #e5e7eb);
	background: #fff;
	color: var(--wf-primary, #1f2937);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 10px 6px;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
	direction: ltr;
	text-align: center;
}
.wf-slot:hover:not(.is-disabled) {
	border-color: var(--wf-accent, #f97316);
	background: var(--wf-accent-soft, #fef3ea);
}
.wf-slot.is-selected {
	background: var(--wf-accent, #f97316);
	color: #fff;
	border-color: var(--wf-accent, #f97316);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.wf-slot.is-disabled,
.wf-slot:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #f3f4f6;
	color: #9ca3af;
	text-decoration: line-through;
}
.wf-slot.is-booked {
	background: #fee2e2;
	color: #b91c1c;
	border-color: #fecaca;
	text-decoration: line-through;
}
.wf-form-row.wf-field--error .wf-slots {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}


/* ---------- 13. Auth pages (login/register/forgot + OTP) ---------- */

.wf-auth-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - var(--wf-header-height) - 140px);
	padding: 40px 16px;
}
.wf-auth-card {
	background: #fff;
	border-radius: var(--wf-radius-xl);
	padding: 40px 32px;
	width: 100%;
	max-width: 480px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.wf-auth-card__head { text-align: center; margin-bottom: 28px; }
.wf-auth-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--wf-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 1.6rem;
}
.wf-auth-card__icon svg { width: 28px; height: 28px; }
.wf-auth-card__head h1 {
	font-size: 1.75rem;
	line-height: 1.3;
	color: var(--wf-primary);
	margin: 0 0 6px;
}
.wf-auth-card__head p { color: var(--wf-muted); margin: 0; font-size: 0.95rem; }
.wf-auth-card__foot {
	text-align: center;
	margin: 28px 0 0;
	padding-top: 20px;
	border-top: 1px solid #f1f5f4;
	color: var(--wf-muted);
	font-size: 0.9rem;
}
.wf-auth-card__foot a { color: var(--wf-accent); font-weight: 700; margin-inline-start: 4px; }
.wf-auth-card__foot a:hover { text-decoration: underline; }

.wf-auth-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	background: var(--wf-primary-soft);
	padding: 4px;
	border-radius: var(--wf-radius);
	margin-bottom: 24px;
}
.wf-auth-tabs:has(> :only-child) { grid-template-columns: 1fr; }
.wf-auth-tab {
	padding: 11px 8px;
	background: transparent;
	border: none;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--wf-muted);
	cursor: pointer;
	border-radius: 10px;
	transition: all var(--wf-transition);
}
.wf-auth-tab:hover { color: var(--wf-primary); }
.wf-auth-tab.is-active {
	background: var(--wf-primary);
	color: #fff;
	box-shadow: 0 3px 10px rgba(26, 77, 71, 0.2);
}

.wf-auth-panel { display: grid; gap: 18px; }
.wf-auth-panel form { display: grid; gap: 18px; }
form.wf-auth-panel { display: grid; gap: 18px; }
.wf-auth-hint { color: var(--wf-muted); font-size: 0.85rem; }

.wf-form-row { display: flex; flex-direction: column; gap: 8px; }
.wf-form-row > label:not(.wf-check) {
	font-weight: 600;
	color: var(--wf-primary);
	font-size: 0.93rem;
	display: block;
}
.wf-form-row--inline {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.wf-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: 16px;
}
.wf-form-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #f1f5f4;
}
.wf-section-title {
	font-size: 1.15rem;
	color: var(--wf-primary);
	margin: 28px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f5f4;
}
.wf-section-title:first-child { margin-top: 0; }
.wf-link { color: var(--wf-accent); font-weight: 600; font-size: 0.9rem; }
.wf-link:hover { text-decoration: underline; }

.wf-input-prefix {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--wf-border);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	transition: all var(--wf-transition);
}
.wf-input-prefix:focus-within {
	border-color: var(--wf-accent);
	box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}
.wf-input-prefix > span {
	background: var(--wf-primary-soft);
	color: var(--wf-primary);
	font-weight: 700;
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	border-inline-end: 1px solid var(--wf-border);
	direction: ltr;
}
.wf-input-prefix > input {
	flex: 1;
	border: none;
	padding: 12px 14px;
	background: transparent;
	font-size: 1rem;
	direction: ltr;
	text-align: start;
}
.wf-input-prefix > input:focus { outline: none; }

.wf-password-wrap { position: relative; }
.wf-password-wrap .wf-input,
.wf-password-wrap .wf-input2 { padding-inline-end: 44px; }
.wf-password-toggle {
	position: absolute;
	inset-inline-end: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--wf-muted);
	cursor: pointer;
	font-size: 1.1rem;
	padding: 4px 8px;
	border-radius: 6px;
	transition: color var(--wf-transition);
}
.wf-password-toggle:hover { color: var(--wf-accent); }

.wf-otp-box {
	display: flex;
	gap: 10px;
	justify-content: center;
	direction: ltr;
	flex-wrap: wrap;
}
.wf-otp-digit {
	width: 56px;
	height: 60px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--wf-primary);
	border: 2px solid var(--wf-border);
	border-radius: 12px;
	background: #fff;
	transition: all var(--wf-transition);
	font-family: var(--wf-font-brand);
}
.wf-otp-digit:focus {
	outline: none;
	border-color: var(--wf-accent);
	box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.15);
}
.wf-otp-digit:not(:placeholder-shown),
.wf-otp-digit[value]:not([value=""]) {
	border-color: var(--wf-primary);
	background: var(--wf-primary-soft);
}


/* ---------- 14. My-account / profile ---------- */

.wf-account {
	min-width: 0;
	max-width: 100%;
}
.wf-account__layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 28px;
	align-items: start;
	min-width: 0;
	max-width: 100%;
}
.wf-account__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: calc(var(--wf-header-height) + 16px);
	min-width: 0;
	max-width: 100%;
}
.wf-account__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}
.wf-account__content > section,
.wf-account__content > .woocommerce-MyAccount-content > *,
.wf-account__content .wf-orders,
.wf-account__content .wf-profile-form,
.wf-account__content .wf-address-form {
	background: #fff;
	border-radius: var(--wf-radius-lg);
	padding: 24px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.wf-account__content .wf-addresses {
	background: transparent;
	box-shadow: none;
	padding: 0;
}
.wf-account__content > .woocommerce-MyAccount-content { padding: 0; background: transparent; box-shadow: none; }

.wf-account-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.wf-account-nav__profile {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 18px;
	background: linear-gradient(110deg, var(--wf-primary) 0%, rgba(26, 77, 71, 0.92) 100%);
	color: #fff;
	border-radius: var(--wf-radius-lg);
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.08), 0 8px 10px rgba(0, 0, 0, 0.05);
}
.wf-account-nav__avatar {
	flex: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 3px solid rgba(255, 255, 255, 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 1.3rem;
	font-family: var(--wf-font-brand);
}
.wf-account-nav__profile > div { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.wf-account-nav__profile strong {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.wf-account-nav__profile span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wf-account-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: var(--wf-radius-lg);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.wf-account-nav__menu li { border-bottom: 1px solid rgba(26, 77, 71, 0.06); }
.wf-account-nav__menu li:last-child { border-bottom: none; }
.wf-account-nav__menu a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	color: var(--wf-muted);
	font-weight: 700;
	font-size: 0.95rem;
	transition: all var(--wf-transition);
	position: relative;
}
.wf-account-nav__menu a::before {
	content: '';
	width: 20px;
	height: 20px;
	flex: none;
	background: currentColor;
	-webkit-mask: center / contain no-repeat;
	        mask: center / contain no-repeat;
	display: none;
}
.wf-account-nav__menu li[class*="woocommerce-MyAccount-navigation-link--"] a::before { display: block; }
.wf-account-nav__menu li.is-active a,
.wf-account-nav__menu a.is-active {
	background: var(--wf-accent);
	color: #fff;
}
.wf-account-nav__menu li:not(.is-active) a:hover {
	background: rgba(255, 140, 66, 0.08);
	color: var(--wf-accent);
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--edit-account a::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='7' r='3.5'/><path d='M3 17c1.5-3 4-4.5 7-4.5s5.5 1.5 7 4.5'/></svg>");
	        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='7' r='3.5'/><path d='M3 17c1.5-3 4-4.5 7-4.5s5.5 1.5 7 4.5'/></svg>");
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--orders a::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='14' height='12' rx='2'/><path d='M3 9h14M7 3v4M13 3v4'/></svg>");
	        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='14' height='12' rx='2'/><path d='M3 9h14M7 3v4M13 3v4'/></svg>");
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--edit-address a::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M10 2C6.5 2 4 4.5 4 8c0 4.5 6 10 6 10s6-5.5 6-10c0-3.5-2.5-6-6-6z'/><circle cx='10' cy='8' r='2'/></svg>");
	        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M10 2C6.5 2 4 4.5 4 8c0 4.5 6 10 6 10s6-5.5 6-10c0-3.5-2.5-6-6-6z'/><circle cx='10' cy='8' r='2'/></svg>");
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--dashboard a::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l7-6 7 6v7a1 1 0 01-1 1h-4v-5H8v5H4a1 1 0 01-1-1v-7z'/></svg>");
	        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l7-6 7 6v7a1 1 0 01-1 1h-4v-5H8v5H4a1 1 0 01-1-1v-7z'/></svg>");
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--customer-logout a { color: #e7000b; }
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3H5a2 2 0 00-2 2v10a2 2 0 002 2h7'/><path d='M15 7l3 3-3 3'/><path d='M18 10H9'/></svg>");
	        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3H5a2 2 0 00-2 2v10a2 2 0 002 2h7'/><path d='M15 7l3 3-3 3'/><path d='M18 10H9'/></svg>");
}
.wf-account-nav__menu li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: rgba(231, 0, 11, 0.08);
	color: #e7000b;
}

/* Profile / address / account forms */
.wf-profile-form,
.wf-address-form { display: flex; flex-direction: column; gap: 16px; }
.wf-profile-form p, .wf-address-form p { margin: 0; }

/* WooCommerce form fields inside our grids */
.wf-form-grid .form-row,
.wf-address-form .form-row,
.wf-profile-form .form-row { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.wf-form-grid .form-row label,
.wf-address-form .form-row > label,
.wf-profile-form .form-row > label {
	font-weight: 600;
	color: var(--wf-primary);
	font-size: 0.93rem;
}
.wf-form-grid .input-text,
.wf-form-grid select,
.wf-form-grid textarea,
.wf-address-form .input-text,
.wf-address-form select,
.wf-address-form textarea,
.wf-profile-form .input-text,
.wf-profile-form select,
.wf-profile-form textarea,
.woocommerce-MyAccount-content .input-text,
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--wf-text);
	background: #fff;
	border: 1.5px solid var(--wf-border);
	border-radius: 10px;
	transition: all var(--wf-transition);
}
.wf-form-grid .input-text:focus,
.wf-form-grid select:focus,
.wf-form-grid textarea:focus,
.wf-address-form .input-text:focus,
.wf-address-form select:focus,
.wf-address-form textarea:focus,
.wf-profile-form .input-text:focus,
.wf-profile-form select:focus,
.wf-profile-form textarea:focus,
.woocommerce-MyAccount-content .input-text:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
	outline: none;
	border-color: var(--wf-accent);
	box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.15);
}
.wf-form-grid .form-row-wide { grid-column: 1 / -1; }
.woocommerce-MyAccount-content .required { color: var(--wf-danger); text-decoration: none; margin-inline-start: 2px; }

/* Orders section */
.wf-orders { display: flex; flex-direction: column; gap: 18px; }
.wf-orders__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: 16px;
}
.wf-order-card {
	background: linear-gradient(130deg, #fff 0%, #f9fafb 100%);
	border: 2px solid rgba(26, 77, 71, 0.12);
	border-radius: 14px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: all var(--wf-transition);
}
.wf-order-card:hover { border-color: rgba(255, 140, 66, 0.4); transform: translateY(-2px); box-shadow: var(--wf-shadow-hover); }
.wf-order-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
.wf-order-card__head > div { display: flex; flex-direction: column; gap: 4px; }
.wf-order-card__head strong { color: var(--wf-primary); font-size: 1.05rem; font-weight: 800; }
.wf-order-card__head span { color: var(--wf-muted); font-size: 0.82rem; }
.wf-order-card__worker {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: var(--wf-primary-soft);
	border-radius: 10px;
	font-size: 0.9rem;
}
.wf-order-card__worker > span { color: var(--wf-muted); }
.wf-order-card__worker a, .wf-order-card__worker strong { color: var(--wf-primary); font-weight: 700; }
.wf-order-card__worker a:hover { color: var(--wf-accent); }
.wf-order-card__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wf-order-card__meta li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px dashed rgba(26, 77, 71, 0.08);
}
.wf-order-card__meta li:last-child { border-bottom: none; }
.wf-order-card__meta span { color: var(--wf-muted); font-size: 0.85rem; }
.wf-order-card__meta strong { color: var(--wf-primary); font-size: 0.92rem; font-weight: 700; text-align: end; }
.wf-order-card__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
.wf-order-card__actions .wf-btn { flex: 1; min-width: 120px; }

.wf-order-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: var(--wf-radius-pill);
	font-size: 0.82rem;
	font-weight: 700;
	border: 2px solid transparent;
	white-space: nowrap;
}
.wf-order-status--completed { background: #dcfce7; color: #016630; border-color: #b9f8cf; }
.wf-order-status--processing,
.wf-order-status--on-hold { background: #dbeafe; color: #193cb8; border-color: #bedbff; }
.wf-order-status--pending { background: #fef3c7; color: #c77700; border-color: #fde68a; }
.wf-order-status--cancelled,
.wf-order-status--failed,
.wf-order-status--refunded { background: #fef2f2; color: #e7000b; border-color: #ffc9c9; }

.wf-empty-state {
	text-align: center;
	padding: 48px 24px;
	background: #fff;
	border-radius: var(--wf-radius-lg);
	border: 2px dashed var(--wf-border);
}
.wf-empty-state p { color: var(--wf-muted); margin-bottom: 20px; }

.wf-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }

/* Addresses grid */
.wf-addresses { display: flex; flex-direction: column; gap: 18px; }
.wf-addresses__intro {
	color: var(--wf-muted);
	font-size: 0.92rem;
	background: var(--wf-primary-soft);
	padding: 12px 16px;
	border-radius: var(--wf-radius);
	margin: 0;
}
/* Address card rules are defined in section 14b (Figma refinements) below. */

/* ---------- 14b. Figma refinements: icon inputs, toasts, sections, labelled cards ---------- */

/* Icon inputs (email / name / phone) */
.wf-input-icon { position: relative; }
.wf-input-icon .wf-input { padding-inline-start: 44px; text-align: start; }
.wf-input-icon .wf-input[type="email"],
.wf-input-icon .wf-input[type="tel"],
.wf-input-icon .wf-input[type="url"],
.wf-input-icon .wf-input[dir="ltr"] { direction: ltr; }
.wf-input-icon__svg {
	position: absolute;
	inset-inline-start: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--wf-muted);
	pointer-events: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wf-input-icon:focus-within .wf-input-icon__svg { color: var(--wf-accent); }

/* Required asterisk */
.wf-req { color: var(--wf-danger); margin-inline-start: 2px; }

/* Badge accent */
.wf-badge--accent { background: rgba(255, 140, 66, 0.12); color: var(--wf-accent); }

/* Auth page spacing */
.wf-auth-page { padding: 48px 0 72px; }

/* Auth hint near phone OTP */
.wf-phone-step { display: flex; flex-direction: column; gap: 14px; }
.wf-otp-head { text-align: center; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.wf-otp-head__icon {
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--wf-primary-soft); color: var(--wf-primary);
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 2px;
}
.wf-otp-head__label { margin: 0; color: var(--wf-muted); font-size: 0.9rem; }
.wf-otp-head__phone { margin: 0; font-weight: 800; color: var(--wf-primary); font-size: 1.05rem; letter-spacing: 0.5px; }
.wf-otp-resend { text-align: center; }

/* Auth tab icon alignment */
.wf-auth-tab__icon { flex: none; margin-inline-end: 6px; }
.wf-auth-tab { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* ---------- Toast notifications (auth pages + global) ---------- */
#wf-auth-toast-host {
	position: fixed;
	inset-block-start: calc(var(--wf-header-height, 72px) + 12px);
	inset-inline-end: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 9999;
	pointer-events: none;
	max-width: min(380px, 92vw);
}
.wf-auth-toast {
	pointer-events: auto;
	background: #fff;
	color: var(--wf-text);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
	padding: 12px 14px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	border-inline-start: 4px solid var(--wf-primary);
	transform: translateX(16px);
	opacity: 0;
	animation: wfToastIn 0.26s ease forwards;
}
[dir="rtl"] .wf-auth-toast { transform: translateX(-16px); }
.wf-auth-toast.is-leaving { animation: wfToastOut 0.22s ease forwards; }
.wf-auth-toast__icon {
	flex: none;
	width: 30px; height: 30px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff;
}
.wf-auth-toast__text { font-size: 0.92rem; line-height: 1.5; }
.wf-auth-toast__close {
	border: none; background: transparent;
	color: var(--wf-muted);
	cursor: pointer;
	width: 28px; height: 28px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 6px;
}
.wf-auth-toast__close:hover { background: rgba(0,0,0,0.06); color: var(--wf-primary); }
.wf-auth-toast--success { border-inline-start-color: var(--wf-success); }
.wf-auth-toast--success .wf-auth-toast__icon { background: var(--wf-success); }
.wf-auth-toast--error { border-inline-start-color: var(--wf-danger); }
.wf-auth-toast--error .wf-auth-toast__icon { background: var(--wf-danger); }
.wf-auth-toast--warning { border-inline-start-color: #eab308; }
.wf-auth-toast--warning .wf-auth-toast__icon { background: #eab308; }
.wf-auth-toast--info { border-inline-start-color: var(--wf-primary); }
.wf-auth-toast--info .wf-auth-toast__icon { background: var(--wf-primary); }
@keyframes wfToastIn {
	from { opacity: 0; transform: translateX(20px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes wfToastOut {
	from { opacity: 1; transform: translateX(0); }
	to   { opacity: 0; transform: translateX(20px); }
}

/* ---------- Profile sections (edit-account) ---------- */
.wf-profile-form { gap: 24px; }
.wf-profile-form__actions {
	display: flex; gap: 10px; flex-wrap: wrap;
	margin-bottom: 4px;
}
.wf-profile-form__actions .wf-btn { min-width: 110px; gap: 6px; }
.wf-profile-section {
	border-top: 1px solid rgba(0,0,0,0.06);
	padding-top: 20px;
	display: flex; flex-direction: column; gap: 14px;
}
.wf-profile-section:first-of-type { border-top: none; padding-top: 0; }
.wf-profile-section__head {
	display: flex; align-items: center; gap: 10px;
}
.wf-profile-section__head h2 {
	margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--wf-primary);
}
.wf-profile-section__hint { color: var(--wf-muted); font-size: 0.85rem; }
.wf-profile-section__icon {
	width: 36px; height: 36px; border-radius: 10px;
	background: var(--wf-primary-soft); color: var(--wf-primary);
	display: inline-flex; align-items: center; justify-content: center;
}
.wf-form-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wf-form-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------- Orders head / meta with icons ---------- */
.wf-orders__head {
	display: flex; align-items: center; gap: 10px;
	margin-bottom: 4px;
}
.wf-orders__head h2 { margin: 0; font-size: 1.15rem; color: var(--wf-primary); }
.wf-orders__icon {
	width: 40px; height: 40px; border-radius: 12px;
	background: var(--wf-primary-soft); color: var(--wf-primary);
	display: inline-flex; align-items: center; justify-content: center;
}
.wf-order-card__title { display: flex; flex-direction: column; gap: 4px; }
.wf-order-card__meta {
	gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
}
.wf-order-card__meta .wf-order-meta {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(0,0,0,0.03); padding: 8px 10px; border-radius: 10px;
	border: none;
}
.wf-order-meta__icon {
	width: 28px; height: 28px; flex: none;
	border-radius: 8px;
	background: var(--wf-primary-soft); color: var(--wf-primary);
	display: inline-flex; align-items: center; justify-content: center;
}
.wf-order-meta__value { color: var(--wf-primary); font-weight: 700; font-size: 0.92rem; }
.wf-order-meta--price .wf-order-meta__icon { background: rgba(255,140,66,0.15); color: var(--wf-accent); }
.wf-order-meta--price .wf-order-meta__value { color: var(--wf-accent); }
.wf-order-card__footer {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px; flex-wrap: wrap;
	padding-top: 10px; border-top: 1px dashed rgba(26,77,71,0.1);
}
.wf-order-card__number { color: var(--wf-muted); font-size: 0.85rem; }
.wf-order-card__number strong { color: var(--wf-primary); }
.wf-order-card__actions { margin: 0; padding: 0; }
.wf-order-card__actions .wf-btn { flex: 0 0 auto; min-width: 0; gap: 6px; }

/* ---------- Addresses head + labelled cards (Figma) ---------- */
.wf-addresses { display: flex; flex-direction: column; gap: 16px; }
.wf-addresses__head {
	display: flex; align-items: center; gap: 10px;
	flex-wrap: wrap;
	margin: 0;
}
.wf-addresses__title { display: flex; align-items: center; gap: 10px; }
.wf-addresses__title h2 { margin: 0; font-size: 1.35rem; color: var(--wf-primary); font-weight: 800; }
.wf-addresses__icon { color: var(--wf-accent); display: inline-flex; align-items: center; justify-content: center; }
.wf-addresses__add {
	align-self: flex-start;
	display: inline-flex; align-items: center; gap: 8px;
	height: 48px; padding: 0 22px; border-radius: 14px;
	font-weight: 700; font-size: 1rem;
}
.wf-addresses__panel {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
	padding: 20px;
}
.wf-addresses__panel--empty { text-align: center; padding: 48px 20px; color: var(--wf-muted); }
.wf-addresses__panel--empty p { margin: 0; }

.wf-addresses__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 20px;
}

.wf-address-card {
	position: relative;
	background: #fff;
	border: 2px solid rgba(26, 77, 71, 0.15);
	border-radius: 14px;
	padding: 18px;
	display: flex; flex-direction: column; gap: 14px;
	transition: all var(--wf-transition);
}
.wf-address-card--home { background: rgba(255, 140, 66, 0.05); border-color: var(--wf-accent); }
.wf-address-card--work { background: #fff; border-color: rgba(26, 77, 71, 0.15); }
.wf-address-card__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px;
}
.wf-address-card__title { display: inline-flex; align-items: center; gap: 10px; }
.wf-address-card--home .wf-address-card__title { color: var(--wf-accent); }
.wf-address-card--work .wf-address-card__title { color: var(--wf-primary); }
.wf-address-card__icon { display: inline-flex; align-items: center; justify-content: center; }
.wf-address-card__icon { color: inherit; background: transparent; width: 24px; height: 24px; border-radius: 0; }
.wf-address-card__title h3 {
	margin: 0;
	color: var(--wf-primary);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.4;
}
.wf-address-card__default {
	display: inline-flex; align-items: center; justify-content: center;
	height: 26px; padding: 0 14px;
	background: var(--wf-accent); color: #fff;
	border-radius: var(--wf-radius-pill);
	font-size: 0.78rem; font-weight: 800;
	white-space: nowrap;
}
.wf-address-card__name,
.wf-address-card__line {
	margin: 0;
	color: var(--wf-muted);
	line-height: 1.7;
	font-size: 0.98rem;
	word-break: break-word;
}
.wf-address-card__name strong,
.wf-address-card__line strong { font-weight: 700; color: var(--wf-primary); }
.wf-address-card__actions {
	display: flex; gap: 8px; flex-wrap: wrap;
	margin-top: auto;
}
.wf-address-card__actions .wf-inline-form { display: contents; }

/* Action buttons within address card */
.wf-addr-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 6px;
	height: 36px;
	padding: 0 14px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-weight: 800;
	font-size: 0.88rem;
	transition: all var(--wf-transition);
	white-space: nowrap;
}
.wf-addr-btn--edit {
	background: rgba(255, 140, 66, 0.12);
	color: var(--wf-accent);
}
.wf-addr-btn--edit:hover { background: rgba(255, 140, 66, 0.22); }
.wf-addr-btn--default {
	background: rgba(26, 77, 71, 0.1);
	color: var(--wf-primary);
	flex: 1; min-width: 120px;
}
.wf-addr-btn--default:hover { background: rgba(26, 77, 71, 0.18); }
.wf-addr-btn--delete {
	background: #fef2f2;
	color: #e7000b;
}
.wf-addr-btn--delete:hover { background: #fee2e2; }

/* Modal (generic) */
.wf-modal[hidden] { display: none !important; }
.wf-modal {
	position: fixed; inset: 0; z-index: 9998;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.wf-modal__overlay {
	position: absolute; inset: 0;
	background: rgba(0, 0, 0, 0.5);
	animation: wfModalFade 0.18s ease;
}
.wf-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
	width: 100%;
	max-width: 520px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	animation: wfModalIn 0.22s ease;
}
.wf-modal__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.wf-modal__head h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--wf-primary);
	font-weight: 800;
}
.wf-modal__close {
	background: transparent; border: none;
	color: var(--wf-muted);
	font-size: 1.2rem;
	width: 32px; height: 32px;
	border-radius: 8px;
	cursor: pointer;
}
.wf-modal__close:hover { background: rgba(0,0,0,0.06); color: var(--wf-primary); }
.wf-modal__body {
	padding: 22px;
	display: flex; flex-direction: column; gap: 16px;
}
.wf-modal__footer {
	display: flex; gap: 10px;
	padding: 0 22px 22px;
}
.wf-modal__footer .wf-btn { flex: 1; }

@keyframes wfModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wfModalIn {
	from { opacity: 0; transform: translateY(10px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Address modal type toggles */
.wf-addr-types { display: flex; gap: 10px; }
.wf-addr-type {
	flex: 1;
	display: inline-flex; align-items: center; justify-content: center;
	height: 44px; padding: 0 10px;
	border-radius: 10px;
	background: #f3f4f6;
	color: var(--wf-muted);
	font-weight: 800;
	cursor: pointer;
	transition: all var(--wf-transition);
}
.wf-addr-type input { position: absolute; opacity: 0; pointer-events: none; }
.wf-addr-type--home.is-active { background: var(--wf-accent); color: #fff; }
.wf-addr-type--work.is-active { background: var(--wf-primary); color: #fff; }

/* Accent-tinted checkbox label for modal */
.wf-check--accent { display: inline-flex; align-items: center; gap: 8px; color: var(--wf-primary); font-weight: 600; }
.wf-check--accent input { accent-color: var(--wf-accent); width: 18px; height: 18px; }

body.wf-modal-open { overflow: hidden; }

/* Button sizing / danger variant */
.wf-btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.wf-btn--danger {
	background: rgba(220,38,38,0.08);
	color: var(--wf-danger);
	border: 1.5px solid rgba(220,38,38,0.2);
}
.wf-btn--danger:hover { background: rgba(220,38,38,0.14); color: var(--wf-danger); }


/* ---------- 15. Policies / about / contact ---------- */

.wf-policies__hub {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.wf-policies__card {
	background: #fff;
	border-radius: var(--wf-radius-lg);
	padding: 28px;
	text-align: center;
	box-shadow: var(--wf-shadow-card);
	transition: all var(--wf-transition);
	display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.wf-policies__card:hover { transform: translateY(-4px); box-shadow: var(--wf-shadow-hover); }
.wf-policies__icon { width: 54px; height: 54px; border-radius: 50%; background: var(--wf-primary-soft); color: var(--wf-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.wf-policy-body { max-width: 820px; margin-inline: auto; background: #fff; padding: 32px; border-radius: var(--wf-radius-lg); box-shadow: var(--wf-shadow-card); }
.wf-policy-body h2 { margin-top: 24px; }
.wf-policy-body h2:first-child { margin-top: 0; }

/* ---------- About page (Figma) ---------- */
.wf-about-section {
	background: var(--wf-primary);
	color: #fff;
	padding: 64px 0;
}
.wf-about-section .wf-container { position: relative; }
.wf-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}
.wf-about-intro h1 {
	color: #fff;
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	line-height: 1.2;
	margin: 0 0 22px;
}
.wf-about-intro__body { display: flex; flex-direction: column; gap: 14px; }
.wf-about-intro__body p {
	color: rgba(255,255,255,0.88);
	font-size: 1.02rem;
	line-height: 1.9;
	margin: 0;
}
.wf-about-cards { display: flex; flex-direction: column; gap: 18px; }
.wf-about-card {
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.20);
	border-radius: 16px;
	padding: 22px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.wf-about-card__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 14px;
	background: rgba(255,140,66,0.20);
	color: var(--wf-accent, #ff8c42);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wf-about-card__icon svg { display: block; }
.wf-about-card__text { flex: 1; min-width: 0; }
.wf-about-card__text h2 {
	color: #fff;
	font-size: 1.15rem;
	line-height: 1.4;
	margin: 0 0 6px;
	font-weight: 800;
}
.wf-about-card__text p {
	color: rgba(255,255,255,0.80);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.wf-about-stats { margin-top: 48px; }
.wf-about-stats__grid {
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.20);
	border-radius: 20px;
	padding: 28px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.wf-about-stat { text-align: center; }
.wf-about-stat__value {
	color: var(--wf-accent, #ff8c42);
	font-weight: 800;
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	margin: 0;
	line-height: 1.1;
}
.wf-about-stat__label {
	color: rgba(255,255,255,0.80);
	font-size: 0.95rem;
	margin: 8px 0 0;
}

@media (max-width: 900px) {
	.wf-about-grid { grid-template-columns: 1fr; gap: 28px; }
	.wf-about-stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; padding: 22px; }
	.wf-about-card { padding: 18px; }
}

/* ---------- Contact page (Figma) ---------- */
.wf-contact-section {
	background: #f8f7f4;
	padding: 48px 0 64px;
}
.wf-contact-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}
.wf-contact-head h1 {
	color: var(--wf-primary);
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	margin: 0 0 12px;
}
.wf-contact-head p {
	color: var(--wf-muted);
	font-size: 1.02rem;
	line-height: 1.7;
	margin: 0;
}
.wf-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 0;
}
.wf-contact-form-col { order: 1; }
.wf-contact-info-col { order: 2; display: flex; flex-direction: column; gap: 24px; }

.wf-contact-card {
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.wf-contact-card--form {
	background: #fff;
}
.wf-contact-card--info {
	background: var(--wf-primary);
	color: #fff;
	box-shadow: none;
}
.wf-contact-card--info h2 {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 20px;
}
.wf-contact-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wf-contact-info-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 0;
}
.wf-contact-ibox {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	flex-shrink: 0;
	background: rgba(255,140,66,0.20);
	color: var(--wf-accent, #ff8c42);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wf-contact-ibox svg { display: block; }
.wf-contact-info-text { flex: 1; min-width: 0; }
.wf-contact-info-label {
	color: rgba(255,255,255,0.70);
	font-size: 0.85rem;
	margin: 0 0 2px;
}
.wf-contact-info-value,
a.wf-contact-info-value {
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	margin: 0;
	text-decoration: none;
	display: block;
	word-break: break-word;
}
a.wf-contact-info-value:hover { color: var(--wf-accent, #ff8c42); }

.wf-contact-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
	padding: 12px 16px;
	width: 100%;
	border-radius: 12px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
}
.wf-contact-wa:hover { background: #1fbd5a; color: #fff; transform: translateY(-1px); }

.wf-contact-card--hours { background: #fff; }
.wf-contact-card--hours h3 {
	color: var(--wf-primary);
	font-weight: 800;
	font-size: 1.1rem;
	margin: 0 0 14px;
}
.wf-contact-hours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.wf-contact-hours li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(26,77,71,0.12);
}
.wf-contact-hours li:last-child { border-bottom: none; }
.wf-contact-hours__time { color: var(--wf-primary); font-weight: 600; font-size: 0.95rem; }
.wf-contact-hours__day { color: var(--wf-muted); font-size: 0.95rem; }

.wf-contact-form { display: flex; flex-direction: column; gap: 16px; }
.wf-contact-form .wf-form-row { display: flex; flex-direction: column; gap: 8px; }
.wf-contact-form .wf-form-row > label {
	color: var(--wf-primary);
	font-weight: 600;
	font-size: 0.95rem;
}
.wf-contact-form .wf-input {
	border-radius: 10px;
	border: 1px solid rgba(26,77,71,0.15);
	padding: 12px 14px;
	background: #fff;
}
.wf-contact-form .wf-input:focus {
	outline: none;
	border-color: var(--wf-primary);
	box-shadow: none;
}
.wf-contact-form .wf-textarea { min-height: 120px; resize: vertical; }
.wf-contact-submit {
	margin-top: 4px;
	height: 50px;
	gap: 8px;
	border-radius: 10px;
	font-weight: 700;
}
.wf-contact-submit svg { display: block; }

@media (max-width: 900px) {
	.wf-contact-grid { grid-template-columns: 1fr; gap: 20px; }
	.wf-contact-form-col { order: 2; }
	.wf-contact-info-col { order: 1; }
	.wf-contact-card { padding: 22px; }
}


/* ---------- 16. 404 ---------- */

.wf-404 { padding: 96px 0 64px; text-align: center; }
.wf-404__inner { max-width: 600px; margin-inline: auto; }
.wf-404__code {
	font-family: var(--wf-font-brand);
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 900;
	color: var(--wf-primary);
	line-height: 1;
	margin-bottom: 12px;
}
.wf-404__code::first-letter { color: var(--wf-accent); }
.wf-404__title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; }
.wf-404__text { color: var(--wf-muted); margin-bottom: 24px; }
.wf-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ---------- 17. Utilities + animations ---------- */

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,140,66,0.5); } 50% { box-shadow: 0 0 0 12px rgba(255,140,66,0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.wf-fade-in { animation: fadeIn 0.5s ease-in-out; }
.wf-fade-in-up { animation: fadeInUp 0.5s ease-out; }
.wf-scale-in { animation: scaleIn 0.5s ease-out; }
.wf-pulse { animation: pulse 2s infinite; }

.wf-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wf-reveal.wf-in-view { opacity: 1; transform: translateY(0); }

.wf-spinner {
	display: inline-block;
	width: 18px; height: 18px;
	border: 2.5px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

.wf-success-check {
	width: 84px; height: 84px;
	border-radius: 50%;
	background: var(--wf-success);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	animation: scaleIn 0.6s ease-out;
	box-shadow: 0 0 0 12px rgba(22,163,74,0.12);
}
.wf-success-check svg { width: 44px; height: 44px; }


/* ---------- 18. WooCommerce overrides ---------- */

.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	background: #fff;
	border-inline-start: 4px solid var(--wf-primary);
	padding: 14px 16px;
	border-radius: var(--wf-radius);
	margin-bottom: 16px;
	box-shadow: var(--wf-shadow-card);
}
.woocommerce-error { border-inline-start-color: var(--wf-danger); }
.woocommerce-message { border-inline-start-color: var(--wf-success); }

.wf-checkout-layout { max-width: 1100px; margin-inline: auto; }
.wf-checkout-layout h1 { font-size: 1.6rem; margin-bottom: 24px; }
.wf-checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: flex-start; }
.wf-checkout-main { background: #fff; padding: 28px; border-radius: var(--wf-radius-xl); box-shadow: var(--wf-shadow-card); }
.wf-checkout-side { background: #fff; padding: 24px; border-radius: var(--wf-radius-xl); box-shadow: var(--wf-shadow-card); position: sticky; top: calc(var(--wf-header-height) + 12px); }


/* ---------- 19. Responsive breakpoints ---------- */

@media (max-width: 1024px) {
	.wf-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.wf-hero__media { order: -1; }
	.wf-hero__media-frame img { height: clamp(280px, 60vw, 420px); }
	.wf-services-layout { grid-template-columns: 1fr; }
	.wf-filters { position: static; }
	.wf-filters__toggle { display: inline-flex; }
	.wf-filters__head { margin-bottom: 0; }
	.wf-filters[data-open="true"] .wf-filters__head { margin-bottom: 16px; }
	.wf-filters__body { display: none; }
	.wf-filters[data-open="true"] .wf-filters__body { display: block; }
	.wf-profile-layout { grid-template-columns: 1fr; }
	.wf-booking__layout { grid-template-columns: 1fr; }
	.wf-account__layout { grid-template-columns: 1fr; }
	.wf-account__sidebar { position: static; top: auto; }
	.wf-account-nav__profile { padding: 16px; }
	.wf-account-nav__avatar { width: 52px; height: 52px; font-size: 1.15rem; }
	.wf-account-nav__menu { flex-direction: row; overflow-x: auto; overflow-y: hidden; }
	.wf-account-nav__menu::-webkit-scrollbar { height: 4px; }
	.wf-account-nav__menu li { border-bottom: none; border-inline-end: 1px solid rgba(26, 77, 71, 0.06); flex: none; }
	.wf-account-nav__menu li:last-child { border-inline-end: none; }
	.wf-account-nav__menu a { white-space: nowrap; padding: 14px 18px; }
	.wf-checkout-grid { grid-template-columns: 1fr; }
	.wf-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.wf-about-row { grid-template-columns: 1fr; }
	.wf-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.wf-hide-mobile { display: none !important; }
	.wf-show-mobile { display: revert !important; }
	.wf-navbar__toggle { display: inline-flex !important; }
	.wf-drawer { display: block; }
	.wf-nav__list { display: none; }
	#wf-auth-toast-host { inset-inline-end: 8px; inset-inline-start: 8px; max-width: none; }
	.wf-stats__grid { grid-template-columns: 1fr; gap: 16px; }
	.wf-stats { margin-top: -24px; }
	.wf-pricing__grid { grid-template-columns: 1fr; }
	.wf-reviews__grid { grid-template-columns: 1fr; }
	.wf-cta-bar__actions { justify-content: center; }
	.wf-specialties__image img { height: clamp(220px, 55vw, 360px); }
	.wf-policies__hub { grid-template-columns: 1fr; }
	.wf-profile-hero__grid { grid-template-columns: 1fr; text-align: center; }
	.wf-profile-hero__avatar { margin-inline: auto; }
	.wf-profile-hero__meta { justify-content: center; }
	.wf-section { padding: 48px 0; }
	.wf-footer__grid { grid-template-columns: 1fr; }
	.wf-orders__list { grid-template-columns: 1fr; }
	.wf-addresses__grid { grid-template-columns: 1fr; }
	.wf-stepper__label { font-size: 0.72rem; }
	.wf-otp-digit { width: 48px; height: 56px; font-size: 1.2rem; }
	.wf-booking__main { padding: 20px; }
}

@media (max-width: 480px) {
	.wf-section { padding: 36px 0; }
	.wf-container { padding-inline: 16px; }
	.wf-auth-card { padding: 28px 20px; }
	.wf-auth-card__head h1 { font-size: 1.45rem; }
	.wf-otp-digit { width: 44px; height: 52px; font-size: 1.1rem; }
	.wf-form-grid { grid-template-columns: 1fr; }
	.wf-service-types { grid-template-columns: 1fr 1fr; }
	.wf-form-grid--cols-2,
	.wf-form-grid--cols-3 { grid-template-columns: 1fr; }
}



/* ─────────────────────────────────────────────────────────────
   Booking wizard v2 — pixel-match the React BookingPage design
   ───────────────────────────────────────────────────────────── */

.wf-booking2 { background: #f8f7f4; min-height: 100vh; padding-bottom: 56px; }
.wf-booking2__head { background: linear-gradient(to bottom, #f8f7f4, #ffffff); padding: 40px 0 20px; text-align: center; }
.wf-booking2__title { font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47; font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0 0 8px; }
.wf-booking2__sub { font-family: 'Cairo', sans-serif; color: #5a6c68; margin: 0; font-size: 1rem; }

/* Stepper with circular icon nodes ─────────────────────────── */
.wf-stepper2 {
	display: flex; justify-content: space-between; align-items: flex-start;
	max-width: 720px; margin: 28px auto 36px;
	position: relative; gap: 8px;
}
.wf-stepper2::before {
	content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%;
	height: 2px; background: #d1d5db; z-index: 0;
}
.wf-stepper2[data-progress] { /* allow JS to update gradient */ }
.wf-step-node {
	flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 8px;
	position: relative; z-index: 1; min-width: 0;
}
.wf-step-node__circle {
	width: 48px; height: 48px; border-radius: 50%; border: 2px solid #d1d5db;
	background: #fff; color: #9ca3af;
	display: inline-flex; align-items: center; justify-content: center;
	transition: all 0.25s ease; position: relative;
}
.wf-step-node__check { display: none; }
.wf-step-node.is-active .wf-step-node__circle {
	background: #ff8c42; border-color: #ff8c42; color: #fff;
	box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.15);
}
.wf-step-node.is-done .wf-step-node__circle {
	background: #1a4d47; border-color: #1a4d47; color: #fff;
}
.wf-step-node.is-done .wf-step-node__icon { display: none; }
.wf-step-node.is-done .wf-step-node__check { display: inline-flex; }
.wf-step-node__label {
	font-family: 'Cairo', sans-serif; font-size: 0.78rem; color: #9ca3af;
	font-weight: 600; text-align: center; line-height: 1.3;
}
.wf-step-node.is-active .wf-step-node__label { color: #ff8c42; font-weight: 700; }
.wf-step-node.is-done .wf-step-node__label { color: #1a4d47; font-weight: 700; }

/* Layout: main + aside (RTL: aside ends up on the left visually thanks to direction) */
.wf-booking2__layout {
	display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px;
	align-items: flex-start;
}
.wf-booking2__main {
	background: #fff; border-radius: 20px; border: 1px solid #e5e7eb;
	padding: 28px; min-width: 0;
}
.wf-booking2__aside { width: 100%; }
.wf-summary2 {
	background: #fff; border-radius: 20px; border: 1px solid #e5e7eb;
	padding: 24px; position: sticky; top: 90px;
	font-family: 'Cairo', sans-serif;
}

/* Steps */
.wf-step2 { display: none; animation: wfFade .35s ease both; }
.wf-step2.is-active { display: block; }
@keyframes wfFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.wf-step2__title {
	font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47;
	font-size: 1.25rem; margin: 0 0 24px; display: flex; align-items: center; gap: 8px;
	flex-direction: row;
}
.wf-step2__title-icon { color: #ff8c42; display: inline-flex; }

/* Service-type cards grid */
.wf-svc-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
	margin-bottom: 28px;
}
.wf-svc-card {
	appearance: none; background: #fff; cursor: pointer;
	border: 2px solid #e5e7eb; border-radius: 16px; padding: 20px 16px;
	display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
	transition: all 0.2s ease; font-family: 'Cairo', sans-serif;
}
.wf-svc-card:hover { border-color: rgba(255, 140, 66, 0.55); }
.wf-svc-card.is-active { border-color: #ff8c42; background: #fff8f3; box-shadow: 0 4px 14px rgba(255, 140, 66, 0.12); }
.wf-svc-card__icon { font-size: 1.85rem; line-height: 1; }
.wf-svc-card__title { font-weight: 700; color: #1a4d47; font-size: 1rem; }
.wf-svc-card__price { color: #ff8c42; font-weight: 700; font-size: 1.05rem; }
.wf-svc-card__min { color: #5a6c68; font-size: 0.82rem; }

/* Quantity row */
.wf-qty-row { margin-bottom: 28px; text-align: right; }
.wf-qty-row__label {
	font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47;
	display: block; margin-bottom: 8px;
}
.wf-qty2 {
	display: inline-flex; align-items: stretch; gap: 0;
	border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden;
}
.wf-qty2__btn {
	width: 42px; background: #f8f7f4; border: none; color: #1a4d47;
	font-size: 1.2rem; font-weight: 700; cursor: pointer;
	transition: background 0.15s;
}
.wf-qty2__btn:hover { background: #ecebe6; }
.wf-qty2__input {
	width: 80px; border: none; border-inline-start: 1px solid #e5e7eb; border-inline-end: 1px solid #e5e7eb;
	text-align: center; font-family: 'Cairo', sans-serif; font-weight: 700;
	font-size: 1rem; color: #1a4d47; padding: 10px 6px;
	background: #fff; appearance: textfield;
}
.wf-qty2__input::-webkit-outer-spin-button,
.wf-qty2__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Generic field */
.wf-field2 { margin-bottom: 18px; text-align: right; }
.wf-field2__label {
	font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47;
	display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
	flex-direction: row-reverse; justify-content: flex-end;
}
.wf-field2__label svg { color: #ff8c42; }
.wf-field2__hint { display: block; font-family: 'Cairo', sans-serif; color: #5a6c68; font-size: 0.85rem; margin-top: 6px; }

.wf-input2 {
	width: 100%; border: 1px solid #e5e7eb; border-radius: 10px;
	padding: 12px 14px; font-family: 'Cairo', sans-serif; color: #1a4d47;
	background: #fff; transition: border-color 0.15s, box-shadow 0.15s;
}
.wf-input2:focus { outline: none; border-color: #1a4d47; box-shadow: 0 0 0 3px rgba(26, 77, 71, 0.08); }
.wf-textarea2 { min-height: 120px; resize: vertical; }
.wf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Phone input with +966 prefix */
.wf-phone2 {
	display: flex; align-items: stretch; border: 1px solid #e5e7eb; border-radius: 10px;
	overflow: hidden; background: #fff; transition: border-color 0.15s, box-shadow 0.15s;
}
.wf-phone2:focus-within { border-color: #1a4d47; box-shadow: 0 0 0 3px rgba(26, 77, 71, 0.08); }
.wf-phone2__prefix {
	display: inline-flex; align-items: center; gap: 6px; padding: 0 14px;
	background: #f8f7f4; border-inline-end: 1px solid #e5e7eb; flex: none;
	font-family: 'Cairo', sans-serif; font-weight: 600; color: #1a4d47; font-size: 0.92rem;
}
.wf-phone2__input {
	flex: 1 1 auto; min-width: 0; border: none; padding: 12px 14px;
	background: transparent; font-family: 'Cairo', sans-serif; color: #1a4d47;
	text-align: left; outline: none;
}

/* Time slot grid */
.wf-slots2 {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
	gap: 10px; padding: 14px; background: #f8f7f4;
	border: 1px solid #e5e7eb; border-radius: 14px; min-height: 80px;
}
.wf-slots2__empty {
	grid-column: 1 / -1; margin: 0; color: #5a6c68; text-align: center;
	font-family: 'Cairo', sans-serif; padding: 14px 8px;
}
.wf-slots2__empty.is-error { color: #b91c1c; }
.wf-slot2 {
	appearance: none; border: 1px solid #e5e7eb; background: #fff;
	color: #1a4d47; font-family: 'Cairo', sans-serif; font-weight: 600;
	padding: 10px 6px; border-radius: 10px; cursor: pointer; direction: ltr;
	transition: all 0.15s ease; font-size: 0.92rem;
}
.wf-slot2:hover:not(:disabled) { border-color: #ff8c42; background: #fff8f3; }
.wf-slot2.is-selected {
	background: #ff8c42; color: #fff; border-color: #ff8c42;
	box-shadow: 0 4px 12px rgba(255, 140, 66, 0.25);
}
.wf-slot2:disabled, .wf-slot2.is-disabled { opacity: 0.5; cursor: not-allowed; background: #f3f4f6; color: #9ca3af; text-decoration: line-through; }
.wf-slot2.is-booked { background: #fee2e2; color: #b91c1c; border-color: #fecaca; text-decoration: line-through; }

/* Payment cards */
.wf-pay-grid {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
	margin-bottom: 18px;
}
.wf-pay-card {
	appearance: none; cursor: pointer; background: #fff;
	border: 2px solid #e5e7eb; border-radius: 16px; padding: 18px 12px;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-family: 'Cairo', sans-serif; transition: all 0.15s ease;
}
.wf-pay-card:hover { border-color: rgba(255, 140, 66, 0.55); }
.wf-pay-card.is-active { border-color: #ff8c42; background: #fff8f3; box-shadow: 0 4px 14px rgba(255, 140, 66, 0.12); }
.wf-pay-card__icon { font-size: 1.7rem; line-height: 1; }
.wf-pay-card__label { font-weight: 600; color: #1a4d47; font-size: 0.92rem; }

.wf-pay-panel { background: #f8f7f4; border-radius: 16px; padding: 20px; margin-bottom: 18px; }
.wf-pay-panel--credit { background: #f8f7f4; }
.wf-pay-panel--cash .wf-pay-cash {
	background: #e8f5e9; color: #1a4d47; border-radius: 10px;
	padding: 14px; text-align: center; font-family: 'Cairo', sans-serif; font-weight: 600;
}
.wf-pay-panel--bank { background: transparent; padding: 0; }

.wf-bank { border: 1px solid rgba(26, 77, 71, 0.12); border-radius: 16px; overflow: hidden; }
.wf-bank__head {
	background: #1a4d47; color: #fff; padding: 12px 18px;
	display: flex; align-items: center; gap: 8px; justify-content: flex-end;
	font-family: 'Cairo', sans-serif; font-weight: 700;
}
.wf-bank__body { background: #fff; }
.wf-bank__row {
	display: flex; justify-content: space-between; align-items: center;
	gap: 12px; padding: 14px 18px; border-bottom: 1px solid rgba(26, 77, 71, 0.08);
	font-family: 'Cairo', sans-serif; color: #1a4d47;
}
.wf-bank__row:last-child { border-bottom: 0; }
.wf-bank__row-label { font-weight: 700; font-size: 0.9rem; }
.wf-bank__row-val { font-size: 0.9rem; }
.wf-bank__note {
	background: #fff8f3; border-top: 1px solid rgba(255, 140, 66, 0.2);
	padding: 12px 18px; display: flex; gap: 8px; align-items: flex-start;
	justify-content: flex-end;
}
.wf-bank__note p { font-family: 'Cairo', sans-serif; color: #cc6a1e; font-size: 0.85rem; margin: 0; line-height: 1.5; text-align: right; flex: 1; }
.wf-bank__note-icon { color: #ff8c42; font-size: 1.05rem; flex: none; }

/* Security notice + terms */
.wf-secure {
	background: #f0f7f6; border-radius: 12px; padding: 14px 18px; margin-bottom: 18px;
	font-family: 'Cairo', sans-serif; text-align: right;
}
.wf-secure__title { font-weight: 700; color: #1a4d47; margin: 0 0 4px; font-size: 0.95rem; }
.wf-secure__desc { color: #5a6c68; margin: 0; font-size: 0.82rem; line-height: 1.5; }

.wf-terms2 { margin-bottom: 18px; }
.wf-check2 {
	display: flex; align-items: center; gap: 10px; flex-direction: row-reverse;
	font-family: 'Cairo', sans-serif; color: #1a4d47;
	cursor: pointer;
}
.wf-check2 input { width: 18px; height: 18px; accent-color: #ff8c42; }
.wf-check2 a { color: #1a4d47; text-decoration: underline; font-weight: 600; }

/* Step navigation buttons */
.wf-step2__nav { display: flex; gap: 14px; margin-top: 28px; }
.wf-step2__nav--single { display: block; }
.wf-step2__nav .wf-btn2 { flex: 1; }
.wf-btn2 {
	appearance: none; cursor: pointer; border: 2px solid transparent;
	border-radius: 10px; padding: 12px 18px; font-family: 'Cairo', sans-serif;
	font-weight: 700; font-size: 0.95rem; display: inline-flex;
	align-items: center; justify-content: center; gap: 8px;
	transition: all 0.15s ease; text-decoration: none; line-height: 1.2;
}
.wf-btn2--primary { background: #ff8c42; color: #fff; border-color: #ff8c42; }
.wf-btn2--primary:hover { background: #e67d3a; border-color: #e67d3a; }
.wf-btn2--ghost { background: #fff; color: #1a4d47; border-color: #e5e7eb; }
.wf-btn2--ghost:hover { background: #f8f7f4; }
.wf-btn2--dark { background: #1a4d47; color: #fff; border-color: #1a4d47; padding: 10px 20px; }
.wf-btn2--dark:hover { background: #153d38; }
.wf-btn2--block { width: 100%; }

.wf-booking2__back { margin-top: 28px; text-align: right; }

/* ─────────── Sidebar summary ─────────── */
.wf-summary2__title {
	font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47;
	font-size: 1.2rem; margin: 0 0 20px; text-align: right;
}
.wf-summary2__worker { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-direction: row-reverse; }
.wf-summary2__worker img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.wf-summary2__worker-info { text-align: right; flex: 1; min-width: 0; }
.wf-summary2__worker-name { margin: 0; font-weight: 700; color: #1a4d47; font-family: 'Cairo', sans-serif; }
.wf-summary2__worker-nat { font-family: 'Cairo', sans-serif; color: #5a6c68; font-size: 0.82rem; }
.wf-summary2__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; flex-direction: row-reverse; justify-content: flex-end; }
.wf-summary2__rating svg { color: #ff8c42; }
.wf-summary2__rating strong { font-family: 'Cairo', sans-serif; font-weight: 700; color: #1a4d47; font-size: 0.92rem; }
.wf-summary2__rating span { font-family: 'Cairo', sans-serif; color: #5a6c68; font-size: 0.85rem; }

.wf-summary2__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; justify-content: flex-end; }
.wf-summary2__chip {
	background: #f0f7f6; color: #1a4d47; padding: 4px 10px;
	border-radius: 999px; font-family: 'Cairo', sans-serif; font-size: 0.75rem;
}

.wf-summary2__rows { border-top: 1px solid #f3f4f6; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.wf-summary2__row { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-family: 'Cairo', sans-serif; }
.wf-summary2__row span { color: #5a6c68; font-size: 0.9rem; }
.wf-summary2__row strong { color: #1a4d47; font-weight: 700; font-size: 0.9rem; text-align: left; }

.wf-summary2__prices { border-top: 1px solid #f3f4f6; margin-top: 16px; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.wf-summary2__total {
	display: flex; justify-content: space-between; align-items: center; gap: 8px;
	background: #f0f7f6; border-radius: 10px; padding: 12px 14px; margin-top: 6px;
	font-family: 'Cairo', sans-serif;
}
.wf-summary2__total span { color: #1a4d47; font-weight: 700; font-size: 0.95rem; }
.wf-summary2__total strong { color: #ff8c42; font-weight: 800; font-size: 1.2rem; }

.wf-summary2__guarantees { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.wf-summary2__guarantees li { display: flex; align-items: center; gap: 8px; font-family: 'Cairo', sans-serif; color: #5a6c68; font-size: 0.85rem; flex-direction: row-reverse; justify-content: flex-end; }
.wf-summary2__tick { color: #ff8c42; font-weight: 700; }

/* Field error state */
.wf-field2.wf-field--error .wf-input2,
.wf-field2.wf-field--error .wf-phone2,
.wf-field2.wf-field--error .wf-slots2 {
	border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
	.wf-booking2__layout { grid-template-columns: 1fr; }
	.wf-summary2 { position: static; top: auto; }
}
@media (max-width: 640px) {
	.wf-booking2__main { padding: 18px; }
	.wf-stepper2::before { left: 14%; right: 14%; top: 22px; }
	.wf-step-node__circle { width: 44px; height: 44px; }
	.wf-step-node__label { font-size: 0.7rem; }
	.wf-svc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.wf-svc-card { padding: 16px 12px; }
	.wf-svc-card__icon { font-size: 1.55rem; }
	.wf-pay-grid { grid-template-columns: 1fr; }
	.wf-grid-2 { grid-template-columns: 1fr; }
	.wf-step2__nav { flex-direction: column-reverse; }
	.wf-step2__nav .wf-btn2 { width: 100%; }
}

/* ==========================================================================
   Inline OTP panel inside booking wizard step 2 (guest flow)
   ========================================================================== */
.wf-otp-panel {
	background: #fff8f3;
	border: 1px solid #ffd9bf;
	border-radius: 16px;
	padding: 22px 20px;
	margin-top: 6px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.wf-otp-panel .wf-otp-head { gap: 4px; }
.wf-otp-panel .wf-otp-head__icon {
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #1a4d47;
	color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 6px;
}
.wf-otp-panel .wf-otp-head__phone { color: #1a4d47; }
.wf-otp-panel .wf-otp-box { justify-content: center; }
.wf-otp-panel .wf-otp-resend { text-align: center; }
.wf-otp-panel .wf-link {
	background: none; border: none; color: #ff8c42; cursor: pointer; font-weight: 700;
	font-family: inherit; padding: 4px 8px;
}
.wf-otp-panel .wf-link:hover { text-decoration: underline; }

/* ==========================================================================
   Booking confirmation / Thank-you page (matches ConfirmationPage.tsx)
   ========================================================================== */
.wf-confirm { background: #f8f7f4; min-height: 60vh; padding-bottom: 60px; font-family: 'Cairo', sans-serif; direction: rtl; }

/* Success header */
.wf-confirm__header {
	background: linear-gradient(180deg, #e8f5e9 0%, #f0f7f6 55%, #f8f7f4 100%);
	padding: 56px 20px 42px;
	text-align: center;
}
.wf-confirm__badge {
	width: 80px; height: 80px; border-radius: 50%;
	background: #1a4d47; color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	margin: 0 auto 20px; box-shadow: 0 14px 30px -14px rgba(26, 77, 71, .55);
}
.wf-confirm__title { font-family: 'Cairo', sans-serif; font-weight: 800; color: #1a4d47; font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin: 0 0 6px; }
.wf-confirm__sub { color: #5a6c68; margin: 0; font-size: 1rem; }

/* Booking number card */
.wf-confirm__number { max-width: 420px; margin: -22px auto 32px; padding: 0 16px; }
.wf-confirm__number-card {
	background: #fff; border: 1px solid #eef0ec;
	border-radius: 16px; padding: 22px 20px;
	text-align: center; box-shadow: 0 12px 28px -22px rgba(15, 23, 42, .25);
}
.wf-confirm__number-label { color: #5a6c68; font-size: .9rem; margin: 0 0 4px; }
.wf-confirm__number-value { color: #1a4d47; font-weight: 800; font-size: 1.9rem; letter-spacing: 2px; margin: 0; direction: ltr; unicode-bidi: isolate; }

.wf-confirm__container { max-width: 1040px; margin: 0 auto; padding: 0 16px; }

/* Generic card */
.wf-confirm__card { background: #fff; border: 1px solid #eef0ec; border-radius: 20px; padding: 22px 22px 20px; margin: 0 0 24px; }
.wf-confirm__card-title {
	display: flex; flex-direction: row-reverse; align-items: center; justify-content: flex-end;
	gap: 8px; margin: 0 0 16px; color: #1a4d47; font-weight: 800; font-size: 1.05rem;
}
.wf-confirm__card-title svg { color: #ff8c42; }
.wf-confirm__card-title--plain { justify-content: flex-start; }
.wf-confirm__card-title--plain svg { display: none; }

/* Two-column grid */
.wf-confirm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 8px; }

/* Worker info */
.wf-confirm__worker { display: flex; align-items: center; gap: 14px; }
.wf-confirm__worker img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #f3efe8; }
.wf-confirm__worker-body { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.wf-confirm__worker-name { margin: 0; color: #1a4d47; font-weight: 800; font-size: 1.05rem; }
.wf-confirm__worker-name a { color: inherit; text-decoration: none; }
.wf-confirm__worker-name a:hover { text-decoration: underline; }
.wf-confirm__worker-nat { color: #5a6c68; font-size: .88rem; }
.wf-confirm__worker-rating { display: flex; align-items: center; gap: 4px; justify-content: flex-end; color: #1a4d47; font-size: .85rem; }
.wf-confirm__worker-rating svg { color: #ff8c42; }
.wf-confirm__worker-rating strong { font-weight: 700; }
.wf-confirm__badge-available {
	align-self: flex-end; background: #e8f5e9; color: #1a4d47;
	padding: 3px 12px; border-radius: 999px; font-size: .75rem; font-weight: 600; margin-top: 4px;
}

/* Payment summary */
.wf-confirm__pay { display: flex; flex-direction: column; gap: 10px; }
.wf-confirm__pay-row { display: flex; justify-content: space-between; align-items: center; }
.wf-confirm__pay-label { color: #5a6c68; font-size: .95rem; }
.wf-confirm__pay-val { color: #1a4d47; font-weight: 600; }
.wf-confirm__pay-total {
	display: flex; justify-content: space-between; align-items: center;
	background: #f0f7f6; border-radius: 10px; padding: 12px 14px; margin-top: 4px;
}
.wf-confirm__pay-total span { color: #1a4d47; font-weight: 700; }
.wf-confirm__pay-total strong { color: #1a4d47; font-weight: 800; font-size: 1.1rem; }
.wf-confirm__pay-status {
	border-radius: 10px; padding: 12px; text-align: center; font-weight: 700;
	display: flex; align-items: center; justify-content: center; gap: 6px;
}
.wf-confirm__pay-status.is-success { background: #e8f5e9; color: #1a4d47; }
.wf-confirm__pay-status.is-pending { background: #fff7e6; color: #b15a10; }
.wf-confirm__pay-guarantee {
	background: #fff8f3; color: #ff8c42;
	border-radius: 10px; padding: 12px; text-align: center; font-size: .9rem;
}

/* Booking details card */
.wf-confirm__details-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.wf-confirm__detail {
	background: #faf9f6; border: 1px solid #eef0ec; border-radius: 12px;
	padding: 14px; display: flex; flex-direction: column; gap: 6px; text-align: right;
}
.wf-confirm__detail--wide { grid-column: 1 / -1; }
.wf-confirm__detail-label { display: flex; align-items: center; gap: 6px; color: #5a6c68; font-size: .82rem; justify-content: flex-end; flex-direction: row-reverse; }
.wf-confirm__detail-label svg { color: #ff8c42; }
.wf-confirm__detail-val { color: #1a4d47; font-weight: 700; }

/* Action buttons */
.wf-confirm__actions {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 24px;
}
.wf-confirm__btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 18px; border-radius: 12px; font-weight: 700; font-size: .95rem;
	text-decoration: none; transition: background-color .2s, color .2s, border-color .2s;
	font-family: 'Cairo', sans-serif;
}
.wf-confirm__btn--dark { background: #1a4d47; color: #fff; border: 2px solid #1a4d47; }
.wf-confirm__btn--dark:hover { background: #123833; border-color: #123833; }
.wf-confirm__btn--ghost { background: #fff; color: #1a4d47; border: 2px solid #e6e6e6; }
.wf-confirm__btn--ghost:hover { background: #f6f6f4; }
.wf-confirm__btn--accent { background: #fff; color: #ff8c42; border: 2px solid #ff8c42; }
.wf-confirm__btn--accent:hover { background: #fff8f3; }

/* Next steps */
.wf-confirm__steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wf-confirm__step { text-align: center; }
.wf-confirm__step-icon { font-size: 1.85rem; display: inline-block; margin-bottom: 10px; }
.wf-confirm__step-title { margin: 0 0 4px; color: #1a4d47; font-weight: 700; font-size: 1rem; }
.wf-confirm__step-desc { margin: 0; color: #5a6c68; font-size: .88rem; line-height: 1.5; }

/* Help card */
.wf-confirm__help { text-align: center; }
.wf-confirm__help-title { color: #5a6c68; margin: 0 0 10px; }
.wf-confirm__help-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.wf-confirm__help-link {
	display: inline-flex; align-items: center; gap: 8px;
	color: #1a4d47; text-decoration: none; font-weight: 600;
}
.wf-confirm__help-link svg { color: #ff8c42; }
.wf-confirm__help-link:hover { color: #ff8c42; }

/* Responsive */
@media (max-width: 820px) {
	.wf-confirm__grid { grid-template-columns: 1fr; gap: 18px; }
	.wf-confirm__actions { grid-template-columns: 1fr; }
	.wf-confirm__details-grid { grid-template-columns: 1fr 1fr; }
	.wf-confirm__steps-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 480px) {
	.wf-confirm__header { padding: 42px 16px 32px; }
	.wf-confirm__badge { width: 68px; height: 68px; }
	.wf-confirm__badge svg { width: 36px; height: 36px; }
	.wf-confirm__number-value { font-size: 1.55rem; }
	.wf-confirm__details-grid { grid-template-columns: 1fr; }
	.wf-confirm__worker img { width: 60px; height: 60px; }
}

/* Hide WooCommerce default order details table on confirmation
   (we render our own custom summary). */
.wf-order-received .woocommerce-order-details,
.wf-order-received .woocommerce-customer-details,
.wf-order-received .woocommerce-order-overview { display: none !important; }

/* High-contrast focus for accessibility */
:focus-visible {
	outline: 2px solid var(--wf-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   My Account — mobile responsive refinements
   ───────────────────────────────────────────────────────────── */

.wf-account__content,
.wf-account__content > section,
.wf-account__content > .woocommerce-MyAccount-content > *,
.wf-account__content .wf-orders,
.wf-account__content .wf-profile-form,
.wf-account__content .wf-address-form,
.wf-account__content .wf-addresses,
.wf-addresses__panel,
.wf-orders__list,
.wf-addresses__grid,
.wf-form-grid,
.wf-profile-form,
.wf-address-form,
.wf-order-card,
.wf-address-card,
.wf-account-nav,
.wf-account-nav__menu {
	min-width: 0;
	max-width: 100%;
}

.wf-form-grid > *,
.wf-profile-form .wf-form-row,
.wf-address-form .wf-form-row { min-width: 0; }

.wf-account__content .wf-input,
.wf-account__content input[type="text"],
.wf-account__content input[type="email"],
.wf-account__content input[type="tel"],
.wf-account__content input[type="password"],
.wf-account__content input[type="number"],
.wf-account__content select,
.wf-account__content textarea {
	max-width: 100%;
}

@media (max-width: 992px) {
	.wf-account__layout { gap: 18px; }
	.wf-account__content > section,
	.wf-account__content > .woocommerce-MyAccount-content > *,
	.wf-account__content .wf-orders,
	.wf-account__content .wf-profile-form,
	.wf-account__content .wf-address-form { padding: 20px; }
}

@media (max-width: 768px) {
	.wf-account__layout { gap: 14px; }
	.wf-account__content > section,
	.wf-account__content > .woocommerce-MyAccount-content > *,
	.wf-account__content .wf-orders,
	.wf-account__content .wf-profile-form,
	.wf-account__content .wf-address-form { padding: 16px; border-radius: 14px; }
	.wf-form-grid,
	.wf-form-grid--cols-2,
	.wf-form-grid--cols-3 { grid-template-columns: 1fr; }

	/* Bookings / orders list */
	.wf-orders__list { grid-template-columns: 1fr; gap: 12px; }
	.wf-order-card { padding: 14px; }
	.wf-order-card__head { flex-direction: column; align-items: flex-start; gap: 8px; }
	.wf-order-card__head > div { width: 100%; }
	.wf-order-status { align-self: flex-start; }
	.wf-order-card__meta { grid-template-columns: 1fr; gap: 8px; }
	.wf-order-card__meta .wf-order-meta { white-space: normal; word-break: break-word; }
	.wf-order-card__footer { flex-direction: column; align-items: flex-start; gap: 8px; }
	.wf-order-card__actions { width: 100%; flex-wrap: wrap; }
	.wf-order-card__actions .wf-btn { flex: 1 1 auto; min-width: 0; }

	/* Fix WooCommerce tables in My Account on mobile */
	.wf-account__content table.shop_table {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.wf-account__content table.shop_table th,
	.wf-account__content table.shop_table td {
		white-space: nowrap;
	}

	/* Profile actions */
	.wf-profile-form__actions { gap: 8px; }
	.wf-profile-form__actions .wf-btn { flex: 1 1 auto; min-width: 0; }

	/* Addresses */
	.wf-addresses__grid { grid-template-columns: 1fr; gap: 14px; }
	.wf-address-card { padding: 14px; }
	.wf-address-card__actions { gap: 6px; }
	.wf-address-card__actions .wf-addr-btn,
	.wf-address-card__actions .wf-addr-btn--default { flex: 1 1 auto; min-width: 0; padding: 0 10px; font-size: 0.82rem; }

	/* Account nav horizontal scroller */
	.wf-account-nav__menu { padding: 4px; }
	.wf-account-nav__menu a { font-size: 0.88rem; padding: 12px 14px; }

	/* Modal on tiny screens */
	.wf-modal { padding: 12px; }
	.wf-modal__dialog { max-height: calc(100vh - 24px); border-radius: 14px; }
	.wf-modal__head,
	.wf-modal__body,
	.wf-modal__footer { padding-inline: 16px; }
}

@media (max-width: 480px) {
	.wf-account__content > section,
	.wf-account__content > .woocommerce-MyAccount-content > *,
	.wf-account__content .wf-orders,
	.wf-account__content .wf-profile-form,
	.wf-account__content .wf-address-form { padding: 14px; }

	.wf-profile-section { padding-top: 14px; }
	.wf-profile-section__head { flex-wrap: wrap; }
	.wf-profile-section__head h2 { font-size: 1rem; }

	.wf-orders__head h2 { font-size: 1.05rem; }
	.wf-orders__icon { width: 36px; height: 36px; border-radius: 10px; }

	.wf-order-card__head { flex-direction: column; align-items: flex-start; }
	.wf-order-card__head > div { width: 100%; }
	.wf-order-status { align-self: flex-start; }

	.wf-order-card__footer { flex-direction: column; align-items: stretch; }
	.wf-order-card__actions { flex-wrap: wrap; }

	.wf-addresses__head { gap: 8px; }
	.wf-address-card__head { flex-wrap: wrap; gap: 8px; }
	.wf-address-card__title h3 { font-size: 1rem; }
	.wf-address-card__actions { flex-direction: column; }
	.wf-address-card__actions .wf-addr-btn,
	.wf-address-card__actions .wf-addr-btn--default { width: 100%; flex: 0 0 auto; }

	.wf-modal__dialog { max-width: 100%; }

	/* Prevent icon inputs from overflowing */
	.wf-input-icon .wf-input { padding-inline-start: 40px; }
	.wf-input-icon__svg { inset-inline-start: 12px; }
}
