/**
 * Front styles — scoped exclusively to #hh-pro.
 * Does not target body/html/theme classes. Theme styles outside this wrapper are untouched.
 * Plugin UI uses #hh-pro … specificity so theme rules do not restyle plugin controls.
 */
#hh-pro {
	--hh-bg: #f4f4f5;
	--hh-card: #ffffff;
	--hh-ink: #111111;
	--hh-muted: #6b7280;
	--hh-line: #e5e7eb;
	--hh-orange: #d97706;
	--hh-orange-soft: #fff7ed;
	--hh-green: #166534;
	--hh-green-bg: #dcfce7;
	--hh-danger: #991b1b;
	--hh-danger-bg: #fee2e2;
	--hh-radius: 12px;
	--hh-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
	--hh-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	box-sizing: border-box;
	color: var(--hh-ink);
	font-family: var(--hh-font);
	line-height: 1.5;
	background: transparent;
}

/* Full marketplace views get their own page chrome (not applied to embeddable search). */
#hh-pro:not(.hh-view-search) {
	max-width: 1120px;
	margin: 0 auto;
	padding: 24px 16px 64px;
}

/* Search shortcode: no page shell — sits cleanly in the theme layout. */
#hh-pro.hh-view-search {
	max-width: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

/* Theme page title above the search bar (e.g. “Find a Stylist”). */
body.hh-hide-page-title .entry-header,
body.hh-hide-page-title .ast-archive-description,
body.hh-hide-page-title h1.entry-title,
body.hh-hide-page-title .page-header {
	display: none !important;
}

#hh-pro *,
#hh-pro *::before,
#hh-pro *::after {
	box-sizing: border-box;
}

#hh-pro img {
	max-width: 100%;
	height: auto;
	display: block;
}

#hh-pro a {
	color: inherit;
	text-decoration: none;
}

#hh-pro h1,
#hh-pro h2,
#hh-pro h3,
#hh-pro p {
	margin: 0 0 0.5rem;
}

#hh-pro .hh-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

#hh-pro .hh-sub {
	color: var(--hh-muted);
	font-size: 0.975rem;
}

#hh-pro .hh-eyebrow {
	color: var(--hh-orange);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

#hh-pro .hh-btn {
	appearance: none;
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font: inherit;
	font-weight: 700;
	padding: 0.8rem 1.15rem;
	text-align: center;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

#hh-pro .hh-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

#hh-pro .hh-btn--primary {
	background: var(--hh-ink);
	color: #fff;
}

#hh-pro .hh-btn--primary:hover:not(:disabled) {
	background: #000;
}

#hh-pro .hh-btn--secondary {
	background: #fff;
	border-color: var(--hh-ink);
	color: var(--hh-ink);
}

#hh-pro .hh-btn--ghost {
	background: transparent;
	border-color: var(--hh-line);
	color: var(--hh-ink);
}

#hh-pro .hh-btn--danger {
	background: var(--hh-danger-bg);
	color: var(--hh-danger);
}

#hh-pro .hh-btn--block {
	width: 100%;
}

#hh-pro .hh-input {
	width: 100%;
	border: 1px solid var(--hh-line);
	border-radius: 10px;
	padding: 0.85rem 1rem;
	font: inherit;
	background: #fff;
	color: var(--hh-ink);
}

#hh-pro .hh-input--btn {
	text-align: left;
	cursor: pointer;
}

#hh-pro .hh-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

#hh-pro .hh-field > span {
	font-weight: 600;
}

#hh-pro .hh-card {
	background: var(--hh-card);
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 1.25rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-notice {
	padding: 0.9rem 1rem;
	border-radius: 10px;
	margin-bottom: 1rem;
	font-weight: 600;
}

#hh-pro .hh-notice--success {
	background: var(--hh-green-bg);
	color: var(--hh-green);
}

#hh-pro .hh-notice--error {
	background: var(--hh-danger-bg);
	color: var(--hh-danger);
}

#hh-pro .hh-badge,
#hh-pro .hh-tag,
#hh-pro .hh-pill,
#hh-pro .hh-status {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
}

#hh-pro .hh-badge--verified {
	background: var(--hh-green-bg);
	color: var(--hh-green);
	margin-left: 0.4rem;
}

#hh-pro .hh-badge--featured {
	background: #111;
	color: #fff;
	margin-left: 0.4rem;
}

#hh-pro .hh-membership .hh-plan-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
}

#hh-pro .hh-plan-card {
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 1.1rem 1.15rem;
	display: grid;
	gap: 0.75rem;
	background: #fff;
}

#hh-pro .hh-plan-card.is-current {
	border-color: #111;
}

#hh-pro .hh-plan-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

#hh-pro .hh-plan-card h3 {
	margin: 0;
	font-size: 1.15rem;
}

#hh-pro .hh-plan-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

#hh-pro .hh-plan-card__list li {
	display: grid;
	grid-template-columns: 1.1rem 1fr auto;
	align-items: start;
	gap: 0.45rem 0.55rem;
	font-size: 0.9rem;
}

#hh-pro .hh-plan-card__list li.is-excluded {
	opacity: 0.55;
}

