.helpy-account-shell-placeholder {
	display: none;
}

/* =========================
   Dashboard layout
========================= */

.helpy-account-dashboard {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.helpy-account-dashboard__hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px;
	border: 1px solid #e6e8ef;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(21, 28, 46, 0.04);
}

.helpy-account-dashboard__hero-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.helpy-account-dashboard__eyebrow {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a35c8;
}

.helpy-account-dashboard__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 700;
	color: #1f2430;
}

.helpy-account-dashboard__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: #667085;
	max-width: 760px;
}

/* =========================
   Shared buttons
========================= */

.helpy-account-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	transition: all 0.18s ease;
	cursor: pointer;
}

.helpy-account-btn--primary {
	background: #6f3cc3;
	border-color: #6f3cc3;
	color: #fff;
}

.helpy-account-btn--primary:hover {
	background: #5f31ae;
	border-color: #5f31ae;
	color: #fff;
}

.helpy-account-btn--secondary {
	background: #fff;
	border-color: #d9c8f3;
	color: #6f3cc3;
}

.helpy-account-btn--secondary:hover {
	background: #faf7ff;
	border-color: #cdb4f0;
	color: #5f31ae;
}

/* =========================
   State cards
========================= */

.helpy-account-state-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.helpy-account-state-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px;
	border: 1px solid #e6e8ef;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(21, 28, 46, 0.04);
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.helpy-account-state-card:hover {
	transform: translateY(-2px);
	border-color: #d7c4f3;
	box-shadow: 0 16px 36px rgba(21, 28, 46, 0.07);
}

.helpy-account-state-card__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #667085;
}

.helpy-account-state-card__value {
	font-size: 38px;
	line-height: 1;
	font-weight: 700;
	color: #1f2430;
}

.helpy-account-state-card__meta {
	font-size: 14px;
	line-height: 1.5;
	color: #667085;
}

/* =========================
   CTA strip
========================= */

.helpy-account-dashboard__cta-strip {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/* Create Project button — reference style */
.helpy-account-dashboard__cta-strip .helpy-account-btn--primary {
	min-height: 52px;
	padding: 0 22px;
	border-radius: 18px;
	background: #fff;
	border: 1.5px solid #d9c8f3;
	color: #6f3cc3;
	box-shadow: none;
}

.helpy-account-dashboard__cta-strip .helpy-account-btn--primary:hover {
	background: #faf7ff;
	border-color: #cdb4f0;
	color: #5f31ae;
}

/* Optional icon support */
.helpy-account-dashboard__cta-strip .helpy-account-btn--primary::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14'/><path d='M5 12h14'/></svg>") center / contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14'/><path d='M5 12h14'/></svg>") center / contain no-repeat;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199px) {
	.helpy-account-dashboard__hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.helpy-account-state-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.helpy-account-dashboard {
		gap: 18px;
	}

	.helpy-account-dashboard__hero {
		padding: 20px;
		border-radius: 20px;
	}

	.helpy-account-dashboard__title {
		font-size: 28px;
	}

	.helpy-account-dashboard__text {
		font-size: 15px;
		line-height: 1.6;
	}

	.helpy-account-state-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.helpy-account-state-card {
		padding: 18px;
		border-radius: 18px;
	}

	.helpy-account-state-card__value {
		font-size: 30px;
	}

	.helpy-account-dashboard__cta-strip {
		width: 100%;
	}

	.helpy-account-dashboard__cta-strip .helpy-account-btn--primary {
		width: 100%;
		justify-content: center;
	}
}
/* =========================
   Account sidebar
========================= */

.helpy-account-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0px;
	padding: 22px;
	border: 1px solid #e6e8ef;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(21, 28, 46, 0.04);
}

.helpy-account-sidebar__profile {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 18px;
	border-bottom: 1px solid #eef0f5;
}

.helpy-account-sidebar__avatar {
	flex: 0 0 56px;
}

.helpy-account-sidebar__avatar img {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.helpy-account-sidebar__identity {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.helpy-account-sidebar__name {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f2430;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.helpy-account-mode-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid #e6e8ef;
	border-radius: 999px;
	background: #f8f9fc;
	width: fit-content;
}

.helpy-account-mode-toggle__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: #667085;
	text-decoration: none;
	transition: all 0.18s ease;
}

.helpy-account-mode-toggle__item:hover {
	color: #1f2430;
	background: #ffffff;
}

.helpy-account-mode-toggle__item.is-active {
	background: #ffffff;
	color: #6f3cc3;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.helpy-account-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.helpy-account-nav-list--secondary {
	padding-top: 4px;
	border-top: 1px solid #eef0f5;
}

.helpy-account-nav-item {
	margin: 0;
}

.helpy-account-nav-item + .helpy-account-nav-item {
	margin-top: 4px;
}

.helpy-account-nav-item > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 52px;
	padding: 0 14px;
	border-radius: 16px;
	text-decoration: none;
	color: #1f2430;
	transition: all 0.18s ease;
}

.helpy-account-nav-item > a:hover {
	background: #f8f7fc;
	color: #6f3cc3;
}

.helpy-account-nav-item.is-active > a,
.helpy-account-nav-item.current-menu-item > a,
.helpy-account-nav-item.current > a {
	background: #f6f1ff;
	color: #6f3cc3;
}

.helpy-account-nav-item__label {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.helpy-account-nav-item__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	flex: 0 0 auto;
}

@media (min-width: 992px) {
	.rtcl-MyAccount-wrap {
		align-items: flex-start;
		gap: 28px;
	}

	.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
		position: sticky;
		top: 24px;
	}
}

