.hb-app,
.hb-app *,
.hb-app *::before,
.hb-app *::after,
.hb-access-message,
.hb-access-message *,
.hb-login,
.hb-login *,
.hb-login *::before,
.hb-login *::after {
	box-sizing: border-box;
}

.hb-app,
.hb-login {
	--hb-bg: #110824;
	--hb-bg-secondary: #1c0b34;
	--hb-sidebar: #16092c;
	--hb-purple: #9550bd;
	--hb-purple-deep: #6e3197;
	--hb-purple-light: #c486dd;
	--hb-card: #f7eff9;
	--hb-card-secondary: #eadcf1;
	--hb-white: #ffffff;
	--hb-text-dark: #281735;
	--hb-muted: #b6abc2;
	--hb-muted-light: rgba(255, 255, 255, .72);
	--hb-border: rgba(255, 255, 255, .1);
	--hb-gold: #d7b06a;
	--hb-font: "Montserrat", sans-serif;
	--hb-shadow: 0 18px 44px rgba(7, 2, 18, .3);
}

.hb-app {
	display: block;
	min-height: 100vh;
	min-height: 100dvh;
	padding-bottom: calc(78px + env(safe-area-inset-bottom));
	color: var(--hb-white);
	background:
		radial-gradient(circle at 86% 8%, rgba(196, 134, 221, .18), transparent 30%),
		linear-gradient(145deg, #120721 0%, #1b0a34 54%, #0d061b 100%);
	font-family: var(--hb-font);
	font-weight: 400;
	overflow: visible;
}

/*
 * Defensive reset: the theme/page-builder the shortcode is embedded in
 * often ships its own global styles for `button`, `a`, and `svg` that are
 * more specific (or load later) than the rules below. Without this reset
 * those global styles win and the nav/icon/pill buttons render with the
 * theme's default border/background instead of this plugin's design,
 * which is what produces the "dark, distorted button" look on mobile.
 */
.hb-app button,
.hb-app a {
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	box-shadow: none;
	background: none;
	color: inherit;
	font: inherit;
	line-height: normal;
	text-decoration: none;
	text-align: inherit;
}

.hb-app ul,
.hb-app ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hb-app svg {
	max-width: none;
}

.hb-app img {
	display: block;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	filter: none !important;
	background: none;
	vertical-align: top;
}

.hb-access-message {
	max-width: 760px;
	margin: 40px auto;
	padding: 22px 24px;
	border: 1px solid rgba(149, 80, 189, .2);
	border-radius: 12px;
	color: var(--hb-text-dark);
	background: var(--hb-card);
	box-shadow: 0 16px 45px rgba(17, 8, 36, .12);
}

.hb-login {
	display: grid;
	place-items: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: calc(20px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
	color: var(--hb-white);
	background:
		radial-gradient(circle at 82% 12%, rgba(196, 134, 221, .24), transparent 31%),
		radial-gradient(circle at 12% 84%, rgba(215, 176, 106, .16), transparent 32%),
		linear-gradient(145deg, #120721 0%, #1b0a34 54%, #0d061b 100%);
	font-family: var(--hb-font);
}

.hb-login--has-hero {
	background:
		linear-gradient(rgba(17, 8, 36, .78), rgba(17, 8, 36, .92)),
		var(--hb-login-hero),
		linear-gradient(145deg, #120721 0%, #1b0a34 54%, #0d061b 100%);
	background-position: center;
	background-size: cover;
}

.hb-login__panel {
	display: grid;
	gap: 24px;
	width: min(100%, 390px);
	padding: 30px 20px 22px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	background: rgba(255, 255, 255, .08);
	box-shadow: var(--hb-shadow);
	backdrop-filter: blur(18px);
}

.hb-login__brand {
	display: grid;
	justify-items: center;
	gap: 12px;
	text-align: center;
}

.hb-login__logo {
	display: block;
	width: 112px;
	height: auto;
	max-width: 44vw;
	margin: 0 auto;
	border: 0;
	box-shadow: none;
}

.hb-login__brand h1 {
	display: grid;
	gap: 2px;
	margin: 0;
	color: var(--hb-white);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

.hb-login__brand h1 span {
	color: var(--hb-purple-light);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-style: italic;
	font-weight: 400;
}

.hb-login__brand p {
	max-width: 270px;
	margin: 0;
	color: var(--hb-muted-light);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.hb-login__form {
	display: grid;
	gap: 14px;
	width: 100%;
}

.hb-login__field {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--hb-white);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.hb-login__field input {
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	color: var(--hb-text-dark);
	background: rgba(247, 239, 249, .96);
	box-shadow: none;
	font-family: var(--hb-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	outline: 0;
}

.hb-login__field input:focus {
	border-color: var(--hb-gold);
	box-shadow: 0 0 0 3px rgba(215, 176, 106, .18);
}

.hb-login__password-control {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
}

.hb-login__password-control input {
	height: 50px;
	padding-right: 50px;
}

.hb-login__toggle-password {
	position: absolute;
	top: 6px;
	right: 7px;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 50% !important;
	color: var(--hb-purple-deep);
	background: transparent;
	box-shadow: none !important;
	font: inherit;
	line-height: 1;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
	transform: none;
	cursor: pointer;
}

.hb-login__toggle-password .hb-icon {
	display: block;
	width: 19px;
	height: 19px;
	margin: 0;
	stroke: currentColor;
}

.hb-login__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin: 4px 0 0;
	padding: 0 16px;
	border: 0;
	border-radius: 13px;
	color: var(--hb-white);
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light));
	box-shadow: 0 16px 28px rgba(72, 21, 106, .26);
	font-family: var(--hb-font);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.hb-login__button:disabled {
	opacity: .74;
	cursor: wait;
}

.hb-login__forgot {
	justify-self: center;
	color: var(--hb-muted-light);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.hb-login__forgot:hover,
.hb-login__forgot:focus {
	color: var(--hb-white);
	text-decoration: none;
}

.hb-login__message {
	margin: 0;
	padding: 11px 12px;
	border: 1px solid rgba(255, 125, 125, .3);
	border-radius: 12px;
	color: #fff;
	background: rgba(139, 25, 59, .34);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

@media (min-width: 769px) {
	.hb-login__panel {
		width: min(100%, 430px);
		padding: 34px 28px 26px;
	}

	.hb-login__brand h1 {
		font-size: 24px;
	}

	.hb-login__brand h1 span {
		font-size: 29px;
	}
}

.hb-app .hb-logout-link,
.hb-app .hb-logout-link:hover,
.hb-app .hb-logout-link:focus,
.hb-app .hb-logout-link:visited {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	margin-top: 14px !important;
	padding: 0 16px !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 12px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-align: center !important;
	text-decoration: none !important;
}

.hb-sidebar {
	display: none;
}

.hb-main {
	display: block;
	min-width: 0;
	min-height: 100dvh;
}

.hb-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	gap: 10px;
	padding: calc(10px + env(safe-area-inset-top)) 16px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	background: rgba(17, 8, 36, .86);
	backdrop-filter: blur(18px);
}

.hb-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-width: 0;
}

.hb-header__logo,
.hb-brand__logo {
	display: block;
	object-fit: contain;
}

.hb-header__logo {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.hb-header__greeting {
	min-width: 0;
}

.hb-header h1 {
	margin: 0;
	color: var(--hb-white);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.hb-eyebrow,
.hb-kicker {
	display: block;
	margin: 0;
	color: var(--hb-muted-light);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
}

.hb-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-shrink: 0;
}

.hb-nav-item,
.hb-bottom-nav__item,
.hb-icon-button,
.hb-soft-button,
.hb-section-heading button {
	border: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.hb-icon-button {
	position: relative;
	display: grid !important;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: var(--hb-white) !important;
	background: transparent !important;
	box-shadow: none !important;
}

.hb-icon-button:hover,
.hb-icon-button:focus-visible {
	background: rgba(255, 255, 255, .12) !important;
}

.hb-icon-button .hb-icon {
	width: 21px;
	height: 21px;
}

.hb-icon-button .hb-badge {
	position: absolute;
	top: 0;
	right: 0;
}

.hb-badge {
	display: inline-grid !important;
	place-items: center;
	min-width: 16px !important;
	height: 16px !important;
	padding: 0 4px !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: #d44a88 !important;
	font-size: 9px !important;
	font-weight: 600;
	line-height: 1;
}

.hb-badge[hidden] {
	display: none !important;
}

.hb-app [hidden] {
	display: none !important;
}

.hb-icon {
	display: block !important;
	width: 23px;
	height: 23px;
	flex-shrink: 0;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hb-content {
	min-width: 0;
	min-height: 0;
	padding: 16px 16px 22px;
	overflow: visible;
}

.hb-section {
	display: none;
	animation: hbFadeIn .2s ease;
}

.hb-section.is-active {
	display: block;
}

@keyframes hbFadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hb-progress-hero {
	display: grid;
	gap: 10px;
	margin: 0 0 24px;
	padding: 16px;
	border-radius: 14px;
	color: var(--hb-text-dark);
	background: linear-gradient(135deg, #fff8ff, var(--hb-card-secondary));
	box-shadow: 0 14px 32px rgba(7, 2, 18, .24);
}

.hb-progress-hero div:first-child {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.hb-progress-hero div:first-child span {
	grid-column: 1 / -1;
	color: rgba(40, 23, 53, .76);
	font-size: 12px;
	font-weight: 500;
}

.hb-progress-hero strong {
	color: var(--hb-text-dark);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
}

.hb-progress {
	height: 10px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(149, 80, 189, .16);
}

.hb-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--hb-purple), var(--hb-purple-light));
}

.hb-progress--small {
	height: 7px;
}

.hb-soft-button {
	justify-self: center;
	display: inline-flex !important;
	align-items: center;
	min-height: 34px;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 10px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 600;
}

.hb-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.hb-section-heading h2,
.hb-placeholder h2,
.hb-certificate-preview h2,
.hb-profile-card h2 {
	margin: 0;
	color: var(--hb-white);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.hb-section-heading button {
	padding: 0 !important;
	border: 0 !important;
	color: var(--hb-purple-light) !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 600;
}

.hb-course-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.hb-course-card,
.hb-placeholder,
.hb-certificate-preview,
.hb-profile-card {
	border-radius: 12px;
	box-shadow: var(--hb-shadow);
}

.hb-course-card {
	display: grid;
	grid-template-columns: 105px minmax(0, 1fr);
	min-height: 86px;
	overflow: hidden;
	color: var(--hb-text-dark);
	background: var(--hb-card);
}

.hb-course-card:hover,
.hb-course-card:focus-visible {
	color: var(--hb-text-dark);
	text-decoration: none;
}

.hb-course-card__image {
	width: 105px;
	min-height: 86px;
	height: 100%;
	object-fit: cover;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(149, 80, 189, .24)),
		linear-gradient(135deg, #d994a4, #f0c1cc 52%, #8d4bb1);
}

.hb-course-card__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: cover !important;
}

.hb-course-card__image--placeholder {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(149, 80, 189, .24)),
		linear-gradient(135deg, #d994a4, #f0c1cc 52%, #8d4bb1);
}

.hb-course-card__image--2 {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(149, 80, 189, .24)),
		linear-gradient(135deg, #a96ec7, #e5a2db 54%, #6a2f91);
}

.hb-course-card__image--3 {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(149, 80, 189, .18)),
		linear-gradient(135deg, #f0cfc7, #fff1f1 54%, #bd7686);
}

.hb-course-card__image--4 {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(149, 80, 189, .24)),
		linear-gradient(135deg, #c078ad, #f2b7d5 45%, #d7b06a);
}

.hb-course-card__body {
	display: grid;
	align-content: center;
	gap: 5px;
	min-width: 0;
	padding: 10px 12px;
}

.hb-course-card__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.hb-course-card h3 {
	flex: 1 1 auto;
	margin: 0;
	overflow: hidden;
	color: var(--hb-text-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-course-card__status {
	flex: 0 0 auto;
	max-width: 92px;
	overflow: hidden;
	padding: 3px 7px;
	border-radius: 999px;
	color: var(--hb-purple-deep);
	background: rgba(149, 80, 189, .12);
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-course-card__status--completed {
	color: #6f5424;
	background: rgba(215, 176, 106, .24);
}

.hb-course-card p {
	margin: 0;
	color: rgba(40, 23, 53, .72);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.25;
}

.hb-course-card__progress-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
}

.hb-course-card__progress-row strong {
	color: var(--hb-text-dark);
	font-size: 12px;
	font-weight: 600;
}

.hb-placeholder,
.hb-certificate-preview,
.hb-profile-card,
.hb-empty-state {
	display: grid;
	gap: 16px;
	padding: 20px;
	color: var(--hb-white);
	background: linear-gradient(145deg, rgba(247, 239, 249, .15), rgba(149, 80, 189, .16));
	border: 1px solid var(--hb-border);
}

.hb-placeholder p,
.hb-certificate-preview p,
.hb-profile-card p,
.hb-empty-state p {
	max-width: 620px;
	margin: 0;
	color: var(--hb-muted-light);
	font-size: 13px;
	line-height: 1.55;
}

.hb-placeholder--dark {
	background: linear-gradient(145deg, rgba(20, 8, 40, .84), rgba(65, 24, 94, .74));
}

.hb-mini-grid,
.hb-product-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.hb-mini-card,
.hb-timeline-card,
.hb-feed-card,
.hb-correction-card,
.hb-setting-row,
.hb-product-card {
	display: grid;
	gap: 8px;
	padding: 14px;
	border-radius: 12px;
	color: var(--hb-text-dark);
	background: var(--hb-card);
}

.hb-mini-card strong,
.hb-timeline-card strong,
.hb-feed-card strong,
.hb-correction-card strong,
.hb-setting-row span,
.hb-product-card strong {
	font-weight: 600;
}

.hb-mini-card span,
.hb-timeline-card span,
.hb-feed-card span,
.hb-correction-card span,
.hb-setting-row strong,
.hb-product-card em {
	color: var(--hb-purple-deep);
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
}

.hb-product-card {
	grid-template-columns: 64px minmax(0, 1fr) auto;
	align-items: center;
}

.hb-product-card span {
	width: 64px;
	aspect-ratio: 1.25;
	border-radius: 10px;
	background: linear-gradient(135deg, #c486dd, #f0b4c4 52%, #d7b06a);
}

.hb-certificate-card {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 230px;
	padding: 24px;
	border-radius: 12px;
	color: var(--hb-text-dark);
	background:
		linear-gradient(135deg, transparent 0 12%, rgba(215, 176, 106, .55) 12% 13%, transparent 13%),
		linear-gradient(225deg, transparent 0 12%, rgba(215, 176, 106, .55) 12% 13%, transparent 13%),
		#fff8fb;
	text-align: center;
}

.hb-certificate-card span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	letter-spacing: 3px;
}

.hb-certificate-card strong {
	font-size: 20px;
	font-weight: 600;
}

.hb-profile-card {
	grid-template-columns: 1fr;
	align-items: center;
}

.hb-avatar {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	overflow: hidden;
	border: 1px solid rgba(215, 176, 106, .35);
	border-radius: 50%;
	color: var(--hb-gold);
	background: rgba(255, 255, 255, .1);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
}

.hb-avatar img {
	display: block !important;
	width: 68% !important;
	height: 68% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: contain !important;
}

.hb-bottom-nav,
.hb-mobile-nav {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	column-gap: 8px;
	width: 100%;
	min-height: calc(66px + env(safe-area-inset-bottom));
	padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
	border-top: 1px solid rgba(255, 255, 255, .08);
	background: rgba(24, 10, 46, .94);
	backdrop-filter: blur(18px);
	box-shadow: 0 -14px 34px rgba(0, 0, 0, .3);
}

.hb-bottom-nav__item {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-width: 0;
	min-height: 52px;
	padding: 4px 2px !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: rgba(255, 255, 255, .75) !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 9px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
}

.hb-bottom-nav__item span {
	display: block;
	max-width: 100%;
	overflow: visible;
	font-size: 9px;
	font-weight: 500;
	line-height: 1.1;
	text-overflow: clip;
	white-space: nowrap;
}

.hb-bottom-nav__item .hb-icon {
	width: 23px;
	height: 23px;
}

.hb-bottom-nav__item.is-active {
	color: var(--hb-white) !important;
	background: rgba(149, 80, 189, .58) !important;
}

.hb-nav-item:focus-visible,
.hb-bottom-nav__item:focus-visible,
.hb-icon-button:focus-visible,
.hb-soft-button:focus-visible,
.hb-section-heading button:focus-visible {
	outline: 2px solid var(--hb-gold) !important;
	outline-offset: 3px;
}

@media (min-width: 390px) {
	.hb-bottom-nav__item {
		font-size: 9px;
	}
}

@media (min-width: 769px) {
	.hb-app {
		display: grid;
		grid-template-columns: 270px minmax(0, 1fr);
		padding-bottom: 0;
		overflow: hidden;
	}

	.hb-sidebar {
		display: flex;
		flex-direction: column;
		min-height: 100dvh;
		padding: 26px 20px;
		background: linear-gradient(180deg, rgba(22, 9, 44, .98), rgba(13, 6, 26, .98));
		border-right: 1px solid var(--hb-border);
		box-shadow: var(--hb-shadow);
	}

	.hb-brand {
		padding: 8px 8px 26px;
		text-align: center;
	}

	.hb-brand__logo {
		width: 100%;
		max-width: 190px;
		max-height: 96px;
		margin: 0 auto;
	}

	.hb-sidebar__nav {
		display: grid;
		gap: 7px;
	}

	.hb-nav-item {
		position: relative;
		display: grid !important;
		grid-template-columns: 21px minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		width: 100%;
		min-height: 44px;
		padding: 10px 13px !important;
		border: 0 !important;
		border-radius: 12px !important;
		color: rgba(255, 255, 255, .75) !important;
		background: transparent !important;
		box-shadow: none !important;
		font-size: 14px;
		font-weight: 500;
		text-align: left;
		transition: background .2s ease, color .2s ease;
	}

	.hb-nav-item .hb-icon {
		width: 21px;
		height: 21px;
	}

	.hb-nav-item:hover,
	.hb-nav-item:focus-visible,
	.hb-nav-item.is-active {
		color: var(--hb-white) !important;
		background: linear-gradient(135deg, rgba(196, 134, 221, .28), rgba(149, 80, 189, .54)) !important;
		outline: 0 !important;
	}

	.hb-vip-card {
		margin-top: auto;
		padding: 17px;
		border-radius: 12px;
		color: var(--hb-white);
		background: linear-gradient(135deg, rgba(149, 80, 189, .92), rgba(196, 134, 221, .68));
		box-shadow: 0 16px 42px rgba(0, 0, 0, .25);
		font-size: 14px;
	}

	.hb-vip-card__mark {
		margin-bottom: 4px;
		color: var(--hb-gold);
		font-family: Georgia, "Times New Roman", serif;
		font-size: 23px;
	}

	.hb-main {
		display: grid;
		grid-template-rows: auto minmax(0, 1fr);
		min-height: 100dvh;
	}

	.hb-header {
		position: static;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		padding: 22px clamp(22px, 4vw, 42px) 18px;
		background: rgba(17, 8, 36, .52);
	}

	.hb-header__top {
		order: 2;
	}

	.hb-header__logo {
		display: none;
	}

	.hb-header__greeting {
		order: 1;
	}

	.hb-header h1 {
		font-size: clamp(26px, 3vw, 36px);
	}

	.hb-eyebrow,
	.hb-kicker {
		font-size: 13px;
	}

	.hb-icon-button {
		width: 40px;
		height: 40px;
	}

	.hb-content {
		padding: 24px clamp(22px, 4vw, 42px) 40px;
		overflow: auto;
		scrollbar-color: rgba(196, 134, 221, .55) rgba(255, 255, 255, .08);
	}

	.hb-progress-hero {
		max-width: 780px;
		padding: 22px;
		border-radius: 14px;
	}

	.hb-progress-hero strong {
		font-size: 38px;
	}

	.hb-soft-button {
		justify-self: start;
	}

	.hb-section-heading h2,
	.hb-placeholder h2,
	.hb-certificate-preview h2,
	.hb-profile-card h2 {
		font-size: 24px;
	}

	.hb-course-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.hb-course-card {
		display: block;
		min-height: 0;
		border-radius: 12px;
	}

	.hb-course-card__image {
		width: 100%;
		min-height: 130px;
		height: 130px;
	}

	.hb-course-card__body {
		gap: 8px;
		padding: 14px;
	}

	.hb-course-card h3 {
		font-size: 15px;
		white-space: normal;
	}

	.hb-course-card p {
		font-size: 12px;
	}

	.hb-placeholder,
	.hb-certificate-preview,
	.hb-profile-card,
	.hb-empty-state {
		max-width: 880px;
		padding: 26px;
	}

	.hb-mini-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hb-product-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hb-profile-card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.hb-bottom-nav,
	.hb-mobile-nav {
		display: none;
	}
}

@media (min-width: 1181px) {
	.hb-app {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.hb-course-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 374px) {
	.hb-content {
		padding-inline: 14px;
	}

	.hb-course-card {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.hb-course-card__image {
		width: 96px;
	}

	.hb-bottom-nav,
	.hb-mobile-nav {
		padding-inline: 6px;
	}
}

/*
 * Course cards are anchors when they point to real Sensei courses.
 * Keep these rules at the end and scoped to `.hb-app a.hb-course-card`
 * so theme/page-builder anchor styles cannot flatten the card UI.
 */
.hb-app a.hb-course-card {
	display: grid !important;
	grid-template-columns: 105px minmax(0, 1fr) !important;
	min-height: 86px !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
	text-decoration: none !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
	isolation: isolate;
	position: relative;
	z-index: 1;
}

.hb-app a.hb-course-card:hover,
.hb-app a.hb-course-card:focus,
.hb-app a.hb-course-card:focus-visible,
.hb-app a.hb-course-card:visited {
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	text-decoration: none !important;
}

.hb-app a.hb-course-card .hb-course-card__image {
	width: 105px !important;
	min-height: 86px !important;
	height: 100% !important;
	background-color: var(--hb-card-secondary) !important;
	background-size: cover !important;
	background-position: center !important;
}

.hb-app a.hb-course-card .hb-course-card__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: cover !important;
}

.hb-app a.hb-course-card .hb-course-card__body {
	display: grid !important;
	align-content: center !important;
	gap: 5px !important;
	min-width: 0 !important;
	padding: 10px 12px !important;
	background: var(--hb-card) !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
	position: relative;
	z-index: 2;
}

.hb-app a.hb-course-card .hb-course-card__title-row {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	min-width: 0 !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card h3 {
	flex: 1 1 auto !important;
	margin: 0 !important;
	overflow: hidden !important;
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	letter-spacing: 0 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card p {
	margin: 0 !important;
	color: rgba(40, 23, 53, .72) !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card .hb-course-card__progress-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: center !important;
	gap: 8px !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card .hb-course-card__progress-row strong {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card .hb-course-card__status {
	flex: 0 0 auto !important;
	max-width: 92px !important;
	overflow: hidden !important;
	padding: 3px 7px !important;
	border-radius: 999px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
	font-size: 9px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card .hb-course-card__status--completed {
	color: #6f5424 !important;
	background: rgba(215, 176, 106, .24) !important;
	opacity: 1 !important;
}

.hb-app a.hb-course-card .hb-progress {
	opacity: 1 !important;
	filter: none !important;
}

.hb-app a.hb-course-card .hb-progress span {
	opacity: 1 !important;
	filter: none !important;
}

.hb-app .hb-empty-state {
	display: grid !important;
	gap: 16px !important;
	padding: 20px !important;
	border: 1px solid var(--hb-border) !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(145deg, rgba(247, 239, 249, .15), rgba(149, 80, 189, .16)) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-empty-state p {
	margin: 0 !important;
	color: var(--hb-muted-light) !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
}

.hb-app .hb-avatar img {
	display: block !important;
	width: 68% !important;
	height: 68% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: contain !important;
}

@media (min-width: 769px) {
	.hb-app a.hb-course-card {
		display: block !important;
		grid-template-columns: none !important;
		min-height: 0 !important;
		border-radius: 12px !important;
		background: var(--hb-card) !important;
	}

	.hb-app a.hb-course-card .hb-course-card__image {
		width: 100% !important;
		min-height: 130px !important;
		height: 130px !important;
	}

	.hb-app a.hb-course-card .hb-course-card__body {
		gap: 8px !important;
		padding: 14px !important;
	}

	.hb-app a.hb-course-card h3 {
		font-size: 15px !important;
		white-space: normal !important;
	}

	.hb-app a.hb-course-card p {
		font-size: 12px !important;
	}

	.hb-app .hb-empty-state {
		max-width: 880px !important;
		padding: 26px !important;
	}
}

@media (max-width: 374px) {
	.hb-app a.hb-course-card {
		grid-template-columns: 96px minmax(0, 1fr) !important;
	}

	.hb-app a.hb-course-card .hb-course-card__image {
		width: 96px !important;
	}
}

/*
 * Desktop readability pass.
 * Mobile is already correct; on wider screens some theme styles can make
 * the course title/subtitle look too dim. These selectors intentionally
 * target only real course cards on desktop.
 */
@media (min-width: 769px) {
	.hb-app .hb-course-grid {
		align-items: stretch !important;
	}

	.hb-app a.hb-course-card,
	.hb-app a.hb-course-card:hover,
	.hb-app a.hb-course-card:focus,
	.hb-app a.hb-course-card:visited {
		background: var(--hb-card) !important;
		color: var(--hb-text-dark) !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card .hb-course-card__body {
		min-height: 126px !important;
		background: var(--hb-card) !important;
		color: var(--hb-text-dark) !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card .hb-course-card__title-row {
		align-items: flex-start !important;
	}

	.hb-app a.hb-course-card h3,
	.hb-app a.hb-course-card h3:hover,
	.hb-app a.hb-course-card h3:visited {
		color: var(--hb-text-dark) !important;
		font-size: 16px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		text-shadow: none !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card p {
		color: rgba(40, 23, 53, .82) !important;
		font-size: 13px !important;
		font-weight: 500 !important;
		line-height: 1.35 !important;
		text-shadow: none !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card .hb-course-card__progress-row strong {
		color: var(--hb-text-dark) !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card .hb-course-card__status {
		color: var(--hb-purple-deep) !important;
		background: rgba(149, 80, 189, .16) !important;
		opacity: 1 !important;
	}

	.hb-app a.hb-course-card .hb-course-card__status--completed {
		color: #6f5424 !important;
		background: rgba(215, 176, 106, .28) !important;
	}
}

.hb-app .hb-certificates {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 14px !important;
	width: 100% !important;
}

.hb-app .hb-certificate-item {
	display: grid !important;
	overflow: hidden !important;
	width: 100% !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-certificate-preview-panel {
	position: relative;
	display: grid !important;
	place-items: center !important;
	min-height: 210px !important;
	overflow: hidden !important;
	padding: 24px !important;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(234, 220, 241, .86)),
		linear-gradient(135deg, rgba(215, 176, 106, .28), transparent 30%),
		var(--hb-card-secondary) !important;
}

.hb-app .hb-certificate-preview-panel img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: .28 !important;
}

.hb-app .hb-certificate-preview-text {
	position: relative !important;
	z-index: 1 !important;
	display: grid !important;
	place-items: center !important;
	gap: 6px !important;
	max-width: 100% !important;
	text-align: center !important;
}

.hb-app .hb-certificate-preview-text span {
	color: var(--hb-text-dark) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 25px !important;
	font-weight: 400 !important;
	letter-spacing: 3px !important;
	line-height: 1.15 !important;
}

.hb-app .hb-certificate-preview-text small {
	color: rgba(40, 23, 53, .7) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-certificate-preview-text strong {
	max-width: 100% !important;
	color: var(--hb-purple-deep) !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	overflow-wrap: anywhere !important;
}

.hb-app .hb-certificate-meta {
	display: grid !important;
	gap: 5px !important;
	padding: 16px 16px 0 !important;
	background: var(--hb-card) !important;
}

.hb-app .hb-certificate-meta .hb-kicker {
	color: var(--hb-purple-deep) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
}

.hb-app .hb-certificate-meta h3 {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-certificate-meta p {
	margin: 0 !important;
	color: rgba(40, 23, 53, .72) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-certificate-actions {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 8px !important;
	padding: 16px !important;
	background: var(--hb-card) !important;
}

.hb-app a.hb-certificate-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px !important;
	padding: 0 16px !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 10px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
}

.hb-app a.hb-certificate-button:hover,
.hb-app a.hb-certificate-button:focus,
.hb-app a.hb-certificate-button:visited {
	color: var(--hb-purple-deep) !important;
	text-decoration: none !important;
}

.hb-app a.hb-certificate-button--primary {
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	border-color: transparent !important;
}

.hb-app a.hb-certificate-button--primary:hover,
.hb-app a.hb-certificate-button--primary:focus,
.hb-app a.hb-certificate-button--primary:visited {
	color: var(--hb-white) !important;
}

@media (min-width: 769px) {
	.hb-app .hb-certificates {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 18px !important;
	}

	.hb-app .hb-certificate-preview-panel {
		min-height: 230px !important;
	}

	.hb-app .hb-certificate-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (min-width: 1181px) {
	.hb-app .hb-certificates {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

.hb-app .hb-dynamic-section {
	width: 100% !important;
}

.hb-app .hb-loader {
	display: grid !important;
	place-items: center !important;
	gap: 12px !important;
	min-height: 260px !important;
	color: var(--hb-white) !important;
	text-align: center !important;
}

.hb-app .hb-loader span {
	width: 34px !important;
	height: 34px !important;
	border: 3px solid rgba(255, 255, 255, .24) !important;
	border-top-color: var(--hb-gold) !important;
	border-radius: 50% !important;
	animation: hb-spin .8s linear infinite !important;
}

.hb-app .hb-loader p {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
}

@keyframes hb-spin {
	to {
		transform: rotate(360deg);
	}
}

.hb-app .hb-course-player {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	max-width: 980px !important;
	margin: 0 auto !important;
	padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-course-header {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) 44px !important;
	align-items: center !important;
	min-height: 56px !important;
	gap: 4px !important;
}

.hb-app .hb-course-header h2 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.hb-app .hb-course-header__button {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: var(--hb-white) !important;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

.hb-app .hb-course-header__button .hb-icon {
	width: 22px !important;
	height: 22px !important;
}

.hb-app .hb-course-media {
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	overflow: hidden !important;
	width: 100% !important;
	aspect-ratio: 16 / 9 !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 14px !important;
	background: linear-gradient(135deg, rgba(149, 80, 189, .44), rgba(215, 176, 106, .18)) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-course-media img,
.hb-app .hb-course-media video,
.hb-app .hb-course-media iframe {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-course-media span {
	color: rgba(255, 255, 255, .78) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.hb-app .hb-course-progress {
	display: grid !important;
	gap: 9px !important;
	width: 100% !important;
	padding: 12px 14px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 12px !important;
	background: rgba(255, 255, 255, .08) !important;
}

.hb-app .hb-course-progress > div:first-child {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

.hb-app .hb-course-progress strong,
.hb-app .hb-course-progress span {
	color: var(--hb-white) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-course-tabs {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 0 !important;
	width: 100% !important;
	border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
}

.hb-app .hb-course-tab {
	position: relative !important;
	min-width: 0 !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 3px !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: rgba(255, 255, 255, .72) !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-align: center !important;
	white-space: nowrap !important;
	cursor: pointer !important;
}

.hb-app .hb-course-tab::after {
	content: "" !important;
	position: absolute !important;
	right: 10px !important;
	bottom: -1px !important;
	left: 10px !important;
	height: 3px !important;
	border-radius: 999px !important;
	background: transparent !important;
}

.hb-app .hb-course-tab.is-active {
	color: var(--hb-white) !important;
}

.hb-app .hb-course-tab.is-active::after {
	background: var(--hb-purple-light) !important;
}

.hb-app .hb-course-tab-panel {
	display: none !important;
}

.hb-app .hb-course-tab-panel.is-active {
	display: block !important;
}

.hb-app .hb-modules {
	display: grid !important;
	gap: 12px !important;
	width: 100% !important;
}

.hb-app .hb-module {
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-module-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-align: left !important;
	cursor: pointer !important;
}

.hb-app .hb-module-header .hb-icon {
	width: 18px !important;
	height: 18px !important;
	transition: transform .18s ease !important;
}

.hb-app .hb-module.is-open .hb-module-header .hb-icon {
	transform: rotate(180deg) !important;
}

.hb-app .hb-module-lessons {
	display: grid !important;
	border-top: 1px solid rgba(40, 23, 53, .08) !important;
}

.hb-app .hb-module .hb-module-lessons[hidden] {
	display: none !important;
}

.hb-app a.hb-lesson-row {
	display: grid !important;
	grid-template-columns: 38px minmax(0, 1fr) !important;
	align-items: center !important;
	min-height: 58px !important;
	padding: 8px 12px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.hb-app a.hb-lesson-row + a.hb-lesson-row {
	border-top: 1px solid rgba(40, 23, 53, .07) !important;
}

.hb-app a.hb-lesson-row:hover,
.hb-app a.hb-lesson-row:focus,
.hb-app a.hb-lesson-row:visited {
	color: var(--hb-text-dark) !important;
	text-decoration: none !important;
}

.hb-app a.hb-lesson-row.is-current {
	background: rgba(149, 80, 189, .12) !important;
}

.hb-app a.hb-lesson-row.is-locked {
	opacity: .62 !important;
	cursor: not-allowed !important;
}

.hb-app .hb-lesson-status {
	display: inline-grid !important;
	place-items: center !important;
	width: 28px !important;
	height: 28px !important;
	border-radius: 50% !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
}

.hb-app .hb-lesson-row.is-completed .hb-lesson-status {
	color: var(--hb-white) !important;
	background: var(--hb-purple) !important;
}

.hb-app .hb-lesson-status .hb-icon {
	width: 16px !important;
	height: 16px !important;
}

.hb-app .hb-lesson-row__text {
	display: grid !important;
	gap: 3px !important;
	min-width: 0 !important;
}

.hb-app .hb-lesson-row__text strong {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	overflow-wrap: anywhere !important;
}

.hb-app .hb-lesson-row__text small {
	color: rgba(40, 23, 53, .62) !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
}

.hb-app .hb-course-info,
.hb-app .hb-lesson-content {
	overflow: hidden !important;
	width: 100% !important;
	padding: 16px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-course-info *,
.hb-app .hb-lesson-content * {
	max-width: 100% !important;
}

.hb-app .hb-course-info p,
.hb-app .hb-lesson-content p {
	color: rgba(40, 23, 53, .82) !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
}

.hb-app .hb-course-files {
	display: grid !important;
	gap: 10px !important;
	width: 100% !important;
	min-width: 0 !important;
}

.hb-app .hb-course-file {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) auto !important;
	gap: 10px !important;
	align-items: center !important;
	min-width: 0 !important;
	padding: 12px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-course-file__icon {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 10px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.hb-app .hb-course-file__info {
	display: grid !important;
	gap: 4px !important;
	min-width: 0 !important;
}

.hb-app .hb-course-file__name {
	overflow-wrap: anywhere !important;
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-course-file__meta {
	color: rgba(40, 23, 53, .62) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.hb-app .hb-course-file__action {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	min-height: 36px !important;
	padding: 0 10px !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 11px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
}

.hb-app .hb-course-file__action:hover,
.hb-app .hb-course-file__action:focus,
.hb-app .hb-course-file__action:visited {
	color: var(--hb-purple-deep) !important;
	text-decoration: none !important;
}

.hb-app .hb-course-file__action .hb-icon {
	width: 15px !important;
	height: 15px !important;
	flex: 0 0 15px !important;
}

.hb-app .hb-lesson-action-bar {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 9px !important;
	width: 100% !important;
	margin-bottom: 12px !important;
	padding: 10px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, .08) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-lesson-action {
	position: relative !important;
	display: inline-grid !important;
	place-items: center !important;
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	min-height: 46px !important;
	max-height: 56px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(196, 134, 221, .28) !important;
	border-radius: 13px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: 0 10px 22px rgba(73, 22, 103, .18) !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.hb-app .hb-lesson-action:hover,
.hb-app .hb-lesson-action:focus,
.hb-app .hb-lesson-action:visited {
	color: var(--hb-white) !important;
	text-decoration: none !important;
}

.hb-app .hb-lesson-action .hb-icon {
	width: 21px !important;
	height: 21px !important;
}

.hb-app .hb-lesson-action.is-completed {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
	border-color: rgba(149, 80, 189, .22) !important;
	box-shadow: none !important;
	cursor: default !important;
}

.hb-app .hb-lesson-action.is-disabled {
	color: rgba(40, 23, 53, .42) !important;
	background: rgba(247, 239, 249, .68) !important;
	border-color: rgba(149, 80, 189, .14) !important;
	box-shadow: none !important;
	cursor: not-allowed !important;
}

.hb-app .hb-lesson-action::after {
	content: attr(data-tooltip) !important;
	position: absolute !important;
	right: 50% !important;
	bottom: calc(100% + 8px) !important;
	z-index: 10 !important;
	width: max-content !important;
	max-width: 150px !important;
	padding: 7px 9px !important;
	border-radius: 8px !important;
	color: var(--hb-white) !important;
	background: rgba(17, 8, 36, .94) !important;
	box-shadow: 0 10px 22px rgba(7, 2, 18, .22) !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	text-align: center !important;
	white-space: normal !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transform: translateX(50%) translateY(4px) !important;
	transition: opacity .16s ease, transform .16s ease !important;
}

.hb-app .hb-lesson-action:hover::after,
.hb-app .hb-lesson-action:focus::after {
	opacity: 1 !important;
	transform: translateX(50%) translateY(0) !important;
}

.hb-app .hb-lesson-content iframe,
.hb-app .hb-lesson-content video,
.hb-app .hb-lesson-content embed,
.hb-app .hb-lesson-content object,
.hb-app .hb-lesson-content .wp-video,
.hb-app .hb-lesson-content .wp-video-shortcode,
.hb-app .hb-lesson-content .videopress-player,
.hb-app .hb-lesson-content .jetpack-video-wrapper {
	width: 100% !important;
	max-width: 100% !important;
}

.hb-app .hb-lesson-content iframe,
.hb-app .hb-lesson-content video {
	border-radius: 12px !important;
}

.hb-app .hb-lesson-content > .wp-block-sensei-lms-lesson-actions:first-child,
.hb-app .hb-lesson-content > .sensei-lesson-actions:first-child,
.hb-app .hb-lesson-content > .lesson-actions:first-child,
.hb-app .hb-lesson-content > .sensei-buttons-container:first-child,
.hb-app .hb-lesson-content > .wp-block-buttons:first-child {
	display: none !important;
}

.hb-app .hb-lesson-content .wp-block-sensei-lms-lesson-actions,
.hb-app .hb-lesson-content .sensei-lesson-actions,
.hb-app .hb-lesson-content .lesson-actions,
.hb-app .hb-lesson-content .sensei-buttons-container,
.hb-app .hb-lesson-content .wp-block-buttons {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 9px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	clear: both !important;
}

.hb-app .hb-lesson-content .wp-block-sensei-lms-lesson-actions form,
.hb-app .hb-lesson-content .sensei-lesson-actions form,
.hb-app .hb-lesson-content .lesson-actions form,
.hb-app .hb-lesson-content .sensei-buttons-container form {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hb-app .hb-lesson-content .wp-block-button {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.hb-app .hb-lesson-content .wp-block-button__link,
.hb-app .hb-lesson-content .wp-element-button,
.hb-app .hb-lesson-content .sensei-lesson-actions a,
.hb-app .hb-lesson-content .sensei-lesson-actions button,
.hb-app .hb-lesson-content .lesson-actions a,
.hb-app .hb-lesson-content .lesson-actions button,
.hb-app .hb-lesson-content .sensei-buttons-container a,
.hb-app .hb-lesson-content .sensei-buttons-container button,
.hb-app .hb-lesson-content input.quiz-submit,
.hb-app .hb-lesson-content input.sensei-stop-double-submission {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 1px solid rgba(149, 80, 189, .24) !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: 0 10px 22px rgba(73, 22, 103, .18) !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-shadow: none !important;
	white-space: normal !important;
	opacity: 1 !important;
	cursor: pointer !important;
}

.hb-app .hb-lesson-content .wp-block-button__link:hover,
.hb-app .hb-lesson-content .wp-block-button__link:focus,
.hb-app .hb-lesson-content .wp-block-button__link:visited,
.hb-app .hb-lesson-content .wp-element-button:hover,
.hb-app .hb-lesson-content .wp-element-button:focus,
.hb-app .hb-lesson-content .wp-element-button:visited,
.hb-app .hb-lesson-content .sensei-lesson-actions a:hover,
.hb-app .hb-lesson-content .sensei-lesson-actions a:focus,
.hb-app .hb-lesson-content .sensei-lesson-actions a:visited,
.hb-app .hb-lesson-content .lesson-actions a:hover,
.hb-app .hb-lesson-content .lesson-actions a:focus,
.hb-app .hb-lesson-content .lesson-actions a:visited,
.hb-app .hb-lesson-content .sensei-buttons-container a:hover,
.hb-app .hb-lesson-content .sensei-buttons-container a:focus,
.hb-app .hb-lesson-content .sensei-buttons-container a:visited {
	color: var(--hb-white) !important;
	text-decoration: none !important;
}

.hb-app .hb-lesson-content .wp-block-button.is-style-outline .wp-block-button__link,
.hb-app .hb-lesson-content .wp-block-buttons .wp-block-button:not(:first-child) .wp-block-button__link,
.hb-app .hb-lesson-content .sensei-lesson-actions a + a,
.hb-app .hb-lesson-content .lesson-actions a + a,
.hb-app .hb-lesson-content .sensei-buttons-container a + a {
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
	border-color: rgba(149, 80, 189, .22) !important;
	box-shadow: none !important;
}

.hb-app .hb-lesson-content .wp-block-button.is-style-outline .wp-block-button__link:hover,
.hb-app .hb-lesson-content .wp-block-button.is-style-outline .wp-block-button__link:focus,
.hb-app .hb-lesson-content .wp-block-button.is-style-outline .wp-block-button__link:visited,
.hb-app .hb-lesson-content .sensei-lesson-actions a + a:hover,
.hb-app .hb-lesson-content .sensei-lesson-actions a + a:focus,
.hb-app .hb-lesson-content .sensei-lesson-actions a + a:visited,
.hb-app .hb-lesson-content .lesson-actions a + a:hover,
.hb-app .hb-lesson-content .lesson-actions a + a:focus,
.hb-app .hb-lesson-content .lesson-actions a + a:visited,
.hb-app .hb-lesson-content .sensei-buttons-container a + a:hover,
.hb-app .hb-lesson-content .sensei-buttons-container a + a:focus,
.hb-app .hb-lesson-content .sensei-buttons-container a + a:visited {
	color: var(--hb-purple-deep) !important;
}

.hb-app .hb-lesson-content .sensei-lesson-actions + .wp-block-video,
.hb-app .hb-lesson-content .lesson-actions + .wp-block-video,
.hb-app .hb-lesson-content .sensei-buttons-container + .wp-block-video,
.hb-app .hb-lesson-content .wp-block-buttons + .wp-block-video,
.hb-app .hb-lesson-content .wp-block-buttons + figure,
.hb-app .hb-lesson-content .wp-block-buttons + .wp-block-embed,
.hb-app .hb-lesson-content .wp-block-buttons + .jetpack-video-wrapper {
	margin-top: 12px !important;
}

.hb-app .hb-lesson-title h3 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
	overflow-wrap: anywhere !important;
}

.hb-app .hb-lesson-completion {
	position: sticky !important;
	bottom: calc(76px + env(safe-area-inset-bottom)) !important;
	z-index: 4 !important;
	margin-top: 14px !important;
}

.hb-app .hb-complete-lesson {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: var(--hb-shadow) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.hb-app .hb-complete-lesson:disabled,
.hb-app .hb-complete-lesson.is-completed {
	opacity: .82 !important;
	cursor: default !important;
}

.hb-app .hb-complete-lesson--link,
.hb-app .hb-complete-lesson--link:hover,
.hb-app .hb-complete-lesson--link:focus,
.hb-app .hb-complete-lesson--link:visited {
	color: var(--hb-white) !important;
	text-decoration: none !important;
}

.hb-app .hb-complete-lesson .hb-icon {
	width: 18px !important;
	height: 18px !important;
}

.hb-app .hb-lesson-pagination {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 10px !important;
	margin-top: 16px !important;
}

.hb-app .hb-lesson-pagination a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(255, 255, 255, .14) !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .08) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

@media (min-width: 390px) {
	.hb-app .hb-course-tab {
		font-size: 11px !important;
	}
}

@media (min-width: 769px) {
	.hb-app .hb-course-player {
		max-width: 1040px !important;
		padding-bottom: 34px !important;
	}

	.hb-app .hb-course-header h2 {
		font-size: 18px !important;
	}

	.hb-app .hb-course-tab {
		font-size: 13px !important;
	}

	.hb-app .hb-modules {
		gap: 14px !important;
	}

	.hb-app .hb-lesson-pagination {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.hb-app .hb-lesson-completion {
		position: static !important;
	}
}

.hb-app .hb-lesson-player .hb-lesson-content .wp-block-sensei-lms-lesson-actions,
.hb-app .hb-lesson-player .hb-lesson-content .sensei-lesson-actions,
.hb-app .hb-lesson-player .hb-lesson-content .lesson-actions,
.hb-app .hb-lesson-player .hb-lesson-content .sensei-buttons-container,
.hb-app .hb-lesson-player .hb-lesson-content .wp-block-buttons {
	display: none !important;
}

.hb-app .hb-shop {
	display: grid !important;
	gap: 16px !important;
	width: 100% !important;
}

.hb-app .hb-shop-cart-link,
.hb-app .hb-shop-checkout {
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 36px !important;
	padding: 0 12px !important;
	border: 1px solid rgba(196, 134, 221, .28) !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .09) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.hb-app .hb-shop-cart-link:hover,
.hb-app .hb-shop-cart-link:focus,
.hb-app .hb-shop-cart-link:visited,
.hb-app .hb-shop-checkout:hover,
.hb-app .hb-shop-checkout:focus,
.hb-app .hb-shop-checkout:visited {
	color: var(--hb-white) !important;
	text-decoration: none !important;
}

.hb-app .hb-shop-cart-link .hb-badge {
	position: static !important;
}

.hb-app .hb-shop-filters {
	display: flex !important;
	gap: 8px !important;
	width: 100% !important;
	overflow-x: auto !important;
	padding: 2px 0 4px !important;
	scrollbar-width: none !important;
}

.hb-app .hb-shop-filters::-webkit-scrollbar {
	display: none !important;
}

.hb-app .hb-shop-filters button {
	flex: 0 0 auto !important;
	min-height: 34px !important;
	margin: 0 !important;
	padding: 0 13px !important;
	border: 1px solid rgba(196, 134, 221, .2) !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .09) !important;
	box-shadow: none !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
}

.hb-app .hb-shop-filters button.is-active {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
	border-color: transparent !important;
}

.hb-app .hb-shop-feedback {
	padding: 11px 12px !important;
	border: 1px solid rgba(196, 134, 221, .22) !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .1) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-shop-group {
	display: grid !important;
	gap: 10px !important;
	width: 100% !important;
}

.hb-app .hb-section-heading--compact {
	margin: 0 !important;
}

.hb-app .hb-section-heading--compact h3 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-shop-products {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	width: 100% !important;
}

.hb-app .hb-shop-product {
	display: grid !important;
	grid-template-columns: 104px minmax(0, 1fr) !important;
	gap: 12px !important;
	width: 100% !important;
	min-width: 0 !important;
	overflow: hidden !important;
	padding: 10px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-shop-product__image {
	display: grid !important;
	place-items: center !important;
	width: 104px !important;
	aspect-ratio: 1 / 1 !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	color: var(--hb-gold) !important;
	background: linear-gradient(135deg, rgba(149, 80, 189, .26), rgba(215, 176, 106, .2)) !important;
	text-decoration: none !important;
}

.hb-app .hb-shop-product__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-shop-product__image span {
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 26px !important;
	font-weight: 400 !important;
}

.hb-app .hb-shop-product__content {
	display: grid !important;
	align-content: start !important;
	gap: 7px !important;
	min-width: 0 !important;
}

.hb-app .hb-shop-product__meta {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	min-width: 0 !important;
}

.hb-app .hb-shop-product__meta span,
.hb-app .hb-shop-product__meta em {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 20px !important;
	padding: 0 8px !important;
	border-radius: 999px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
	font-size: 9px !important;
	font-style: normal !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}

.hb-app .hb-shop-product__meta em {
	color: #6f5424 !important;
	background: rgba(215, 176, 106, .28) !important;
}

.hb-app .hb-shop-product__title {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.22 !important;
}

.hb-app .hb-shop-product__title a,
.hb-app .hb-shop-product__title a:hover,
.hb-app .hb-shop-product__title a:focus,
.hb-app .hb-shop-product__title a:visited {
	color: var(--hb-text-dark) !important;
	text-decoration: none !important;
}

.hb-app .hb-shop-product__price {
	color: var(--hb-purple-deep) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-shop-product__price del {
	color: rgba(40, 23, 53, .48) !important;
	font-weight: 600 !important;
}

.hb-app .hb-shop-product__actions {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 7px !important;
	margin-top: 2px !important;
}

.hb-app .hb-shop-product__link,
.hb-app .hb-shop-product__add {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 34px !important;
	margin: 0 !important;
	padding: 0 10px !important;
	border: 1px solid rgba(149, 80, 189, .2) !important;
	border-radius: 10px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
	box-shadow: none !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.hb-app .hb-shop-product__add {
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	border-color: transparent !important;
}

.hb-app .hb-shop-product__link:hover,
.hb-app .hb-shop-product__link:focus,
.hb-app .hb-shop-product__link:visited,
.hb-app .hb-shop-product__add:hover,
.hb-app .hb-shop-product__add:focus,
.hb-app .hb-shop-product__add:visited {
	text-decoration: none !important;
}

.hb-app .hb-shop-product__add--link.is-disabled {
	opacity: .65 !important;
	pointer-events: none !important;
}

.hb-app .hb-shop-product__add:disabled,
.hb-app .hb-shop-product__add.is-loading {
	opacity: .72 !important;
	cursor: wait !important;
}

.hb-app .hb-shop-product__add.is-added {
	background: linear-gradient(135deg, #7f3ca7, var(--hb-purple)) !important;
}

@media (min-width: 430px) {
	.hb-app .hb-shop-product {
		grid-template-columns: 118px minmax(0, 1fr) !important;
	}

	.hb-app .hb-shop-product__image {
		width: 118px !important;
	}
}

@media (min-width: 769px) {
	.hb-app .hb-shop-products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}

	.hb-app .hb-shop-product {
		grid-template-columns: 128px minmax(0, 1fr) !important;
	}

	.hb-app .hb-shop-product__image {
		width: 128px !important;
	}
}

.hb-app .hb-product {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-product-header {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) 44px !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 54px !important;
}

.hb-app .hb-product-header h2 {
	margin: 0 !important;
	overflow: hidden !important;
	color: var(--hb-white) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.hb-app .hb-product-header__button {
	position: relative !important;
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .08) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.hb-app .hb-product-header__button .hb-badge {
	top: 2px !important;
	right: 0 !important;
}

.hb-app .hb-product-layout {
	display: grid !important;
	gap: 14px !important;
	min-width: 0 !important;
}

.hb-app .hb-product-gallery,
.hb-app .hb-product-info {
	min-width: 0 !important;
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 16px !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-product-gallery {
	display: grid !important;
	gap: 10px !important;
	padding: 10px !important;
}

.hb-app .hb-product-main-image {
	display: grid !important;
	place-items: center !important;
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	overflow: hidden !important;
	border-radius: 14px !important;
	color: var(--hb-gold) !important;
	background: linear-gradient(135deg, rgba(149, 80, 189, .28), rgba(215, 176, 106, .2)) !important;
}

.hb-app .hb-product-main-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-product-main-image span {
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 40px !important;
}

.hb-app .hb-product-thumbs {
	display: flex !important;
	gap: 8px !important;
	overflow-x: auto !important;
	padding-bottom: 2px !important;
	scrollbar-width: none !important;
}

.hb-app .hb-product-thumbs::-webkit-scrollbar {
	display: none !important;
}

.hb-app .hb-product-thumbs button {
	flex: 0 0 58px !important;
	width: 58px !important;
	height: 58px !important;
	margin: 0 !important;
	padding: 3px !important;
	overflow: hidden !important;
	border: 2px solid transparent !important;
	border-radius: 12px !important;
	background: rgba(149, 80, 189, .13) !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

.hb-app .hb-product-thumbs button.is-active {
	border-color: var(--hb-purple-light) !important;
}

.hb-app .hb-product-thumbs img {
	width: 100% !important;
	height: 100% !important;
	border-radius: 8px !important;
	object-fit: cover !important;
}

.hb-app .hb-product-info {
	display: grid !important;
	gap: 12px !important;
	padding: 16px !important;
	color: var(--hb-text-dark) !important;
}

.hb-app .hb-product-meta {
	display: flex !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
}

.hb-app .hb-product-meta span,
.hb-app .hb-product-meta em {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 22px !important;
	padding: 0 9px !important;
	border-radius: 999px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .12) !important;
	font-size: 10px !important;
	font-style: normal !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.hb-app .hb-product-meta em {
	color: #6f5424 !important;
	background: rgba(215, 176, 106, .28) !important;
}

.hb-app .hb-product-title {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 24px !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
}

.hb-app .hb-product-price {
	color: var(--hb-purple-deep) !important;
	font-size: 20px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-product-price del {
	color: rgba(40, 23, 53, .48) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
}

.hb-app .hb-product-stock {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	width: fit-content !important;
	min-height: 28px !important;
	padding: 0 10px !important;
	border-radius: 999px !important;
	color: #24683a !important;
	background: rgba(61, 150, 90, .14) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.hb-app .hb-product-stock.is-out {
	color: #8d3450 !important;
	background: rgba(167, 55, 84, .14) !important;
}

.hb-app .hb-product-stock span {
	color: inherit !important;
	opacity: .8 !important;
}

.hb-app .hb-product-description {
	color: rgba(40, 23, 53, .82) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.55 !important;
}

.hb-app .hb-product-description p {
	margin: 0 0 10px !important;
}

.hb-app .hb-product-description p:last-child {
	margin-bottom: 0 !important;
}

.hb-app details.hb-product-description {
	padding-top: 4px !important;
}

.hb-app details.hb-product-description summary {
	color: var(--hb-purple-deep) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	cursor: pointer !important;
}

.hb-app .hb-product-attributes {
	display: grid !important;
	gap: 10px !important;
}

.hb-app .hb-product-attributes label {
	display: grid !important;
	gap: 6px !important;
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.hb-app .hb-product-attributes select {
	width: 100% !important;
	height: 46px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid rgba(149, 80, 189, .24) !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .72) !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.hb-app .hb-product-variation-message {
	margin: 0 !important;
	color: #8d3450 !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}

.hb-app .hb-product-quantity {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	padding: 10px 12px !important;
	border-radius: 14px !important;
	background: rgba(149, 80, 189, .1) !important;
}

.hb-app .hb-product-quantity > span,
.hb-app .hb-product-quantity > strong {
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-product-quantity > div {
	display: grid !important;
	grid-template-columns: 40px 54px 40px !important;
	align-items: center !important;
	gap: 6px !important;
}

.hb-app .hb-product-quantity button,
.hb-app .hb-product-quantity input {
	width: 100% !important;
	height: 40px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	text-align: center !important;
}

.hb-app .hb-product-quantity button {
	color: var(--hb-white) !important;
	background: var(--hb-purple) !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	cursor: pointer !important;
}

.hb-app .hb-product-quantity input {
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .78) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
}

.hb-app .hb-product-actions {
	display: grid !important;
	gap: 8px !important;
}

.hb-app .hb-product-add {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: none !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.hb-app .hb-product-add:disabled,
.hb-app .hb-product-add.is-disabled,
.hb-app .hb-product-add.is-loading {
	opacity: .62 !important;
	cursor: not-allowed !important;
}

.hb-app .hb-product-add.is-added {
	background: linear-gradient(135deg, #7f3ca7, var(--hb-purple)) !important;
}

.hb-app .hb-product-specs {
	display: grid !important;
	gap: 8px !important;
	padding-top: 2px !important;
}

.hb-app .hb-product-specs div {
	display: grid !important;
	gap: 3px !important;
	padding: 9px 10px !important;
	border-radius: 12px !important;
	background: rgba(149, 80, 189, .08) !important;
}

.hb-app .hb-product-specs strong {
	color: var(--hb-purple-deep) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.hb-app .hb-product-specs span {
	color: rgba(40, 23, 53, .76) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-product-feedback {
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
}

@media (min-width: 769px) {
	.hb-app .hb-product {
		padding-bottom: 28px !important;
	}

	.hb-app .hb-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr) !important;
		align-items: start !important;
	}

	.hb-app .hb-product-main-image {
		aspect-ratio: 4 / 3 !important;
	}
}

.hb-app .hb-cart {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-cart-header {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) 44px !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 54px !important;
}

.hb-app .hb-cart-header h2 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center !important;
}

.hb-app .hb-cart-header__button,
.hb-app .hb-cart-header__count {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .08) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.hb-app .hb-cart-header__count {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-layout {
	display: grid !important;
	gap: 14px !important;
	min-width: 0 !important;
}

.hb-app .hb-cart-items {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
}

.hb-app .hb-cart-item {
	display: grid !important;
	grid-template-columns: 82px minmax(0, 1fr) !important;
	gap: 10px !important;
	width: 100% !important;
	min-width: 0 !important;
	overflow: hidden !important;
	padding: 10px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 16px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-cart-item__image {
	display: grid !important;
	place-items: center !important;
	width: 82px !important;
	aspect-ratio: 1 / 1 !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	color: var(--hb-gold) !important;
	background: linear-gradient(135deg, rgba(149, 80, 189, .22), rgba(215, 176, 106, .18)) !important;
}

.hb-app .hb-cart-item__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-cart-item__image span {
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 22px !important;
}

.hb-app .hb-cart-item__info {
	display: grid !important;
	align-content: start !important;
	gap: 5px !important;
	min-width: 0 !important;
}

.hb-app .hb-cart-item__info h3 {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-cart-item__variation {
	color: rgba(40, 23, 53, .7) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-cart-item__variation dl,
.hb-app .hb-cart-item__variation dt,
.hb-app .hb-cart-item__variation dd,
.hb-app .hb-cart-item__variation p {
	margin: 0 !important;
}

.hb-app .hb-cart-item__price {
	color: var(--hb-purple-deep) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-item__subtotal {
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-item__controls {
	grid-column: 1 / -1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

.hb-app .hb-cart-item__quantity {
	display: inline-grid !important;
	grid-template-columns: 40px 48px 40px !important;
	align-items: center !important;
	width: min(100%, 132px) !important;
	overflow: hidden !important;
	gap: 0 !important;
	border: 1px solid rgba(149, 80, 189, .18) !important;
	border-radius: 13px !important;
	background: rgba(149, 80, 189, .1) !important;
}

.hb-app .hb-cart-item__quantity button,
.hb-app .hb-cart-item__quantity input,
.hb-app .hb-cart-item__quantity strong {
	display: inline-grid !important;
	place-items: center !important;
	width: 100% !important;
	height: 38px !important;
	min-width: 0 !important;
	min-height: 38px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-align: center !important;
	line-height: 1 !important;
	appearance: none !important;
}

.hb-app .hb-cart-item__quantity button {
	color: var(--hb-white) !important;
	background: var(--hb-purple) !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	cursor: pointer !important;
}

.hb-app .hb-cart-item__quantity input,
.hb-app .hb-cart-item__quantity strong {
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .68) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-item__quantity input::-webkit-outer-spin-button,
.hb-app .hb-cart-item__quantity input::-webkit-inner-spin-button {
	margin: 0 !important;
	appearance: none !important;
}

.hb-app .hb-cart-item__quantity input[type="number"] {
	-moz-appearance: textfield !important;
}

.hb-app .hb-cart-item__remove {
	display: inline-grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 38px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: #8d3450 !important;
	background: rgba(167, 55, 84, .12) !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

.hb-app .hb-cart-summary,
.hb-app .hb-cart-empty {
	display: grid !important;
	gap: 12px !important;
	padding: 16px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 16px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-cart-empty p {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-align: center !important;
}

.hb-app .hb-cart-empty button {
	min-height: 46px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-summary h3 {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-summary__rows {
	display: grid !important;
	gap: 8px !important;
}

.hb-app .hb-cart-summary__rows div {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	color: rgba(40, 23, 53, .76) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.hb-app .hb-cart-summary__rows strong {
	color: var(--hb-text-dark) !important;
	font-weight: 900 !important;
	text-align: right !important;
}

.hb-app .hb-cart-summary__total {
	margin-top: 4px !important;
	padding-top: 10px !important;
	border-top: 1px solid rgba(149, 80, 189, .18) !important;
	font-size: 15px !important;
}

.hb-app .hb-cart-coupon {
	display: grid !important;
	gap: 7px !important;
}

.hb-app .hb-cart-coupon label {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-coupon div {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 8px !important;
}

.hb-app .hb-cart-coupon input,
.hb-app .hb-cart-coupon button {
	height: 42px !important;
	margin: 0 !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}

.hb-app .hb-cart-coupon input {
	min-width: 0 !important;
	padding: 0 10px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .78) !important;
}

.hb-app .hb-cart-coupon button {
	padding: 0 12px !important;
	color: var(--hb-white) !important;
	background: var(--hb-purple) !important;
}

.hb-app .hb-cart-coupons {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 7px !important;
}

.hb-app .hb-cart-coupons button {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	min-height: 30px !important;
	margin: 0 !important;
	padding: 0 9px !important;
	border: 1px solid rgba(149, 80, 189, .18) !important;
	border-radius: 999px !important;
	color: var(--hb-purple-deep) !important;
	background: rgba(149, 80, 189, .1) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.hb-app .hb-cart-coupons span {
	opacity: .7 !important;
}

.hb-app .hb-cart-checkout {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.hb-app .hb-cart-checkout.is-disabled {
	opacity: .58 !important;
	pointer-events: none !important;
}

.hb-app .hb-cart-feedback {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
}

@media (min-width: 769px) {
	.hb-app .hb-cart {
		padding-bottom: 28px !important;
	}

	.hb-app .hb-cart-layout {
		grid-template-columns: minmax(0, 1fr) 320px !important;
		align-items: start !important;
	}

	.hb-app .hb-cart-item {
		grid-template-columns: 96px minmax(0, 1fr) auto !important;
		align-items: center !important;
	}

	.hb-app .hb-cart-item__image {
		width: 96px !important;
	}

	.hb-app .hb-cart-item__controls {
		grid-column: auto !important;
		display: grid !important;
		justify-items: end !important;
	}
}

.hb-app.is-checkout-route {
	padding-bottom: env(safe-area-inset-bottom) !important;
}

.hb-app.is-checkout-route .hb-bottom-nav,
.hb-app.is-checkout-route .hb-mobile-nav {
	display: none !important;
}

.hb-app .hb-checkout {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-checkout-header {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) 44px !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 54px !important;
}

.hb-app .hb-checkout-header h2 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center !important;
}

.hb-app .hb-checkout-header__button,
.hb-app .hb-checkout-header__count {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .08) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.hb-app .hb-checkout-header__count {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-checkout-shell,
.hb-app .hb-checkout-empty {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
}

.hb-app .hb-checkout-empty,
.hb-app .hb-checkout-notice,
.hb-app .hb-checkout-official {
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 16px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-checkout-empty,
.hb-app .hb-checkout-notice {
	padding: 14px !important;
}

.hb-app .hb-checkout-empty p,
.hb-app .hb-checkout-notice p {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.4 !important;
}

.hb-app .hb-checkout-notice {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

.hb-app .hb-checkout-notice a {
	flex: 0 0 auto !important;
	color: var(--hb-purple-deep) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.hb-app .hb-checkout-empty button {
	min-height: 46px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.hb-app .hb-checkout-official {
	padding: 14px !important;
}

.hb-app .hb-checkout-official .woocommerce {
	color: var(--hb-text-dark) !important;
	font-family: inherit !important;
}

.hb-app .hb-checkout-official form.checkout {
	display: grid !important;
	gap: 14px !important;
	margin: 0 !important;
}

.hb-app .hb-checkout-official .col2-set,
.hb-app .hb-checkout-official .col-1,
.hb-app .hb-checkout-official .col-2 {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}

.hb-app .hb-checkout-official .col2-set {
	display: grid !important;
	gap: 14px !important;
}

.hb-app .hb-checkout-official .woocommerce-billing-fields,
.hb-app .hb-checkout-official .woocommerce-shipping-fields,
.hb-app .hb-checkout-official .woocommerce-additional-fields,
.hb-app .hb-checkout-official #order_review,
.hb-app .hb-checkout-official #payment {
	padding: 14px !important;
	border: 1px solid rgba(149, 80, 189, .14) !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, .58) !important;
}

.hb-app .hb-checkout-official h3,
.hb-app .hb-checkout-official #order_review_heading {
	margin: 0 0 12px !important;
	color: var(--hb-text-dark) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-checkout-official label {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}

.hb-app .hb-checkout-official .form-row {
	margin: 0 0 11px !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
}

.hb-app .hb-checkout-official .form-row:last-child {
	margin-bottom: 0 !important;
}

.hb-app .hb-checkout-official input.input-text,
.hb-app .hb-checkout-official textarea,
.hb-app .hb-checkout-official select,
.hb-app .hb-checkout-official .select2-container .select2-selection--single {
	min-height: 46px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .86) !important;
	box-shadow: none !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.hb-app .hb-checkout-official textarea {
	min-height: 96px !important;
	padding-top: 10px !important;
}

.hb-app .hb-checkout-official .select2-container {
	width: 100% !important;
	max-width: 100% !important;
}

.hb-app .hb-checkout-official .select2-selection__rendered {
	line-height: 44px !important;
	padding-left: 0 !important;
	color: var(--hb-text-dark) !important;
}

.hb-app .hb-checkout-official .select2-selection__arrow {
	height: 44px !important;
}

.hb-app .hb-checkout-official table.shop_table {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse !important;
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
}

.hb-app .hb-checkout-official table.shop_table th,
.hb-app .hb-checkout-official table.shop_table td {
	padding: 9px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(149, 80, 189, .14) !important;
	color: var(--hb-text-dark) !important;
	font-weight: 800 !important;
	vertical-align: top !important;
}

.hb-app .hb-checkout-official table.shop_table tfoot tr:last-child th,
.hb-app .hb-checkout-official table.shop_table tfoot tr:last-child td {
	border-bottom: 0 !important;
	font-size: 15px !important;
	font-weight: 900 !important;
}

.hb-app .hb-checkout-official #payment ul.payment_methods {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.hb-app .hb-checkout-official #payment ul.payment_methods li {
	margin: 0 0 10px !important;
	padding: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	list-style: none !important;
}

.hb-app .hb-checkout-official #payment div.payment_box {
	margin: 9px 0 0 !important;
	padding: 10px !important;
	border-radius: 12px !important;
	color: rgba(40, 23, 53, .78) !important;
	background: rgba(149, 80, 189, .1) !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
}

.hb-app .hb-checkout-official .place-order {
	margin: 0 !important;
	padding: 0 !important;
}

.hb-app .hb-checkout-official #place_order,
.hb-app .hb-checkout-official button[type="submit"] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 12px 0 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: none !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

.hb-app .hb-checkout-official .woocommerce-error,
.hb-app .hb-checkout-official .woocommerce-info,
.hb-app .hb-checkout-official .woocommerce-message {
	margin: 0 0 12px !important;
	padding: 12px !important;
	border: 1px solid rgba(149, 80, 189, .18) !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(149, 80, 189, .1) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.4 !important;
}

@media (min-width: 769px) {
	.hb-app .hb-checkout {
		padding-bottom: 28px !important;
	}

	.hb-app .hb-checkout-official form.checkout {
		grid-template-columns: minmax(0, 1fr) minmax(320px, .54fr) !important;
		align-items: start !important;
	}

	.hb-app .hb-checkout-official .col2-set {
		grid-column: 1 !important;
		width: 100% !important;
	}

	.hb-app .hb-checkout-official #order_review_heading,
	.hb-app .hb-checkout-official #order_review {
		grid-column: 2 !important;
	}

	.hb-app .hb-checkout-official #order_review {
		position: sticky !important;
		top: 18px !important;
	}
}

.hb-app .hb-profile,
.hb-app .hb-order-detail {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-profile-message {
	padding: 12px !important;
	border-radius: 14px !important;
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.hb-app .hb-profile-header {
	display: grid !important;
	justify-items: center !important;
	gap: 10px !important;
	padding: 18px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 18px !important;
	background: rgba(255, 255, 255, .08) !important;
	box-shadow: var(--hb-shadow) !important;
	text-align: center !important;
}

.hb-app .hb-profile-avatar {
	display: grid !important;
	place-items: center !important;
	width: 132px !important;
	height: 132px !important;
	overflow: hidden !important;
	border: 1px solid rgba(215, 176, 106, .5) !important;
	border-radius: 999px !important;
	color: var(--hb-gold) !important;
	background: rgba(255, 255, 255, .12) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 28px !important;
}

.hb-app .hb-profile-avatar img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-profile-photo {
	display: grid !important;
	justify-items: center !important;
	gap: 10px !important;
}

.hb-app .hb-profile-photo__actions {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
}

.hb-app .hb-profile-photo__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 38px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: none !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.hb-app .hb-profile-photo__button--ghost {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
}

.hb-app .hb-profile-photo__button:disabled {
	opacity: .65 !important;
	cursor: wait !important;
}

.hb-app .hb-profile-photo__status {
	margin: 0 !important;
	color: rgba(255, 255, 255, .82) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-align: center !important;
}

.hb-app .hb-profile-summary span,
.hb-app .hb-profile-summary p {
	margin: 0 !important;
	color: rgba(255, 255, 255, .78) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}

.hb-app .hb-profile-summary h2 {
	margin: 3px 0 !important;
	color: var(--hb-white) !important;
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
}

.hb-app .hb-profile-grid {
	display: grid !important;
	gap: 14px !important;
	min-width: 0 !important;
}

.hb-app .hb-profile-section,
.hb-app .hb-order-card {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
	padding: 16px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 16px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-profile-section h3,
.hb-app .hb-order-card h3 {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-profile-fields {
	display: grid !important;
	gap: 10px !important;
}

.hb-app .hb-profile-field {
	display: grid !important;
	gap: 6px !important;
	margin: 0 !important;
}

.hb-app .hb-profile-field span {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.hb-app .hb-profile-field input,
.hb-app .hb-profile-field select {
	width: 100% !important;
	min-height: 46px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .82) !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.hb-app .hb-profile-save,
.hb-app .hb-profile-actions button,
.hb-app .hb-profile-logout {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 46px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.hb-app .hb-profile-save:disabled {
	opacity: .65 !important;
	cursor: wait !important;
}

.hb-app .hb-profile-order {
	display: grid !important;
	gap: 8px !important;
	padding: 12px !important;
	border-radius: 14px !important;
	background: rgba(149, 80, 189, .09) !important;
}

.hb-app .hb-profile-order div {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

.hb-app .hb-profile-order strong,
.hb-app .hb-profile-order em {
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-style: normal !important;
	font-weight: 900 !important;
}

.hb-app .hb-profile-order span {
	color: rgba(40, 23, 53, .68) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}

.hb-app .hb-profile-order a,
.hb-app .hb-profile-downloads a {
	color: var(--hb-purple-deep) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.hb-app .hb-profile-empty,
.hb-app .hb-profile-security p {
	margin: 0 !important;
	color: rgba(40, 23, 53, .7) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.hb-app .hb-profile-actions {
	align-content: start !important;
}

.hb-app .hb-profile-logout {
	color: #8d3450 !important;
	background: rgba(167, 55, 84, .12) !important;
}

.hb-app .hb-order-header {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) 44px !important;
	align-items: center !important;
	gap: 8px !important;
	min-height: 54px !important;
}

.hb-app .hb-order-header h2 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	text-align: center !important;
}

.hb-app .hb-order-header__button {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	border: 0 !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .08) !important;
}

.hb-app .hb-order-summary-card,
.hb-app .hb-order-totals {
	gap: 8px !important;
}

.hb-app .hb-order-summary-card div,
.hb-app .hb-order-totals div {
	display: flex !important;
	justify-content: space-between !important;
	gap: 12px !important;
	color: rgba(40, 23, 53, .72) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.hb-app .hb-order-summary-card strong,
.hb-app .hb-order-totals strong {
	color: var(--hb-text-dark) !important;
	text-align: right !important;
}

.hb-app .hb-order-item {
	display: grid !important;
	grid-template-columns: 64px minmax(0, 1fr) auto !important;
	gap: 10px !important;
	align-items: center !important;
	padding: 10px 0 !important;
	border-bottom: 1px solid rgba(149, 80, 189, .14) !important;
}

.hb-app .hb-order-item:last-child {
	border-bottom: 0 !important;
}

.hb-app .hb-order-item__image {
	display: grid !important;
	place-items: center !important;
	width: 64px !important;
	height: 64px !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	color: var(--hb-gold) !important;
	background: rgba(149, 80, 189, .12) !important;
}

.hb-app .hb-order-item__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-order-item strong,
.hb-app .hb-order-item em {
	color: var(--hb-text-dark) !important;
	font-size: 13px !important;
	font-style: normal !important;
	font-weight: 900 !important;
}

.hb-app .hb-order-item span,
.hb-app .hb-order-address,
.hb-app .hb-order-item__meta {
	color: rgba(40, 23, 53, .7) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.hb-app .hb-order-total {
	margin-top: 4px !important;
	padding-top: 10px !important;
	border-top: 1px solid rgba(149, 80, 189, .18) !important;
	font-size: 15px !important;
}

.hb-app .hb-order-addresses {
	display: grid !important;
	gap: 14px !important;
}

@media (min-width: 769px) {
	.hb-app .hb-profile,
	.hb-app .hb-order-detail {
		padding-bottom: 28px !important;
	}

	.hb-app .hb-profile-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		align-items: start !important;
	}

	.hb-app .hb-profile-header,
	.hb-app .hb-profile-message {
		grid-column: 1 / -1 !important;
	}

	.hb-app .hb-order-addresses {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

.hb-app .hb-messages,
.hb-app .hb-message-detail {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-messages__header {
	display: grid !important;
	gap: 6px !important;
	min-width: 0 !important;
}

.hb-app .hb-messages__header h2 {
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
}

.hb-app .hb-messages__header p {
	margin: 0 !important;
	color: rgba(255, 255, 255, .78) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
}

.hb-app .hb-message-filters {
	display: flex !important;
	gap: 8px !important;
	width: 100% !important;
	overflow-x: auto !important;
	padding-bottom: 2px !important;
	scrollbar-width: none !important;
}

.hb-app .hb-message-filters::-webkit-scrollbar {
	display: none !important;
}

.hb-app .hb-message-filters button {
	flex: 0 0 auto !important;
	min-height: 34px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .1) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
}

.hb-app .hb-message-filters button.is-active {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
}

.hb-app .hb-message-list {
	display: grid !important;
	gap: 10px !important;
	min-width: 0 !important;
}

.hb-app .hb-message-item {
	display: grid !important;
	grid-template-columns: 10px minmax(0, 1fr) 22px !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding: 13px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(245, 237, 247, .92) !important;
	text-align: left !important;
	box-shadow: var(--hb-shadow) !important;
	cursor: pointer !important;
}

.hb-app .hb-message-item--unread {
	background: var(--hb-card) !important;
	border-color: rgba(186, 116, 216, .35) !important;
}

.hb-app .hb-message-dot {
	width: 8px !important;
	height: 8px !important;
	border-radius: 999px !important;
	background: transparent !important;
}

.hb-app .hb-message-item--unread .hb-message-dot {
	background: var(--hb-purple) !important;
	box-shadow: 0 0 0 4px rgba(149, 80, 189, .16) !important;
}

.hb-app .hb-message-item__body {
	display: grid !important;
	gap: 4px !important;
	min-width: 0 !important;
}

.hb-app .hb-message-title,
.hb-app .hb-message-type,
.hb-app .hb-message-excerpt,
.hb-app .hb-message-date {
	display: block !important;
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.hb-app .hb-message-title {
	color: var(--hb-text-dark) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-message-item--unread .hb-message-title {
	font-weight: 950 !important;
}

.hb-app .hb-message-type {
	width: fit-content !important;
	max-width: 100% !important;
	padding: 3px 8px !important;
	border-radius: 999px !important;
	color: var(--hb-purple) !important;
	background: rgba(149, 80, 189, .12) !important;
	font-size: 10px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-message-excerpt,
.hb-app .hb-message-date {
	color: rgba(40, 23, 53, .66) !important;
	font-size: 12px !important;
	font-weight: 650 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-message-item > .hb-icon {
	width: 20px !important;
	height: 20px !important;
	color: rgba(40, 23, 53, .52) !important;
}

.hb-app .hb-message-detail__header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
	min-height: 50px !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-message-detail__header button {
	display: inline-grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .1) !important;
	cursor: pointer !important;
}

.hb-app .hb-message-detail__header h2 {
	min-width: 0 !important;
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center !important;
}

.hb-app .hb-message-detail__card {
	display: grid !important;
	gap: 14px !important;
	min-width: 0 !important;
	padding: 16px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-message-detail__meta,
.hb-app .hb-message-author {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	min-width: 0 !important;
}

.hb-app .hb-message-detail__meta {
	justify-content: space-between !important;
}

.hb-app .hb-message-detail__card h3 {
	margin: 0 !important;
	color: var(--hb-text-dark) !important;
	font-size: 18px !important;
	font-weight: 950 !important;
	line-height: 1.2 !important;
}

.hb-app .hb-message-author img {
	width: 32px !important;
	height: 32px !important;
	border-radius: 999px !important;
	object-fit: cover !important;
}

.hb-app .hb-message-author span {
	color: rgba(40, 23, 53, .72) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}

.hb-app .hb-message-content {
	min-width: 0 !important;
	color: rgba(40, 23, 53, .8) !important;
	font-size: 13px !important;
	font-weight: 650 !important;
	line-height: 1.55 !important;
}

.hb-app .hb-message-content > :first-child {
	margin-top: 0 !important;
}

.hb-app .hb-message-content > :last-child {
	margin-bottom: 0 !important;
}

.hb-app .hb-message-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	padding: 0 16px !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-align: center !important;
	text-decoration: none !important;
}

@media (min-width: 769px) {
	.hb-app .hb-messages,
	.hb-app .hb-message-detail {
		max-width: 760px !important;
		margin: 0 auto !important;
		padding-bottom: 28px !important;
	}
}

.hb-app .hb-community,
.hb-app .hb-new-submission,
.hb-app .hb-submission-detail {
	display: grid !important;
	gap: 14px !important;
	width: 100% !important;
	min-width: 0 !important;
	padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-community-header {
	display: grid !important;
	gap: 14px !important;
	align-items: start !important;
}

.hb-app .hb-community-header h2,
.hb-app .hb-community-header p,
.hb-app .hb-new-submission__intro h3,
.hb-app .hb-new-submission__intro p,
.hb-app .hb-submission-detail__content h3,
.hb-app .hb-submission-conversation h3,
.hb-app .hb-submission-conversation p {
	margin: 0 !important;
}

.hb-app .hb-community-header h2 {
	color: var(--hb-white) !important;
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
}

.hb-app .hb-community-header p,
.hb-app .hb-new-submission__intro p {
	color: var(--hb-muted-light) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
}

.hb-app .hb-community-header p {
	color: rgba(255, 255, 255, .78) !important;
}

.hb-app .hb-community-header > button,
.hb-app .hb-submission-card__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	padding: 0 16px !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-align: center !important;
	cursor: pointer !important;
}

.hb-app .hb-submission-filters {
	display: flex !important;
	gap: 8px !important;
	width: 100% !important;
	overflow-x: auto !important;
	padding-bottom: 2px !important;
	scrollbar-width: none !important;
}

.hb-app .hb-submission-filters::-webkit-scrollbar {
	display: none !important;
}

.hb-app .hb-submission-filters button {
	flex: 0 0 auto !important;
	min-height: 34px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 999px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .1) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
}

.hb-app .hb-submission-filters button.is-active {
	color: var(--hb-purple-deep) !important;
	background: var(--hb-card) !important;
}

.hb-app .hb-submissions {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
}

.hb-app .hb-submission-card,
.hb-app .hb-submission-detail__card,
.hb-app .hb-new-submission__intro,
.hb-app .hb-new-submission__form,
.hb-app .hb-submission-conversation {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
	padding: 14px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 14px !important;
	color: var(--hb-text-dark) !important;
	background: var(--hb-card) !important;
	box-shadow: var(--hb-shadow) !important;
}

.hb-app .hb-submission-card__header,
.hb-app .hb-submission-detail__header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
	min-width: 0 !important;
}

.hb-app .hb-submission-detail__header {
	min-height: 50px !important;
	color: var(--hb-white) !important;
}

.hb-app .hb-submission-detail__header button {
	display: inline-grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 14px !important;
	color: var(--hb-white) !important;
	background: rgba(255, 255, 255, .1) !important;
	cursor: pointer !important;
}

.hb-app .hb-submission-detail__header h2 {
	min-width: 0 !important;
	margin: 0 !important;
	color: var(--hb-white) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center !important;
}

.hb-app .hb-submission-author {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	min-width: 0 !important;
}

.hb-app .hb-submission-author img {
	width: 38px !important;
	height: 38px !important;
	flex: 0 0 38px !important;
	border-radius: 999px !important;
	object-fit: cover !important;
}

.hb-app .hb-submission-author div,
.hb-app .hb-submission-card__body,
.hb-app .hb-submission-detail__content {
	display: grid !important;
	gap: 4px !important;
	min-width: 0 !important;
}

.hb-app .hb-submission-author strong,
.hb-app .hb-submission-card__body h3,
.hb-app .hb-submission-detail__content h3 {
	overflow-wrap: anywhere !important;
	color: var(--hb-text-dark) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-submission-author span,
.hb-app .hb-submission-meta,
.hb-app .hb-submission-note {
	margin: 0 !important;
	color: rgba(40, 23, 53, .72) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.45 !important;
}

.hb-app .hb-submission-status {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 28px !important;
	padding: 0 10px !important;
	border-radius: 999px !important;
	white-space: nowrap !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.hb-app .hb-submission-status--pending,
.hb-app .hb-status--pending {
	color: #78510f !important;
	background: #fae9be !important;
}

.hb-app .hb-submission-status--reviewed,
.hb-app .hb-status--reviewed {
	color: var(--hb-white) !important;
	background: var(--hb-purple) !important;
}

.hb-app .hb-submission-status--approved,
.hb-app .hb-status--approved {
	color: #25643d !important;
	background: #ccefd7 !important;
}

.hb-app .hb-submission-gallery {
	display: grid !important;
	gap: 8px !important;
	min-width: 0 !important;
}

.hb-app .hb-submission-gallery--2,
.hb-app .hb-submission-gallery--3 {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.hb-app .hb-submission-gallery--3 .hb-submission-image:first-child {
	grid-column: 1 / -1 !important;
}

.hb-app .hb-submission-image {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	background: rgba(149, 80, 189, .12) !important;
}

.hb-app .hb-submission-image__more {
	position: absolute !important;
	inset: 0 !important;
	display: grid !important;
	place-items: center !important;
	color: var(--hb-white) !important;
	background: rgba(18, 4, 35, .58) !important;
	font-size: 24px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.hb-app .hb-submission-gallery--1 .hb-submission-image {
	aspect-ratio: 4 / 3 !important;
}

.hb-app .hb-submission-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.hb-app .hb-new-submission__intro h3,
.hb-app .hb-submission-conversation h3 {
	color: var(--hb-text-dark) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-new-submission__intro > p,
.hb-app .hb-new-submission__intro > p * {
	color: rgba(40, 23, 53, .72) !important;
}

.hb-app .hb-conversation,
.hb-app .hb-review-form {
	display: grid !important;
	gap: 12px !important;
	min-width: 0 !important;
}

.hb-app .hb-conversation-message {
	display: grid !important;
	gap: 6px !important;
	min-width: 0 !important;
	padding: 12px !important;
	border-radius: 14px !important;
	border: 1px solid rgba(149, 80, 189, .14) !important;
}

.hb-app .hb-conversation-message--student {
	background: rgba(255, 255, 255, .72) !important;
}

.hb-app .hb-conversation-message--teacher {
	background: rgba(149, 80, 189, .16) !important;
}

.hb-app .hb-conversation-message span,
.hb-app .hb-review-form label span {
	color: var(--hb-text-dark) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.hb-app .hb-conversation-message p {
	margin: 0 !important;
	white-space: pre-wrap !important;
	color: rgba(40, 23, 53, .78) !important;
	font-size: 13px !important;
	font-weight: 650 !important;
	line-height: 1.45 !important;
}

.hb-app .hb-review-form {
	padding-top: 2px !important;
}

.hb-app .hb-review-form label {
	display: grid !important;
	gap: 7px !important;
	min-width: 0 !important;
}

.hb-app .hb-review-form textarea,
.hb-app .hb-review-form select {
	width: 100% !important;
	min-width: 0 !important;
	border: 1px solid rgba(149, 80, 189, .22) !important;
	border-radius: 12px !important;
	color: var(--hb-text-dark) !important;
	background: rgba(255, 255, 255, .82) !important;
	font: inherit !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.hb-app .hb-review-form textarea {
	min-height: 110px !important;
	padding: 11px 12px !important;
	resize: vertical !important;
}

.hb-app .hb-review-form select {
	height: 44px !important;
	padding: 0 12px !important;
}

.hb-app .hb-review-form button,
.hb-app .hb-empty-state button[data-hb-new-submission] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	padding: 0 16px !important;
	border-radius: 12px !important;
	color: var(--hb-white) !important;
	background: linear-gradient(135deg, var(--hb-purple), var(--hb-purple-light)) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-align: center !important;
	cursor: pointer !important;
}

.hb-app .hb-review-form button:disabled {
	opacity: .68 !important;
	cursor: wait !important;
}

.hb-app .hb-review-form__message {
	margin: 0 !important;
	padding: 10px 12px !important;
	border-radius: 12px !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-review-form__message.is-success {
	color: #25643d !important;
	background: #ccefd7 !important;
}

.hb-app .hb-review-form__message.is-error {
	color: #7a245f !important;
	background: rgba(164, 73, 132, .12) !important;
}

.hb-app .hb-new-submission__form form,
.hb-app .hb-new-submission__form .jet-form-builder {
	max-width: 100% !important;
}

.hb-app .hb-submission-form-errors {
	display: block !important;
	padding: 10px 12px !important;
	border: 1px solid rgba(164, 73, 132, .25) !important;
	border-radius: 12px !important;
	color: #7a245f !important;
	background: rgba(164, 73, 132, .12) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-submission-field-error {
	display: block !important;
	margin: 6px 0 10px !important;
	color: #7a245f !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.hb-app .hb-new-submission__form [aria-invalid="true"] {
	border-color: #a44984 !important;
	box-shadow: 0 0 0 2px rgba(164, 73, 132, .14) !important;
}

@media (min-width: 769px) {
	.hb-app .hb-community,
	.hb-app .hb-new-submission,
	.hb-app .hb-submission-detail {
		padding-bottom: 28px !important;
	}

	.hb-app .hb-community-header {
		grid-template-columns: minmax(0, 1fr) auto !important;
		align-items: center !important;
	}

	.hb-app .hb-submissions {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.hb-app .hb-submission-detail,
	.hb-app .hb-new-submission {
		max-width: 760px !important;
		margin: 0 auto !important;
	}
}

.hb-login .hb-login__message[hidden],
.hb-app .hb-badge[hidden],
.hb-app .hb-cart-header__count[hidden],
.hb-app .hb-checkout-header__count[hidden],
.hb-app .hb-course-tab-panel[hidden],
.hb-app .hb-module-lessons[hidden],
.hb-app .hb-message-item[hidden],
.hb-app .hb-profile-photo__button[hidden],
.hb-app .hb-profile-photo__status[hidden],
.hb-app .hb-shop-feedback[hidden],
.hb-app .hb-shop-group[hidden],
.hb-app .hb-shop-product[hidden],
.hb-app .hb-empty-state[hidden],
.hb-app .hb-submission-card[hidden],
.hb-app .hb-submission-form-errors[hidden],
.hb-app .hb-profile-message[hidden],
.hb-app .hb-product-variation-message[hidden] {
	display: none !important;
}