#hh-pro .hh-plan-card__tick {
	color: var(--hh-ink, #111);
	font-weight: 700;
	line-height: 1.35;
}

#hh-pro .hh-plan-card__list li.is-excluded .hh-plan-card__tick {
	color: var(--hh-muted, #666);
	font-weight: 500;
}

#hh-pro .hh-plan-card__list li span:not(.hh-plan-card__tick) {
	color: var(--hh-muted, #666);
}

#hh-pro .hh-plan-card footer {
	margin-top: 0.25rem;
}

#hh-pro .hh-tag {
	background: #fef3c7;
	color: #92400e;
	font-style: normal;
}

#hh-pro .hh-pill {
	background: #f3f4f6;
	color: var(--hh-ink);
	padding: 0.45rem 0.75rem;
	font-size: 0.82rem;
}

#hh-pro .hh-pill-stack {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 1rem 0;
}

#hh-pro .hh-callout {
	background: var(--hh-orange-soft);
	border-radius: 10px;
	padding: 0.85rem 1rem;
	font-size: 0.9rem;
	margin: 1rem 0;
}

#hh-pro .hh-callout--success {
	background: var(--hh-green-bg);
	color: var(--hh-green);
}

#hh-pro .hh-callout--soft {
	background: #fff7ed;
}

#hh-pro .hh-text-success {
	color: var(--hh-green);
}

#hh-pro .hh-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

#hh-pro .hh-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

#hh-pro .hh-search--panel {
	width: 100%;
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 16px;
	padding: 1rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-search-bar {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 0.75rem;
	align-items: stretch;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

#hh-pro .hh-search-bar__submit {
	min-width: 8.5rem;
	align-self: stretch;
}

#hh-pro .hh-search-field {
	appearance: none;
	border: 1px solid var(--hh-line);
	background: #fafafa;
	border-radius: 12px;
	padding: 0.85rem 1rem;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: var(--hh-ink);
}

#hh-pro .hh-search-field__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--hh-orange);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

#hh-pro .hh-search-field__value {
	display: block;
	font-weight: 700;
	margin-top: 0.15rem;
	color: var(--hh-ink);
}

#hh-pro .hh-results__header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

#hh-pro .hh-segmented {
	display: inline-flex;
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 999px;
	overflow: hidden;
}

#hh-pro .hh-segmented__item {
	padding: 0.65rem 0.9rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--hh-muted);
}

#hh-pro .hh-segmented__item.is-active {
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
	box-shadow: inset 0 0 0 1px #fdba74;
}

#hh-pro .hh-results__layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 1.25rem;
	align-items: start;
}

#hh-pro .hh-filters {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 1.1rem;
	position: sticky;
	top: 1rem;
}

#hh-pro .hh-filters__mobile {
	display: none;
}

#hh-pro .hh-provider-card {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1.1rem;
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 1.1rem;
	margin-bottom: 1rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-provider-card__photo {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
	background: #eee;
}

#hh-pro .hh-provider-card__top {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

#hh-pro .hh-provider-card__name {
	font-size: 1.25rem;
	font-weight: 800;
}

#hh-pro .hh-provider-card__title {
	color: var(--hh-orange);
	font-weight: 700;
}

#hh-pro .hh-provider-card__meta,
#hh-pro .hh-provider-card__rating,
#hh-pro .hh-provider-card__bio {
	color: var(--hh-muted);
	font-size: 0.92rem;
}

#hh-pro .hh-price-box {
	min-width: 120px;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.75rem;
	text-align: center;
	background: #fafafa;
}

#hh-pro .hh-price-box span,
#hh-pro .hh-price-box small {
	display: block;
	font-size: 0.7rem;
	color: var(--hh-muted);
}

#hh-pro .hh-price-box strong {
	font-size: 1.4rem;
}

#hh-pro .hh-type-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
}

#hh-pro .hh-type-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	border: 1px solid #fdba74;
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
}

#hh-pro .hh-provider-card__actions {
	display: flex;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

#hh-pro .hh-profile {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 1.5rem;
	align-items: start;
}

#hh-pro .hh-profile__aside {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 1.25rem;
	position: sticky;
	top: 1rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-profile__photo {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 14px;
	background: #eee;
}

#hh-pro .hh-profile__photo-wrap {
	position: relative;
	margin-bottom: 1rem;
}

#hh-pro .hh-verified-dot {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #22c55e;
	border: 3px solid #fff;
}

#hh-pro .hh-profile__name {
	font-size: 1.4rem;
	font-weight: 800;
}

#hh-pro .hh-profile__title {
	color: var(--hh-orange);
	font-weight: 700;
}

#hh-pro .hh-profile__loc,
#hh-pro .hh-profile__contact,
#hh-pro .hh-trust {
	color: var(--hh-muted);
	font-size: 0.9rem;
}

#hh-pro .hh-tabs {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.4rem;
}

#hh-pro .hh-tabs__item {
	padding: 0.7rem 0.9rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--hh-muted);
}

#hh-pro .hh-tabs__item.is-active {
	background: var(--hh-ink);
	color: #fff;
}

#hh-pro .hh-banner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1rem;
}

#hh-pro .hh-service-types {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