@media (max-width: 991.98px) {
	.helpy-account-sidebar {
		padding: 18px;
		border-radius: 20px;
		box-shadow: none;
	}

	.helpy-account-sidebar__name {
		font-size: 18px;
	}

	.helpy-account-nav-item > a {
		min-height: 48px;
		padding: 0 12px;
		border-radius: 14px;
	}
}
/* =========================
   Sidebar top: avatar + mode toggle
========================= */

/* =========================
   Sidebar top: toggle + avatar + name
========================= */

.helpy-account-sidebar__profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 10px 0 20px;
	margin-bottom: 2px;
	border-bottom: 1px solid #ececf3;
	text-align: center;
}

.helpy-account-mode-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	margin: 0 auto;
	border: 1px solid #e7e7f0;
	border-radius: 999px;
	background: #f7f7fb;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.helpy-account-mode-toggle__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #6b7280;
	transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.helpy-account-mode-toggle__item:hover {
	color: #1f2430;
	background: transparent;
}

.helpy-account-mode-toggle__item.is-active {
	background: #ffffff;
	color: #6f3cc3;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
}

.helpy-account-sidebar__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 0 0 auto;
}

.helpy-account-sidebar__avatar img,
.helpy-account-sidebar__avatar .avatar {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ffffff;
	box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.helpy-account-sidebar__name {
	width: 100%;
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1f2430;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
	.helpy-account-sidebar__profile {
		gap: 12px;
		padding: 8px 0 16px;
	}

	.helpy-account-sidebar__avatar img,
	.helpy-account-sidebar__avatar .avatar {
		width: 56px;
		height: 56px;
	}

	.helpy-account-sidebar__name {
		font-size: 20px;
	}

	.helpy-account-mode-toggle__item {
		min-width: 70px;
		height: 32px;
		padding: 0 12px;
		font-size: 12px;
	}
}
/*Вертикальный промежуток между кнопками Адд Листинг и ЛогАут*/
@media (min-width: 992px) {
	.helpy-account-sidebar .helpy-account-nav-list--secondary > li[data-endpoint="add-listing"] + li[data-endpoint="logout"],
	.helpy-account-sidebar .helpy-account-nav-list--secondary > li[data-endpoint="add_listing"] + li[data-endpoint="logout"] {
		margin-top: 16px;
	}
}
/*Стилизация контента дашбоард Про Десктоп*/
/* =========================
   Pro dashboard — desktop shell
========================= */

/* =========================================
   Pro Dashboard — desktop layout
========================================= */

.helpy-prodash,
.helpy-prodash * {
	box-sizing: border-box;
}

.helpy-prodash {
	width: 100%;
}

.helpy-prodash a {
	text-decoration: none;
}

.helpy-prodash__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 28px;
	align-items: start;
}

.helpy-prodash__main {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.helpy-prodash__rail {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.helpy-prodash__welcome {
	margin: 0;
	padding: 2px 0 2px;
}

.helpy-prodash__welcome-title {
	margin: 0;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1f2430;
}

/* cards */
.helpy-prodash-hero,
.helpy-prodash-stat,
.helpy-prodash-panel,
.helpy-prodash-credits-card {
	background: #fff;
	border: 1px solid #eceaf3;
	border-radius: 22px;
	box-shadow: 0 8px 24px rgba(31, 36, 48, 0.04);
	color: #1f2430;
}

/* top invites hero */
.helpy-prodash-hero {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 24px 28px;
	min-height: 132px;
	overflow: hidden;
}

.helpy-prodash-hero::after {
	content: "";
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(122, 63, 204, 0.06) 0%, rgba(122, 63, 204, 0.02) 45%, rgba(122, 63, 204, 0) 70%);
	pointer-events: none;
}

.helpy-prodash-hero__icon,
.helpy-prodash-stat__icon,
.helpy-prodash-credits-card__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	flex: 0 0 64px;
}

.helpy-prodash-hero__icon {
	background: #fdf0e7;
	color: #f06f4f;
}

.helpy-prodash-stat__icon--purple {
	background: #efe8ff;
	color: #7a3fcc;
}

.helpy-prodash-stat__icon--green {
	background: #e4f5e8;
	color: #33a164;
}

.helpy-prodash-stat__icon--orange {
	background: #fdf0e7;
	color: #f08a3c;
}

.helpy-prodash-credits-card__icon {
	background: #efe8ff;
	color: #7a3fcc;
}

.helpy-prodash-hero__icon svg,
.helpy-prodash-stat__icon svg,
.helpy-prodash-credits-card__icon svg {
	display: block;
	width: 32px !important;
	height: 32px !important;
	max-width: 32px !important;
	max-height: 32px !important;
}

.helpy-prodash-hero__content,
.helpy-prodash-hero__metrics {
	position: relative;
	z-index: 1;
}

.helpy-prodash-hero__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 600;
	color: #2a3140;
}

.helpy-prodash-hero__metrics {
	display: flex;
	align-items: center;
	gap: 56px;
	padding-right: 4px;
}

.helpy-prodash-hero__metric {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
}

.helpy-prodash-hero__metric-value {
	display: block;
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #1f2430;
}

/* stat row */
.helpy-prodash-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.helpy-prodash-stat {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 20px;
	min-height: 96px;
}

.helpy-prodash-stat__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-width: 0;
}

.helpy-prodash-stat__label {
	font-size: 15px;
	line-height: 1.3;
	font-weight: 500;
	color: #384152;
}

.helpy-prodash-stat__value {
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1f2430;
	flex: 0 0 auto;
}