#hh-pro .hh-accordion {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	margin: 0;
	overflow: hidden;
}

#hh-pro .hh-accordion > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	cursor: pointer;
	padding: 1rem 1.1rem;
	font-weight: 800;
	list-style: none;
	color: var(--hh-ink);
	background: #fafafa;
	user-select: none;
}

#hh-pro .hh-accordion > summary::-webkit-details-marker {
	display: none;
}

#hh-pro .hh-accordion > summary::after {
	content: '';
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--hh-ink);
	border-bottom: 2px solid var(--hh-ink);
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	flex-shrink: 0;
	margin-left: 0.25rem;
	opacity: 0.7;
}

#hh-pro .hh-accordion[open] > summary {
	background: var(--hh-orange-soft);
	border-bottom: 1px solid #fed7aa;
}

#hh-pro .hh-accordion[open] > summary::after {
	transform: rotate(-135deg);
	margin-top: 0.25rem;
}

#hh-pro .hh-service-type__name {
	flex: 1;
	min-width: 0;
}

#hh-pro .hh-service-type__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.6rem;
	height: 1.6rem;
	padding: 0 0.45rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--hh-line);
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hh-ink);
}

#hh-pro .hh-accordion__body {
	padding: 0 1.1rem 1rem;
}

#hh-pro .hh-service-item {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid var(--hh-line);
}

#hh-pro .hh-service-item__side {
	text-align: right;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.35rem;
}

#hh-pro .hh-service-item__prices {
	display: grid;
	gap: 0.2rem;
	justify-items: end;
}

#hh-pro .hh-service-item__prices small {
	display: block;
	font-weight: 500;
	opacity: 0.75;
}

#hh-pro .hh-book-service__dual {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.2rem;
}

#hh-pro .hh-service-form__pricing {
	display: grid;
	gap: 0.4rem;
}

#hh-pro .hh-service-form__toggle {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 600;
}

#hh-pro .hh-service-menu__prices {
	display: grid;
	gap: 0.15rem;
	justify-items: end;
}

#hh-pro .hh-service-item__meta {
	color: var(--hh-muted);
	font-size: 0.85rem;
}

#hh-pro .hh-reviews__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.15rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid #fed7aa;
	border-radius: 16px;
	background: linear-gradient(135deg, #fff7ed 0%, #ffffff 70%);
}

#hh-pro .hh-reviews__score {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

#hh-pro .hh-reviews__score > strong {
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--hh-ink);
}

#hh-pro .hh-reviews__score > span {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hh-muted);
}

#hh-pro .hh-reviews__summary-note {
	margin: 0;
	font-size: 0.85rem;
	color: var(--hh-muted);
}

#hh-pro .hh-stars {
	display: inline-flex;
	gap: 0.1rem;
	line-height: 1;
}

#hh-pro .hh-stars__star {
	color: #d1d5db;
	font-size: 1.05rem;
}

#hh-pro .hh-stars__star.is-on,
#hh-pro .hh-stars__star.is-half {
	color: #d97706;
}

#hh-pro .hh-stars--sm .hh-stars__star {
	font-size: 0.95rem;
}

#hh-pro .hh-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

#hh-pro .hh-review-card {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 16px;
	padding: 1.2rem 1.25rem;
	box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

#hh-pro .hh-review-card__head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 0.85rem;
}

#hh-pro .hh-review-card__avatar {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hh-orange-soft);
	border: 1px solid #fdba74;
	color: #9a3412;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

#hh-pro .hh-review-card__who {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

#hh-pro .hh-review-card__name {
	font-size: 0.98rem;
	font-weight: 800;
	color: var(--hh-ink);
}

#hh-pro .hh-review-card__date {
	font-size: 0.8rem;
	color: var(--hh-muted);
	font-weight: 500;
}

#hh-pro .hh-review-card__title {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	font-weight: 800;
	color: var(--hh-ink);
}

#hh-pro .hh-review-card__body {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #374151;
}

#hh-pro .hh-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.75rem;
}

#hh-pro .hh-gallery img {
	border-radius: 12px;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

/* Popups & modal — above theme chrome (header, sticky bars, etc.) */
body.hh-overlay-open #hh-pro {
	position: relative;
	z-index: 2147483647;
}

#hh-pro .hh-popup,
#hh-pro .hh-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

#hh-pro .hh-popup[hidden],
#hh-pro .hh-modal[hidden] {
	display: none !important;
}

#hh-pro .hh-popup__backdrop,
#hh-pro .hh-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.45);
	backdrop-filter: blur(2px);
}

#hh-pro .hh-popup__panel,
#hh-pro .hh-modal__panel {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 18px;
	width: min(560px, 100%);
	max-height: min(90vh, 820px);
	overflow: auto;
	padding: 1.25rem 1.25rem 1rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

#hh-pro .hh-modal__panel {
	width: min(640px, 100%);
}

#hh-pro .hh-popup__close {
	position: absolute;
	top: 0.75rem;
	right: 0.85rem;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}

#hh-pro .hh-popup__title {
	font-size: 1.25rem;
	font-weight: 800;
	padding-right: 2rem;
}

#hh-pro .hh-popup__sub,
#hh-pro .hh-popup__hint {
	color: var(--hh-muted);
	font-size: 0.9rem;
	margin-bottom: 0.85rem;
}

#hh-pro .hh-popup__actions,
#hh-pro .hh-modal__nav {
	display: flex;
	gap: 0.65rem;
	justify-content: flex-end;
	margin-top: 1rem;
}

#hh-pro .hh-radio-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: 360px;
	overflow: auto;
}

#hh-pro .hh-radio-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.9rem 1rem;
	cursor: pointer;
}

#hh-pro .hh-radio-row:has(input:checked) {
	border-color: var(--hh-orange);
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
}

#hh-pro .hh-radio-row:has(input:checked) strong,
#hh-pro .hh-radio-row:has(input:checked) small {
	color: var(--hh-ink);
}

#hh-pro .hh-stepper {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	padding: 0.75rem 0 1rem;
	margin: 0;
	border-bottom: 1px solid var(--hh-line);
}

#hh-pro .hh-stepper li {
	flex: 1;
	color: var(--hh-muted);
	font-size: 0.82rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

#hh-pro .hh-stepper li span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e5e7eb;
	color: #374151;
	font-size: 0.75rem;
}

#hh-pro .hh-stepper li.is-active,
#hh-pro .hh-stepper li.is-done {
	color: var(--hh-orange);
}

#hh-pro .hh-stepper li.is-active span,
#hh-pro .hh-stepper li.is-done span {
	background: var(--hh-orange);
	color: #fff;
}

#hh-pro .hh-book-service {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: center;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.9rem;
	margin-bottom: 0.55rem;
	cursor: pointer;
}

#hh-pro .hh-book-service:has(input:checked) {
	background: #fffbeb;
	border-color: var(--hh-ink);
}

#hh-pro .hh-book-service small {
	display: block;
	color: var(--hh-muted);
}

#hh-pro .hh-date-grid {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0.75rem 0 1rem;
	max-height: 280px;
	overflow: auto;
	padding-right: 0.15rem;
}

#hh-pro .hh-date-month {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hh-muted);
	margin: 0.35rem 0 0.15rem;
	position: sticky;
	top: 0;
	background: #fff;
	padding: 0.25rem 0;
	z-index: 1;
}

#hh-pro .hh-date-month__grid,
#hh-pro .hh-time-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}

#hh-pro .hh-time-grid {
	margin: 0.75rem 0 1rem;
}

#hh-pro .hh-date-card,
#hh-pro .hh-time-chip {
	appearance: none;
	border: 1px solid var(--hh-line);
	background: #fafafa;
	color: var(--hh-ink);
	border-radius: 10px;
	padding: 0.7rem 0.4rem;
	font: inherit;
	cursor: pointer;
	line-height: 1.25;
}

#hh-pro .hh-date-card strong,
#hh-pro .hh-date-card small,
#hh-pro .hh-time-chip {
	color: inherit;
}

#hh-pro .hh-date-card small {
	display: block;
	margin-top: 0.2rem;
	font-weight: 600;
	opacity: 0.75;
}

#hh-pro .hh-date-card:hover:not(:disabled):not(.is-unavailable),
#hh-pro .hh-time-chip:hover {
	border-color: #fdba74;
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
}

#hh-pro .hh-date-card.is-selected {
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
	border-color: var(--hh-orange);
	box-shadow: inset 0 0 0 1px #fdba74;
}

#hh-pro .hh-date-card.is-selected strong,
#hh-pro .hh-date-card.is-selected small {
	color: var(--hh-ink);
}

#hh-pro .hh-date-card.is-unavailable,
#hh-pro .hh-date-card:disabled {
	background: #f3f4f6;
	border-color: #e5e7eb;
	color: #9ca3af;
	cursor: not-allowed;
	opacity: 1;
	box-shadow: none;
}

#hh-pro .hh-date-card.is-unavailable strong,
#hh-pro .hh-date-card.is-unavailable small,
#hh-pro .hh-date-card:disabled strong,
#hh-pro .hh-date-card:disabled small {
	color: #9ca3af;
}

#hh-pro .hh-date-card.is-unavailable small {
	color: #b91c1c;
	opacity: 1;
	font-weight: 700;
}

#hh-pro .hh-slots-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: #f3f4f6;
	border: 1px solid var(--hh-line);
	color: var(--hh-muted);
	font-size: 0.9rem;
	font-weight: 600;
}

#hh-pro .hh-time-chip.is-selected {
	background: #dcfce7;
	color: #14532d;
	border-color: #86efac;
	font-weight: 700;
}

#hh-pro .hh-loc-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin: 0.75rem 0 1rem;
}

#hh-pro .hh-loc-card {
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.9rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

#hh-pro .hh-loc-card.is-selected,
#hh-pro .hh-loc-card:has(input:checked) {
	border-color: var(--hh-orange);
	background: var(--hh-orange-soft);
}

#hh-pro .hh-modal__footer {
	border-top: 1px solid var(--hh-line);
	padding-top: 0.85rem;
	margin-top: 0.5rem;
}

#hh-pro .hh-modal__totals {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-end;
	margin-bottom: 0.75rem;
}

#hh-pro .hh-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#hh-pro .hh-modal__who {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