/* shared panel */
.helpy-prodash-panel {
	overflow: hidden;
}

.helpy-prodash-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 28px 18px;
}

.helpy-prodash-panel__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #2a3140;
}

.helpy-prodash-panel__link {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 500;
	color: #6f7592;
}

.helpy-prodash-panel__link:hover {
	color: #7a3fcc;
}

.helpy-prodash-panel__foot {
	padding: 18px 28px 22px;
	border-top: 1px solid #f0eef6;
}

.helpy-prodash-panel__link--footer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* listings health */
.helpy-prodash-health__body {
	padding: 0 16px 0;
}

.helpy-prodash-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 24px;
	border: 1px dashed #ddd7ee;
	border-radius: 18px;
	background: #fcfbff;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
	color: #8a90a8;
	text-align: center;
}

.helpy-prodash-empty--small {
	min-height: 96px;
	font-size: 14px;
	padding: 16px;
}

/* right rail */
.helpy-prodash-credits-card {
	padding: 20px;
}

.helpy-prodash-credits-card__top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.helpy-prodash-credits-card__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.helpy-prodash-credits-card__label {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
	color: #2a3140;
}

.helpy-prodash-credits-card__value {
	font-size: 44px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #1f2430;
}

.helpy-prodash-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	transition: all 0.18s ease;
}

.helpy-prodash-btn--primary {
	background: #7a3fcc;
	border: 1px solid #7a3fcc;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 12px rgba(122, 63, 204, 0.18);
}

.helpy-prodash-btn--primary:hover {
	background: #6e36bc;
	border-color: #6e36bc;
	color: #fff;
}

.helpy-prodash-panel--rail .helpy-prodash-panel__head {
	padding-bottom: 12px;
}

.helpy-prodash-rail-list {
	padding: 0 20px 0;
}

.helpy-prodash-rail-list__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	font-size: 15px;
	line-height: 1.3;
	color: #475063;
	border-bottom: 1px solid #f0eef6;
}

.helpy-prodash-rail-list__row strong {
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #1f2430;
}