#hh-pro .hh-modal__who img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

#hh-pro .hh-dash-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

#hh-pro .hh-dash-header__who {
	display: flex;
	gap: 0.85rem;
	align-items: center;
}

#hh-pro .hh-dash-header__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

#hh-pro .hh-status-pill.is-plan {
	text-decoration: none;
	background: #111;
	color: #fff;
}

#hh-pro .hh-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

#hh-pro .hh-pill-tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

#hh-pro .hh-pill-tabs a {
	border: 1px solid var(--hh-line);
	background: #fff;
	border-radius: 999px;
	padding: 0.55rem 0.95rem;
	font-weight: 700;
	font-size: 0.9rem;
}

#hh-pro .hh-pill-tabs a.is-active {
	background: var(--hh-ink);
	color: #fff;
	border-color: var(--hh-ink);
}

#hh-pro .hh-status--request {
	background: #fff7ed;
	color: #9a3412;
	border: 1px solid #fed7aa;
}

#hh-pro .hh-status--rejected {
	background: var(--hh-danger-bg);
	color: var(--hh-danger);
}

#hh-pro .hh-request-hint {
	display: block;
	margin-top: 0.35rem;
	color: #9a3412;
	font-weight: 600;
}

#hh-pro .hh-booking-card footer {
	gap: 0.65rem;
	flex-wrap: wrap;
}

#hh-pro .hh-booking-card {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: var(--hh-radius);
	padding: 1.1rem;
	margin-bottom: 0.9rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-booking-card header,
#hh-pro .hh-booking-card footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

#hh-pro .hh-booking-card__who {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

#hh-pro .hh-booking-card__who img {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	object-fit: cover;
}

#hh-pro .hh-booking-card__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin: 1rem 0;
}

#hh-pro .hh-booking-card__grid > div {
	background: #f9fafb;
	border-radius: 10px;
	padding: 0.85rem;
}

#hh-pro .hh-status--confirmed {
	background: var(--hh-green-bg);
	color: var(--hh-green);
}

#hh-pro .hh-status--cancelled {
	background: var(--hh-danger-bg);
	color: var(--hh-danger);
}

#hh-pro .hh-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

#hh-pro .hh-metric {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 1rem;
}

#hh-pro .hh-metric span,
#hh-pro .hh-metric small {
	display: block;
	color: var(--hh-muted);
	font-size: 0.8rem;
}

#hh-pro .hh-metric strong {
	font-size: 1.5rem;
}

#hh-pro .hh-earnings-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.25rem;
}

#hh-pro .hh-earnings-summary > div {
	padding: 0.85rem 1rem;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	background: #fafafa;
}

#hh-pro .hh-earnings-summary span,
#hh-pro .hh-earnings-summary small {
	display: block;
	color: var(--hh-muted);
	font-size: 0.8rem;
}

#hh-pro .hh-earnings-summary strong {
	display: block;
	font-size: 1.35rem;
	margin: 0.2rem 0;
}

#hh-pro .hh-earnings-table-wrap {
	overflow-x: auto;
}

#hh-pro .hh-earnings-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

#hh-pro .hh-earnings-table th,
#hh-pro .hh-earnings-table td {
	padding: 0.65rem 0.5rem;
	border-bottom: 1px solid var(--hh-line);
	text-align: left;
	vertical-align: top;
}

#hh-pro .hh-earnings-table th {
	color: var(--hh-muted);
	font-weight: 600;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

#hh-pro .hh-earn-pill {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
}

#hh-pro .hh-earn-pill.is-paid {
	background: #dcfce7;
	color: #166534;
}

#hh-pro .hh-earn-pill.is-pending {
	background: #fef3c7;
	color: #92400e;
}

#hh-pro .hh-earn-pill.is-failed {
	background: #fee2e2;
	color: #991b1b;
}

#hh-pro .hh-status-pill {
	border-radius: 999px;
	padding: 0.45rem 0.8rem;
	background: #f3f4f6;
	font-weight: 700;
	font-size: 0.85rem;
}

#hh-pro .hh-status-pill.is-on {
	background: var(--hh-green-bg);
	color: var(--hh-green);
}

#hh-pro .hh-status-pill.is-pending {
	background: #fff7ed;
	color: #9a3412;
}

#hh-pro .hh-status-pill.is-off {
	background: var(--hh-danger-bg);
	color: var(--hh-danger);
}

#hh-pro .hh-notice--pending {
	background: #fff7ed;
	color: #9a3412;
	border: 1px solid #fed7aa;
}

#hh-pro .hh-app-banner {
	margin-bottom: 1.25rem;
}

#hh-pro .hh-app-banner p {
	margin: 0.4rem 0;
}

#hh-pro .hh-app-banner .hh-btn {
	margin-top: 0.5rem;
}

#hh-pro .hh-service-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#hh-pro .hh-service-menu li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--hh-line);
}

#hh-pro .hh-service-menu small {
	display: block;
	color: var(--hh-muted);
}

#hh-pro .hh-service-menu__side {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#hh-pro .hh-icon-btn {
	border: 1px solid var(--hh-line);
	background: #fff;
	border-radius: 8px;
	width: 34px;
	height: 34px;
	cursor: pointer;
}

#hh-pro .hh-inline-form {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr auto;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

#hh-pro .hh-service-form {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0.75rem 1rem;
	margin: 0 0 1.25rem;
	padding: 1rem;
	border: 1px solid var(--hh-line);
	border-radius: 14px;
	background: #fafafa;
}

#hh-pro .hh-service-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0;
	font-weight: 600;
	font-size: 0.85rem;
}

#hh-pro .hh-service-form__hint {
	display: block;
	color: #6b7280;
	font-size: 0.8rem;
	font-weight: 500;
}

#hh-pro .hh-service-form__field--full {
	grid-column: 1 / -1;
}

#hh-pro .hh-service-form__field .hh-input {
	font-weight: 400;
}

#hh-pro .hh-service-form__actions {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

#hh-pro .hh-service-menu__type {
	display: inline-block;
	margin-top: 0.2rem;
	margin-right: 0.35rem;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	background: #fff7ed;
	color: #9a3412;
	font-size: 0.75rem;
	font-weight: 600;
}

#hh-pro .hh-btn--sm {
	padding: 0.35rem 0.7rem;
	font-size: 0.8rem;
}

#hh-pro .hh-profile-edit .hh-field,
#hh-pro .hh-profile-edit .hh-form-field {
	display: block;
	margin-bottom: 1rem;
}

#hh-pro .hh-profile-edit .hh-field > span,
#hh-pro .hh-profile-edit .hh-form-label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	font-size: 0.9rem;
}

#hh-pro .hh-profile-edit__gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

#hh-pro .hh-profile-edit__gallery img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--hh-line);
}

#hh-pro .hh-support-card {
	margin-top: 1rem;
}

#hh-pro .hh-support-card__list {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

#hh-pro .hh-support-card__list li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

#hh-pro .hh-support-card__list span {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--hh-muted);
}

#hh-pro .hh-support-card__list a {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

#hh-pro .hh-support-card__list a:hover {
	text-decoration: underline;
}

#hh-pro .hh-hours-row {
	display: grid;
	grid-template-columns: 100px 1fr 1fr;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 0.5rem;
}

#hh-pro .hh-form-card {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 16px;
	padding: 1.35rem;
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-form-card h2 {
	margin: 1.25rem 0 0.75rem;
	font-size: 1.1rem;
}

#hh-pro .hh-empty {
	text-align: center;
	color: var(--hh-muted);
	padding: 2rem 1rem;
}

#hh-pro .hh-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

#hh-pro .hh-dash-links {
	margin-top: 1.25rem;
	color: var(--hh-muted);
}

#hh-pro .hh-dash-links a {
	color: var(--hh-orange);
	font-weight: 700;
}

#hh-pro .hh-success {
	text-align: center;
	padding: 2rem 1rem;
}

#hh-pro .hh-places-list {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	max-height: 260px;
	overflow: auto;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	background: #fff;
}

#hh-pro .hh-places-list:empty {
	display: none;
}

#hh-pro .hh-places-list__item {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--hh-line);
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 600;
}

#hh-pro .hh-places-list__item:last-child {
	border-bottom: 0;
}

#hh-pro .hh-places-list__item {
	color: var(--hh-ink);
}

#hh-pro .hh-places-list__item:hover,
#hh-pro .hh-places-list__item.is-selected {
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
}

#hh-pro .hh-popup__selected {
	background: var(--hh-orange-soft);
	color: var(--hh-ink);
	border: 1px solid #fdba74;
	border-radius: 10px;
	padding: 0.7rem 0.9rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
	#hh-pro .hh-results__layout,
	#hh-pro .hh-profile,
	#hh-pro .hh-provider-card,
	#hh-pro .hh-search-bar,
	#hh-pro .hh-metrics,
	#hh-pro .hh-booking-card__grid,
	#hh-pro .hh-grid-2,
	#hh-pro .hh-loc-cards,
	#hh-pro .hh-service-form {
		grid-template-columns: 1fr;
	}

	#hh-pro .hh-inline-form,
	#hh-pro .hh-date-month__grid {
		grid-template-columns: 1fr 1fr;
	}

	#hh-pro .hh-filters {
		position: static;
	}

	#hh-pro .hh-filters__mobile {
		display: inline-flex;
	}

	#hh-pro .hh-filters__form.is-collapsed {
		display: none;
	}

	#hh-pro .hh-profile__aside {
		position: static;
	}

	#hh-pro .hh-popup__panel,
	#hh-pro .hh-modal__panel {
		width: 100%;
		max-height: 100%;
		border-radius: 16px 16px 0 0;
		align-self: flex-end;
	}

	#hh-pro .hh-time-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	#hh-pro .hh-form-row {
		grid-template-columns: 1fr;
	}

	#hh-pro .hh-check-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Become a Provider (full application, hairhub-core style) ===== */
#hh-pro.hh-view-become,
#hh-pro .hh-app {
	max-width: 900px;
	margin: 0 auto;
}

#hh-pro .hh-app__hero {
	text-align: center;
	margin-bottom: 1.75rem;
	padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2.5rem);
	border-radius: 18px;
	background: linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #f8fafc 100%);
	border: 1px solid var(--hh-line);
}