/* responsive */
@media (max-width: 1279.98px) {
	.helpy-prodash__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.helpy-prodash__rail {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 991.98px) {
	.helpy-prodash__welcome-title {
		font-size: 24px;
	}

	.helpy-prodash-hero {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.helpy-prodash-hero__metrics {
		grid-column: 1 / -1;
		justify-content: flex-start;
		gap: 28px;
		padding-left: 82px;
	}

	.helpy-prodash-stats {
		grid-template-columns: 1fr;
	}

	.helpy-prodash__rail {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.helpy-prodash__welcome-title {
		font-size: 22px;
	}

	.helpy-prodash-hero {
		padding: 20px;
		gap: 14px;
	}

	.helpy-prodash-hero__icon,
	.helpy-prodash-stat__icon,
	.helpy-prodash-credits-card__icon {
		width: 56px;
		height: 56px;
		flex-basis: 56px;
	}

	.helpy-prodash-hero__icon svg,
	.helpy-prodash-stat__icon svg,
	.helpy-prodash-credits-card__icon svg {
		width: 28px !important;
		height: 28px !important;
		max-width: 28px !important;
		max-height: 28px !important;
	}

	.helpy-prodash-hero__metric-value {
		font-size: 36px;
	}

	.helpy-prodash-stat {
		padding: 18px;
	}

	.helpy-prodash-panel__head,
	.helpy-prodash-panel__foot {
		padding-left: 20px;
		padding-right: 20px;
	}

	.helpy-prodash-health__body {
		padding-left: 12px;
		padding-right: 12px;
	}

	.helpy-prodash-rail-list {
		padding-left: 16px;
		padding-right: 16px;
	}
}
/* =========================================
   Pro Dashboard — Listings Health compact
========================================= */

.helpy-prodash-health__body {
	padding: 0;
}

.helpy-prodash-listings {
	display: flex;
	flex-direction: column;
}

.helpy-prodash-listings__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 18px 28px;
	border-top: 1px solid #f0eef6;
}

.helpy-prodash-listings__row:first-child {
	border-top: 0;
}

.helpy-prodash-listings__main {
	min-width: 0;
}

.helpy-prodash-listings__title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.helpy-prodash-listings__title a {
	color: #6f3cc3;
	text-decoration: none;
}

.helpy-prodash-listings__title a:hover {
	color: #5e31ad;
}

.helpy-prodash-listings__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.helpy-prodash-status-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
}

.helpy-prodash-status-pill.is-active {
	background: #5ecb8b;
	color: #fff;
}

.helpy-prodash-status-pill.is-expired {
	background: #f56b6b;
	color: #fff;
}

.helpy-prodash-status-pill.is-pending {
	background: #ffd89b;
	color: #7a4b00;
}

.helpy-prodash-status-pill.is-draft {
	background: #d9e0ea;
	color: #617084;
}

.helpy-prodash-listings__helper {
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #8a90a8;
}

.helpy-prodash-listings__side {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.helpy-prodash-listings__side-text {
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #6f7592;
	white-space: nowrap;
	text-align: right;
}

.helpy-prodash-row-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	border: 1px solid #d9dceb;
	font-size: 15px;
	line-height: 1;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.18s ease;
}

.helpy-prodash-row-action.is-renew {
	background: #7a3fcc;
	border-color: #7a3fcc;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.helpy-prodash-row-action.is-renew:hover {
	background: #6c34ba;
	border-color: #6c34ba;
	color: #fff;
}

.helpy-prodash-row-action.is-edit {
	background: #fff;
	border-color: #d0d7e6;
	color: #475063;
}

.helpy-prodash-row-action.is-edit:hover {
	border-color: #7a3fcc;
	color: #7a3fcc;
}

@media (max-width: 1199.98px) {
	.helpy-prodash-listings__row {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.helpy-prodash-listings__side {
		justify-content: space-between;
		width: 100%;
	}

	.helpy-prodash-listings__side-text {
		text-align: left;
	}
}

@media (max-width: 767.98px) {
	.helpy-prodash-listings__row {
		padding: 16px 20px;
		gap: 12px;
	}

	.helpy-prodash-listings__title {
		font-size: 17px;
		margin-bottom: 7px;
	}

	.helpy-prodash-listings__meta {
		gap: 8px;
	}

	.helpy-prodash-listings__side {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.helpy-prodash-row-action {
		width: 100%;
		min-width: 0;
	}
}
/* =========================================
   Pro Dashboard — top row + right rail polish
========================================= */

.helpy-prodash-hero {
	grid-template-columns: 64px minmax(0, 1fr) 140px;
	padding: 18px 24px;
	min-height: 116px;
	border-radius: 20px;
}

.helpy-prodash-hero__title {
	font-size: 17px;
	font-weight: 700;
}

.helpy-prodash-hero__metrics {
	justify-content: flex-end;
	gap: 34px;
}

.helpy-prodash-hero__metric-value {
	font-size: 36px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.helpy-prodash-stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.helpy-prodash-stat {
	padding: 16px 18px;
	min-height: 96px;
	border-radius: 18px;
}

.helpy-prodash-stat__icon {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
}

.helpy-prodash-stat__icon svg {
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
}

.helpy-prodash-stat__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 14px;
	width: 100%;
}

.helpy-prodash-stat__label {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	color: #2f3747;
	max-width: 110px;
}

.helpy-prodash-stat__value {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1f2430;
	white-space: nowrap;
}

.helpy-prodash__rail {
	gap: 18px;
}

.helpy-prodash-credits-card,
.helpy-prodash-panel--rail {
	border-radius: 20px;
}

.helpy-prodash-credits-card {
	padding: 18px 18px 20px;
}

.helpy-prodash-credits-card__top {
	gap: 14px;
	margin-bottom: 16px;
}

.helpy-prodash-credits-card__icon {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
}

.helpy-prodash-credits-card__icon svg {
	width: 28px !important;
	height: 28px !important;
	max-width: 28px !important;
	max-height: 28px !important;
}

.helpy-prodash-credits-card__label {
	font-size: 16px;
	font-weight: 700;
}

.helpy-prodash-credits-card__value {
	font-size: 28px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.helpy-prodash-btn {
	min-height: 44px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
}

.helpy-prodash-btn--primary,
.helpy-prodash-btn--primary:visited,
.helpy-prodash-btn--primary:hover,
.helpy-prodash-btn--primary:focus {
	color: #ffffff !important;
}

.helpy-prodash-panel--rail .helpy-prodash-panel__head {
	padding: 20px 20px 12px;
}

.helpy-prodash-panel--rail .helpy-prodash-panel__title {
	font-size: 18px;
}

.helpy-prodash-rail-list {
	padding: 0 20px;
}

.helpy-prodash-rail-list__row {
	padding: 12px 0;
	font-size: 14px;
}

.helpy-prodash-rail-list__row strong {
	font-size: 16px;
	font-weight: 700;
}

.helpy-prodash-panel--rail .helpy-prodash-empty--small {
	min-height: 84px;
	border-radius: 16px;
	font-size: 13px;
	line-height: 1.4;
}

.helpy-prodash-panel--rail .helpy-prodash-panel__foot {
	padding: 16px 20px 18px;
}

.helpy-prodash-panel--rail .helpy-prodash-panel__link--footer {
	font-size: 14px;
	font-weight: 600;
}

/* tighter layout for medium desktop */
@media (max-width: 1399.98px) {
	.helpy-prodash__layout {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 24px;
	}

	.helpy-prodash-hero {
		grid-template-columns: 64px minmax(0, 1fr) 120px;
	}

	.helpy-prodash-hero__metrics {
		gap: 24px;
	}

	.helpy-prodash-stat__label {
		max-width: 92px;
		font-size: 13px;
	}
}

@media (max-width: 1199.98px) {
	.helpy-prodash-hero {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.helpy-prodash-hero__metrics {
		grid-column: 1 / -1;
		justify-content: flex-start;
		padding-left: 82px;
		gap: 20px;
	}

	.helpy-prodash-stats {
		grid-template-columns: 1fr;
	}
}
/* =========================================
   Pro Dashboard — recent transactions
========================================= */

.helpy-prodash-transactions {
	display: flex;
	flex-direction: column;
}

.helpy-prodash-transactions__row {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid #f0eef6;
}

.helpy-prodash-transactions__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
}

.helpy-prodash-transactions__icon.is-positive {
	background: #e8eefc;
	color: #4765b2;
}

.helpy-prodash-transactions__icon.is-negative {
	background: #fceaea;
	color: #d85b5b;
}

.helpy-prodash-transactions__content {
	min-width: 0;
}

.helpy-prodash-transactions__label {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	color: #384152;
}

.helpy-prodash-transactions__time {
	margin-top: 2px;
	font-size: 13px;
	line-height: 1.3;
	color: #8a90a8;
}

.helpy-prodash-transactions__amount {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #1f2430;
	white-space: nowrap;
}
/* =========================================
   Pro Dashboard — payments preview
========================================= */

.helpy-prodash-payments {
	display: flex;
	flex-direction: column;
}

.helpy-prodash-payments__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid #f0eef6;
}

.helpy-prodash-payments__row:first-child {
	border-top: 0;
}

.helpy-prodash-payments__main {
	min-width: 0;
}

.helpy-prodash-payments__title {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 700;
	color: #384152;
}

.helpy-prodash-payments__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.3;
	color: #8a90a8;
}

.helpy-prodash-payments__status {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	background: #eef2ff;
	color: #6470a8;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 700;
}

.helpy-prodash-payments__side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	flex: 0 0 auto;
}

.helpy-prodash-payments__amount {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #1f2430;
	white-space: nowrap;
}

.helpy-prodash-payments__txn {
	font-size: 11px;
	line-height: 1.2;
	color: #9aa1b5;
	white-space: nowrap;
}
/* =========================================
   Pro Dashboard — Listings stats panel
========================================= */

.helpy-prodash-stats-panel {
	padding: 0;
	overflow: hidden;
}

.helpy-prodash-stats-panel__head {
	padding: 14px 22px 8px;
}

.helpy-prodash-stats-panel__title {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0;

}

.helpy-prodash-stats-panel__body {
	padding: 0 14px 14px;
}

.helpy-prodash-stats-panel .helpy-prodash-stats {
	gap: 12px;
}

.helpy-prodash-stats-panel .helpy-prodash-stat {
	min-height: 84px;
	padding: 14px 16px;
	border-radius: 16px;
	box-shadow: none;
}

.helpy-prodash-stats-panel .helpy-prodash-stat__label {
	max-width: none;
}

@media (max-width: 1199.98px) {
	.helpy-prodash-stats-panel__body {
		padding: 0 14px 14px;
	}
}
/* Profile -> first menu block */
.helpy-account-nav-list--primary {
	margin-top: 18px;
}

/* Client: нужен зазор между primary и secondary */
.helpy-account-sidebar--client .helpy-account-nav-list--secondary {
	margin-top: 16px;
}

/* Pro: зазор не нужен */
.helpy-account-sidebar--pro .helpy-account-nav-list--secondary {
	margin-top: 0;
}
/* =========================================
   White outline buttons everywhere
   except Top Up
========================================= */

/* account shell buttons */
.helpy-account-btn--primary {
	background: #ffffff;
	border-color: #d9c8f3;
	color: #6f3cc3;
	box-shadow: none;
}

.helpy-account-btn--primary:hover,
.helpy-account-btn--primary:focus,
.helpy-account-btn--primary:visited {
	background: #faf7ff;
	border-color: #cdb4f0;
	color: #5f31ae;
}

/* pro dashboard buttons */
.helpy-prodash-btn--primary {
	background: #ffffff;
	border-color: #d9c8f3;
	color: #6f3cc3 !important;
	box-shadow: none;
}

.helpy-prodash-btn--primary:hover,
.helpy-prodash-btn--primary:focus,
.helpy-prodash-btn--primary:visited {
	background: #faf7ff;
	border-color: #cdb4f0;
	color: #5f31ae !important;
}

/* renew buttons */
.helpy-prodash-row-action.is-renew {
	background: #ffffff;
	border-color: #d9c8f3;
	color: #6f3cc3;
	box-shadow: none;
}

.helpy-prodash-row-action.is-renew:hover {
	background: #faf7ff;
	border-color: #cdb4f0;
	color: #5f31ae;
}

/* keep only Top Up purple */
.helpy-prodash-credits-card .helpy-prodash-btn--primary,
.helpy-prodash-credits-card .helpy-prodash-btn--primary:hover,
.helpy-prodash-credits-card .helpy-prodash-btn--primary:focus,
.helpy-prodash-credits-card .helpy-prodash-btn--primary:visited {
	background: #7a3fcc;
	border-color: #7a3fcc;
	color: #ffffff !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 12px rgba(122, 63, 204, 0.18);
}
/* =========================================
   Mobile My Account shell — final
========================================= */
@media (max-width: 991.98px) {
	/* safe sticky context */
	.content-area.classima-myaccount,
	.content-area.classima-myaccount .container,
	.content-area.classima-myaccount .page,
	.content-area.classima-myaccount .rtcl {
		overflow: visible !important;
	}

	/* full-width sticky top bar */
	.rtcl-MyAccount-mobile-navbar.helpy-account-mobilebar {
		position: sticky;
		top: 0;
		z-index: 1001;
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 12px 14px;
		background: rgba(255, 255, 255, 0.97);
		border-bottom: 1px solid #eceaf3;
		box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	body.admin-bar .rtcl-MyAccount-mobile-navbar.helpy-account-mobilebar {
		top: 46px;
	}

	/* hide legacy hamburger if any */
	.rtcl-MyAccount-mobile-navbar .classima-MyAccount-open-menu,
	.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu {
		display: none !important;
	}

	/* hide desktop sidebar inside the wrap */
	.rtcl-MyAccount-wrap > .rtcl-MyAccount-navigation {
		display: none !important;
	}

	/* make wrap/content mobile-safe */
	.rtcl-MyAccount-wrap {
		display: block !important;
	}

	.rtcl-MyAccount-content {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
	}

	/* compact bar content */
	.helpy-account-mobilebar__avatar {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.helpy-account-mobilebar__avatar img,
	.helpy-account-mobilebar__avatar .avatar {
		display: block;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid #ffffff;
		box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
	}

	.helpy-account-mobilebar__identity {
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.helpy-account-mobilebar__name {
		margin: 0;
		font-size: 14px;
		line-height: 1.1;
		font-weight: 600;
		color: #1f2430;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.helpy-account-mobilebar__mode {
		display: inline-flex;
		align-items: center;
		width: fit-content;
		padding: 4px 10px;
		border-radius: 999px;
		font-size: 11px;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		background: #f3ebff;
		color: #6f3cc3;
	}
}
/* =========================================
   Mobile account top bar — fix gap + fixed bar
========================================= */
@media (max-width: 991.98px) {
	/* убираем пустой баннер и верхний gap темы */
	body.rtcl-account .theme-banner {
		display: none !important;
	}

	body.rtcl-account .content-area.classima-myaccount {
		padding-top: 0 !important;
		padding-bottom: 24px !important;
	}

	body.rtcl-account .content-area.classima-myaccount > .container {
		width: 100% !important;
		max-width: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	/* прячем десктопный sidebar на mobile */
	body.rtcl-account .rtcl-MyAccount-wrap > .rtcl-MyAccount-navigation {
		display: none !important;
	}

	body.rtcl-account .rtcl-MyAccount-wrap {
		display: block !important;
	}

	body.rtcl-account .rtcl-MyAccount-content {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		padding-top: 72px !important; /* место под фиксированную панель */
	}

	/* фиксируем верхнюю account-панель */
	body.rtcl-account .rtcl-MyAccount-mobile-navbar.helpy-account-mobilebar {
		position: fixed !important;
		top: 0px;
		left: 0;
		right: 0;
		z-index: 1002;
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100%;
		margin: 0 !important;
		padding: 10px 14px 6px!important;
		background: rgba(255, 255, 255, 0.97);
		border-bottom: 1px solid #eceaf3;
		box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		transition:
        	padding 0.28s ease,
        	box-shadow 0.28s ease,
        	background-color 0.24s ease;
	}

	/* если админбар включен */
	body.admin-bar.rtcl-account .rtcl-MyAccount-mobile-navbar.helpy-account-mobilebar {
		top: 0px;

	}

	/* страховка от старого hamburger */
	body.rtcl-account .rtcl-MyAccount-mobile-navbar .classima-MyAccount-open-menu,
	body.rtcl-account .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu {
		display: none !important;
	}
}
/* =========================================
   Pro dashboard — mobile content stack
========================================= */
@media (max-width: 991.98px) {
	body.rtcl-account {
		overflow-x: hidden;
	}

	body.rtcl-account .rtcl-MyAccount-content {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		padding: 84px 14px 20px !important;
		overflow-x: hidden !important;
	}

	body.rtcl-account .helpy-prodash {
		width: 100%;
	}

	body.rtcl-account .helpy-prodash__layout {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
		width: 100% !important;
	}

	body.rtcl-account .helpy-prodash__main,
	body.rtcl-account .helpy-prodash__rail {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	body.rtcl-account .helpy-prodash__rail {
		grid-template-columns: none !important;
	}

	body.rtcl-account .helpy-prodash-hero,
	body.rtcl-account .helpy-prodash-stat,
	body.rtcl-account .helpy-prodash-panel,
	body.rtcl-account .helpy-prodash-credits-card,
	body.rtcl-account .helpy-prodash-stats-panel {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
	}

	body.rtcl-account .helpy-prodash-stats {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}

	body.rtcl-account .helpy-prodash-panel__head,
	body.rtcl-account .helpy-prodash-panel__foot {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	body.rtcl-account .helpy-prodash-rail-list,
	body.rtcl-account .helpy-prodash-health__body,
	body.rtcl-account .helpy-prodash-stats-panel__body {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
}
/* =========================================
   Mobile account bar drawer
========================================= */
@media (max-width: 991.98px) {
	body.rtcl-account .rtcl-MyAccount-mobile-navbar.helpy-account-mobilebar {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 16px 14px 10px;
	}

	body.rtcl-account .helpy-account-mobilebar__main {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
	}

	body.rtcl-account .helpy-account-mobilebar__identity {
		flex: 1 1 auto;
		min-width: 0;
	}

	/*body.rtcl-account .helpy-account-mobilebar__handle {
		display: flex;
    	align-items: center;
    	justify-content: center;
    	width: 100%;
    	height: 10px;
    	padding: 0;
    	margin: 0px 0 0;
    	border: 0;
    	background: transparent;
    	box-shadow: none;
    	appearance: none;
    	-webkit-appearance: none;
    	cursor: pointer;
	}

	body.rtcl-account .helpy-account-mobilebar__handle-pill {
		display: block;
	width: 36px;
	height: 4px;
	border-radius: 999px;
	background: #cfd5e3;
	transition:
		transform 0.28s ease,
		background-color 0.24s ease,
		opacity 0.24s ease;
	}

	body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill {
		transform: scaleX(0.92);
		background: #b9bfd0;
	}*/
	body.rtcl-account .helpy-account-mobilebar__handle {
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	width: 100%;
    	height: 14px;
    	padding: 0;
    	margin: -2px 0 0;
    	border: 0;
    	background: transparent;
    	box-shadow: none;
    	appearance: none;
    	-webkit-appearance: none;
    	cursor: pointer;
    }
    
    body.rtcl-account .helpy-account-mobilebar__handle-pill {
    	position: relative;
    	display: block;
    	width: 18px;
    	height: 12px;
    	background: transparent;
    }
    
    body.rtcl-account .helpy-account-mobilebar__handle-pill::before,
    body.rtcl-account .helpy-account-mobilebar__handle-pill::after {
    	content: "";
    	position: absolute;
    	top: 4px;
    	width: 10px;
    	height: 2px;
    	border-radius: 999px;
    	background: #cfd5e3;
    	transition:
    		transform 0.24s ease,
    		background-color 0.24s ease,
    		opacity 0.24s ease;
    }
    
    body.rtcl-account .helpy-account-mobilebar__handle-pill::before {
    	left: 0;
    	transform-origin: right center;
    	transform: rotate(32deg);
    }
    
    body.rtcl-account .helpy-account-mobilebar__handle-pill::after {
    	right: 0;
    	transform-origin: left center;
    	transform: rotate(-32deg);
    }
    
    body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill::before,
    body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill::after {
    	background: #b9bfd0;
    }
    
    body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill::before {
    	transform: rotate(-32deg);
    }
    
    body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill::after {
    	transform: rotate(32deg);
    }

	body.rtcl-account .helpy-account-mobilebar__drawer {
    	display: block;
    	padding-top: 2px;
    	overflow: hidden;
    	max-height: 0;
    	opacity: 0;
    	transform: translateY(-6px);
    	pointer-events: none;
    	transition:
    		max-height 0.32s ease,
    		opacity 0.24s ease,
    		transform 0.28s ease;
    }
    
    body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__drawer {
    	max-height: 120px;
    	opacity: 1;
    	transform: translateY(0);
    	pointer-events: auto;
    }

	body.rtcl-account .helpy-account-mobilebar__drawer-inner {
		display: grid;
    	grid-template-columns: 44px auto auto;
    	align-items: center;
    	justify-content: space-between;
    	gap: 10px;
    	padding: 10px 0 2px;
    	border-top: 1px solid #eceaf3;
	}

	body.rtcl-account .helpy-account-mobilebar__iconbtn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid #e7e7f0;
		border-radius: 14px;
		background: #fff;
		color: #4b5565;
		text-decoration: none;
		box-shadow: none;
	}

	body.rtcl-account .helpy-account-mobilebar__iconbtn svg {
		width: 20px;
		height: 20px;
		display: block;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-toggle {
		display: inline-flex;
    	align-items: center;
    	justify-content: center;
    	width: auto;
    	padding: 3px;
    	border: 1px solid #e7e7f0;
    	border-radius: 999px;
    	background: #f7f7fb;
    	min-width: 0;
    	justify-self: center;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item {
		display: inline-flex;
    	align-items: center;
    	justify-content: center;
    	height: 32px;
    	padding: 0 12px;
    	border: 0;
    	border-radius: 999px;
    	background: transparent;
    	color: #6b7280;
    	font-size: 12px;
    	line-height: 1;
    	font-weight: 700;
    	letter-spacing: 0.01em;
    	white-space: nowrap;
    	text-decoration: none;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item.is-active {
		background: #ffffff;
		color: #6f3cc3;
		box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
	}

	body.rtcl-account .helpy-account-mobilebar__logout {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 88px;
		height: 44px;
		padding: 0 16px;
		border: 1px solid #e7e7f0;
		border-radius: 14px;
		background: #fff;
		color: #1f2430;
		font-size: 14px;
		line-height: 1;
		font-weight: 700;
		text-decoration: none;
		white-space: nowrap;
	}

	body.rtcl-account .helpy-account-mobilebar__logout:hover,
	body.rtcl-account .helpy-account-mobilebar__iconbtn:hover {
		background: #faf7ff;
		border-color: #d9c8f3;
		color: #6f3cc3;
	}

	body.rtcl-account .helpy-account-mobilebar.is-open + .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
		padding-top: 138px !important;
	}
	body.rtcl-account .helpy-account-mobilebar__handle,
    body.rtcl-account .helpy-account-mobilebar__handle:hover,
    body.rtcl-account .helpy-account-mobilebar__handle:active,
    body.rtcl-account .helpy-account-mobilebar__handle:focus,
    body.rtcl-account .helpy-account-mobilebar__handle:focus-visible {
    	border: 0 !important;
    	outline: none !important;
    	box-shadow: none !important;
    	background: transparent !important;
    	-webkit-tap-highlight-color: transparent;
    }
}
/* Client dashboard: force 2 columns on mobile */
@media (max-width: 767.98px) {
	body.rtcl-account .helpy-account-dashboard.helpy-account-dashboard--client .helpy-account-state-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	body.rtcl-account .helpy-account-dashboard.helpy-account-dashboard--client .helpy-account-state-card {
		min-width: 0 !important;
		padding: 16px !important;
		border-radius: 18px !important;
	}

	body.rtcl-account .helpy-account-dashboard.helpy-account-dashboard--client .helpy-account-state-card__value {
		font-size: 28px !important;
	}

	body.rtcl-account .helpy-account-dashboard.helpy-account-dashboard--client .helpy-account-state-card__label,
	body.rtcl-account .helpy-account-dashboard.helpy-account-dashboard--client .helpy-account-state-card__meta {
		font-size: 13px !important;
		line-height: 1.35 !important;
	}
}
/* My Account mobile: hide theme footer */
@media (max-width: 991px) {
	body.rtcl-account footer,
	body.rtcl-account .footer-top-area,
	body.rtcl-account .footer-bottom-area {
		display: none !important;
	}
}
/* =========================================
   Mobile account drawer — final stable version
========================================= */
@media (max-width: 991.98px) {
	body.rtcl-account .helpy-account-mobilebar__drawer {
		display: block;
		padding-top: 0px!important;
		overflow: hidden;
		max-height: 0;
		opacity: 0;
		transform: translateY(-6px);
		pointer-events: none;
		transition:
			max-height 0.32s ease,
			opacity 0.24s ease,
			transform 0.28s ease;
	}

	body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__drawer {
		max-height: 140px;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	body.rtcl-account .helpy-account-mobilebar__drawer-inner {
		display: block;
		padding: 12px 0 4px;
		border-top: 1px solid #eceaf3;
	}

	/* left icon / centered toggle / right icon */
	body.rtcl-account .helpy-account-mobilebar__actions {
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		align-items: center;
		column-gap: 10px;
		width: 100%;
		min-width: 0;
	}

	body.rtcl-account .helpy-account-mobilebar__drawer-toggle-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		width: 100%;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-toggle {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: center;
		width: 100%;
		max-width: 230px;
		min-width: 0;
		margin: 0 auto;
		padding: 4px;
		border: 1px solid #e7e7f0;
		border-radius: 999px;
		background: #f7f7fb;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
		overflow: hidden;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		height: 38px;
		padding: 0 12px;
		border-radius: 999px;
		font-size: 13px;
		line-height: 1;
		font-weight: 700;
		letter-spacing: 0.01em;
		text-decoration: none;
		white-space: nowrap;
		color: #6b7280;
		background: transparent;
		transition:
			background-color 0.18s ease,
			color 0.18s ease,
			box-shadow 0.18s ease;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item:hover {
		color: #1f2430;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item.is-active {
		background: #ffffff;
		color: #6f3cc3;
		box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
	}

	body.rtcl-account .helpy-account-mobilebar__action {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		text-decoration: none;
		justify-self: center;
	}

	body.rtcl-account .helpy-account-mobilebar__action-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 0;
		border-radius: 14px;
		background: #f7f7fb;
		color: #6b7280;
		box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
		transition:
			transform 0.18s ease,
			background-color 0.18s ease,
			color 0.18s ease,
			box-shadow 0.18s ease;
	}

	body.rtcl-account .helpy-account-mobilebar__action:hover .helpy-account-mobilebar__action-icon {
		transform: translateY(-1px);
	}

	body.rtcl-account .helpy-account-mobilebar__action-icon svg {
		display: block;
		width: 20px;
		height: 20px;
	}

	/* colors by modifier classes, not nth-child */
	body.rtcl-account .helpy-account-mobilebar__action--details .helpy-account-mobilebar__action-icon {
		background: linear-gradient(180deg, #efe8ff 0%, #e7dcff 100%);
		color: #6f3cc3;
		box-shadow: 0 8px 18px rgba(111, 60, 195, 0.14);
	}

	body.rtcl-account .helpy-account-mobilebar__action--logout .helpy-account-mobilebar__action-icon {
		background: linear-gradient(180deg, #fff1f1 0%, #ffe5e5 100%);
		color: #cc4b4b;
		box-shadow: 0 8px 18px rgba(204, 75, 75, 0.12);
	}

	body.rtcl-account .helpy-account-mobilebar__action-label {
		display: none;
	}

	body.rtcl-account .helpy-account-mobilebar.is-open + .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
		padding-top: 154px !important;
	}
}

@media (max-width: 380px) {
	body.rtcl-account .helpy-account-mobilebar__actions {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		column-gap: 8px;
	}

	body.rtcl-account .helpy-account-mobilebar__action,
	body.rtcl-account .helpy-account-mobilebar__action-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-toggle {
		max-width: 200px;
	}

	body.rtcl-account .helpy-account-mobilebar__mode-item {
		height: 36px;
		padding: 0 10px;
		font-size: 12px;
	}
}
/* =========================================
   Pro dashboard hero — compact mobile row
========================================= */
@media (max-width: 767.98px) {
	body.rtcl-account .helpy-prodash-hero {
		display: grid;
		grid-template-columns: 56px minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		padding: 16px 18px;
		min-height: 0;
	}

	body.rtcl-account .helpy-prodash-hero__icon {
		width: 56px;
		height: 56px;
		flex: 0 0 56px;
	}

	body.rtcl-account .helpy-prodash-hero__icon svg {
		width: 26px !important;
		height: 26px !important;
		max-width: 26px !important;
		max-height: 26px !important;
	}

	body.rtcl-account .helpy-prodash-hero__content {
		min-width: 0;
	}

	body.rtcl-account .helpy-prodash-hero__title {
		margin: 0;
		font-size: 15px;
		line-height: 1.25;
		font-weight: 700;
	}

	body.rtcl-account .helpy-prodash-hero__metrics {
		grid-column: auto !important;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 18px;
		min-width: fit-content;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	body.rtcl-account .helpy-prodash-hero__metric {
		min-width: 28px;
		justify-content: center;
	}

	body.rtcl-account .helpy-prodash-hero__metric-value {
		font-size: 28px;
		line-height: 1;
	}
}
.helpy-account-mobilebar__identity-link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.helpy-account-mobilebar__identity {
	min-width: 0;
}

.helpy-account-mobilebar__name {
	line-height: 1.2;
}

.helpy-account-mobilebar__hint {
	font-size: 11px;
	line-height: 1.2;
	opacity: 0.68;
	margin-top: 0px;
	color: grey;
}

.helpy-account-mobilebar__chevron {
	margin-left: 6px;
	font-size: 18px;
	line-height: 1;
	opacity: 0.55;
	flex: 0 0 auto;
}
@media (max-width: 991.98px) {
	body.rtcl-account .helpy-account-mobilebar__handle {
		height: 14px;
		padding: 0;
		margin: -2px 0 0;
	}

	body.rtcl-account .helpy-account-mobilebar__handle-pill {
		transform: translateY(-2px);
	}

	body.rtcl-account .helpy-account-mobilebar.is-open .helpy-account-mobilebar__handle-pill {
		transform: translateY(-2px);
	}
}