#hh-pro .hh-app__eyebrow {
	color: var(--hh-orange);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
}

#hh-pro .hh-app__title {
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 0.65rem;
	line-height: 1.15;
}

#hh-pro .hh-app__intro {
	color: var(--hh-muted);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 38rem;
	margin: 0 auto;
}

#hh-pro .hh-app__steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
	counter-reset: hhstep;
}

#hh-pro .hh-app__steps li {
	position: relative;
	margin: 0;
	padding: 0.45rem 0.9rem 0.45rem 2.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hh-ink);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--hh-line);
	border-radius: 999px;
	counter-increment: hhstep;
}

#hh-pro .hh-app__steps li::before {
	content: counter(hhstep);
	position: absolute;
	left: 0.55rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--hh-orange);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

#hh-pro .hh-app__card {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 18px;
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--hh-shadow);
}

#hh-pro .hh-app__account {
	margin: 0 0 1.35rem;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	font-size: 0.92rem;
}

#hh-pro .hh-form-section {
	border: none;
	border-bottom: 1px solid var(--hh-line);
	margin: 0;
	padding: 1.6rem 0 1.25rem;
	background: transparent;
	min-width: 0;
}

#hh-pro .hh-form-section:first-of-type {
	padding-top: 0;
}

#hh-pro .hh-form-section:last-of-type {
	border-bottom: none;
}

#hh-pro .hh-form-section legend {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0;
	margin: 0 0 1.15rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--hh-ink);
	width: 100%;
}

#hh-pro .hh-form-section__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--hh-ink);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
}

#hh-pro .hh-form-section.is-emphasized {
	background: #fffbeb;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	border-radius: 12px;
}

#hh-pro .hh-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

#hh-pro .hh-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

#hh-pro .hh-form-field.is-invalid .hh-input,
#hh-pro .hh-input.is-invalid,
#hh-pro .hh-form-field.is-invalid .hh-upload,
#hh-pro .hh-upload.is-invalid .hh-upload__drop,
#hh-pro .hh-check-grid.is-invalid {
	border-color: var(--hh-danger);
	box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.12);
}

#hh-pro .hh-field-error {
	margin: 0.15rem 0 0;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hh-danger);
	line-height: 1.35;
}

#hh-pro .hh-form-error-banner {
	margin-bottom: 0.85rem;
}

#hh-pro .hh-form-field.is-invalid > label,
#hh-pro .hh-form-field.is-invalid > .hh-form-label {
	color: var(--hh-danger);
}

#hh-pro .hh-form-field label,
#hh-pro .hh-form-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--hh-ink);
}

#hh-pro .hh-req {
	color: #b45309;
}

#hh-pro .hh-form-hint {
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	color: var(--hh-muted);
}

#hh-pro .hh-form-field--checkbox label {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	font-weight: 500;
	line-height: 1.45;
}

#hh-pro .hh-form-field--checkbox input[type="checkbox"] {
	width: auto;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

#hh-pro .hh-check-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	gap: 0.55rem;
}

#hh-pro .hh-check-grid__item {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	padding: 0.75rem 0.85rem;
	background: #fafafa;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.35;
	transition: border-color 0.15s ease, background 0.15s ease;
}

#hh-pro .hh-check-grid__item input {
	width: auto;
	margin-top: 0.15rem;
	flex-shrink: 0;
}

#hh-pro .hh-check-grid__item:has(input:checked) {
	border-color: var(--hh-orange);
	background: var(--hh-orange-soft);
}

#hh-pro .hh-app-form .hh-input,
#hh-pro .hh-app-form select.hh-input,
#hh-pro .hh-app-form textarea.hh-input {
	width: 100%;
	border: 1px solid var(--hh-line);
	border-radius: 10px;
	padding: 0.8rem 0.95rem;
	font: inherit;
	background: #fff;
	color: var(--hh-ink);
}

#hh-pro .hh-app-form .hh-input:focus {
	outline: 2px solid color-mix(in srgb, var(--hh-orange) 45%, transparent);
	border-color: var(--hh-orange);
}

/* ===== Upload dropzones (become provider) ===== */
#hh-pro .hh-upload {
	position: relative;
}

#hh-pro .hh-upload__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

#hh-pro .hh-upload__drop {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 1.1rem 1.2rem;
	border: 1.5px dashed #d1d5db;
	border-radius: 14px;
	background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
	font-weight: 500;
}

#hh-pro .hh-upload__drop:hover,
#hh-pro .hh-upload.is-dragover .hh-upload__drop {
	border-color: var(--hh-orange);
	background: var(--hh-orange-soft);
	box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

#hh-pro .hh-upload__input:focus-visible + .hh-upload__drop {
	border-color: var(--hh-orange);
	outline: 2px solid color-mix(in srgb, var(--hh-orange) 45%, transparent);
	outline-offset: 2px;
}

#hh-pro .hh-upload--avatar .hh-upload__drop {
	align-items: center;
}

#hh-pro .hh-upload--gallery .hh-upload__drop {
	flex-direction: column;
	text-align: center;
	padding: 1.75rem 1.25rem;
	gap: 0.85rem;
}

#hh-pro .hh-upload__preview {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hh-line);
	color: var(--hh-muted);
}

#hh-pro .hh-upload__preview--avatar {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
}

#hh-pro .hh-upload__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#hh-pro .hh-upload__icon {
	display: inline-flex;
	color: var(--hh-muted);
}

#hh-pro .hh-upload__icon--lg {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--hh-line);
	color: var(--hh-orange);
}

#hh-pro .hh-upload__copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
	flex: 1;
}

#hh-pro .hh-upload__copy strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--hh-ink);
}

#hh-pro .hh-upload__copy small {
	font-size: 0.8125rem;
	color: var(--hh-muted);
	line-height: 1.4;
}

#hh-pro .hh-upload__meta {
	margin-top: 0.15rem;
}

#hh-pro .hh-upload__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.95rem;
	border-radius: 10px;
	border: 1px solid var(--hh-line);
	background: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--hh-ink);
	white-space: nowrap;
}

#hh-pro .hh-upload__drop:hover .hh-upload__btn {
	border-color: var(--hh-orange);
	color: #9a3412;
	background: #fff;
}

#hh-pro .hh-upload.has-file .hh-upload__drop {
	border-style: solid;
	border-color: #fdba74;
	background: #fffbeb;
}

#hh-pro .hh-upload__clear {
	appearance: none;
	margin-top: 0.55rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--hh-danger);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#hh-pro .hh-upload__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
	gap: 0.65rem;
	margin-top: 0.85rem;
}

#hh-pro .hh-upload__thumbs[hidden] {
	display: none;
}

#hh-pro .hh-upload__thumb {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--hh-line);
	background: #f3f4f6;
}

#hh-pro .hh-upload__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#hh-pro .hh-upload__thumb-remove {
	appearance: none;
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	width: 1.5rem;
	height: 1.5rem;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.72);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

#hh-pro .hh-upload__thumb-remove:hover {
	background: var(--hh-danger);
}

@media (max-width: 640px) {
	#hh-pro .hh-upload--avatar .hh-upload__drop {
		flex-wrap: wrap;
	}

	#hh-pro .hh-upload--avatar .hh-upload__btn {
		width: 100%;
	}
}

#hh-pro .hh-app__submit {
	padding-top: 1.25rem;
}

#hh-pro .hh-app__submit-note {
	margin: 0.85rem 0 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--hh-muted);
	text-align: center;
}

/* Tidy legacy become/edit cards if still used elsewhere */
#hh-pro .hh-become__hero {
	display: none;
}

#hh-pro .hh-form-card {
	background: #fff;
	border: 1px solid var(--hh-line);
	border-radius: 16px;
	padding: 1.35rem;
	box-shadow: var(--hh-shadow);
}

/* Stripe payment + payouts */
#hh-pro .hh-payment-element {
	min-height: 120px;
	margin: 0.75rem 0 0.5rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--hh-line);
	border-radius: 12px;
	background: #fff;
}

#hh-pro .hh-pay-summary {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0.5rem 0 0.25rem;
}

#hh-pro .hh-pay-summary strong {
	font-size: 1.6rem;
	letter-spacing: -0.02em;
}

#hh-pro .hh-pay-error {
	margin: 0.65rem 0 0;
	color: #b91c1c;
	font-size: 0.9rem;
	font-weight: 600;
}

#hh-pro .hh-payouts__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1rem;
}

#hh-pro .hh-modal__panel--pay {
	max-width: 520px;
}

#hh-pro .hh-status--awaiting-payment {
	background: #fff7ed;
	color: #c2410c;
}

#hh-pro .hh-stepper li[data-step="4"] {
	min-width: 0;
}

#hh-pro .hh-portal-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--hh-line);
	border-radius: 10px;
	background: #fafafa;
	font-size: 0.9rem;
}

#hh-pro .hh-auth-card #hh-customer-login,
#hh-pro .hh-auth-card .login-username,
#hh-pro .hh-auth-card .login-password,
#hh-pro .hh-auth-card .login-remember,
#hh-pro .hh-auth-card .login-submit {
	display: grid;
	gap: 0.35rem;
	margin: 0 0 0.85rem;
}

#hh-pro .hh-auth-card #hh-customer-login label {
	font-weight: 600;
	font-size: 0.85rem;
}

#hh-pro .hh-auth-card #hh-customer-login input[type="text"],
#hh-pro .hh-auth-card #hh-customer-login input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--hh-line);
	border-radius: 8px;
}

#hh-pro .hh-auth-card #hh-customer-login .button {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 8px;
	background: var(--hh-ink, #111);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

#hh-pro.hh-view-register,
#hh-pro .hh-auth-card {
	max-width: 480px;
	margin: 0 auto;
}

#hh-pro .hh-auth-card > header {
	margin-bottom: 1.25rem;
}

#hh-pro .hh-auth-card .hh-card {
	display: grid;
	gap: 1rem;
	padding: 1.25rem;
}

#hh-pro .hh-review-form {
	margin: 0.75rem 1.25rem 0;
	padding: 1rem;
	border-top: 1px solid var(--hh-line);
	display: grid;
	gap: 0.75rem;
}
