/* Feel India Hospitality — frontend + admin shared styles */

:root {
	/* Palette built around the Feel logo: brick red on warm cream paper. */
	--fih-maroon: #a01e1e;        /* logo brick red (primary) */
	--fih-maroon-dark: #7d1414;
	--fih-gold: #c2873a;          /* warm terracotta-gold accent */
	--fih-gold-dark: #a06f29;
	--fih-cream: #f4eee2;         /* warm paper */
	--fih-ink: #2a1c18;           /* warm near-black */
	--fih-muted: #6b6258;
	--fih-line: #e6ddcf;
	--fih-navy: #18202f;          /* Jampack-inspired neutral sidebar */
	--fih-blue: #3862f4;
	--fih-teal: #1d9a8a;
	--fih-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--fih-serif: "Fraunces", Georgia, "Times New Roman", serif;
	--fih-shadow: 0 10px 30px rgba(24, 32, 47, 0.08);
}


.fih-wrap {
	max-width: 860px;
	margin: 40px auto;
	padding: 0 16px;
	font-family: var(--fih-sans);
	color: var(--fih-ink);
}

/* Premium typography + base */
.fih-wrap,
.fih-portal,
body.fih-app-body {
	font-family: var(--fih-sans);
	color: var(--fih-ink);
	-webkit-font-smoothing: antialiased;
}

.fih-card h1,
.fih-card h2,
.fih-card h3,
.fih-page-title,
.fih-onboard-brand strong,
.fih-brand-text strong,
.fih-brand strong {
	font-family: var(--fih-serif);
	letter-spacing: -0.01em;
	font-weight: 600;
}

.fih-register-wrap {
	max-width: 760px;
}

/* Branded sign-in / reset page */
.fih-auth-wrap {
	max-width: 1040px;
	min-height: min(760px, calc(100vh - 80px));
	display: flex;
	align-items: center;
	justify-content: center;
}

.fih-auth-shell {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
	background: #fff;
	border: 1px solid #e6e8ec;
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(24, 32, 47, 0.12);
	overflow: hidden;
}

.fih-auth-intro {
	background: #18202f;
	color: #fff;
	padding: 46px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 520px;
}

.fih-auth-logo {
	margin-bottom: 32px;
}

.fih-auth-logo img {
	height: 60px;
	width: auto;
	display: block;
	background: var(--fih-cream);
	border-radius: 8px;
	padding: 8px 14px;
}

.fih-auth-kicker {
	color: #8fd7ca;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fih-auth-intro h1 {
	margin: 12px 0;
	font-size: 42px;
	line-height: 1.05;
	font-family: var(--fih-serif);
}

.fih-auth-intro p {
	max-width: 420px;
	margin: 0;
	color: #c8d1df;
	font-size: 15px;
	line-height: 1.7;
}

.fih-auth-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.fih-auth-pills span {
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #eef3f8;
	font-size: 12px;
	font-weight: 700;
	padding: 7px 11px;
}

.fih-auth-main {
	display: flex;
	align-items: center;
	padding: 42px;
}

.fih-auth-card {
	width: 100%;
	margin: 0;
	box-shadow: none;
	border: 0;
	padding: 0;
}

.fih-auth-card h2 {
	font-size: 26px;
	margin-bottom: 20px;
}

.fih-auth-alt {
	margin-top: 14px;
	font-size: 14px;
}

.fih-auth-alt a {
	color: var(--fih-maroon);
	text-decoration: none;
}

.fih-auth-alt a:hover {
	text-decoration: underline;
}

@media (max-width: 860px) {
	.fih-auth-wrap {
		min-height: auto;
		margin: 20px auto;
	}

	.fih-auth-shell {
		grid-template-columns: 1fr;
	}

	.fih-auth-intro {
		min-height: 0;
		padding: 30px 24px;
	}

	.fih-auth-intro h1 {
		font-size: 32px;
	}

	.fih-auth-logo {
		margin-bottom: 20px;
	}

	.fih-auth-main {
		padding: 28px 24px 32px;
	}
}

.fih-card {
	background: #fff;
	border: 1px solid #e6e8ec;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--fih-shadow);
}

.fih-card h1 {
	margin-top: 0;
	font-size: 26px;
}

.fih-card h2 {
	margin-top: 0;
	font-size: 20px;
}

.fih-sub {
	color: #646970;
	margin-top: -6px;
}

.fih-form .fih-field {
	margin-bottom: 16px;
	flex: 1;
}

.fih-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}

.fih-form input[type="text"],
.fih-form input[type="email"],
.fih-form input[type="password"],
.fih-form input[type="number"],
.fih-form select,
.fih-form textarea {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid #d9dee8;
	border-radius: 8px;
	font-size: 14px;
	font-family: var(--fih-sans);
	color: var(--fih-ink);
	background: #f8fafc;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fih-form input:focus,
.fih-form select:focus,
.fih-form textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--fih-blue);
	box-shadow: 0 0 0 3px rgba(56, 98, 244, 0.12);
}

.fih-row {
	display: flex;
	gap: 16px;
}

.fih-row-3 {
	flex-wrap: wrap;
}

.fih-inline {
	display: flex;
	gap: 8px;
}

.fih-inline input {
	flex: 1;
}

.fih-req {
	color: #b32d2e;
}

.fih-hint {
	display: block;
	font-size: 13px;
	margin-top: 6px;
}

.fih-actions {
	margin-top: 20px;
}

.fih-btn {
	display: inline-block;
	padding: 11px 22px;
	border-radius: 8px;
	border: none;
	font-size: 15px;
	font-family: var(--fih-sans);
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.fih-btn:active {
	transform: translateY(1px);
}

.fih-btn-primary {
	background: var(--fih-blue);
	color: #fff;
	box-shadow: 0 8px 18px rgba(56, 98, 244, 0.22);
}

.fih-btn-primary:hover {
	background: #294fdb;
	color: #fff;
}

.fih-btn-gold {
	background: var(--fih-gold);
	color: #fff;
}

.fih-btn-gold:hover {
	background: var(--fih-gold-dark);
	color: #fff;
}

.fih-btn-secondary {
	background: #f0f0f1;
	color: #1d2327;
	white-space: nowrap;
}

.fih-errors {
	background: #fcf0f1;
	border: 1px solid #d63638;
	color: #8a1f1f;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 18px;
}

.fih-errors ul {
	margin: 0;
	padding-left: 18px;
}

.fih-success h2 {
	color: #1a7f37;
}

/* ---------------- Tables ---------------- */
.fih-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 1px solid var(--fih-line);
	border-radius: 14px;
	overflow: hidden;
	font-size: 14px;
}

.fih-table thead th {
	text-align: left;
	padding: 12px 18px;
	background: #faf7f1;
	color: var(--fih-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	border-bottom: 1px solid var(--fih-line);
}

.fih-table tbody td {
	padding: 14px 18px;
	border-bottom: 1px solid #f1ece3;
	color: var(--fih-ink);
	vertical-align: middle;
}

.fih-table tbody tr:last-child td {
	border-bottom: 0;
}

.fih-table tbody tr {
	transition: background-color 0.12s ease;
}

.fih-table tbody tr:hover {
	background: #fbf8f3;
}

.fih-table .fih-num {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

/* A second, muted line inside a cell (e.g. city under a business name). */
.fih-cell-sub {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: var(--fih-muted);
}

.fih-cell-link {
	color: var(--fih-ink);
	font-weight: 600;
	text-decoration: none;
}

.fih-cell-link:hover {
	color: var(--fih-maroon);
	text-decoration: underline;
}

/* ---------------- Key/value detail ---------------- */
.fih-detail {
	width: 100%;
	border-collapse: collapse;
}

.fih-detail th {
	text-align: left;
	width: 210px;
	padding: 11px 14px;
	color: var(--fih-muted);
	font-weight: 600;
	font-size: 13px;
	vertical-align: top;
	border-bottom: 1px solid #f1ece3;
}

.fih-detail td {
	padding: 11px 14px;
	border-bottom: 1px solid #f1ece3;
}

.fih-detail tr:last-child th,
.fih-detail tr:last-child td {
	border-bottom: 0;
}

/* Detail-view header: back link, title + badge, and inline actions. */
.fih-detail-head {
	margin-bottom: 18px;
}

.fih-detail-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 8px 0 14px;
}

.fih-detail-title h2 {
	margin: 0;
}

.fih-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fih-cards-grid {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.fih-cards-grid .fih-card {
	flex: 1;
	min-width: 240px;
}

.fih-placeholder {
	opacity: 0.85;
	border-style: dashed;
}

.fih-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.5;
	border: 1px solid transparent;
	white-space: nowrap;
}

.fih-badge-pending {
	background: #fcf6e3;
	color: #8a6d00;
	border-color: #f0e3b8;
}

.fih-badge-active {
	background: #e8f7ec;
	color: #1a7f37;
	border-color: #c3e9cd;
}

.fih-badge-disabled {
	background: #f3f1ee;
	color: #6b6258;
	border-color: #e3ddd3;
}

/* Admin */
.fih-stat-grid {
	display: flex;
	gap: 16px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.fih-stat {
	background: #fff;
	border: 1px solid #e2e4e7;
	border-radius: 8px;
	padding: 18px 24px;
	min-width: 130px;
	text-align: center;
}

.fih-stat-num {
	display: block;
	font-size: 30px;
	font-weight: 700;
}

.fih-stat-label {
	color: #646970;
	font-size: 13px;
}

/* ============================================================
 * Ordering platform — client portal + front-end admin panel
 * ============================================================ */

.fih-portal {
	max-width: 1100px;
	margin: 32px auto;
	padding: 0 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1d2327;
}

.fih-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #14213d;
	color: #fff;
	padding: 16px 22px;
	border-radius: 10px;
	margin-bottom: 22px;
}

.fih-brand strong {
	color: #e8a33d;
	font-size: 19px;
}

.fih-brand span {
	color: #c9cede;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-left: 6px;
}

.fih-topnav {
	color: #e8a33d;
	font-weight: 600;
	font-size: 14px;
}

/* Flash messages */
.fih-flash {
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 18px;
	font-size: 14px;
}

.fih-flash-success {
	background: #edfaef;
	border: 1px solid #46b450;
	color: #1a7f37;
}

.fih-flash-warning {
	background: #fcf9e8;
	border: 1px solid #dba617;
	color: #8a6d00;
}

.fih-flash-error {
	background: #fcf0f1;
	border: 1px solid #d63638;
	color: #8a1f1f;
}

.fih-empty {
	color: #646970;
	padding: 18px;
	background: #f6f7f7;
	border: 1px dashed #c3c4c7;
	border-radius: 8px;
	text-align: center;
}

.fih-num {
	text-align: right;
}

/* Chips */
.fih-chip {
	display: inline-block;
	padding: 1px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 6px;
}

.fih-chip-express {
	background: #fff3e0;
	color: #b9560a;
}

/* Admin: pending order cards */
.fih-order-card {
	border: 1px solid #e2e4e7;
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 16px;
	background: #fcfcfd;
}

.fih-order-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
}

.fih-order-total {
	font-weight: 700;
	font-size: 17px;
}

.fih-order-meta {
	color: #646970;
	font-size: 13px;
	margin: 4px 0 12px;
}

.fih-order-lines {
	margin-bottom: 8px;
}

.fih-order-summary-line {
	font-size: 13px;
	color: #50575e;
	margin-bottom: 12px;
}

.fih-order-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.fih-inline-label {
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.fih-discount-input {
	width: 80px;
	padding: 7px 8px;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
}

.fih-btn-sm {
	padding: 8px 16px;
	font-size: 14px;
}

.fih-linkbtn {
	background: none;
	border: none;
	color: #b8202e;
	cursor: pointer;
	padding: 0;
	font-size: 13px;
	text-decoration: underline;
}

/* Item-rules edit form */
.fih-item-form {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #e2e4e7;
}

.fih-item-form h3 {
	margin-top: 0;
}

.fih-checks {
	display: flex;
	gap: 18px;
	align-items: flex-end;
	padding-bottom: 8px;
}

.fih-check {
	display: flex !important;
	align-items: center;
	gap: 6px;
	font-weight: 500 !important;
}

/* Client portal: order form */
.fih-express-toggle {
	display: flex !important;
	align-items: center;
	gap: 8px;
	background: #fff8ef;
	border: 1px solid #f0d9b5;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 500;
}

.fih-order-grid {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.fih-order-items {
	flex: 1 1 520px;
	min-width: 280px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
	align-content: start;
}

.fih-item-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid var(--fih-line);
	border-radius: 12px;
	padding: 16px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fih-item-row:hover {
	border-color: #d8cfc2;
	box-shadow: 0 4px 14px rgba(40, 30, 20, 0.05);
}

.fih-item-disabled,
.fih-item-disabled:hover {
	opacity: 0.6;
	background: #f7f5f1;
	box-shadow: none;
}

.fih-item-top {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fih-item-emoji {
	font-size: 26px;
	line-height: 1;
	flex-shrink: 0;
}

.fih-item-name {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
}

.fih-item-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.fih-item-meta {
	color: var(--fih-ink);
	font-size: 13px;
	font-weight: 500;
}

.fih-item-cutoff {
	font-size: 12px;
	color: #1a7f37;
	line-height: 1.35;
}

.fih-item-cutoff.fih-item-blocked {
	color: #b9560a;
}

.fih-item-min {
	font-size: 12px;
	color: var(--fih-muted);
}

.fih-item-qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
	border-top: 1px dashed var(--fih-line);
}

.fih-item-qty label {
	margin: 0;
	font-size: 13px;
	color: var(--fih-muted);
}

.fih-order-form .fih-item-row input.fih-qty-input {
	width: 92px;
	padding: 9px 10px;
	border: 1px solid #d6cfc4;
	border-radius: 8px;
	text-align: center;
	font-size: 15px;
}

.fih-order-summary {
	flex: 1 1 280px;
	min-width: 260px;
	border: 1px solid #e2e4e7;
	border-radius: 10px;
	padding: 18px;
	background: #fcfcfd;
	position: sticky;
	top: 20px;
}

.fih-order-summary h3 {
	margin-top: 0;
}

.fih-summary-rows {
	margin-bottom: 12px;
}

.fih-summary-line {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	padding: 3px 0;
}

.fih-summary-totals {
	border-top: 1px solid #e2e4e7;
	margin-top: 8px;
	padding-top: 8px;
}

.fih-summary-grand {
	font-weight: 700;
	font-size: 16px;
	border-top: 1px solid #e2e4e7;
	margin-top: 4px;
	padding-top: 8px;
}

.fih-order-summary .fih-btn {
	width: 100%;
	margin-top: 14px;
	text-align: center;
}

.fih-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.fih-muted {
	color: #8c8f94;
	font-size: 13px;
}

/* Kitchen */
.fih-kitchen-grid {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.fih-kitchen-grid > div {
	flex: 1 1 360px;
	min-width: 280px;
}

.fih-kitchen-grid h3 {
	margin-top: 8px;
}

.fih-kw-ok {
	color: #1a7f37;
	font-weight: 600;
}

.fih-kw-short {
	color: #b9560a;
	font-weight: 600;
}

.fih-stage-card {
	border: 1px solid #e2e4e7;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 12px;
	background: #fcfcfd;
}

.fih-stage-head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.fih-stage-meta {
	color: #646970;
	font-size: 13px;
}

.fih-stage-items {
	color: #50575e;
	font-size: 14px;
	margin: 6px 0 10px;
}

.fih-branch-add {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #e2e4e7;
}

.fih-branch-add h3 {
	margin: 0 0 4px;
}

.fih-btn-danger {
	background: #b32d2e;
	color: #fff;
}

.fih-btn-danger:hover {
	background: #8a1f1f;
	color: #fff;
}

.fih-client-actions {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.fih-inline-form {
	display: inline;
	margin: 0;
}

/* ============================================================
 * App shell — full-width layout with collapsible sidebar
 * ============================================================ */

body.fih-app-body {
	margin: 0;
	background: #f5f7fb;
	font-family: var(--fih-sans);
	color: var(--fih-ink);
}

html:has(body.fih-app-body) {
	margin-top: 0 !important;
}

body.fih-app-body #wpadminbar {
	display: none !important;
}

.fih-public-content {
	min-height: 100vh;
	width: 100%;
	padding: 36px 18px;
	box-sizing: border-box;
}

.fih-public-content .fih-wrap {
	margin: 0 auto;
}

.fih-public-content .fih-register-wrap {
	max-width: 980px;
}

.fih-public-content:has(.fih-home) {
	padding: 0;
	background: #fff;
}

.fih-app {
	display: flex;
	min-height: 100vh;
	background: #f4f7fb;
}

.fih-sidebar {
	width: 280px;
	flex-shrink: 0;
	background: var(--fih-navy);
	color: #c8d1df;
	transition: width 0.2s ease;
	overflow-x: hidden;
	overflow-y: auto;
	position: sticky;
	top: 0;
	align-self: flex-start;
	height: 100vh;
}

.fih-app.fih-collapsed .fih-sidebar {
	width: 72px;
}

.fih-sidebar-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 64px;
	padding: 16px 18px;
	white-space: nowrap;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* The logo art sits on cream paper, so frame it on a cream chip. */
.fih-brand-logo {
	height: 38px;
	width: auto;
	max-width: 100%;
	display: block;
	background: var(--fih-cream);
	border-radius: 8px;
	padding: 5px 9px;
	box-sizing: border-box;
}

.fih-app.fih-collapsed .fih-sidebar-brand {
	padding: 12px 6px;
}

.fih-app.fih-collapsed .fih-brand-logo {
	height: 30px;
	padding: 4px;
}

.fih-nav {
	padding: 14px 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fih-nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #b8c2d0;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
}

.fih-nav-link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.fih-nav-link.active {
	background: #fff;
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	color: #18202f;
}

.fih-nav-link.active .fih-nav-icon {
	background: var(--fih-blue);
	color: #fff;
}

.fih-nav-icon {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 15px;
	flex-shrink: 0;
}

.fih-nav-divider {
	height: 1px;
	background: #28384700;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	margin: 10px 8px;
}

.fih-app.fih-collapsed .fih-nav-label,
.fih-app.fih-collapsed .fih-brand-text {
	display: none;
}

.fih-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.fih-appbar {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 72px;
	padding: 0 28px;
	background: #fff;
	border-bottom: 1px solid #e6e8ec;
	position: sticky;
	top: 0;
	z-index: 20;
}

.fih-appbar-title {
	display: flex;
	flex-direction: column;
	min-width: 190px;
}

.fih-appbar-title span {
	color: #8a94a6;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fih-appbar-title strong {
	color: #111827;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.fih-hamburger {
	background: #f3f6fb;
	border: 1px solid #e4e8f0;
	border-radius: 8px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: #5a6473;
	width: 38px;
	height: 38px;
}

.fih-appbar-search {
	flex: 1;
	max-width: 360px;
}

.fih-appbar-search input {
	width: 100%;
	border: none;
	background: #f3f6fb;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 14px;
	box-sizing: border-box;
}

.fih-appbar-user {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	color: #18202f;
}

.fih-appbar-user img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #eef2f7;
}

.fih-content {
	padding: 30px 34px;
	flex: 1;
}

/* Sidebar sections behave like separate pages (JS toggles these). Without JS,
   .fih-tabs-ready is never added, so every section stays visible. */
.fih-tabs-ready .fih-section {
	display: none;
}

.fih-tabs-ready .fih-section.fih-section-active {
	display: block;
	animation: fih-fade 0.2s ease;
}

.fih-page-title {
	margin: 0 0 18px;
	font-family: var(--fih-sans);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
	color: #111827;
}

.fih-app .fih-card h1,
.fih-app .fih-card h2,
.fih-app .fih-card h3 {
	font-family: var(--fih-sans);
	letter-spacing: 0;
	color: #111827;
}

.fih-app .fih-card {
	border-color: #e5eaf2;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.fih-profile-hero {
	display: flex;
	align-items: center;
	gap: 18px;
}

.fih-profile-avatar {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	background: #e8f5f2;
	color: var(--fih-teal);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 800;
	flex-shrink: 0;
}

.fih-profile-title {
	min-width: 0;
	flex: 1;
}

.fih-profile-title h1 {
	margin: 4px 0 6px;
}

.fih-profile-actions {
	margin-left: auto;
}

.fih-profile-card .fih-detail {
	margin-top: 12px;
}

.fih-dashboard-wrap .fih-notice {
	max-width: 760px;
	padding: 34px;
}

.fih-dashboard-wrap .fih-notice h2 {
	font-size: 24px;
	margin-bottom: 12px;
}

.fih-dashboard-wrap .fih-notice p {
	color: #596273;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.fih-admin-portal .fih-section > .fih-card:first-child,
.fih-dashboard-wrap .fih-section > .fih-card:first-child {
	margin-top: 0;
}

.fih-stat-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.fih-stat {
	background: #fff;
	border: 1px solid #e5eaf2;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
	padding: 22px;
}

.fih-stat-label {
	color: #6b7280;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fih-stat-num {
	color: #111827;
	font-family: var(--fih-sans);
	font-size: 30px;
	font-weight: 850;
	letter-spacing: 0;
}

.fih-mat-grid {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 16px;
}

.fih-mat-card {
	border-color: #e5eaf2;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
	padding: 18px;
}

.fih-mat-card strong,
.fih-mat-card .fih-mat-name {
	font-family: var(--fih-sans);
}

.fih-table {
	border-radius: 8px;
	overflow: hidden;
}

/* Make the shortcodes' own wrappers fill the content area inside the shell. */
.fih-content .fih-portal,
.fih-content .fih-wrap {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 782px) {
	.fih-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		z-index: 60;
		transform: translateX(-100%);
		transition: transform 0.2s ease;
	}

	.fih-app.fih-sidebar-open .fih-sidebar {
		transform: translateX(0);
	}

	/* Ignore desktop collapse on mobile — drawer is full width. */
	.fih-app.fih-collapsed .fih-sidebar {
		width: 264px;
	}

	.fih-app.fih-collapsed .fih-nav-label,
	.fih-app.fih-collapsed .fih-brand-text {
		display: inline;
	}

	.fih-appbar {
		padding: 0 16px;
	}

	.fih-appbar-search {
		display: none;
	}

	.fih-profile-hero {
		align-items: flex-start;
		flex-direction: column;
	}

	.fih-profile-actions {
		margin-left: 0;
		width: 100%;
	}

	.fih-profile-actions .fih-btn {
		width: 100%;
		text-align: center;
	}
}

/* ============================================================
 * Registration onboarding wizard
 * ============================================================ */

.fih-onboard-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--fih-line);
	border-radius: 14px;
	padding: 18px 24px;
	margin-bottom: 22px;
	box-shadow: var(--fih-shadow);
}

.fih-onboard-logo {
	height: 54px;
	width: auto;
	display: block;
}

.fih-onboard-tag {
	color: var(--fih-muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fih-wizard-card {
	padding: 32px;
}

.fih-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 18px 0 10px;
}

.fih-step-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--fih-muted);
	font-size: 13px;
	font-weight: 600;
}

.fih-step-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #ece6dc;
	color: var(--fih-muted);
	font-size: 12px;
}

.fih-step-pill.active {
	color: var(--fih-ink);
}

.fih-step-pill.active .fih-step-no {
	background: var(--fih-gold);
	color: #fff;
}

.fih-step-pill.done .fih-step-no {
	background: var(--fih-maroon);
	color: #fff;
}

.fih-progress {
	height: 4px;
	background: #ece6dc;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 24px;
}

.fih-progress-fill {
	height: 100%;
	width: 0;
	background: var(--fih-gold);
	transition: width 0.25s ease;
}

.fih-step {
	display: none;
}

.fih-step.active {
	display: block;
	animation: fih-fade 0.25s ease;
}

@keyframes fih-fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.fih-banner {
	background: #f1f6f1;
	border: 1px solid #d4e6d4;
	color: #2f5d3a;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	margin-bottom: 18px;
}

.fih-review {
	border: 1px solid var(--fih-line);
	border-radius: 10px;
	padding: 8px 16px;
	background: var(--fih-cream);
}

.fih-wizard-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.fih-wizard-spacer {
	flex: 1;
}

.fih-wizard-error {
	background: #fcf0f1;
	border: 1px solid #d9a0a2;
	color: #8a1f1f;
	border-radius: 9px;
	padding: 11px 14px;
	margin-top: 16px;
	font-size: 14px;
}

/* Premium accents */
.fih-nav-link.active {
	background: #fff;
	color: #18202f;
}

.fih-stat-num {
	font-family: var(--fih-serif);
}

.fih-appbar-search input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(157, 28, 32, 0.12);
}

/* ============================================================
 * Inventory (front-end) — material cards + compact forms
 * ============================================================ */

.fih-mat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 14px;
}

.fih-mat-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	border: 1px solid var(--fih-line);
	border-radius: 12px;
	padding: 16px;
	background: #fff;
}

.fih-mat-card.is-low {
	border-color: #e6c878;
	background: #fffdf5;
}

.fih-mat-card.is-out {
	border-color: #e0b4b4;
	background: #fdf6f6;
}

.fih-mat-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.fih-mat-name {
	font-weight: 600;
	font-size: 15px;
}

.fih-mat-stock {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.fih-mat-qty {
	font-family: var(--fih-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.fih-mat-unit {
	color: var(--fih-muted);
	font-size: 12px;
}

.fih-mat-sub {
	color: var(--fih-muted);
	font-size: 12px;
}

.fih-mat-actions {
	display: flex;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
}

/* Two inventory forms sit side by side and don't stretch full width. */
.fih-inv-forms .fih-card {
	flex: 1 1 320px;
	max-width: 560px;
}

.fih-recipe-table {
	max-width: 480px;
}

.fih-recipe-table input[type="number"] {
	max-width: 150px;
}

/* ============================================================
 * M5 — Kitchen Management panel
 * ============================================================ */

.fih-kpi-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 14px 0 18px;
}

.fih-kpi {
	flex: 1;
	min-width: 150px;
	background: #fff;
	border: 1px solid var(--fih-line);
	border-radius: 12px;
	padding: 14px 18px;
}

.fih-kpi-num {
	display: block;
	font-size: 26px;
	font-weight: 700;
	font-family: var(--fih-serif);
	color: var(--fih-maroon);
}

.fih-kpi-label {
	display: block;
	font-size: 12px;
	color: var(--fih-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 2px;
}

.fih-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.fih-section-tools {
	display: flex;
	gap: 8px;
}

.fih-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	align-items: flex-end;
	margin: 6px 0 16px;
	padding: 12px 14px;
	background: #faf7f1;
	border: 1px solid var(--fih-line);
	border-radius: 10px;
}

.fih-filter-bar label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--fih-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.fih-filter-bar select {
	font-size: 14px;
	padding: 7px 10px;
}

.fih-stage-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.fih-btn-stage {
	padding: 12px 18px;
	font-size: 15px;
}

.fih-btn-wa {
	background: #25d366;
	border-color: #1fb855;
	color: #fff;
}

.fih-btn-wa:hover {
	background: #1fb855;
	color: #fff;
}

.fih-row-short td {
	background: #fdf1f1;
}

@media print {
	.fih-sidebar,
	.fih-appbar,
	.fih-nav,
	.fih-hamburger,
	.fih-no-print {
		display: none !important;
	}
	.fih-main,
	.fih-content {
		margin: 0 !important;
		padding: 0 !important;
	}
	.fih-card {
		box-shadow: none !important;
		border: 1px solid #ddd !important;
	}
	body,
body.fih-app-body {
		background: #fff !important;
	}
}

/* ============================================================
 * v2.0.5 final app polish + Feel partner marketing page
 * ============================================================ */

html:has(body.fih-app-body) {
	margin-top: 0 !important;
}

body.fih-app-body #wpadminbar {
	display: none !important;
}

.fih-app .fih-page-title,
.fih-app .fih-card h1,
.fih-app .fih-card h2,
.fih-app .fih-card h3,
.fih-app .fih-stat-num {
	font-family: var(--fih-sans);
	letter-spacing: 0;
}

.fih-appbar {
	min-height: 72px;
}

.fih-appbar-title {
	display: flex;
	flex-direction: column;
	min-width: 190px;
}

.fih-appbar-title span {
	color: #8a94a6;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fih-appbar-title strong {
	color: #111827;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.fih-app .fih-card,
.fih-app .fih-stat,
.fih-app .fih-mat-card {
	border-color: #e5eaf2;
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.fih-app .fih-stat-grid {
	gap: 16px;
	margin-bottom: 20px;
}

.fih-app .fih-stat {
	background: #fff;
	padding: 22px;
}

.fih-app .fih-stat-label {
	color: #6b7280;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fih-app .fih-stat-num {
	color: #111827;
	font-size: 30px;
	font-weight: 850;
}

.fih-app .fih-mat-grid {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 16px;
}

.fih-app .fih-mat-card {
	padding: 18px;
}

.fih-public-content:has(.fih-home) {
	padding: 0;
	background: #fff;
}

.fih-home {
	background: #fff;
	color: #111827;
	font-family: var(--fih-sans);
	overflow-x: hidden;
}

.fih-home-nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1500px;
	margin: 0 auto;
	padding: 22px 9vw;
}

.fih-home-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
}

.fih-home-logo img {
	height: 50px;
	width: auto;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 8px;
	padding: 7px 12px;
}

.fih-home-logo span {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
}

.fih-home-login {
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	padding: 13px 34px;
	text-decoration: none;
}

.fih-home-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.52)),
		url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

.fih-home-hero-inner {
	max-width: 900px;
	padding: 110px 24px 220px;
	color: #fff;
}

.fih-home-hero h1 {
	margin: 0 auto 34px;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 850;
	line-height: 1.14;
	letter-spacing: 0;
}

.fih-home-offer {
	display: inline-grid;
	grid-template-columns: 50px auto;
	gap: 4px 16px;
	align-items: center;
	padding: 18px 30px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(16, 18, 24, 0.68);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
	text-align: left;
}

.fih-home-offer span {
	grid-row: span 2;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #2f6df6;
	font-size: 24px;
	font-weight: 900;
}

.fih-home-offer strong {
	font-size: 22px;
}

.fih-home-offer small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

.fih-home-cta {
	display: table;
	margin: 38px auto 0;
	padding: 18px 54px;
	border-radius: 12px;
	background: #2f6df6;
	color: #fff;
	font-size: 22px;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 18px 36px rgba(47, 109, 246, 0.28);
}

.fih-home-start {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
	gap: 42px;
	max-width: 1480px;
	margin: -120px auto 110px;
	padding: 44px 52px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.fih-home-start h2,
.fih-home-benefits h2,
.fih-home-stories h2,
.fih-home-faq h2 {
	margin: 0;
	color: #111827;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 850;
	letter-spacing: 0;
	text-align: center;
}

.fih-home-start h2 {
	text-align: left;
	font-size: clamp(28px, 3vw, 42px);
}

.fih-home-start p {
	margin: 8px 0 28px;
	color: #7a8496;
	font-size: 20px;
}

.fih-home-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 36px;
}

.fih-home-checks span {
	position: relative;
	padding-left: 36px;
	font-size: 18px;
	font-weight: 750;
}

.fih-home-checks span::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -2px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #30bb68;
	color: #fff;
	text-align: center;
	line-height: 24px;
}

.fih-home-video {
	align-self: center;
	min-height: 210px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 16px;
	padding: 24px;
	color: #fff;
	background:
		linear-gradient(180deg, rgba(17, 24, 39, 0.15), rgba(17, 24, 39, 0.82)),
		url("https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
}

.fih-home-video strong {
	font-size: 24px;
}

.fih-home-video p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	margin: 6px 0 0;
}

.fih-home-benefits {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 42px 110px;
}

.fih-home-benefit-grid,
.fih-home-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.fih-home-benefit-grid {
	margin-top: 64px;
}

.fih-home-benefit-grid div {
	text-align: center;
}

.fih-home-benefit-grid span {
	width: 76px;
	height: 76px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	background: #eef4ff;
	color: #2f6df6;
	font-size: 24px;
	font-weight: 900;
}

.fih-home-benefit-grid h3 {
	margin: 28px 0 12px;
	font-size: 28px;
}

.fih-home-benefit-grid p {
	margin: 0 auto;
	max-width: 360px;
	color: #657085;
	font-size: 18px;
	line-height: 1.65;
}

.fih-home-stories {
	background: #edf4ff;
	padding: 100px 42px;
}

.fih-home-story-grid {
	max-width: 1480px;
	margin: 70px auto 0;
}

.fih-home-story-grid article {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	background: #fff;
	padding: 34px;
}

.fih-home-story-grid p {
	flex: 1;
	margin: 0 0 26px;
	color: #596b48;
	font-size: 19px;
	line-height: 1.55;
}

.fih-home-story-grid strong {
	color: #283044;
	font-size: 21px;
}

.fih-home-story-grid span {
	color: #8b94a5;
	font-size: 15px;
}

.fih-home-faq {
	max-width: 1280px;
	margin: 0 auto;
	padding: 100px 28px;
}

.fih-home-faq details {
	border: 1px solid #e7ebf2;
	border-radius: 18px;
	margin-top: 28px;
	background: #fff;
}

.fih-home-faq summary {
	cursor: pointer;
	padding: 28px 34px;
	font-size: 22px;
	font-weight: 750;
	list-style: none;
}

.fih-home-faq summary::-webkit-details-marker {
	display: none;
}

.fih-home-faq details p {
	margin: 0;
	padding: 0 34px 28px;
	color: #657085;
	font-size: 17px;
	line-height: 1.65;
}

.fih-home-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 70px 9vw;
	background: #f2f5fb;
}

.fih-home-footer img {
	height: 54px;
	width: auto;
}

.fih-home-footer p {
	margin: 8px 0 0;
	color: #657085;
}

.fih-home-footer a {
	display: inline-flex;
	align-items: center;
	border: 1px solid #dfe5ef;
	border-radius: 999px;
	background: #fff;
	color: #2f6df6;
	font-weight: 750;
	padding: 16px 24px;
	text-decoration: none;
}

@media (max-width: 900px) {
	.fih-home-nav {
		padding: 18px 22px;
	}

	.fih-home-hero {
		min-height: 680px;
	}

	.fih-home-start,
	.fih-home-benefit-grid,
	.fih-home-story-grid {
		grid-template-columns: 1fr;
	}

	.fih-home-start {
		margin: -90px 18px 70px;
		padding: 30px 22px;
	}

	.fih-home-checks {
		grid-template-columns: 1fr;
	}

	.fih-home-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* v2.0.26 hero refinements */
body.fih-public-shell-body .fih-home-nav {
	justify-content: center !important;
}

body.fih-public-shell-body .fih-home-logo {
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	position: absolute !important;
	right: clamp(20px, 5vw, 84px) !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
}

body.fih-public-shell-body .fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.62)),
		url("https://feelindiahospitality.com/wp-content/uploads/2026/07/feel-india-bg-video-hero-section.mov") center / cover no-repeat,
		#060606 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	display: block !important;
	z-index: 0 !important;
	opacity: 0.5 !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 1050px !important;
	font-size: clamp(46px, 6.2vw, 98px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero h1 span {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	display: block !important;
	width: clamp(170px, 18vw, 300px) !important;
	height: auto !important;
	margin: 0 auto 20px !important;
	object-fit: contain !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 820px !important;
	margin-top: 26px !important;
	font-size: clamp(20px, 2.35vw, 34px) !important;
	line-height: 1.28 !important;
}

body.fih-public-shell-body .fih-home-cta-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	margin-right: 12px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-cta-icon svg {
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-logo {
		left: 24px !important;
		transform: none !important;
	}

	body.fih-public-shell-body .fih-home-nav-actions {
		right: 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(140px, 38vw, 210px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(18px, 5.3vw, 28px) !important;
	}
}

/* v2.0.26 final hero overrides - keep after all legacy home CSS */
body.fih-public-shell-body .fih-home-nav {
	position: absolute !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo {
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo img {
	width: clamp(138px, 12vw, 190px) !important;
	height: auto !important;
	background: transparent !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	position: absolute !important;
	right: clamp(20px, 5vw, 84px) !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
}

body.fih-public-shell-body .fih-home-profile {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero {
	background: #060606 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 0.54 !important;
	visibility: visible !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 1040px !important;
	font-size: clamp(46px, 6.1vw, 96px) !important;
	line-height: 1.03 !important;
}

body.fih-public-shell-body .fih-home-hero h1 span {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	display: block !important;
	width: clamp(168px, 17vw, 284px) !important;
	height: auto !important;
	margin: 0 auto 18px !important;
	object-fit: contain !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 760px !important;
	margin-top: 24px !important;
	font-size: clamp(20px, 2.2vw, 32px) !important;
	line-height: 1.28 !important;
	font-weight: 500 !important;
}

body.fih-public-shell-body .fih-home-cta-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	margin-right: 12px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-cta-icon svg {
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-logo {
		left: 24px !important;
		transform: none !important;
	}

	body.fih-public-shell-body .fih-home-logo img {
		width: 122px !important;
	}

	body.fih-public-shell-body .fih-home-nav-actions {
		right: 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(138px, 38vw, 204px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(18px, 5.2vw, 27px) !important;
	}
}

/* v2.0.28 final winning home cleanup */
html:has(body.fih-public-shell-body),
body.fih-public-shell-body {
	margin: 0 !important;
	padding: 0 !important;
	background: #050505 !important;
	border: 0 !important;
}

body.fih-public-shell-body #wpadminbar,
body.fih-public-shell-body .site-header,
body.fih-public-shell-body header.site-header,
body.fih-public-shell-body #masthead,
body.fih-public-shell-body .main-navigation {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
}

body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home {
	margin: 0 !important;
	padding: 0 !important;
	background: #050505 !important;
}

body.fih-public-shell-body .fih-home-nav {
	inset: 0 0 auto 0 !important;
	justify-content: flex-end !important;
	min-height: 112px !important;
	padding: 26px clamp(26px, 5vw, 88px) !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo,
body.fih-public-shell-body .fih-home-nav-spacer {
	display: none !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	position: static !important;
	transform: none !important;
	margin-left: auto !important;
}

body.fih-public-shell-body .fih-home-login,
body.fih-public-shell-body .fih-home-register {
	min-height: 54px !important;
	padding: 0 34px !important;
	font-size: 18px !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: 880px !important;
	padding: 132px 24px 168px !important;
	background: #050505 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	opacity: 0.64 !important;
	filter: saturate(1.08) contrast(1.05) !important;
}

body.fih-public-shell-body .fih-home-hero::before {
	background:
		radial-gradient(circle at 72% 15%, rgba(160, 30, 30, 0.23), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55)) !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(132px, 12vw, 210px) !important;
	margin: 0 auto 24px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 940px !important;
	margin: 0 auto !important;
	text-transform: none !important;
	font-size: clamp(48px, 5.7vw, 88px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 640px !important;
	margin-top: 22px !important;
	font-family: var(--fih-sans) !important;
	font-size: clamp(17px, 1.55vw, 23px) !important;
	line-height: 1.45 !important;
	font-weight: 650 !important;
}

body.fih-public-shell-body .fih-home-trust {
	width: min(720px, 100%) !important;
	margin-top: 34px !important;
	padding: 14px 24px !important;
}

body.fih-public-shell-body .fih-home-trust span {
	width: 34px !important;
	height: 34px !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	font-size: clamp(15px, 1.15vw, 19px) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 36px !important;
}

body.fih-public-shell-body .fih-home-cta {
	min-height: 64px !important;
	min-width: min(360px, 78vw) !important;
	border-radius: 14px !important;
	font-size: clamp(17px, 1.55vw, 24px) !important;
}

body.fih-public-shell-body .fih-home-start {
	margin-top: -70px !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-nav {
		min-height: 86px !important;
		padding: 18px !important;
	}

	body.fih-public-shell-body .fih-home-login,
	body.fih-public-shell-body .fih-home-register {
		min-height: 44px !important;
		padding: 0 18px !important;
		font-size: 15px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 760px !important;
		padding: 112px 18px 130px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(112px, 30vw, 158px) !important;
		margin-bottom: 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(38px, 10.8vw, 58px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(16px, 4.2vw, 20px) !important;
	}

	body.fih-public-shell-body .fih-home-trust {
		border-radius: 24px !important;
		padding: 14px 18px !important;
	}

	body.fih-public-shell-body .fih-home-start {
		margin-top: -46px !important;
	}
}

/* v2.0.27: HTTPS video hero and final sizing */
body.fih-public-shell-body .fih-home-hero {
	background: #050505 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	object-fit: cover !important;
	opacity: 0.56 !important;
	visibility: visible !important;
}

body.fih-public-shell-body .fih-home-hero::before {
	z-index: 1 !important;
	background:
		radial-gradient(circle at 76% 20%, rgba(160, 30, 30, 0.26), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.58)) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	z-index: 2 !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(120px, 11vw, 185px) !important;
	margin-bottom: 16px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 980px !important;
	font-size: clamp(42px, 5.4vw, 82px) !important;
	line-height: 1.06 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 690px !important;
	margin-top: 20px !important;
	font-size: clamp(18px, 1.85vw, 26px) !important;
	line-height: 1.35 !important;
	font-family: var(--fih-sans) !important;
	font-weight: 650 !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(108px, 30vw, 150px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(38px, 11vw, 58px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(16px, 4.4vw, 22px) !important;
	}
}

/* v2.0.28 home cleanup: remove old header feel, tighten hero */
html:has(body.fih-public-shell-body),
body.fih-public-shell-body {
	margin: 0 !important;
	padding: 0 !important;
	background: #050505 !important;
	border: 0 !important;
}

body.fih-public-shell-body::before,
body.fih-public-shell-body::after,
body.fih-public-shell-body .site-header,
body.fih-public-shell-body header.site-header,
body.fih-public-shell-body #masthead,
body.fih-public-shell-body .main-navigation,
body.fih-public-shell-body #wpadminbar {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
}

body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home {
	margin: 0 !important;
	padding: 0 !important;
	background: #050505 !important;
}

body.fih-public-shell-body .fih-home-nav {
	inset: 0 0 auto 0 !important;
	justify-content: flex-end !important;
	min-height: 112px !important;
	padding: 26px clamp(26px, 5vw, 88px) !important;
	background: transparent !important;
}

body.fih-public-shell-body .fih-home-logo,
body.fih-public-shell-body .fih-home-nav-spacer {
	display: none !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	position: static !important;
	transform: none !important;
	margin-left: auto !important;
}

body.fih-public-shell-body .fih-home-login,
body.fih-public-shell-body .fih-home-register {
	min-height: 54px !important;
	padding: 0 34px !important;
	font-size: 18px !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: 880px !important;
	padding: 132px 24px 168px !important;
	background: #050505 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	opacity: 0.64 !important;
	filter: saturate(1.08) contrast(1.05) !important;
}

body.fih-public-shell-body .fih-home-hero::before {
	background:
		radial-gradient(circle at 72% 15%, rgba(160, 30, 30, 0.23), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55)) !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(132px, 12vw, 210px) !important;
	margin: 0 auto 24px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 940px !important;
	margin: 0 auto !important;
	text-transform: none !important;
	font-size: clamp(48px, 5.7vw, 88px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 640px !important;
	margin-top: 22px !important;
	font-family: var(--fih-sans) !important;
	font-size: clamp(17px, 1.55vw, 23px) !important;
	line-height: 1.45 !important;
	font-weight: 650 !important;
}

body.fih-public-shell-body .fih-home-trust {
	width: min(720px, 100%) !important;
	margin-top: 34px !important;
	padding: 14px 24px !important;
}

body.fih-public-shell-body .fih-home-trust span {
	width: 34px !important;
	height: 34px !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	font-size: clamp(15px, 1.15vw, 19px) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 36px !important;
}

body.fih-public-shell-body .fih-home-cta {
	min-height: 64px !important;
	min-width: min(360px, 78vw) !important;
	border-radius: 14px !important;
	font-size: clamp(17px, 1.55vw, 24px) !important;
}

body.fih-public-shell-body .fih-home-start {
	margin-top: -70px !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-nav {
		min-height: 86px !important;
		padding: 18px !important;
	}

	body.fih-public-shell-body .fih-home-login,
	body.fih-public-shell-body .fih-home-register {
		min-height: 44px !important;
		padding: 0 18px !important;
		font-size: 15px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 760px !important;
		padding: 112px 18px 130px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(112px, 30vw, 158px) !important;
		margin-bottom: 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(38px, 10.8vw, 58px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(16px, 4.2vw, 20px) !important;
	}

	body.fih-public-shell-body .fih-home-trust {
		border-radius: 24px !important;
		padding: 14px 18px !important;
	}

	body.fih-public-shell-body .fih-home-start {
		margin-top: -46px !important;
	}
}

/* v2.0.6 marketing refinements */
.fih-home-nav {
	padding-top: 28px;
}

.fih-home-logo img {
	height: 78px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	padding: 10px 18px;
}

.fih-home-logo span {
	display: none;
}

.fih-home-hero {
	min-height: 680px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.54)),
		url("https://images.unsplash.com/photo-1571877227200-a0d98ea607e9?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}

.fih-home-hero-inner {
	max-width: 920px;
	padding: 110px 24px 160px;
}

.fih-home-hero h1 {
	max-width: 880px;
	font-size: clamp(38px, 4.2vw, 62px);
	line-height: 1.14;
	margin-bottom: 30px;
}

.fih-home-offer {
	padding: 15px 26px;
}

.fih-home-cta {
	margin-top: 32px;
	padding: 17px 48px;
	font-size: 21px;
}

.fih-home-start {
	margin-top: -86px;
}

.fih-home-footer {
	align-items: flex-start;
	display: grid;
	grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 0.6fr));
	gap: 54px;
	padding: 76px 9vw 58px;
}

.fih-home-footer-brand img {
	height: 82px;
	width: auto;
}

.fih-home-footer-brand p {
	max-width: 390px;
	color: #657085;
	font-size: 17px;
	line-height: 1.65;
	margin: 18px 0 0;
}

.fih-home-footer-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fih-home-footer-col h3 {
	color: #111827;
	font-size: 15px;
	font-weight: 850;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.fih-home-footer-col a,
.fih-home-footer-col span {
	background: none;
	border: 0;
	border-radius: 0;
	color: #586276;
	display: inline;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	padding: 0;
	text-decoration: none;
}

.fih-home-footer-col a:hover {
	color: #a01e1e;
}

@media (max-width: 900px) {
	.fih-home-logo img {
		height: 62px;
	}

	.fih-home-hero {
		min-height: 640px;
	}

	.fih-home-hero h1 {
		font-size: clamp(34px, 9vw, 46px);
	}

	.fih-home-footer {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

/* v2.0.7 marketing corrections */
.fih-home-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111827;
	animation: fih-preloader-out 0.42s ease 0.58s forwards;
	pointer-events: none;
}

.fih-home-preloader img {
	width: 142px;
	height: auto;
	animation: fih-preloader-pulse 0.58s ease both;
}

@keyframes fih-preloader-pulse {
	from { opacity: 0; transform: scale(0.94); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes fih-preloader-out {
	to { opacity: 0; visibility: hidden; }
}

.fih-home-nav {
	padding-top: 34px;
}

.fih-home-logo img,
.fih-home-footer-brand img {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.fih-home-logo img {
	height: 96px;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.fih-home-hero {
	min-height: 820px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.58)),
		url("https://images.unsplash.com/photo-1551024506-0bccd828d307?auto=format&fit=crop&w=2200&q=86") center/cover no-repeat;
}

.fih-home-hero-inner {
	padding: 150px 24px 210px;
}

.fih-home-hero h1 {
	max-width: 980px;
	font-size: clamp(40px, 4.6vw, 68px);
	line-height: 1.12;
}

.fih-home-footer {
	grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 0.65fr));
	padding-bottom: 34px;
}

.fih-home-footer-col a {
	display: none;
}

.fih-home-copyright {
	grid-column: 1 / -1;
	border-top: 1px solid #dfe5ef;
	color: #7a8496;
	font-size: 14px;
	margin-top: 20px;
	padding-top: 24px;
}

@media (max-width: 1024px) {
	.fih-home-hero {
		min-height: 760px;
	}

	.fih-home-hero-inner {
		padding-top: 140px;
	}

	.fih-home-start {
		margin-left: 22px;
		margin-right: 22px;
	}
}

@media (max-width: 760px) {
	.fih-home-nav {
		padding: 22px 18px;
	}

	.fih-home-logo img {
		height: 68px;
	}

	.fih-home-login {
		font-size: 15px;
		padding: 10px 22px;
	}

	.fih-home-hero {
		min-height: 720px;
		background-position: center;
	}

	.fih-home-hero-inner {
		padding: 130px 18px 170px;
	}

	.fih-home-hero h1 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.fih-home-offer {
		grid-template-columns: 42px minmax(0, 1fr);
		max-width: calc(100vw - 36px);
		padding: 14px 16px;
		border-radius: 24px;
	}

	.fih-home-offer span {
		width: 42px;
		height: 42px;
		font-size: 22px;
	}

	.fih-home-offer strong {
		font-size: 18px;
	}

	.fih-home-offer small {
		font-size: 13px;
	}

	.fih-home-cta {
		width: calc(100vw - 56px);
		box-sizing: border-box;
		font-size: 19px;
		padding: 16px 20px;
	}

	.fih-home-start,
	.fih-home-benefits,
	.fih-home-stories,
	.fih-home-faq {
		padding-left: 18px;
		padding-right: 18px;
	}

	.fih-home-start {
		margin-left: 14px;
		margin-right: 14px;
	}

	.fih-home-start h2,
	.fih-home-benefits h2,
	.fih-home-stories h2,
	.fih-home-faq h2 {
		font-size: clamp(28px, 8vw, 38px);
	}

	.fih-home-faq summary {
		font-size: 18px;
		padding: 22px;
	}

	.fih-home-faq details p {
		padding: 0 22px 22px;
	}

	.fih-home-footer {
		grid-template-columns: 1fr;
		padding: 52px 24px 28px;
	}

	.fih-home-footer-brand img {
		height: 72px;
	}
}

/* v2.0.20 reference-style registration onboarding */
body.fih-public-shell-body .fih-register-wrap {
	max-width: 1220px !important;
	padding: 34px 18px 76px !important;
}

body.fih-public-shell-body .fih-register-panel {
	display: grid !important;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
	max-width: 1180px !important;
	min-height: 680px !important;
	margin: 0 auto !important;
	overflow: hidden !important;
	border: 1px solid #e0e5ee !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14) !important;
}

body.fih-public-shell-body .fih-register-aside {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 22px !important;
	padding: 34px 28px !important;
	background: linear-gradient(180deg, #171717 0%, #101010 100%) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-aside::after {
	content: "" !important;
	position: absolute !important;
	inset: auto 0 0 0 !important;
	height: 220px !important;
	background: radial-gradient(circle at 50% 100%, rgba(177, 31, 36, 0.26), transparent 68%) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body .fih-register-aside-logo {
	position: relative !important;
	z-index: 1 !important;
	width: 150px !important;
	height: auto !important;
	max-width: 62% !important;
	margin: 0 0 10px !important;
	object-fit: contain !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.fih-public-shell-body .fih-register-aside h2 {
	position: relative !important;
	z-index: 1 !important;
	margin: 0 !important;
	color: #fff !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: 34px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
}

body.fih-public-shell-body .fih-register-aside p {
	position: relative !important;
	z-index: 1 !important;
	margin: -12px 0 4px !important;
	color: rgba(255, 255, 255, 0.64) !important;
	font-size: 14px !important;
	font-weight: 650 !important;
}

body.fih-public-shell-body .fih-register-aside-line {
	position: relative !important;
	z-index: 1 !important;
	width: 100% !important;
	height: 2px !important;
	margin: 2px 0 4px !important;
	background: rgba(255, 255, 255, 0.17) !important;
}

body.fih-public-shell-body .fih-register-aside-line span {
	display: block !important;
	width: 50% !important;
	height: 100% !important;
	background: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-register-side-steps {
	position: relative !important;
	z-index: 1 !important;
	display: grid !important;
	gap: 14px !important;
	margin-top: 4px !important;
}

body.fih-public-shell-body .fih-register-side-step {
	display: grid !important;
	grid-template-columns: 46px 1fr !important;
	gap: 10px 14px !important;
	align-items: center !important;
	min-height: 84px !important;
	padding: 14px !important;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	color: rgba(255, 255, 255, 0.76) !important;
	background: transparent !important;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

body.fih-public-shell-body .fih-register-side-step > span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	grid-row: span 2 !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-side-step svg {
	width: 22px !important;
	height: 22px !important;
	fill: currentColor !important;
}

body.fih-public-shell-body .fih-register-side-step strong,
body.fih-public-shell-body .fih-register-side-step small {
	display: block !important;
	min-width: 0 !important;
}

body.fih-public-shell-body .fih-register-side-step strong {
	color: inherit !important;
	font-size: 15px !important;
	font-weight: 850 !important;
	line-height: 1.2 !important;
}

body.fih-public-shell-body .fih-register-side-step small {
	color: rgba(255, 255, 255, 0.58) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

body.fih-public-shell-body .fih-register-side-step.active {
	border-color: rgba(255, 255, 255, 0.58) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-side-step.active > span,
body.fih-public-shell-body .fih-register-side-step.done > span {
	background: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-side-step.done {
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-panel .fih-wizard-card {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 34px 34px 86px !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: #fff !important;
}

body.fih-public-shell-body .fih-register-panel .fih-wizard-card h1 {
	margin: 0 0 4px !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: clamp(28px, 3vw, 40px) !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
	color: #161616 !important;
}

body.fih-public-shell-body .fih-register-panel .fih-wizard-card .fih-sub {
	margin: 0 0 16px !important;
	font-size: 15px !important;
	color: #7a7f8b !important;
}

body.fih-public-shell-body .fih-register-panel .fih-steps {
	margin: 10px 0 8px !important;
	padding: 0 !important;
	gap: 12px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-step-pill {
	color: #6c7280 !important;
	font-size: 14px !important;
	font-weight: 850 !important;
}

body.fih-public-shell-body .fih-register-panel .fih-step-no {
	width: 26px !important;
	height: 26px !important;
	font-size: 13px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-progress {
	height: 8px !important;
	margin: 6px 0 22px !important;
	border-radius: 999px !important;
	background: #f2f1ed !important;
}

body.fih-public-shell-body .fih-register-panel .fih-progress-fill {
	border-radius: inherit !important;
	background: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-register-panel .fih-form-row {
	gap: 16px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-form label,
body.fih-public-shell-body .fih-register-panel .fih-wizard label {
	margin-bottom: 8px !important;
	color: #161616 !important;
	font-size: 13px !important;
	font-weight: 850 !important;
}

body.fih-public-shell-body .fih-register-panel .fih-form input,
body.fih-public-shell-body .fih-register-panel .fih-form select,
body.fih-public-shell-body .fih-register-panel .fih-form textarea,
body.fih-public-shell-body .fih-register-panel .fih-wizard input,
body.fih-public-shell-body .fih-register-panel .fih-wizard select,
body.fih-public-shell-body .fih-register-panel .fih-wizard textarea {
	min-height: 56px !important;
	border: 1px solid #e6e1db !important;
	border-radius: 8px !important;
	background: #f7f5f2 !important;
	color: #111827 !important;
	font-size: 16px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-form textarea,
body.fih-public-shell-body .fih-register-panel .fih-wizard textarea {
	min-height: 92px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-hint {
	margin-top: 8px !important;
	color: #8a8f9c !important;
	font-size: 13px !important;
}

body.fih-public-shell-body .fih-register-panel .fih-wizard-nav {
	position: sticky !important;
	right: 0 !important;
	bottom: 0 !important;
	display: flex !important;
	justify-content: flex-end !important;
	gap: 12px !important;
	margin: 26px -34px -86px !important;
	padding: 14px 34px !important;
	border-top: 1px solid #e6e1db !important;
	background: rgba(255, 255, 255, 0.94) !important;
	backdrop-filter: blur(8px) !important;
}

body.fih-public-shell-body .fih-register-panel #fih-next,
body.fih-public-shell-body .fih-register-panel #fih-submit,
body.fih-public-shell-body .fih-register-panel .fih-btn-gold {
	min-height: 54px !important;
	border-radius: 8px !important;
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	font-weight: 850 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-register-panel #fih-next:hover,
body.fih-public-shell-body .fih-register-panel #fih-submit:hover,
body.fih-public-shell-body .fih-register-panel .fih-btn-gold:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-panel #fih-fetch-gst,
body.fih-public-shell-body .fih-register-panel #fih-send-otp,
body.fih-public-shell-body .fih-register-panel #fih-verify-otp,
body.fih-public-shell-body .fih-register-panel #fih-prev,
body.fih-public-shell-body .fih-register-panel .fih-btn-secondary {
	min-height: 54px !important;
	border-radius: 8px !important;
	background: #efeeee !important;
	border-color: #efeeee !important;
	color: #111827 !important;
	font-weight: 850 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-register-panel #fih-fetch-gst:hover,
body.fih-public-shell-body .fih-register-panel #fih-send-otp:hover,
body.fih-public-shell-body .fih-register-panel #fih-verify-otp:hover,
body.fih-public-shell-body .fih-register-panel #fih-prev:hover,
body.fih-public-shell-body .fih-register-panel .fih-btn-secondary:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-sidebar-brand {
	justify-content: center !important;
	min-height: 102px !important;
	padding: 10px 22px !important;
	background: #101720 !important;
}

body.fih-app-shell-body .fih-brand-logo {
	height: 82px !important;
	max-width: 190px !important;
}

@media (max-width: 940px) {
	body.fih-public-shell-body .fih-register-panel {
		grid-template-columns: 1fr !important;
		min-height: 0 !important;
	}

	body.fih-public-shell-body .fih-register-aside {
		padding: 26px 22px !important;
	}

	body.fih-public-shell-body .fih-register-aside-logo {
		width: 118px !important;
	}

	body.fih-public-shell-body .fih-register-side-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	body.fih-public-shell-body .fih-register-wrap {
		padding: 18px 10px 44px !important;
	}

	body.fih-public-shell-body .fih-register-panel {
		border-radius: 10px !important;
	}

	body.fih-public-shell-body .fih-register-side-steps {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-register-panel .fih-wizard-card {
		padding: 26px 18px 84px !important;
	}

	body.fih-public-shell-body .fih-register-panel .fih-form-row {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-register-panel .fih-wizard-nav {
		margin: 22px -18px -84px !important;
		padding: 12px 18px !important;
	}
}

/* v2.0.8 logo and front-end nav corrections */
.fih-home-nav {
	align-items: flex-start;
}

.fih-home-logo {
	align-items: center;
	background: rgba(238, 242, 247, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 10px;
	padding: 12px 18px;
}

.fih-home-logo img {
	height: 64px;
	filter: none;
}

.fih-auth-logo img,
.fih-brand-logo {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.fih-auth-logo img {
	height: 74px !important;
}

.fih-sidebar-brand {
	background: #eef2f7;
}

.fih-brand-logo {
	height: 48px !important;
	max-width: 136px;
	object-fit: contain;
}

.fih-app.fih-collapsed .fih-brand-logo {
	height: 34px !important;
	max-width: 48px;
}

@media (max-width: 760px) {
	.fih-home-logo {
		padding: 9px 13px;
	}

	.fih-home-logo img {
		height: 52px;
	}
}

/* v2.0.9 Zomato-style dashboard shell */
body.fih-app-body {
	background:
		radial-gradient(circle at top left, rgba(91, 201, 188, 0.45), transparent 34%),
		linear-gradient(135deg, #53b79f 0%, #d7edf4 100%) !important;
}

.fih-app {
	min-height: calc(100vh - 36px);
	margin: 18px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 18px;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.fih-sidebar {
	width: 204px;
	background: #fff;
	color: #364152;
	border-right: 1px solid #e8edf3;
	box-shadow: none;
}

.fih-sidebar-brand {
	min-height: 78px;
	justify-content: center;
	background: #fff;
	border-bottom: 1px solid #eef2f6;
	padding: 16px;
}

.fih-brand-logo {
	height: 46px !important;
	max-width: 128px;
}

.fih-nav {
	gap: 6px;
	padding: 18px 14px;
}

.fih-nav-divider {
	border-top-color: #edf1f5;
	margin: 12px 4px;
}

.fih-nav-link {
	min-height: 42px;
	gap: 12px;
	border: 0;
	border-radius: 10px;
	color: #4b5565;
	font-size: 14px;
	font-weight: 650;
	padding: 9px 12px;
}

.fih-nav-link:hover {
	background: #f4f8ff;
	color: #2672e7;
}

.fih-nav-link.active {
	background: #eff6ff;
	box-shadow: none;
	color: #1769d8;
}

.fih-nav-icon {
	width: 20px;
	height: 20px;
	background: transparent;
	border-radius: 0;
	color: currentColor;
	font-size: 0;
}

.fih-nav-link.active .fih-nav-icon {
	background: transparent;
	color: currentColor;
}

.fih-nav-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
}

.fih-main {
	background: #f7f8fa;
}

.fih-appbar {
	min-height: 78px;
	background: #fff;
	border-bottom: 1px solid #e8edf3;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	padding: 0 18px;
	position: sticky;
	top: 0;
}

.fih-hamburger {
	background: #fff;
	border: 1px solid #e1e7ef;
	border-radius: 10px;
	color: #536173;
}

.fih-appbar-title {
	min-width: 150px;
}

.fih-appbar-title span {
	color: #95a0af;
	font-size: 11px;
}

.fih-appbar-title strong {
	font-size: 16px;
}

.fih-appbar-search {
	max-width: 520px;
}

.fih-appbar-search input {
	height: 42px;
	background: #fff;
	border: 1px solid #e1e7ef;
	border-radius: 12px;
	color: #2f3744;
	padding-left: 42px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 14px center;
}

.fih-appbar-user {
	border: 1px solid #e1e7ef;
	border-radius: 12px;
	background: #fff;
	padding: 7px 9px 7px 12px;
}

.fih-appbar-user img {
	width: 34px;
	height: 34px;
	border: 0;
}

.fih-content {
	padding: 18px 22px 26px;
}

.fih-page-title {
	margin-bottom: 18px;
	font-size: 22px;
	font-weight: 800;
}

.fih-app .fih-card,
.fih-app .fih-stat,
.fih-app .fih-mat-card,
.fih-order-card {
	border: 1px solid #e7ecf2;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
}

.fih-app .fih-card {
	padding: 22px;
}

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

.fih-app .fih-stat {
	background: #fff;
}

.fih-app .fih-stat-num {
	font-size: 28px;
}

.fih-badge,
.fih-chip {
	border-radius: 999px;
	font-weight: 800;
}

.fih-btn-primary {
	background: #2f73ee;
	box-shadow: 0 8px 18px rgba(47, 115, 238, 0.2);
}

.fih-btn-primary:hover {
	background: #1f62dc;
}

.fih-table thead th {
	background: #f7f9fc;
	color: #667085;
}

@media (max-width: 900px) {
	.fih-app {
		min-height: 100vh;
		margin: 0;
		border-radius: 0;
	}

	.fih-sidebar {
		width: 260px;
	}

	.fih-appbar-title {
		display: none;
	}

	.fih-appbar {
		min-height: 66px;
	}
}

@media (max-width: 640px) {
	.fih-content {
		padding: 14px;
	}

	.fih-appbar-user .fih-appbar-name {
		display: none;
	}

	.fih-stat-grid {
		grid-template-columns: 1fr;
	}
}

/* v2.0.11 marketing light hero + black footer */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer {
	display: grid;
	grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.65fr) minmax(320px, 1fr);
	gap: 54px;
	background: #000 !important;
	color: #fff;
	padding: 78px 9vw 28px;
}

.fih-home-footer-brand p,
.fih-home-footer-col span,
.fih-home-footer-col a,
.fih-home-copyright {
	color: #c8cdd5;
}

.fih-home-footer-col h3 {
	color: #fff;
}

.fih-home-footer-col a {
	display: inline;
	padding: 0;
	border: 0;
	background: transparent;
	border-radius: 0;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.4;
	text-decoration: none;
}

.fih-home-footer-col a:hover {
	color: #fff;
}

.fih-home-copyright {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 22px;
	padding-top: 24px;
}

.fih-home-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fih-home-socials a {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.fih-home-socials a:hover {
	background: #fff;
	color: #000;
}

@media (max-width: 900px) {
	.fih-home-footer {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.fih-home-copyright {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* v2.0.12 full-width portal, brand-red UI, working quick search */
:root {
	--fih-blue: var(--fih-maroon);
}

body.fih-app-body {
	background: #f3f5f8 !important;
}

.fih-app {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.fih-sidebar {
	width: 286px;
}

.fih-sidebar-brand {
	min-height: 114px;
	background: #121820;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.fih-brand-logo {
	height: 62px !important;
	max-width: 180px;
}

.fih-nav-link.active {
	background: rgba(160, 30, 30, 0.1);
	color: var(--fih-maroon);
}

.fih-nav-link:hover {
	background: rgba(160, 30, 30, 0.08);
	color: var(--fih-maroon);
}

.fih-nav-icon svg {
	fill: currentColor;
}

.fih-appbar-search {
	max-width: 640px;
}

.fih-appbar-search input {
	height: 46px;
	border-color: #dfe5ee;
	padding: 0 16px 0 48px;
	background-position: 17px center;
	background-size: 18px;
	font-size: 15px;
}

.fih-appbar-search input:focus {
	border-color: rgba(160, 30, 30, 0.42);
	box-shadow: 0 0 0 3px rgba(160, 30, 30, 0.1);
}

.fih-content {
	padding: 26px 34px 34px;
}

.fih-btn-primary,
.fih-home-cta,
.fih-home-offer span {
	background: var(--fih-maroon) !important;
	box-shadow: 0 12px 24px rgba(160, 30, 30, 0.22);
}

.fih-btn-primary:hover,
.fih-home-cta:hover {
	background: var(--fih-maroon-dark) !important;
}

.fih-home-benefit-grid span {
	background: rgba(160, 30, 30, 0.1);
	color: var(--fih-maroon);
}

.fih-home-footer {
	background: #000 !important;
}

/* v2.0.13 active final override */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.4)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer,
.fih-home-footer.fih-home-footer {
	background: #000 !important;
}

.fih-home-socials {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 12px !important;
}

.fih-home-socials a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	background: #121212 !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.fih-home-socials a:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

.fih-home-socials svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fih-home-socials svg path {
	fill: currentColor;
	stroke: none;
}

.fih-home-socials svg rect,
.fih-home-socials svg circle {
	fill: none;
	stroke: currentColor;
}

/* v2.0.14 dashboard shell polish */
body.fih-app-body {
	overflow: hidden !important;
	background: #f5f7fb !important;
}

.fih-app {
	display: flex !important;
	width: 100% !important;
	height: 100vh !important;
	min-height: 100vh !important;
	margin: 0 !important;
	border-radius: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: hidden !important;
	background: #f5f7fb !important;
}

.fih-sidebar {
	position: sticky !important;
	top: 0 !important;
	left: 0 !important;
	width: 292px !important;
	height: 100vh !important;
	flex: 0 0 292px !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	background: #fff !important;
	border-right: 1px solid #e7edf5 !important;
	scrollbar-width: thin;
}

.fih-sidebar-brand {
	position: sticky !important;
	top: 0 !important;
	z-index: 3 !important;
	min-height: 164px !important;
	padding: 30px 34px !important;
	justify-content: center !important;
	background: #111821 !important;
	border-bottom: 0 !important;
}

.fih-brand-logo {
	height: 84px !important;
	max-width: 190px !important;
	object-fit: contain !important;
}

.fih-main {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	height: 100vh !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	background: #f5f7fb !important;
}

.fih-appbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 20 !important;
	display: grid !important;
	grid-template-columns: minmax(210px, 280px) minmax(320px, 1fr) auto !important;
	align-items: center !important;
	gap: 24px !important;
	min-height: 96px !important;
	padding: 18px 34px !important;
	background: #fff !important;
	border-bottom: 1px solid #e8edf4 !important;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02) !important;
}

.fih-hamburger,
#fih-hamburger {
	display: none !important;
}

.fih-appbar-title {
	min-width: 0 !important;
}

.fih-appbar-title span {
	color: #9aa4b4 !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.fih-appbar-title strong {
	color: #0f172a !important;
	font-size: 22px !important;
	line-height: 1.1 !important;
}

.fih-appbar-search {
	position: relative !important;
	width: 100% !important;
	max-width: 680px !important;
	margin: 0 !important;
}

.fih-search-icon {
	position: absolute !important;
	top: 50% !important;
	left: 18px !important;
	display: inline-flex !important;
	width: 19px !important;
	height: 19px !important;
	color: #8a95a6 !important;
	transform: translateY(-50%) !important;
	pointer-events: none !important;
}

.fih-search-icon svg {
	display: block !important;
	width: 19px !important;
	height: 19px !important;
	fill: currentColor !important;
}

.fih-appbar-search input {
	width: 100% !important;
	height: 52px !important;
	padding: 0 18px 0 52px !important;
	border: 1px solid #dde5ef !important;
	border-radius: 8px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03) !important;
	color: #111827 !important;
	font-size: 15px !important;
	line-height: 52px !important;
	outline: none !important;
}

.fih-appbar-search input::placeholder {
	color: #7b8492 !important;
}

.fih-appbar-search input:focus {
	border-color: rgba(160, 30, 30, 0.42) !important;
	box-shadow: 0 0 0 4px rgba(160, 30, 30, 0.09) !important;
}

.fih-appbar-user {
	display: inline-flex !important;
	align-items: center !important;
	gap: 14px !important;
	min-width: 0 !important;
	padding: 12px 14px 12px 18px !important;
	border: 1px solid #dde5ef !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #101827 !important;
	text-decoration: none !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03) !important;
}

.fih-appbar-name {
	max-width: 240px !important;
	overflow: hidden !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.fih-appbar-profile-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 50% !important;
	background: rgba(160, 30, 30, 0.1) !important;
	color: var(--fih-maroon) !important;
}

.fih-appbar-profile-icon svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

.fih-nav {
	padding: 28px 18px 34px !important;
}

.fih-nav-link {
	min-height: 50px !important;
	margin: 0 0 8px !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: #3d4858 !important;
	font-size: 15px !important;
	font-weight: 760 !important;
	box-shadow: none !important;
}

.fih-nav-link:hover {
	background: #f7f0f0 !important;
	color: var(--fih-maroon) !important;
}

.fih-nav-link.active {
	background: #f4e7e7 !important;
	color: var(--fih-maroon) !important;
	box-shadow: none !important;
}

.fih-nav-icon,
.fih-nav-link.active .fih-nav-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	flex: 0 0 22px !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: currentColor !important;
}

.fih-nav-icon svg {
	display: block !important;
	width: 22px !important;
	height: 22px !important;
	fill: currentColor !important;
}

.fih-nav-label {
	line-height: 1.2 !important;
}

.fih-content {
	padding: 32px 34px 42px !important;
}

/* v2.0.14 active hero rule */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 42%)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

@media (max-width: 1100px) {
	.fih-appbar {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.fih-appbar-user {
		justify-self: start !important;
	}
}

@media (max-width: 782px) {
	body.fih-app-body {
		overflow: auto !important;
	}

	.fih-app {
		display: block !important;
		height: auto !important;
		overflow: visible !important;
	}

	.fih-sidebar {
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		flex-basis: auto !important;
		max-height: none !important;
	}

	.fih-main {
		height: auto !important;
		overflow: visible !important;
	}

	.fih-appbar {
		position: sticky !important;
		min-height: 0 !important;
		padding: 18px !important;
	}

	.fih-appbar-search,
	.fih-appbar-user {
		max-width: none !important;
		width: 100% !important;
	}

	.fih-content {
		padding: 22px 18px 30px !important;
	}
}

/* v2.0.13 active final override */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.4)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer,
.fih-home-footer.fih-home-footer {
	background: #000 !important;
}

.fih-home-socials a {
	width: 44px !important;
	height: 44px !important;
	background: #121212 !important;
	color: #fff !important;
	border-radius: 50% !important;
}

/* v2.0.13 hero brightness and footer social icon fix */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.4)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer {
	background: #000 !important;
}

.fih-home-socials {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.fih-home-socials a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 50% !important;
	background: #121212 !important;
	color: #fff !important;
	box-shadow: none !important;
	text-decoration: none !important;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fih-home-socials a:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.fih-home-socials svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fih-home-socials svg path {
	fill: currentColor;
	stroke: none;
}

.fih-home-socials svg rect,
.fih-home-socials svg circle {
	fill: none;
	stroke: currentColor;
}

@media (max-width: 760px) {
	.fih-home-socials {
		justify-content: flex-start;
	}
}

.fih-searching .fih-search-dim {
	opacity: 0.28;
}

.fih-search-hit {
	outline: 2px solid rgba(160, 30, 30, 0.34);
	outline-offset: 2px;
}

.fih-search-nav-hit {
	background: rgba(160, 30, 30, 0.08);
	color: var(--fih-maroon) !important;
}

@media (max-width: 900px) {
	.fih-sidebar {
		width: 270px;
	}

	.fih-sidebar-brand {
		min-height: 92px;
	}

	.fih-brand-logo {
		height: 52px !important;
	}
}

@media (max-width: 640px) {
	.fih-appbar-search {
		display: block;
		flex: 1;
		max-width: none;
	}

	.fih-appbar-search input {
		height: 40px;
		font-size: 14px;
	}
}

/* v2.0.10 marketing hero/footer update */
.fih-home-logo {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

.fih-home-logo img {
	height: 74px;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer {
	background: #000 !important;
	color: #d8dde6;
}

.fih-home-footer-brand p,
.fih-home-footer-col span,
.fih-home-copyright {
	color: #b8c0cc;
}

.fih-home-footer-col h3 {
	color: #fff;
}

.fih-home-copyright {
	border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 760px) {
	.fih-home-logo img {
		height: 58px;
	}
}

/* v2.0.12 final brand lock */
.fih-home-cta,
.fih-btn-primary,
.fih-home-offer span,
.fih-appbar-profile-icon,
.fih-nav-link.active .fih-nav-icon {
	background: var(--fih-maroon) !important;
}

.fih-home-cta,
.fih-btn-primary {
	box-shadow: 0 14px 28px rgba(160, 30, 30, 0.24) !important;
}

.fih-home-benefit-grid span,
.fih-home-socials a,
.fih-search-nav-hit,
.fih-nav-link.active {
	color: var(--fih-maroon) !important;
}

.fih-home-footer {
	background: #000 !important;
}

/* v2.0.13 active final override */
.fih-home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.4)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

.fih-home-footer,
.fih-home-footer.fih-home-footer {
	background: #000 !important;
}

.fih-home-socials {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 12px !important;
}

.fih-home-socials a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	background: #121212 !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.fih-home-socials a:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

.fih-home-socials svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fih-home-socials svg path {
	fill: currentColor;
	stroke: none;
}

.fih-home-socials svg rect,
.fih-home-socials svg circle {
	fill: none;
	stroke: currentColor;
}

/* v2.0.14 final active dashboard and hero override */
body.fih-app-body {
	overflow: hidden !important;
	background: #f5f7fb !important;
}

.fih-app {
	display: flex !important;
	width: 100% !important;
	height: 100vh !important;
	min-height: 100vh !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: hidden !important;
	background: #f5f7fb !important;
}

.fih-sidebar {
	position: sticky !important;
	top: 0 !important;
	left: 0 !important;
	width: 292px !important;
	height: 100vh !important;
	flex: 0 0 292px !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	background: #fff !important;
	border-right: 1px solid #e7edf5 !important;
	scrollbar-width: thin;
}

.fih-sidebar-brand {
	position: sticky !important;
	top: 0 !important;
	z-index: 3 !important;
	min-height: 164px !important;
	padding: 30px 34px !important;
	justify-content: center !important;
	background: #111821 !important;
	border-bottom: 0 !important;
}

.fih-brand-logo {
	height: 84px !important;
	max-width: 190px !important;
	object-fit: contain !important;
}

.fih-main {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	height: 100vh !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	background: #f5f7fb !important;
}

.fih-appbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 20 !important;
	display: grid !important;
	grid-template-columns: minmax(210px, 280px) minmax(320px, 1fr) auto !important;
	align-items: center !important;
	gap: 24px !important;
	min-height: 96px !important;
	padding: 18px 34px !important;
	background: #fff !important;
	border-bottom: 1px solid #e8edf4 !important;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02) !important;
}

.fih-hamburger,
#fih-hamburger {
	display: none !important;
}

.fih-appbar-title {
	min-width: 0 !important;
}

.fih-appbar-title span {
	color: #9aa4b4 !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.fih-appbar-title strong {
	color: #0f172a !important;
	font-size: 22px !important;
	line-height: 1.1 !important;
}

.fih-appbar-search {
	position: relative !important;
	width: 100% !important;
	max-width: 680px !important;
	margin: 0 !important;
}

.fih-search-icon {
	position: absolute !important;
	top: 50% !important;
	left: 18px !important;
	display: inline-flex !important;
	width: 19px !important;
	height: 19px !important;
	color: #8a95a6 !important;
	transform: translateY(-50%) !important;
	pointer-events: none !important;
}

.fih-search-icon svg {
	display: block !important;
	width: 19px !important;
	height: 19px !important;
	fill: currentColor !important;
}

.fih-appbar-search input {
	width: 100% !important;
	height: 52px !important;
	padding: 0 18px 0 52px !important;
	border: 1px solid #dde5ef !important;
	border-radius: 8px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03) !important;
	color: #111827 !important;
	font-size: 15px !important;
	line-height: 52px !important;
	outline: none !important;
}

.fih-appbar-search input::placeholder {
	color: #7b8492 !important;
}

.fih-appbar-search input:focus {
	border-color: rgba(160, 30, 30, 0.42) !important;
	box-shadow: 0 0 0 4px rgba(160, 30, 30, 0.09) !important;
}

.fih-appbar-user {
	display: inline-flex !important;
	align-items: center !important;
	gap: 14px !important;
	min-width: 0 !important;
	padding: 12px 14px 12px 18px !important;
	border: 1px solid #dde5ef !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #101827 !important;
	text-decoration: none !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03) !important;
}

.fih-appbar-name {
	max-width: 240px !important;
	overflow: hidden !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.fih-appbar-profile-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 50% !important;
	background: rgba(160, 30, 30, 0.1) !important;
	color: var(--fih-maroon) !important;
}

.fih-appbar-profile-icon svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

.fih-nav {
	padding: 28px 18px 34px !important;
}

.fih-nav-link {
	min-height: 50px !important;
	margin: 0 0 8px !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: #3d4858 !important;
	font-size: 15px !important;
	font-weight: 760 !important;
	box-shadow: none !important;
}

.fih-nav-link:hover {
	background: #f7f0f0 !important;
	color: var(--fih-maroon) !important;
}

.fih-nav-link.active {
	background: #f4e7e7 !important;
	color: var(--fih-maroon) !important;
	box-shadow: none !important;
}

.fih-nav-icon,
.fih-nav-link.active .fih-nav-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	flex: 0 0 22px !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: currentColor !important;
}

.fih-nav-icon svg {
	display: block !important;
	width: 22px !important;
	height: 22px !important;
	fill: currentColor !important;
}

.fih-content {
	padding: 32px 34px 42px !important;
}

.fih-home-hero {
	background:
		linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 42%)),
		url("../img/feel-hero-tiramisu.png") center/cover no-repeat !important;
}

@media (max-width: 1100px) {
	.fih-appbar {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.fih-appbar-user {
		justify-self: start !important;
	}
}

@media (max-width: 782px) {
	body.fih-app-body {
		overflow: auto !important;
	}

	.fih-app {
		display: block !important;
		height: auto !important;
		overflow: visible !important;
	}

	.fih-sidebar {
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		flex-basis: auto !important;
		max-height: none !important;
	}

	.fih-main {
		height: auto !important;
		overflow: visible !important;
	}

	.fih-appbar {
		position: sticky !important;
		min-height: 0 !important;
		padding: 18px !important;
	}

	.fih-appbar-search,
	.fih-appbar-user {
		max-width: none !important;
		width: 100% !important;
	}

	.fih-content {
		padding: 22px 18px 30px !important;
	}
}

/* v2.0.15 public-page scroll fix and requested hero overlay */
html:has(body.fih-public-shell-body),
body.fih-public-shell-body {
	height: auto !important;
	min-height: 100% !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
}

body.fih-app-shell-body {
	height: 100vh !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home {
	min-height: 100vh !important;
	overflow: visible !important;
}

body.fih-public-shell-body .fih-home-hero {
	background: linear-gradient(180deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 66%)), url("../img/feel-hero-tiramisu.png") center / cover no-repeat !important;
}

/* v2.0.16 onboarding card desktop proportion fix */
body.fih-public-shell-body .fih-home-start {
	box-sizing: border-box !important;
	width: min(1660px, calc(100% - 232px)) !important;
	max-width: 1660px !important;
	margin: -94px auto 118px !important;
	padding: 56px 58px !important;
	grid-template-columns: minmax(0, 1fr) 540px !important;
	gap: 78px !important;
	align-items: center !important;
	border-radius: 18px !important;
}

body.fih-public-shell-body .fih-home-start h2 {
	max-width: 980px !important;
	font-size: clamp(36px, 3vw, 48px) !important;
	line-height: 1.08 !important;
}

body.fih-public-shell-body .fih-home-start p {
	margin-bottom: 30px !important;
	font-size: 20px !important;
	line-height: 1.45 !important;
}

body.fih-public-shell-body .fih-home-checks {
	max-width: 880px !important;
	grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) !important;
	gap: 20px 46px !important;
}

body.fih-public-shell-body .fih-home-checks span {
	font-size: 18px !important;
	line-height: 1.25 !important;
}

body.fih-public-shell-body .fih-home-video {
	width: 100% !important;
	max-width: 540px !important;
	min-height: 230px !important;
	justify-self: end !important;
	border-radius: 16px !important;
}

body.fih-public-shell-body .fih-home-benefits {
	max-width: 1400px !important;
	padding-top: 0 !important;
}

@media (max-width: 1500px) {
	body.fih-public-shell-body .fih-home-start {
		width: min(1380px, calc(100% - 96px)) !important;
		padding: 48px 52px !important;
		grid-template-columns: minmax(0, 1fr) 500px !important;
		gap: 56px !important;
	}
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-start {
		width: calc(100% - 44px) !important;
		grid-template-columns: 1fr !important;
		gap: 34px !important;
		margin-top: -82px !important;
		padding: 38px 32px !important;
	}

	body.fih-public-shell-body .fih-home-video {
		justify-self: stretch !important;
		max-width: none !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-start {
		width: calc(100% - 28px) !important;
		margin: -72px auto 74px !important;
		padding: 30px 22px !important;
		border-radius: 16px !important;
	}

	body.fih-public-shell-body .fih-home-checks {
		grid-template-columns: 1fr !important;
	}
}

/* v2.0.17 button hovers, clean logo rail, compact greeting */
.fih-btn-primary:hover,
.fih-btn-danger:hover,
.fih-home-cta:hover,
button.fih-btn-primary:hover,
button.fih-btn-danger:hover,
input[type="submit"].fih-btn-primary:hover,
input[type="submit"].fih-btn-danger:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22) !important;
}

.fih-btn-secondary:hover,
.fih-btn:not(.fih-btn-primary):not(.fih-btn-danger):not(.fih-btn-gold):hover,
.fih-home-login:hover,
.fih-card .button:hover,
.fih-mat-card .fih-btn-secondary:hover,
.fih-order-card .fih-btn-secondary:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	box-shadow: 0 10px 20px rgba(160, 30, 30, 0.2) !important;
}

.fih-btn-gold:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-sidebar-brand {
	min-height: 138px !important;
	padding: 26px 30px !important;
	background: #fff !important;
	border-bottom: 1px solid #edf1f6 !important;
}

body.fih-app-shell-body .fih-brand-logo {
	height: 68px !important;
	max-width: 168px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.fih-public-shell-body .fih-home-logo img {
	height: 64px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.fih-appbar-user {
	min-width: 150px !important;
	max-width: 260px !important;
	justify-content: space-between !important;
}

.fih-appbar-name {
	max-width: 170px !important;
}

@media (max-width: 900px) {
	body.fih-app-shell-body .fih-sidebar-brand {
		min-height: 110px !important;
	}

	body.fih-app-shell-body .fih-brand-logo {
		height: 56px !important;
	}
}

/* v2.0.18 registration theme + onboarding strip + sidebar logo refinement */
body.fih-public-shell-body .fih-register-wrap {
	max-width: 1180px !important;
	padding: 34px 24px 70px !important;
}

body.fih-public-shell-body .fih-onboard-head {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 28px !important;
	max-width: 980px !important;
	min-height: 118px !important;
	margin: 0 auto 34px !important;
	padding: 20px 34px !important;
	border: 1px solid #ead7d7 !important;
	border-radius: 8px !important;
	background: linear-gradient(135deg, #fff 0%, #fbf5f5 100%) !important;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

body.fih-public-shell-body .fih-onboard-logo {
	height: 72px !important;
	width: auto !important;
	max-width: 175px !important;
	object-fit: contain !important;
}

body.fih-public-shell-body .fih-onboard-tag {
	padding-left: 28px !important;
	border-left: 1px solid #ead7d7 !important;
	color: #6b3940 !important;
	font-size: 15px !important;
	font-weight: 850 !important;	
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
}

body.fih-public-shell-body .fih-wizard-card {
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: 42px 48px !important;
	border: 1px solid #ead7d7 !important;
	border-radius: 8px !important;
	box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08) !important;
}

body.fih-public-shell-body .fih-wizard-card h1 {
	color: #111827 !important;
	font-size: clamp(32px, 3.2vw, 46px) !important;
	line-height: 1.1 !important;
}

body.fih-public-shell-body .fih-wizard-card .fih-sub {
	color: #6f7785 !important;
}

body.fih-public-shell-body .fih-step-pill.active,
body.fih-public-shell-body .fih-step-pill.done {
	color: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-step-no,
body.fih-public-shell-body .fih-step-pill.active .fih-step-no,
body.fih-public-shell-body .fih-step-pill.done .fih-step-no {
	background: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-progress {
	background: #f2e5e5 !important;
}

body.fih-public-shell-body .fih-progress-fill {
	background: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-form label,
body.fih-public-shell-body .fih-wizard label {
	color: #111827 !important;
	font-weight: 780 !important;
}

body.fih-public-shell-body .fih-req {
	color: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-form input,
body.fih-public-shell-body .fih-form select,
body.fih-public-shell-body .fih-form textarea,
body.fih-public-shell-body .fih-wizard input,
body.fih-public-shell-body .fih-wizard select,
body.fih-public-shell-body .fih-wizard textarea {
	border-color: #ded7d7 !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-form input:focus,
body.fih-public-shell-body .fih-form select:focus,
body.fih-public-shell-body .fih-form textarea:focus,
body.fih-public-shell-body .fih-wizard input:focus,
body.fih-public-shell-body .fih-wizard select:focus,
body.fih-public-shell-body .fih-wizard textarea:focus {
	border-color: rgba(160, 30, 30, 0.55) !important;
	box-shadow: 0 0 0 4px rgba(160, 30, 30, 0.1) !important;
	outline: none !important;
}

body.fih-public-shell-body .fih-hint {
	color: #6f7785 !important;
}

body.fih-public-shell-body .fih-btn-gold,
body.fih-public-shell-body .fih-wizard .fih-btn-gold,
body.fih-public-shell-body #fih-next,
body.fih-public-shell-body #fih-submit {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(160, 30, 30, 0.22) !important;
}

body.fih-public-shell-body .fih-btn-gold:hover,
body.fih-public-shell-body .fih-wizard .fih-btn-gold:hover,
body.fih-public-shell-body #fih-next:hover,
body.fih-public-shell-body #fih-submit:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-btn-secondary,
body.fih-public-shell-body #fih-fetch-gst,
body.fih-public-shell-body #fih-send-otp,
body.fih-public-shell-body #fih-verify-otp,
body.fih-public-shell-body #fih-prev {
	background: #f6eeee !important;
	border-color: #f0dede !important;
	color: var(--fih-maroon) !important;
}

body.fih-public-shell-body .fih-btn-secondary:hover,
body.fih-public-shell-body #fih-fetch-gst:hover,
body.fih-public-shell-body #fih-send-otp:hover,
body.fih-public-shell-body #fih-verify-otp:hover,
body.fih-public-shell-body #fih-prev:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-sidebar-brand {
	min-height: 96px !important;
	padding: 16px 24px !important;
	background: #fff !important;
	border-bottom: 1px solid #edf1f6 !important;
}

body.fih-app-shell-body .fih-brand-logo {
	height: 48px !important;
	max-width: 132px !important;
	object-fit: contain !important;
}

/* v2.0.19 dashboard logo image size + footer */
body.fih-app-shell-body .fih-sidebar-brand {
	padding: 16px 24px !important;
}

body.fih-app-shell-body .fih-brand-logo {
	height: 64px !important;
	max-width: 176px !important;
	object-fit: contain !important;
}

/* v2.0.20 final override: register route UI + compact dashboard logo */
body.fih-public-shell-body .fih-register-wrap {
	max-width: 1220px !important;
	padding: 34px 18px 76px !important;
}

body.fih-public-shell-body .fih-register-panel {
	display: grid !important;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
	max-width: 1180px !important;
	min-height: 680px !important;
	margin: 0 auto !important;
	overflow: hidden !important;
	border: 1px solid #e0e5ee !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14) !important;
}

body.fih-public-shell-body .fih-register-aside {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 22px !important;
	padding: 34px 28px !important;
	background: linear-gradient(180deg, #171717 0%, #101010 100%) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-aside-logo {
	width: 150px !important;
	height: auto !important;
	max-width: 62% !important;
	margin: 0 0 10px !important;
	object-fit: contain !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.fih-public-shell-body .fih-register-side-step.active {
	border-color: rgba(255, 255, 255, 0.58) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-panel .fih-wizard-card {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 34px 34px 86px !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: #fff !important;
}

body.fih-public-shell-body .fih-register-panel .fih-form input,
body.fih-public-shell-body .fih-register-panel .fih-form select,
body.fih-public-shell-body .fih-register-panel .fih-form textarea,
body.fih-public-shell-body .fih-register-panel .fih-wizard input,
body.fih-public-shell-body .fih-register-panel .fih-wizard select,
body.fih-public-shell-body .fih-register-panel .fih-wizard textarea {
	border-color: #e6e1db !important;
	background: #f7f5f2 !important;
}

body.fih-public-shell-body .fih-register-panel #fih-next,
body.fih-public-shell-body .fih-register-panel #fih-submit,
body.fih-public-shell-body .fih-register-panel .fih-btn-gold {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-register-panel #fih-next:hover,
body.fih-public-shell-body .fih-register-panel #fih-submit:hover,
body.fih-public-shell-body .fih-register-panel .fih-btn-gold:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-sidebar-brand {
	justify-content: center !important;
	min-height: 102px !important;
	padding: 10px 22px !important;
	background: #101720 !important;
	border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.fih-app-shell-body .fih-brand-logo {
	height: 82px !important;
	max-width: 190px !important;
	object-fit: contain !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.fih-dashboard-footer {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	padding: 18px 34px 24px !important;
	border-top: 1px solid #e7edf5 !important;
	background: #f5f7fb !important;
	color: #6f7785 !important;
	font-size: 14px !important;
	font-weight: 650 !important;
}

.fih-dashboard-footer a {
	color: var(--fih-maroon) !important;
	font-weight: 850 !important;
	text-decoration: none !important;
}

.fih-dashboard-footer a:hover {
	color: #050505 !important;
	text-decoration: underline !important;
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-onboard-head {
		align-items: flex-start !important;
		flex-direction: column !important;
		gap: 14px !important;
		min-height: 0 !important;
		padding: 20px !important;
	}

	body.fih-public-shell-body .fih-onboard-tag {
		padding-left: 0 !important;
		border-left: 0 !important;
	}

	body.fih-public-shell-body .fih-wizard-card {
		padding: 30px 22px !important;
	}

	.fih-dashboard-footer {
		align-items: flex-start !important;
		flex-direction: column !important;
		padding: 18px 22px 24px !important;
	}
}

/* v2.0.21 success page, email OTP, and white dashboard brand band */
body.fih-public-shell-body .fih-register-success {
	max-width: 760px !important;
	margin: 48px auto 80px !important;
	padding: 48px 38px !important;
	border: 1px solid #ead7d7 !important;
	border-top: 6px solid var(--fih-maroon) !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12) !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-register-success-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 64px !important;
	height: 64px !important;
	margin: 0 auto 18px !important;
	border-radius: 50% !important;
	background: #f7e8e9 !important;
	color: var(--fih-maroon) !important;
	font-size: 34px !important;
	font-weight: 900 !important;
}

body.fih-public-shell-body .fih-register-success img {
	display: block !important;
	width: 132px !important;
	height: auto !important;
	margin: 0 auto 16px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.fih-public-shell-body .fih-register-success h2 {
	margin: 0 0 16px !important;
	color: #111827 !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: clamp(30px, 4vw, 46px) !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
}

body.fih-public-shell-body .fih-register-success p {
	max-width: 620px !important;
	margin: 0 auto 18px !important;
	color: #4b5563 !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
}

body.fih-public-shell-body .fih-register-success-id {
	display: inline-flex !important;
	align-items: center !important;
	gap: 18px !important;
	margin: 8px auto 24px !important;
	padding: 16px 22px !important;
	border-radius: 10px !important;
	background: #111827 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-register-success-id span {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

body.fih-public-shell-body .fih-register-success-id strong {
	color: #fff !important;
	font-size: 20px !important;
	font-weight: 900 !important;
}

body.fih-public-shell-body .fih-email-verify .fih-inline {
	align-items: center !important;
}

body.fih-public-shell-body .fih-email-verify #fih-otp-input {
	max-width: 220px !important;
	text-align: center !important;
	font-size: 20px !important;
	font-weight: 850 !important;
	letter-spacing: 0.14em !important;
}

body.fih-app-shell-body .fih-sidebar-brand,
body.fih-app-shell-body .fih-sidebar .fih-sidebar-brand {
	justify-content: center !important;
	min-height: 118px !important;
	padding: 12px 22px !important;
	background: #fff !important;
	border-bottom: 1px solid #edf1f6 !important;
}

body.fih-app-shell-body .fih-brand-logo,
body.fih-app-shell-body .fih-sidebar .fih-brand-logo {
	height: 82px !important;
	max-width: 190px !important;
	object-fit: contain !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* v2.0.22 team dashboards and quick search suggestions */
body.fih-app-shell-body .fih-appbar-search {
	position: relative !important;
	overflow: visible !important;
}

body.fih-app-shell-body .fih-search-panel {
	position: absolute !important;
	top: calc(100% + 12px) !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 90 !important;
	display: none !important;
	padding: 14px !important;
	border: 1px solid #ead7d7 !important;
	border-radius: 16px !important;
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18) !important;
	backdrop-filter: blur(12px) !important;
}

body.fih-app-shell-body .fih-search-panel.is-open {
	display: block !important;
}

body.fih-app-shell-body .fih-search-panel-title {
	padding: 4px 8px 10px !important;
	color: #7b8494 !important;
	font-size: 13px !important;
	font-weight: 850 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

body.fih-app-shell-body .fih-search-suggestion {
	display: grid !important;
	grid-template-columns: 42px minmax(0, 1fr) !important;
	align-items: center !important;
	width: 100% !important;
	gap: 14px !important;
	padding: 12px 14px !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: transparent !important;
	color: #111827 !important;
	text-align: left !important;
	cursor: pointer !important;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
}

body.fih-app-shell-body .fih-search-suggestion:hover,
body.fih-app-shell-body .fih-search-suggestion:focus {
	outline: none !important;
	background: #f7e8e9 !important;
	color: var(--fih-maroon) !important;
	transform: translateX(2px) !important;
}

body.fih-app-shell-body .fih-search-suggestion-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	border-radius: 12px !important;
	background: var(--fih-maroon) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
}

body.fih-app-shell-body .fih-search-suggestion strong,
body.fih-app-shell-body .fih-search-suggestion small {
	display: block !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

body.fih-app-shell-body .fih-search-suggestion strong {
	font-size: 15px !important;
	font-weight: 900 !important;
}

body.fih-app-shell-body .fih-search-suggestion small {
	margin-top: 3px !important;
	color: #7b8494 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

body.fih-app-shell-body .fih-search-empty {
	padding: 18px !important;
	color: #7b8494 !important;
	font-size: 15px !important;
	font-weight: 750 !important;
	text-align: center !important;
}

body.fih-app-shell-body .fih-search-hit {
	border-color: rgba(177, 29, 35, 0.35) !important;
	box-shadow: 0 18px 46px rgba(177, 29, 35, 0.11) !important;
}

body.fih-app-shell-body .fih-search-dim {
	opacity: 0.42 !important;
}

body.fih-app-shell-body .fih-search-nav-hit {
	color: var(--fih-maroon) !important;
}

.fih-admin-modal[hidden] {
	display: none !important;
}

.fih-admin-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 100000 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px !important;
	background: rgba(15, 23, 42, 0.58) !important;
}

.fih-admin-modal-card {
	position: relative !important;
	width: min(520px, 100%) !important;
	padding: 28px !important;
	border-radius: 18px !important;
	background: #fff !important;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28) !important;
}

.fih-admin-modal-card h3 {
	margin: 0 0 20px !important;
	color: #111827 !important;
	font-size: 24px !important;
	font-weight: 900 !important;
}

.fih-admin-modal-card label {
	display: block !important;
	margin: 0 0 14px !important;
	color: #111827 !important;
	font-weight: 850 !important;
}

.fih-admin-modal-card input,
.fih-admin-modal-card select {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin-top: 6px !important;
	border-color: #d7dee8 !important;
	border-radius: 10px !important;
}

.fih-admin-modal-close {
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	width: 36px !important;
	height: 36px !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #f7e8e9 !important;
	color: var(--fih-maroon) !important;
	font-size: 24px !important;
	line-height: 1 !important;
	cursor: pointer !important;
}

.fih-admin-modal-close:hover {
	background: var(--fih-maroon) !important;
	color: #fff !important;
}

@media (max-width: 760px) {
	body.fih-app-shell-body .fih-search-panel {
		position: fixed !important;
		top: 118px !important;
		left: 16px !important;
		right: 16px !important;
		max-height: calc(100vh - 150px) !important;
		overflow: auto !important;
	}
}

/* v2.0.25: video hero, branded login modal, billing/status polish */
body.fih-public-shell-body,
body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home {
	min-height: 100vh !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	background: #fff !important;
}

body.fih-public-shell-body .fih-home-preloader {
	pointer-events: none !important;
	animation: fihPreloaderOut 0.45s ease 0.3s forwards !important;
}

@keyframes fihPreloaderOut {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

body.fih-public-shell-body .fih-home-nav {
	position: absolute !important;
	inset: 0 0 auto 0 !important;
	z-index: 5 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	max-width: 1680px !important;
	margin: 0 auto !important;
	padding: 34px clamp(24px, 7vw, 118px) !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo {
	display: inline-flex !important;
	align-items: center !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo img {
	display: block !important;
	width: clamp(132px, 13vw, 210px) !important;
	height: auto !important;
	max-height: none !important;
	object-fit: contain !important;
	background: transparent !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
}

body.fih-public-shell-body .fih-home-login,
body.fih-public-shell-body .fih-home-register,
body.fih-public-shell-body .fih-home-profile {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 56px !important;
	padding: 0 32px !important;
	border: 1px solid rgba(255, 255, 255, 0.75) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
	font-weight: 900 !important;
	text-decoration: none !important;
	backdrop-filter: blur(10px) !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

body.fih-public-shell-body .fih-home-register,
body.fih-public-shell-body .fih-home-login:hover,
body.fih-public-shell-body .fih-home-cta-ghost:hover {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-register:hover,
body.fih-public-shell-body .fih-home-cta:hover,
body.fih-public-shell-body .fih-home-status-form button:hover,
body.fih-public-shell-body .fih-home-thread-form button:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

body.fih-public-shell-body .fih-home-profile {
	width: 58px !important;
	padding: 0 !important;
}

body.fih-public-shell-body .fih-home-profile svg {
	width: 23px !important;
	height: 23px !important;
	fill: currentColor !important;
}

body.fih-public-shell-body .fih-home-hero {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: clamp(760px, 100vh, 980px) !important;
	padding: 150px 24px 86px !important;
	overflow: hidden !important;
	background: #060606 !important;
	color: #fff !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 0.62 !important;
	filter: saturate(1.08) contrast(1.04) !important;
}

body.fih-public-shell-body .fih-home-hero::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	background:
		radial-gradient(circle at 72% 20%, rgba(160, 30, 30, 0.34), transparent 32%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.62)) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	position: relative !important;
	z-index: 2 !important;
	width: min(1120px, 100%) !important;
	margin: 0 auto !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 1080px !important;
	margin: 0 !important;
	font-family: var(--fih-sans) !important;
	font-size: clamp(54px, 7vw, 112px) !important;
	line-height: 0.98 !important;
	letter-spacing: 0 !important;
	font-weight: 950 !important;
	color: #fff !important;
	text-shadow: 0 18px 60px rgba(0, 0, 0, 0.3) !important;
}

body.fih-public-shell-body .fih-home-hero h1 span {
	display: block !important;
	color: #ff9a31 !important;
	font-size: 1.22em !important;
	line-height: 0.84 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	margin: 34px auto 0 !important;
	max-width: 850px !important;
	color: rgba(255, 255, 255, 0.94) !important;
	font-family: var(--fih-serif) !important;
	font-size: clamp(30px, 3.7vw, 60px) !important;
	line-height: 1.1 !important;
	font-weight: 500 !important;
}

body.fih-public-shell-body .fih-home-trust {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: min(840px, 100%) !important;
	margin: 42px auto 0 !important;
	padding: 18px 28px !important;
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.17) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 22px 70px rgba(0, 0, 0, 0.22) !important;
	backdrop-filter: blur(16px) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-trust span {
	width: 38px !important;
	height: 38px !important;
	margin-left: -17px !important;
	border: 2px solid rgba(255, 255, 255, 0.65) !important;
	border-radius: 50% !important;
	background: linear-gradient(135deg, #fff, #f4c7c7) !important;
}

body.fih-public-shell-body .fih-home-trust span:first-child {
	margin-left: 0 !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	margin-left: 12px !important;
	color: #fff !important;
	font-size: clamp(16px, 1.5vw, 25px) !important;
	font-weight: 850 !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	gap: 18px !important;
	margin-top: 44px !important;
}

body.fih-public-shell-body .fih-home-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: min(430px, 82vw) !important;
	min-height: 72px !important;
	padding: 0 44px !important;
	border: 1px solid var(--fih-maroon) !important;
	border-radius: 16px !important;
	background: var(--fih-maroon) !important;
	color: #fff !important;
	font-size: clamp(18px, 2vw, 30px) !important;
	font-weight: 950 !important;
	text-decoration: none !important;
	box-shadow: 0 24px 64px rgba(160, 30, 30, 0.28) !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

body.fih-public-shell-body .fih-home-cta-ghost {
	min-width: 190px !important;
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.76) !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-status {
	width: min(1480px, calc(100% - 48px)) !important;
	margin: -86px auto 92px !important;
	position: relative !important;
	z-index: 3 !important;
	border-radius: 24px !important;
	border: 1px solid #e8edf4 !important;
	background: #fff !important;
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12) !important;
}

body.fih-public-shell-body .fih-home-status {
	margin-top: 0 !important;
	padding: clamp(28px, 4vw, 54px) !important;
}

body.fih-public-shell-body .fih-home-status-head span {
	color: var(--fih-maroon) !important;
	font-weight: 950 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
}

body.fih-public-shell-body .fih-home-status-form {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 14px !important;
	margin-top: 24px !important;
}

body.fih-public-shell-body .fih-home-status-form input,
body.fih-public-shell-body .fih-home-thread-form textarea,
body.fih-public-shell-body .fih-home-thread-form input[type="file"] {
	width: 100% !important;
	border: 1px solid #d9e1ec !important;
	border-radius: 14px !important;
	background: #f8fafc !important;
	color: #101827 !important;
	font-size: 16px !important;
}

body.fih-public-shell-body .fih-home-status-form button,
body.fih-public-shell-body .fih-home-thread-form button {
	border: 1px solid var(--fih-maroon) !important;
	border-radius: 14px !important;
	background: var(--fih-maroon) !important;
	color: #fff !important;
	font-weight: 950 !important;
}

body.fih-public-shell-body .fih-home-status-card {
	display: grid !important;
	grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr) !important;
	gap: 22px !important;
	margin-top: 28px !important;
	padding: 24px !important;
	border-radius: 20px !important;
	background: #fbf7f7 !important;
	border: 1px solid rgba(160, 30, 30, 0.16) !important;
}

.fih-thread-list,
.fih-home-thread-list {
	display: grid !important;
	gap: 12px !important;
	margin: 16px 0 !important;
}

.fih-thread-item {
	padding: 14px 16px !important;
	border-radius: 14px !important;
	background: #fff !important;
	border: 1px solid #e4e9f2 !important;
}

.fih-thread-admin {
	background: #fff7f7 !important;
	border-color: rgba(160, 30, 30, 0.2) !important;
}

.fih-thread-item p {
	margin: 6px 0 !important;
	color: #344054 !important;
}

.fih-thread-item a {
	color: var(--fih-maroon) !important;
	font-weight: 850 !important;
}

.fih-thread-reply,
.fih-home-thread-form {
	display: grid !important;
	gap: 12px !important;
}

.fih-login-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 100000 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 22px !important;
	background: rgba(0, 0, 0, 0.62) !important;
	backdrop-filter: blur(10px) !important;
}

.fih-login-modal.is-open {
	display: flex !important;
}

.fih-login-modal-card {
	position: relative !important;
	z-index: 2 !important;
	width: min(520px, 100%) !important;
	max-height: calc(100vh - 44px) !important;
	overflow: auto !important;
	padding: 34px !important;
	border-radius: 22px !important;
	background: #fff !important;
	border-top: 7px solid var(--fih-maroon) !important;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35) !important;
}

.fih-login-modal-backdrop {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	display: block !important;
}

.fih-login-modal-brand {
	display: flex !important;
	justify-content: center !important;
	margin-bottom: 22px !important;
}

.fih-login-modal-brand img {
	width: 150px !important;
	height: auto !important;
}

.fih-login-modal-close {
	position: absolute !important;
	top: 14px !important;
	right: 16px !important;
	display: grid !important;
	place-items: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 50% !important;
	background: #f6e6e7 !important;
	color: var(--fih-maroon) !important;
	text-decoration: none !important;
	font-size: 26px !important;
	line-height: 1 !important;
}

.fih-login-modal .fih-auth-wrap,
.fih-login-modal .fih-auth-shell,
.fih-login-modal .fih-auth-card {
	display: block !important;
	min-height: 0 !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.fih-login-modal .fih-auth-intro,
.fih-login-modal .fih-auth-side {
	display: none !important;
}

.fih-login-modal .fih-btn-primary,
.fih-login-modal button[type="submit"] {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-sidebar {
	position: sticky !important;
	top: 0 !important;
	height: 100vh !important;
	background: #fff !important;
	border-right: 1px solid #e5eaf2 !important;
}

body.fih-app-shell-body .fih-sidebar-brand {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 132px !important;
	padding: 16px 20px !important;
	background: #fff !important;
	border-bottom: 1px solid #edf1f6 !important;
}

body.fih-app-shell-body .fih-sidebar-brand .fih-brand-logo {
	height: auto !important;
	width: min(190px, 78%) !important;
	max-height: 96px !important;
	object-fit: contain !important;
}

body.fih-app-shell-body .fih-btn-primary,
body.fih-app-shell-body .fih-btn-danger,
body.fih-app-shell-body button.fih-btn-primary,
body.fih-app-shell-body button.fih-btn-danger {
	background: var(--fih-maroon) !important;
	border-color: var(--fih-maroon) !important;
	color: #fff !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

body.fih-app-shell-body .fih-btn-primary:hover,
body.fih-app-shell-body .fih-btn-danger:hover,
body.fih-app-shell-body button.fih-btn-primary:hover,
body.fih-app-shell-body button.fih-btn-danger:hover {
	background: #050505 !important;
	border-color: #050505 !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

body.fih-app-shell-body .fih-btn-secondary:hover,
body.fih-app-shell-body .fih-linkbtn:hover {
	background: var(--fih-maroon) !important;
	color: #fff !important;
}

body.fih-app-shell-body .fih-mini-total {
	min-width: 170px !important;
	padding: 14px 18px !important;
	border-radius: 16px !important;
	background: #fff7f7 !important;
	border: 1px solid rgba(160, 30, 30, 0.16) !important;
	text-align: right !important;
}

body.fih-app-shell-body .fih-mini-total span,
body.fih-app-shell-body .fih-mini-total strong {
	display: block !important;
}

body.fih-app-shell-body .fih-mini-total span {
	color: #667085 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
}

body.fih-app-shell-body .fih-mini-total strong {
	margin-top: 4px !important;
	color: var(--fih-maroon) !important;
	font-size: 24px !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-nav {
		padding: 22px 18px !important;
	}

	body.fih-public-shell-body .fih-home-logo img {
		width: 124px !important;
	}

	body.fih-public-shell-body .fih-home-login,
	body.fih-public-shell-body .fih-home-register {
		min-height: 44px !important;
		padding: 0 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 720px !important;
		padding-top: 124px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(46px, 14vw, 70px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(25px, 8vw, 38px) !important;
	}

	body.fih-public-shell-body .fih-home-trust,
	body.fih-public-shell-body .fih-home-status-card,
	body.fih-public-shell-body .fih-home-status-form {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-trust {
		border-radius: 28px !important;
		flex-wrap: wrap !important;
	}

	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-status {
		width: calc(100% - 28px) !important;
		margin-bottom: 56px !important;
	}
}

/* v2.0.26 actual final hero overrides */
body.fih-public-shell-body .fih-home-nav {
	position: absolute !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo {
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-logo img {
	width: clamp(138px, 12vw, 190px) !important;
	height: auto !important;
	background: transparent !important;
}

body.fih-public-shell-body .fih-home-nav-actions {
	position: absolute !important;
	right: clamp(20px, 5vw, 84px) !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
}

body.fih-public-shell-body .fih-home-profile {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero {
	background: #060606 !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 0.54 !important;
	visibility: visible !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 1040px !important;
	font-size: clamp(46px, 6.1vw, 96px) !important;
	line-height: 1.03 !important;
}

body.fih-public-shell-body .fih-home-hero h1 span {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	display: block !important;
	width: clamp(168px, 17vw, 284px) !important;
	height: auto !important;
	margin: 0 auto 18px !important;
	object-fit: contain !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 760px !important;
	margin-top: 24px !important;
	font-size: clamp(20px, 2.2vw, 32px) !important;
	line-height: 1.28 !important;
	font-weight: 500 !important;
}

body.fih-public-shell-body .fih-home-cta-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	margin-right: 12px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-cta-icon svg {
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-logo {
		left: 24px !important;
		transform: none !important;
	}

	body.fih-public-shell-body .fih-home-logo img {
		width: 122px !important;
	}

	body.fih-public-shell-body .fih-home-nav-actions {
		right: 18px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(138px, 38vw, 204px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: clamp(18px, 5.2vw, 27px) !important;
	}
}

/* v2.0.28 final winning home cleanup */
html:has(body.fih-public-shell-body),
body.fih-public-shell-body { margin: 0 !important; padding: 0 !important; background: #050505 !important; border: 0 !important; }
body.fih-public-shell-body #wpadminbar,
body.fih-public-shell-body .site-header,
body.fih-public-shell-body header.site-header,
body.fih-public-shell-body #masthead,
body.fih-public-shell-body .main-navigation { display: none !important; visibility: hidden !important; height: 0 !important; min-height: 0 !important; }
body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home { margin: 0 !important; padding: 0 !important; background: #050505 !important; }
body.fih-public-shell-body .fih-home-nav { inset: 0 0 auto 0 !important; justify-content: flex-end !important; min-height: 112px !important; padding: 26px clamp(26px, 5vw, 88px) !important; background: transparent !important; box-shadow: none !important; }
body.fih-public-shell-body .fih-home-logo,
body.fih-public-shell-body .fih-home-nav-spacer { display: none !important; }
body.fih-public-shell-body .fih-home-nav-actions { position: static !important; transform: none !important; margin-left: auto !important; }
body.fih-public-shell-body .fih-home-login,
body.fih-public-shell-body .fih-home-register { min-height: 54px !important; padding: 0 34px !important; font-size: 18px !important; }
body.fih-public-shell-body .fih-home-hero { min-height: 880px !important; padding: 132px 24px 168px !important; background: #050505 !important; }
body.fih-public-shell-body .fih-home-hero-video { opacity: 0.64 !important; filter: saturate(1.08) contrast(1.05) !important; }
body.fih-public-shell-body .fih-home-hero::before { background: radial-gradient(circle at 72% 15%, rgba(160, 30, 30, 0.23), transparent 34%), linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55)) !important; }
body.fih-public-shell-body .fih-home-hero-logo { width: clamp(132px, 12vw, 210px) !important; margin: 0 auto 24px !important; }
body.fih-public-shell-body .fih-home-hero h1 { max-width: 940px !important; margin: 0 auto !important; text-transform: none !important; font-size: clamp(48px, 5.7vw, 88px) !important; line-height: 1.02 !important; }
body.fih-public-shell-body .fih-home-hero-sub { max-width: 640px !important; margin-top: 22px !important; font-family: var(--fih-sans) !important; font-size: clamp(17px, 1.55vw, 23px) !important; line-height: 1.45 !important; font-weight: 650 !important; }
body.fih-public-shell-body .fih-home-trust { width: min(720px, 100%) !important; margin-top: 34px !important; padding: 14px 24px !important; }
body.fih-public-shell-body .fih-home-trust span { width: 34px !important; height: 34px !important; }
body.fih-public-shell-body .fih-home-trust strong { font-size: clamp(15px, 1.15vw, 19px) !important; }
body.fih-public-shell-body .fih-home-hero-actions { margin-top: 36px !important; }
body.fih-public-shell-body .fih-home-cta { min-height: 64px !important; min-width: min(360px, 78vw) !important; border-radius: 14px !important; font-size: clamp(17px, 1.55vw, 24px) !important; }
body.fih-public-shell-body .fih-home-start { margin-top: -70px !important; }
@media (max-width: 900px) {
  body.fih-public-shell-body .fih-home-nav { min-height: 86px !important; padding: 18px !important; }
  body.fih-public-shell-body .fih-home-login,
  body.fih-public-shell-body .fih-home-register { min-height: 44px !important; padding: 0 18px !important; font-size: 15px !important; }
  body.fih-public-shell-body .fih-home-hero { min-height: 760px !important; padding: 112px 18px 130px !important; }
  body.fih-public-shell-body .fih-home-hero-logo { width: clamp(112px, 30vw, 158px) !important; margin-bottom: 18px !important; }
  body.fih-public-shell-body .fih-home-hero h1 { font-size: clamp(38px, 10.8vw, 58px) !important; }
  body.fih-public-shell-body .fih-home-hero-sub { font-size: clamp(16px, 4.2vw, 20px) !important; }
  body.fih-public-shell-body .fih-home-trust { border-radius: 24px !important; padding: 14px 18px !important; }
  body.fih-public-shell-body .fih-home-start { margin-top: -46px !important; }
}

/* v2.0.29 final homepage tuning */
body.fih-public-shell-body .fih-home-nav-actions:empty { display: none !important; }
body.fih-public-shell-body .fih-home-hero { min-height: 860px !important; padding: 128px 24px 150px !important; }
body.fih-public-shell-body .fih-home-hero-video { opacity: 0.78 !important; filter: saturate(1.08) contrast(1.03) brightness(1.04) !important; }
body.fih-public-shell-body .fih-home-hero::before { background: radial-gradient(circle at 72% 15%, rgba(160, 30, 30, 0.16), transparent 34%), linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)) !important; }
body.fih-public-shell-body .fih-home-hero-logo { width: clamp(150px, 13.5vw, 235px) !important; margin: 0 auto 24px !important; }
body.fih-public-shell-body .fih-home-hero h1 { max-width: 900px !important; font-size: clamp(42px, 5.05vw, 78px) !important; line-height: 1.04 !important; }
body.fih-public-shell-body .fih-home-hero-sub { max-width: 650px !important; font-size: clamp(16px, 1.45vw, 22px) !important; line-height: 1.45 !important; }
body.fih-public-shell-body .fih-home-trust { margin-top: 32px !important; }
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-stories,
body.fih-public-shell-body .fih-home-faq { background: #fff !important; color: #101827 !important; }
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-stories h2,
body.fih-public-shell-body .fih-home-faq h2,
body.fih-public-shell-body .fih-home-benefit-grid h3,
body.fih-public-shell-body .fih-home-story-grid strong,
body.fih-public-shell-body .fih-home-faq summary { color: #101827 !important; }
body.fih-public-shell-body .fih-home-benefits p,
body.fih-public-shell-body .fih-home-stories p,
body.fih-public-shell-body .fih-home-story-grid span,
body.fih-public-shell-body .fih-home-faq p { color: #596579 !important; }
body.fih-public-shell-body .fih-home-status { background: #fff !important; color: #101827 !important; }
body.fih-public-shell-body .fih-home-status h2,
body.fih-public-shell-body .fih-home-status h3,
body.fih-public-shell-body .fih-home-status h4 { color: #101827 !important; }
@media (max-width: 900px) {
  body.fih-public-shell-body .fih-home-hero { min-height: 730px !important; padding: 104px 18px 118px !important; }
  body.fih-public-shell-body .fih-home-hero-logo { width: clamp(128px, 34vw, 178px) !important; }
  body.fih-public-shell-body .fih-home-hero h1 { font-size: clamp(34px, 9.7vw, 52px) !important; }
  body.fih-public-shell-body .fih-home-hero-sub { font-size: clamp(15px, 4vw, 19px) !important; }
}

/* v2.0.30 homepage polish */
html:has(body.fih-public-shell-body),
body.fih-public-shell-body {
	background: #fff !important;
}

body.fih-public-shell-body .fih-public-content,
body.fih-public-shell-body .fih-home {
	background: #fff !important;
	max-width: none !important;
	overflow-x: hidden !important;
}

body.fih-public-shell-body .fih-home-nav,
body.fih-public-shell-body .fih-home-nav-actions {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero {
	background: #050505 !important;
	min-height: 850px !important;
	padding: 82px 24px 148px !important;
}

body.fih-public-shell-body .fih-home-hero-video {
	opacity: 0.72 !important;
	filter: saturate(1.08) contrast(1.04) brightness(0.94) !important;
}

body.fih-public-shell-body .fih-home-hero::before {
	background:
		radial-gradient(circle at 72% 18%, rgba(160, 30, 30, 0.18), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.62)) !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	font-size: clamp(40px, 4.8vw, 74px) !important;
}

body.fih-public-shell-body .fih-home-trust span {
	overflow: hidden !important;
	background: #f7e8e8 !important;
	border: 2px solid rgba(255, 255, 255, 0.92) !important;
}

body.fih-public-shell-body .fih-home-trust span img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

body.fih-public-shell-body .fih-home-start {
	margin-top: -72px !important;
}

body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-faq {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 110px clamp(24px, 8vw, 170px) !important;
	background: #fff !important;
	color: #101827 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-stories {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 112px clamp(24px, 8vw, 170px) !important;
	background: #edf5ff !important;
	color: #101827 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-status {
	width: min(1480px, calc(100% - 48px)) !important;
	max-width: 1480px !important;
	margin: 78px auto !important;
	padding: clamp(34px, 4vw, 70px) !important;
	background: #fff !important;
	color: #101827 !important;
	border-radius: 24px !important;
}

body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-stories h2,
body.fih-public-shell-body .fih-home-faq h2,
body.fih-public-shell-body .fih-home-status h2,
body.fih-public-shell-body .fih-home-status h3,
body.fih-public-shell-body .fih-home-status h4,
body.fih-public-shell-body .fih-home-benefit-grid h3,
body.fih-public-shell-body .fih-home-story-grid strong,
body.fih-public-shell-body .fih-home-faq summary {
	color: #101827 !important;
}

body.fih-public-shell-body .fih-home-benefits p,
body.fih-public-shell-body .fih-home-stories p,
body.fih-public-shell-body .fih-home-story-grid span,
body.fih-public-shell-body .fih-home-faq p,
body.fih-public-shell-body .fih-home-status p {
	color: #596579 !important;
}

body.fih-public-shell-body .fih-home-faq details {
	background: #fff !important;
	border: 1px solid #dfe7f2 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-footer {
	background: #000 !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-hero {
		min-height: 720px !important;
		padding: 76px 18px 118px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(33px, 9.1vw, 50px) !important;
	}

	body.fih-public-shell-body .fih-home-start {
		margin-top: -44px !important;
	}

	body.fih-public-shell-body .fih-home-benefits,
	body.fih-public-shell-body .fih-home-stories,
	body.fih-public-shell-body .fih-home-faq {
		padding: 72px 18px !important;
	}

	body.fih-public-shell-body .fih-home-status {
		width: calc(100% - 28px) !important;
		margin: 48px auto !important;
	}
}

/* v2.0.31 white-logo dark areas + register video background */
body.fih-public-shell-body:has(.fih-register-wrap) {
	position: relative !important;
	min-height: 100vh !important;
	background: #050505 !important;
	overflow-x: hidden !important;
}

body.fih-public-shell-body:has(.fih-register-wrap)::before {
	content: "" !important;
	position: fixed !important;
	inset: 0 !important;
	z-index: -1 !important;
	background:
		radial-gradient(circle at 72% 16%, rgba(166, 25, 31, 0.26), transparent 34%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.78)) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-public-content {
	position: relative !important;
	z-index: 1 !important;
	background: transparent !important;
	min-height: 100vh !important;
}

body.fih-public-shell-body .fih-register-bg-video {
	position: fixed !important;
	inset: 0 !important;
	z-index: -2 !important;
	width: 100vw !important;
	height: 100vh !important;
	object-fit: cover !important;
	opacity: 0.72 !important;
	filter: saturate(1.08) contrast(1.04) brightness(0.86) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-wrap {
	position: relative !important;
	z-index: 1 !important;
	padding-top: clamp(42px, 7vh, 86px) !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel {
	background: rgba(255, 255, 255, 0.96) !important;
	border-color: rgba(255, 255, 255, 0.34) !important;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36) !important;
	backdrop-filter: blur(12px) !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-aside {
	background:
		linear-gradient(180deg, rgba(8, 10, 14, 0.94), rgba(5, 5, 5, 0.96)),
		radial-gradient(circle at 20% 10%, rgba(166, 25, 31, 0.3), transparent 36%) !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-aside-logo {
	width: 170px !important;
	max-width: 68% !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	margin: 0 0 8px !important;
	font-family: var(--fih-sans) !important;
	font-size: clamp(22px, 2.2vw, 36px) !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	color: rgba(255, 255, 255, 0.94) !important;
	letter-spacing: 0 !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(150px, 14vw, 250px) !important;
	margin: 0 auto 18px !important;
	filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.36)) !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 980px !important;
	font-size: clamp(42px, 5.15vw, 82px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 720px !important;
	font-size: clamp(16px, 1.35vw, 21px) !important;
}

body.fih-public-shell-body .fih-home-footer-brand img {
	width: 160px !important;
	max-width: 100% !important;
	height: auto !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-bg-video {
		opacity: 0.58 !important;
	}

	body.fih-public-shell-body .fih-home-hero-kicker {
		font-size: clamp(19px, 5.8vw, 28px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(128px, 38vw, 190px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(36px, 10.2vw, 56px) !important;
	}
}

/* v2.0.32 hero spacing + medium CTA buttons */
body.fih-public-shell-body .fih-home-hero {
	padding-top: 58px !important;
	padding-bottom: 132px !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	transform: translateY(-34px) !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	margin-bottom: 18px !important;
	font-size: clamp(34px, 3.7vw, 58px) !important;
	font-weight: 900 !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(190px, 17vw, 310px) !important;
	margin-bottom: 28px !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	gap: 26px !important;
	margin-top: 34px !important;
	justify-content: center !important;
}

body.fih-public-shell-body .fih-home-cta {
	min-width: 0 !important;
	width: min(330px, 42vw) !important;
	min-height: 58px !important;
	padding: 0 28px !important;
	border-radius: 14px !important;
	font-size: clamp(17px, 1.25vw, 21px) !important;
}

body.fih-public-shell-body .fih-home-benefits {
	padding-top: 104px !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-hero {
		padding-top: 58px !important;
		padding-bottom: 108px !important;
	}

	body.fih-public-shell-body .fih-home-hero-inner {
		transform: translateY(-18px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-kicker {
		margin-bottom: 14px !important;
		font-size: clamp(28px, 8.6vw, 42px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(160px, 48vw, 230px) !important;
		margin-bottom: 22px !important;
	}

	body.fih-public-shell-body .fih-home-hero-actions {
		gap: 14px !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: min(300px, 86vw) !important;
		min-height: 54px !important;
	}
}

/* v2.0.33 hero refinement + login modal theme */
body.fih-public-shell-body .fih-home-hero-inner {
	transform: translateY(-58px) !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(38px, 4.15vw, 66px) !important;
	margin-bottom: 22px !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(220px, 20vw, 365px) !important;
	margin-bottom: 24px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	font-size: clamp(38px, 4.65vw, 72px) !important;
	line-height: 1.03 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	margin-top: 18px !important;
	font-size: clamp(15px, 1.25vw, 20px) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 28px !important;
	gap: 22px !important;
}

body.fih-public-shell-body .fih-home-cta {
	width: min(290px, 34vw) !important;
	min-height: 52px !important;
	padding: 0 22px !important;
	font-size: clamp(15px, 1.08vw, 18px) !important;
}

.fih-login-modal-card {
	border-top-color: #c75b60 !important;
	background:
		linear-gradient(180deg, rgba(199, 91, 96, 0.08), rgba(255, 255, 255, 0) 30%),
		#fff !important;
}

.fih-login-modal-brand {
	margin-bottom: 18px !important;
}

.fih-login-modal-brand img {
	width: 132px !important;
}

.fih-login-modal-brand span {
	display: none !important;
}

.fih-login-modal .fih-btn-primary,
.fih-login-modal button[type="submit"] {
	background: #b01920 !important;
	border-color: #b01920 !important;
}

.fih-login-modal .fih-btn-primary:hover,
.fih-login-modal button[type="submit"]:hover {
	background: #050505 !important;
	border-color: #050505 !important;
}

.fih-login-modal-close {
	background: #f8e8e9 !important;
	color: #a6191f !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-hero-inner {
		transform: translateY(-34px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-kicker {
		font-size: clamp(31px, 9vw, 46px) !important;
		margin-bottom: 16px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(178px, 54vw, 255px) !important;
		margin-bottom: 20px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(32px, 8.8vw, 48px) !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: min(260px, 82vw) !important;
		min-height: 50px !important;
	}
}

/* v2.0.34 final SEO/layout polish */
body.fih-public-shell-body .fih-home-stories {
	background: #fff1f2 !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	transform: translateY(-72px) !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(31px, 3.35vw, 52px) !important;
	margin-bottom: 18px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	font-size: clamp(34px, 4.15vw, 64px) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 24px !important;
	gap: 18px !important;
}

body.fih-public-shell-body .fih-home-cta {
	width: min(235px, 28vw) !important;
	min-height: 46px !important;
	padding: 0 18px !important;
	font-size: clamp(14px, 0.98vw, 16px) !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	font-size: clamp(14px, 1.05vw, 17px) !important;
}

body.fih-public-shell-body .fih-home-copyright {
	gap: 18px !important;
	align-items: center !important;
}

body.fih-public-shell-body .fih-home-credit {
	color: #d8e1ef !important;
	font-weight: 700 !important;
}

body.fih-public-shell-body .fih-home-credit a {
	color: #fff !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45) !important;
}

body.fih-public-shell-body .fih-home-credit a:hover {
	color: #ffb4b8 !important;
	border-bottom-color: #ffb4b8 !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel {
	grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-hero-inner {
		transform: translateY(-44px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-kicker {
		font-size: clamp(25px, 7.2vw, 36px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(29px, 7.8vw, 42px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-actions {
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: min(210px, 44vw) !important;
		min-height: 44px !important;
		font-size: 14px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-wrap {
		width: 100% !important;
		max-width: none !important;
		padding: 24px 12px 54px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-height: 0 !important;
		border-radius: 18px !important;
		overflow: hidden !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-aside {
		padding: 24px 20px !important;
		gap: 14px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-aside-logo {
		width: 142px !important;
		max-width: 54vw !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-side-steps {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-wizard-card {
		padding: 26px 18px 34px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-row,
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-row-3,
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-inline {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-form input,
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-form select,
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-form textarea,
	body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel .fih-btn {
		width: 100% !important;
		min-width: 0 !important;
	}

	body.fih-public-shell-body:has(.fih-register-wrap) .fih-steps {
		overflow-x: auto !important;
		padding-bottom: 4px !important;
	}

	body.fih-public-shell-body .fih-home-copyright {
		flex-direction: column !important;
		align-items: flex-start !important;
	}
}

@media (max-width: 520px) {
	body.fih-public-shell-body .fih-home-hero-actions {
		flex-direction: column !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: min(240px, 82vw) !important;
	}
}

/* v2.0.35 footer support icons + inline credit */
body.fih-public-shell-body .fih-home-support-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #d8e1ef !important;
	font-weight: 650 !important;
	line-height: 1.45 !important;
}

body.fih-public-shell-body .fih-home-support-item > span:not(.fih-home-support-icon) {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: inherit !important;
}

body.fih-public-shell-body .fih-home-support-icon {
	flex: 0 0 42px !important;
	width: 42px !important;
	height: 42px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	background: #121212 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-support-icon svg {
	width: 20px !important;
	height: 20px !important;
	display: block !important;
	fill: currentColor !important;
}

body.fih-public-shell-body .fih-home-copyright > span {
	display: inline !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #d8e1ef !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
}

body.fih-public-shell-body .fih-home-credit,
body.fih-public-shell-body .fih-home-credit-link {
	display: inline !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-credit-link {
	color: #fff !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.42) !important;
}

body.fih-public-shell-body .fih-home-credit-link:hover {
	color: #ffb4b8 !important;
	border-bottom-color: #ffb4b8 !important;
}

@media (max-width: 900px) {
	body.fih-public-shell-body .fih-home-support-icon {
		width: 38px !important;
		height: 38px !important;
		flex-basis: 38px !important;
	}
}

/* v2.0.36 footer polish + mobile hero spacing */
body.fih-public-shell-body .fih-home-footer-col:has(.fih-home-support-item) {
	gap: 10px !important;
}

body.fih-public-shell-body .fih-home-footer-col:has(.fih-home-support-item) h3 {
	margin-bottom: 2px !important;
}

body.fih-public-shell-body .fih-home-support-item {
	align-items: center !important;
	gap: 10px !important;
	margin: 0 0 10px !important;
	line-height: 1.22 !important;
}

body.fih-public-shell-body .fih-home-support-item > span:not(.fih-home-support-icon) {
	display: flex !important;
	align-items: center !important;
	min-height: 42px !important;
	line-height: 1.22 !important;
}

body.fih-public-shell-body .fih-home-support-icon {
	width: 38px !important;
	height: 38px !important;
	flex: 0 0 38px !important;
}

body.fih-public-shell-body .fih-home-support-icon svg {
	width: 18px !important;
	height: 18px !important;
}

body.fih-public-shell-body .fih-home-credit-link,
body.fih-public-shell-body .fih-home-credit-link:visited,
body.fih-public-shell-body .fih-home-credit-link:focus,
body.fih-public-shell-body .fih-home-credit-link:active {
	border: 0 !important;
	border-bottom: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
	background: transparent !important;
}

body.fih-public-shell-body .fih-home-credit-link:hover {
	border: 0 !important;
	border-bottom: 0 !important;
	text-decoration: none !important;
	color: #ffb4b8 !important;
}

@media (max-width: 640px) {
	body.fih-public-shell-body .fih-home-hero {
		padding-top: 132px !important;
	}

	body.fih-public-shell-body .fih-home-support-item {
		gap: 9px !important;
		margin-bottom: 9px !important;
	}

	body.fih-public-shell-body .fih-home-support-item > span:not(.fih-home-support-icon) {
		min-height: 36px !important;
	}

	body.fih-public-shell-body .fih-home-support-icon {
		width: 36px !important;
		height: 36px !important;
		flex-basis: 36px !important;
	}
}

/* v2.0.37 hero centering, notifications, WhatsApp, tickets and calendar */
body.fih-public-shell-body .fih-home-hero {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 100svh !important;
	padding-top: clamp(72px, 8vh, 120px) !important;
	padding-bottom: clamp(120px, 16vh, 190px) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	transform: none !important;
	margin: 0 auto !important;
}

.fih-appbar {
	gap: 18px !important;
}

.fih-appbar-notification {
	position: relative;
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e7f1;
	border-radius: 18px;
	background: #fff;
	color: #a61e22;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.fih-appbar-notification svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.fih-appbar-notification span {
	position: absolute;
	top: -7px;
	right: -7px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #a61e22;
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
}

.fih-appbar-profile-icon {
	background: #f7e8e9 !important;
	color: #a61e22 !important;
}

.fih-appbar-profile-icon svg {
	width: 22px !important;
	height: 22px !important;
	fill: currentColor !important;
}

.fih-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	width: 62px;
	height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fih-whatsapp-float:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42);
}

.fih-whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.fih-ticket-form {
	max-width: 760px;
}

.fih-ticket-history-title {
	margin: 28px 0 14px;
	font-size: 20px;
}

.fih-ticket-list {
	display: grid;
	gap: 12px;
}

.fih-ticket-row {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border: 1px solid #ead7d7;
	border-radius: 16px;
	background: #fffafa;
}

.fih-ticket-row strong {
	color: #111827;
	font-weight: 850;
}

.fih-ticket-row span {
	color: #667085;
	font-weight: 650;
}

.fih-ticket-row p {
	margin: 4px 0 0;
	color: #334155;
	line-height: 1.55;
}

.fih-ticket-list-admin .fih-ticket-row {
	grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
	align-items: start;
}

input.fih-order-input[type="date"] {
	min-height: 56px;
	cursor: text;
}

@media (max-width: 900px) {
	.fih-appbar-notification {
		width: 50px;
		height: 50px;
		border-radius: 16px;
	}

	.fih-ticket-list-admin .fih-ticket-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.fih-public-shell-body .fih-home-hero {
		align-items: center !important;
		min-height: 100svh !important;
		padding-top: 96px !important;
		padding-bottom: 128px !important;
	}

	.fih-whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 54px;
		height: 54px;
	}

	.fih-whatsapp-float svg {
		width: 28px;
		height: 28px;
	}
}

/* v2.0.38 final dashboard utilities and large-screen hero centering */
body.fih-public-shell-body .fih-home-hero {
	display: grid !important;
	place-items: center !important;
	min-height: 100vh !important;
	min-height: 100svh !important;
	padding: clamp(64px, 8vh, 96px) 24px clamp(108px, 13vh, 160px) !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	position: relative !important;
	inset: auto !important;
	transform: none !important;
	margin: auto !important;
	width: min(1120px, 100%) !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(34px, 4.6vw, 62px) !important;
	line-height: 1 !important;
	margin-bottom: clamp(8px, 1.2vh, 14px) !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(180px, 18vw, 300px) !important;
	max-height: 170px !important;
	margin: 0 auto clamp(18px, 2.2vh, 28px) !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	font-size: clamp(42px, 5.1vw, 78px) !important;
	line-height: 1.02 !important;
	margin: 0 0 clamp(14px, 2vh, 24px) !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	font-size: clamp(16px, 1.45vw, 22px) !important;
	line-height: 1.35 !important;
	margin-bottom: clamp(26px, 3.8vh, 42px) !important;
}

body.fih-public-shell-body .fih-home-trust {
	margin-bottom: clamp(34px, 5vh, 58px) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 0 !important;
}

.fih-nav-link[href="#fih-support"] .fih-nav-icon,
.fih-nav-link[href="#fih-tickets"] .fih-nav-icon,
.fih-nav-link[href="#fih-account"] .fih-nav-icon {
	color: inherit !important;
}

.fih-appbar-notification:hover,
.fih-appbar-user:hover {
	border-color: rgba(166, 30, 34, 0.28) !important;
	background: #fff7f7 !important;
	color: #a61e22 !important;
}

.fih-appbar-profile-icon {
	border-radius: 999px !important;
}

input.fih-order-input[type="date"] {
	appearance: auto !important;
	-webkit-appearance: auto !important;
	background: #f8fafc !important;
}

@media (min-width: 1500px) {
	body.fih-public-shell-body .fih-home-hero {
		padding-top: 7vh !important;
		padding-bottom: 13vh !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-hero {
		padding: 88px 18px 118px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(160px, 46vw, 220px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(36px, 11vw, 52px) !important;
	}
}

/* v2.0.39 appbar layout and dashboard footer polish */
.fih-appbar {
	display: grid !important;
	grid-template-columns: minmax(260px, max-content) minmax(360px, 1fr) 64px minmax(230px, max-content) !important;
	align-items: center !important;
	gap: 16px !important;
	min-height: 118px !important;
	padding: 24px 28px !important;
}

.fih-appbar-title {
	grid-column: 1 !important;
	min-width: 0 !important;
}

.fih-appbar-search {
	grid-column: 2 !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.fih-appbar-notification {
	grid-column: 3 !important;
	justify-self: center !important;
	margin: 0 !important;
	flex: 0 0 56px !important;
}

.fih-appbar-user {
	grid-column: 4 !important;
	justify-self: end !important;
	margin: 0 !important;
	width: auto !important;
	min-width: 230px !important;
	max-width: 320px !important;
	white-space: nowrap !important;
	flex: 0 0 auto !important;
}

.fih-appbar-name {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.fih-dashboard-footer {
	gap: 18px !important;
}

.fih-dashboard-footer a {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	color: #a61e22 !important;
	text-decoration: none !important;
}

.fih-dashboard-footer a:hover {
	color: #111827 !important;
}

@media (max-width: 1280px) {
	.fih-appbar {
		grid-template-columns: minmax(220px, max-content) minmax(280px, 1fr) 56px 76px !important;
	}

	.fih-appbar-user {
		min-width: 76px !important;
		padding: 10px !important;
	}

	.fih-appbar-name {
		display: none !important;
	}
}

@media (max-width: 760px) {
	.fih-appbar {
		grid-template-columns: 1fr 52px !important;
		min-height: auto !important;
		padding: 18px !important;
	}

	.fih-appbar-title,
	.fih-appbar-search {
		grid-column: 1 / -1 !important;
	}

	.fih-appbar-notification {
		grid-column: 1 !important;
		justify-self: start !important;
	}

	.fih-appbar-user {
		grid-column: 2 !important;
		justify-self: end !important;
	}
}

/* v2.0.40 hero type tuning */
body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(28px, 3.6vw, 48px) !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	font-size: clamp(36px, 4.25vw, 64px) !important;
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-hero-kicker {
		font-size: clamp(26px, 8vw, 38px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(32px, 9.2vw, 46px) !important;
	}
}

/* v2.0.42 dessert innovation homepage refresh */
body.fih-public-shell-body .fih-home {
	scroll-behavior: smooth !important;
}

body.fih-public-shell-body .fih-home-jump-menu {
	position: absolute !important;
	top: 22px !important;
	left: 50% !important;
	z-index: 4 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: min(1180px, calc(100% - 40px)) !important;
	padding: 10px 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;
	backdrop-filter: blur(18px) !important;
	transform: translateX(-50%) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 36px !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35) !important;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease !important;
}

body.fih-public-shell-body .fih-home-jump-menu a:hover {
	background: #a61e22 !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: 860px !important;
	padding-top: 120px !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(18px, 1.75vw, 30px) !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(146px, 12vw, 220px) !important;
	margin-top: 10px !important;
	margin-bottom: 22px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 940px !important;
	font-size: clamp(42px, 5vw, 78px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 780px !important;
	font-size: clamp(17px, 1.55vw, 24px) !important;
	line-height: 1.42 !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	gap: 18px !important;
}

body.fih-public-shell-body .fih-home-cta {
	width: auto !important;
	min-width: 250px !important;
	min-height: 56px !important;
	padding: 0 28px !important;
	font-size: clamp(16px, 1.15vw, 20px) !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-tasting {
	width: min(1400px, calc(100% - 64px)) !important;
	margin: 0 auto !important;
	padding: clamp(70px, 7vw, 120px) clamp(28px, 5vw, 84px) !important;
	background: #fff !important;
	color: #101827 !important;
}

body.fih-public-shell-body .fih-home-intro {
	margin-top: -64px !important;
	position: relative !important;
	z-index: 3 !important;
	border-radius: 32px !important;
	box-shadow: 0 36px 90px rgba(15, 23, 42, 0.12) !important;
}

body.fih-public-shell-body .fih-home-problem {
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-eyebrow {
	margin: 0 0 14px !important;
	color: #a61e22 !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
}

body.fih-public-shell-body .fih-home-intro h2,
body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-process h2,
body.fih-public-shell-body .fih-home-audience h2,
body.fih-public-shell-body .fih-home-tasting h2,
body.fih-public-shell-body .fih-home-benefits h2 {
	max-width: 980px !important;
	margin: 0 0 20px !important;
	color: #101827 !important;
	font-size: clamp(38px, 4.6vw, 72px) !important;
	line-height: 1.05 !important;
	letter-spacing: 0 !important;
}

body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-tasting h2,
body.fih-public-shell-body .fih-home-benefits h2 {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-intro p,
body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-tasting p,
body.fih-public-shell-body .fih-home-section-copy {
	max-width: 900px !important;
	margin: 0 0 16px !important;
	color: #596579 !important;
	font-size: clamp(19px, 1.75vw, 27px) !important;
	line-height: 1.55 !important;
}

body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-tasting p,
body.fih-public-shell-body .fih-home-section-copy {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-start {
	margin-top: 0 !important;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr) !important;
}

body.fih-public-shell-body .fih-home-start h2 {
	font-size: clamp(34px, 4vw, 62px) !important;
}

body.fih-public-shell-body .fih-home-video {
	min-height: 340px !important;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)), url("https://images.unsplash.com/photo-1551024506-0bccd828d307?auto=format&fit=crop&w=1200&q=80") !important;
}

body.fih-public-shell-body .fih-home-process {
	background: #fbf5f5 !important;
}

body.fih-public-shell-body .fih-home-process-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
	margin-top: 34px !important;
}

body.fih-public-shell-body .fih-home-process-grid article,
body.fih-public-shell-body .fih-home-audience-grid span {
	border: 1px solid #ead0d0 !important;
	border-radius: 24px !important;
	background: #fff !important;
	box-shadow: 0 18px 48px rgba(166, 30, 34, 0.08) !important;
}

body.fih-public-shell-body .fih-home-process-grid article {
	padding: 28px !important;
}

body.fih-public-shell-body .fih-home-process-grid span {
	display: block !important;
	margin-bottom: 14px !important;
	color: #a61e22 !important;
	font-size: 22px !important;
	font-weight: 900 !important;
}

body.fih-public-shell-body .fih-home-process-grid p {
	margin: 0 !important;
	color: #596579 !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
}

body.fih-public-shell-body .fih-home-audience-grid {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
	margin-top: 34px !important;
}

body.fih-public-shell-body .fih-home-audience-grid span {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 56px !important;
	padding: 0 22px !important;
	color: #101827 !important;
	font-size: 18px !important;
	font-weight: 850 !important;
}

body.fih-public-shell-body .fih-home-tasting {
	text-align: center !important;
	background: #101827 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-tasting h2,
body.fih-public-shell-body .fih-home-tasting p {
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta-ghost {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.38) !important;
}

body.fih-public-shell-body .fih-home-footer-brand p {
	max-width: 480px !important;
}

@media (max-width: 1024px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		top: 14px !important;
		border-radius: 22px !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu a {
		font-size: 13px !important;
		min-height: 32px !important;
		padding: 0 10px !important;
	}

	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-process-grid {
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		position: absolute !important;
		top: 12px !important;
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		width: calc(100% - 24px) !important;
		padding: 8px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 760px !important;
		padding-top: 106px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(34px, 10vw, 46px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-actions {
		width: min(360px, 100%) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: 100% !important;
		min-width: 0 !important;
	}

	body.fih-public-shell-body .fih-home-intro,
	body.fih-public-shell-body .fih-home-problem,
	body.fih-public-shell-body .fih-home-process,
	body.fih-public-shell-body .fih-home-audience,
	body.fih-public-shell-body .fih-home-tasting {
		width: calc(100% - 28px) !important;
		padding: 54px 22px !important;
	}

	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-process-grid {
		grid-template-columns: 1fr !important;
	}
}

/* v2.0.41 notifications, profile settings and floating ticket form */
.fih-notification-wrap {
	position: relative !important;
	grid-column: 3 !important;
	justify-self: center !important;
}

.fih-notification-wrap .fih-appbar-notification {
	width: 64px !important;
	height: 64px !important;
	padding: 0 !important;
	border-radius: 20px !important;
	border: 1px solid #ead0d0 !important;
	background: #fff7f7 !important;
	color: #a61e22 !important;
	box-shadow: 0 14px 32px rgba(166, 30, 34, 0.08) !important;
	cursor: pointer !important;
}

.fih-notification-wrap .fih-appbar-notification:hover,
.fih-notification-wrap.is-open .fih-appbar-notification {
	background: #a61e22 !important;
	color: #fff !important;
}

.fih-notification-popover {
	position: absolute;
	top: calc(100% + 14px);
	right: -76px;
	z-index: 80;
	width: min(380px, calc(100vw - 28px));
	background: #fff;
	border: 1px solid #ead0d0;
	border-radius: 22px;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
	overflow: hidden;
}

.fih-notification-wrap.is-open .fih-notification-popover {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.fih-notification-head {
	padding: 18px 20px;
	border-bottom: 1px solid #f1dddd;
	color: #111827;
	font-size: 18px;
}

.fih-notification-list {
	max-height: 340px;
	overflow: auto;
	padding: 8px;
}

.fih-notification-item,
.fih-notification-row {
	display: grid;
	grid-template-columns: 12px 1fr;
	gap: 12px;
	align-items: start;
	padding: 14px;
	border-radius: 16px;
	color: #111827;
	text-decoration: none;
}

.fih-notification-item:hover,
.fih-notification-row:hover {
	background: #fff4f4;
	color: #a61e22;
}

.fih-notification-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #a61e22;
	margin-top: 7px;
	box-shadow: 0 0 0 5px rgba(166, 30, 34, 0.12);
}

.fih-notification-item strong,
.fih-notification-row strong {
	display: block;
	font-size: 15px;
	line-height: 1.25;
}

.fih-notification-item small,
.fih-notification-row small {
	display: block;
	margin-top: 4px;
	color: #64748b;
	line-height: 1.35;
}

.fih-notification-item em,
.fih-notification-row em {
	display: block;
	margin-top: 6px;
	color: #94a3b8;
	font-style: normal;
	font-size: 12px;
}

.fih-notification-empty {
	padding: 22px;
	color: #64748b;
	text-align: center;
}

.fih-notification-view-all {
	display: block;
	padding: 16px 20px;
	border-top: 1px solid #f1dddd;
	background: #fff7f7;
	color: #a61e22;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.fih-notification-view-all:hover {
	background: #a61e22;
	color: #fff;
}

.fih-notification-table {
	display: grid;
	gap: 12px;
}

.fih-notification-row {
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	border: 1px solid #ead0d0;
	background: #fff;
}

.fih-notification-row-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #f8e8e8;
	color: #a61e22;
}

.fih-notification-row-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.fih-appbar-profile-icon {
	overflow: hidden !important;
	background: #f8e8e8 !important;
	color: #a61e22 !important;
}

.fih-appbar-profile-icon img,
.fih-profile-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fih-profile-upload {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 18px;
	align-items: center;
	margin-bottom: 18px;
}

.fih-profile-preview {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: #f8e8e8;
	color: #a61e22;
	font-size: 34px;
	font-weight: 900;
	overflow: hidden;
}

.fih-ticket-float-toggle {
	position: fixed;
	right: 22px;
	top: 50%;
	z-index: 75;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 54px;
	min-height: 54px;
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	background: #a61e22;
	color: #fff;
	font-weight: 900;
	box-shadow: 0 20px 46px rgba(166, 30, 34, 0.35);
	cursor: pointer;
	transform: translateY(-50%);
}

.fih-ticket-float-toggle:hover,
.fih-ticket-float-toggle.is-open {
	background: #111827;
	color: #fff;
}

.fih-ticket-float-toggle svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.fih-ticket-float-panel {
	position: fixed;
	right: 22px;
	top: 50%;
	z-index: 76;
	width: min(420px, calc(100vw - 32px));
	padding: 22px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid #ead0d0;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
	opacity: 0;
	pointer-events: none;
	transform: translate(16px, -50%);
	transition: opacity 180ms ease, transform 180ms ease;
}

.fih-ticket-float-panel.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(0, -50%);
}

.fih-ticket-float-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.fih-ticket-float-head strong {
	display: block;
	font-size: 22px;
	color: #111827;
}

.fih-ticket-float-head span {
	display: block;
	margin-top: 4px;
	color: #64748b;
}

.fih-ticket-float-head button {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 12px;
	background: #f8e8e8;
	color: #a61e22;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 1280px) {
	.fih-appbar {
		grid-template-columns: minmax(200px, max-content) minmax(260px, 1fr) 56px minmax(210px, max-content) !important;
	}

	.fih-notification-wrap {
		grid-column: 3 !important;
	}

	.fih-notification-popover {
		right: -18px;
	}

	.fih-appbar-user {
		min-width: 210px !important;
		padding: 10px 12px 10px 16px !important;
	}

	.fih-appbar-name {
		display: inline !important;
	}
}

@media (max-width: 760px) {
	.fih-notification-wrap {
		grid-column: 1 !important;
		justify-self: start !important;
	}

	.fih-appbar-name {
		display: none !important;
	}

	.fih-ticket-float-toggle {
		right: 16px;
		top: auto;
		bottom: 92px;
		transform: none;
	}

	.fih-ticket-float-toggle span {
		display: none;
	}

	.fih-ticket-float-panel {
		right: 16px;
		top: auto;
		bottom: 156px;
		transform: translateY(12px);
	}

	.fih-ticket-float-panel.is-open {
		transform: translateY(0);
	}

	.fih-profile-upload {
		grid-template-columns: 1fr;
	}
}

/* v2.0.42 final homepage positioning overrides */
body.fih-public-shell-body .fih-home-jump-menu {
	position: absolute !important;
	top: 22px !important;
	left: 50% !important;
	z-index: 8 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: min(1180px, calc(100% - 40px)) !important;
	padding: 10px 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 999px !important;
	background: rgba(17, 24, 39, 0.24) !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
	backdrop-filter: blur(18px) !important;
	transform: translateX(-50%) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 36px !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a:hover {
	background: #a61e22 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: 860px !important;
	padding: 118px 24px 132px !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	font-size: clamp(18px, 1.75vw, 30px) !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(146px, 12vw, 220px) !important;
	margin: 10px auto 22px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 940px !important;
	font-size: clamp(42px, 5vw, 78px) !important;
	line-height: 1.02 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	max-width: 780px !important;
	font-size: clamp(17px, 1.55vw, 24px) !important;
	line-height: 1.42 !important;
}

body.fih-public-shell-body .fih-home-cta {
	width: auto !important;
	min-width: 250px !important;
	min-height: 56px !important;
	padding: 0 28px !important;
	font-size: clamp(16px, 1.15vw, 20px) !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-tasting,
body.fih-public-shell-body .fih-home-faq {
	background: #fff !important;
	color: #101827 !important;
}

body.fih-public-shell-body .fih-home-stories {
	background: #fbebeb !important;
	color: #101827 !important;
}

body.fih-public-shell-body .fih-home-tasting {
	background: #101827 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-process-grid,
body.fih-public-shell-body .fih-home-audience-grid {
	display: grid !important;
}

body.fih-public-shell-body .fih-home-process-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
}

body.fih-public-shell-body .fih-home-audience-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 14px !important;
}

@media (max-width: 1024px) {
	body.fih-public-shell-body .fih-home-process-grid,
	body.fih-public-shell-body .fih-home-audience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		top: 12px !important;
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		width: calc(100% - 24px) !important;
		padding: 8px !important;
		border-radius: 22px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 760px !important;
		padding: 104px 18px 118px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(34px, 10vw, 46px) !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: 100% !important;
		min-width: 0 !important;
	}

	body.fih-public-shell-body .fih-home-process-grid,
	body.fih-public-shell-body .fih-home-audience-grid {
		grid-template-columns: 1fr !important;
	}
}

/* v2.0.43 homepage polish: compact menu, stronger logo, premium sections */
body.fih-public-shell-body .fih-home-jump-menu {
	width: max-content !important;
	max-width: calc(100% - 72px) !important;
	padding: 8px 12px !important;
	gap: 6px !important;
	border-radius: 999px !important;
	background: rgba(17, 24, 39, 0.18) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	min-height: 34px !important;
	padding: 0 12px !important;
	font-size: clamp(12px, 0.78vw, 14px) !important;
	font-weight: 850 !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	margin-top: -14px !important;
}

body.fih-public-shell-body .fih-home-hero-kicker {
	display: none !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(210px, 15.5vw, 300px) !important;
	margin: 0 auto 28px !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	max-width: 1040px !important;
	font-size: clamp(42px, 4.55vw, 72px) !important;
	line-height: 1.04 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	font-size: clamp(17px, 1.42vw, 22px) !important;
	max-width: 800px !important;
}

body.fih-public-shell-body .fih-home-trust {
	width: min(880px, 92vw) !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	justify-content: center !important;
	gap: 16px !important;
}

body.fih-public-shell-body .fih-home-cta {
	min-width: 220px !important;
	min-height: 52px !important;
	padding: 0 24px !important;
	border-radius: 14px !important;
	font-size: clamp(15px, 1vw, 18px) !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-faq {
	width: min(1320px, calc(100% - 80px)) !important;
	padding: clamp(58px, 5.6vw, 92px) clamp(34px, 4.6vw, 72px) !important;
	border-radius: 30px !important;
	border: 1px solid #f0dddd !important;
	box-shadow: 0 24px 70px rgba(16, 24, 39, 0.08) !important;
}

body.fih-public-shell-body .fih-home-intro {
	margin-top: -72px !important;
}

body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-faq {
	background: #fffafa !important;
}

body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-audience {
	background: #fff !important;
}

body.fih-public-shell-body .fih-home-eyebrow {
	margin-bottom: 12px !important;
	font-size: 13px !important;
	letter-spacing: 0.14em !important;
}

body.fih-public-shell-body .fih-home-intro h2,
body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-start h2,
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-process h2,
body.fih-public-shell-body .fih-home-audience h2,
body.fih-public-shell-body .fih-home-tasting h2,
body.fih-public-shell-body .fih-home-faq h2 {
	font-size: clamp(34px, 3.2vw, 54px) !important;
	line-height: 1.1 !important;
	letter-spacing: 0 !important;
}

body.fih-public-shell-body .fih-home-intro p,
body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-start p,
body.fih-public-shell-body .fih-home-benefits p,
body.fih-public-shell-body .fih-home-process p,
body.fih-public-shell-body .fih-home-audience p,
body.fih-public-shell-body .fih-home-tasting p,
body.fih-public-shell-body .fih-home-faq p,
body.fih-public-shell-body .fih-home-section-copy {
	font-size: clamp(17px, 1.25vw, 22px) !important;
	line-height: 1.55 !important;
}

body.fih-public-shell-body .fih-home-benefit-grid,
body.fih-public-shell-body .fih-home-process-grid {
	gap: 22px !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div,
body.fih-public-shell-body .fih-home-process-grid article,
body.fih-public-shell-body .fih-home-audience-grid span,
body.fih-public-shell-body .fih-home-faq details {
	border: 1px solid #f0dddd !important;
	border-radius: 24px !important;
	background: #fff !important;
	box-shadow: 0 18px 52px rgba(166, 30, 34, 0.06) !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div,
body.fih-public-shell-body .fih-home-process-grid article {
	padding: 30px !important;
}

body.fih-public-shell-body .fih-home-benefit-grid span {
	width: 70px !important;
	height: 70px !important;
	border-radius: 22px !important;
	font-size: 22px !important;
}

body.fih-public-shell-body .fih-home-benefit-grid h3 {
	font-size: clamp(24px, 1.9vw, 34px) !important;
	line-height: 1.15 !important;
}

body.fih-public-shell-body .fih-home-tasting {
	width: min(1320px, calc(100% - 80px)) !important;
	margin: 56px auto !important;
	padding: clamp(58px, 5.8vw, 96px) clamp(34px, 5vw, 84px) !important;
	border-radius: 36px !important;
	background: radial-gradient(circle at 20% 10%, rgba(166, 30, 34, 0.24), transparent 34%), #101827 !important;
	box-shadow: 0 30px 90px rgba(16, 24, 39, 0.18) !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-hero-actions {
	width: auto !important;
	max-width: none !important;
	margin-top: 30px !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta {
	min-width: 230px !important;
}

@media (max-width: 1120px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		width: calc(100% - 36px) !important;
		max-width: calc(100% - 36px) !important;
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(180px, 52vw, 240px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(32px, 9vw, 44px) !important;
	}

	body.fih-public-shell-body .fih-home-intro,
	body.fih-public-shell-body .fih-home-problem,
	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-benefits,
	body.fih-public-shell-body .fih-home-process,
	body.fih-public-shell-body .fih-home-audience,
	body.fih-public-shell-body .fih-home-tasting,
	body.fih-public-shell-body .fih-home-faq {
		width: calc(100% - 28px) !important;
		padding: 42px 20px !important;
		border-radius: 24px !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		min-height: 50px !important;
	}
}

/* v2.0.44 sticky menu, smooth section jumps and spacing polish */
html {
	scroll-behavior: smooth;
}

body.fih-public-shell-body .fih-home {
	scroll-behavior: smooth !important;
	background: #fff !important;
}

body.fih-public-shell-body .fih-home-jump-menu {
	position: fixed !important;
	top: 18px !important;
	left: 50% !important;
	z-index: 999 !important;
	width: auto !important;
	max-width: calc(100vw - 48px) !important;
	padding: 8px !important;
	border-radius: 999px !important;
	background: rgba(17, 24, 39, 0.32) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
	backdrop-filter: blur(18px) !important;
	transform: translateX(-50%) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	min-height: 34px !important;
	padding: 0 12px !important;
	font-size: 13px !important;
	line-height: 1 !important;
	white-space: nowrap !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
	background: #a61e22 !important;
	color: #fff !important;
	box-shadow: 0 10px 26px rgba(166, 30, 34, 0.32) !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login:hover {
	background: #111827 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-hero {
	padding-top: 112px !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	margin-top: 32px !important;
}

body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions .fih-home-cta {
	min-width: 260px !important;
}

body.fih-public-shell-body .fih-home-trust {
	width: fit-content !important;
	max-width: min(760px, calc(100vw - 48px)) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 14px 28px !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	white-space: nowrap !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-tasting,
body.fih-public-shell-body .fih-home-faq {
	margin-top: 42px !important;
	margin-bottom: 42px !important;
	scroll-margin-top: 104px !important;
}

body.fih-public-shell-body .fih-home-intro {
	margin-top: -44px !important;
}

body.fih-public-shell-body .fih-home-benefits {
	padding-top: clamp(64px, 5.8vw, 96px) !important;
	padding-bottom: clamp(64px, 5.8vw, 96px) !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div,
body.fih-public-shell-body .fih-home-process-grid article,
body.fih-public-shell-body .fih-home-audience-grid span,
body.fih-public-shell-body .fih-home-faq details {
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div:hover,
body.fih-public-shell-body .fih-home-process-grid article:hover,
body.fih-public-shell-body .fih-home-audience-grid span:hover {
	border-color: rgba(166, 30, 34, 0.28) !important;
	box-shadow: 0 26px 68px rgba(166, 30, 34, 0.11) !important;
	transform: translateY(-3px) !important;
}

body.fih-public-shell-body .fih-home-tasting {
	margin-top: 54px !important;
	margin-bottom: 54px !important;
	border-radius: 42px !important;
}

@media (max-width: 1120px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		justify-content: flex-start !important;
		overflow-x: auto !important;
		width: calc(100% - 36px) !important;
		max-width: calc(100% - 36px) !important;
	}

	body.fih-public-shell-body .fih-home-trust strong {
		white-space: normal !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		top: 10px !important;
		width: calc(100% - 24px) !important;
		max-width: calc(100% - 24px) !important;
		border-radius: 22px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		padding-top: 112px !important;
	}

	body.fih-public-shell-body .fih-home-trust {
		width: calc(100% - 18px) !important;
		padding: 12px 16px !important;
	}

	body.fih-public-shell-body .fih-home-intro,
	body.fih-public-shell-body .fih-home-problem,
	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-benefits,
	body.fih-public-shell-body .fih-home-process,
	body.fih-public-shell-body .fih-home-audience,
	body.fih-public-shell-body .fih-home-tasting,
	body.fih-public-shell-body .fih-home-faq {
		margin-top: 28px !important;
		margin-bottom: 28px !important;
		scroll-margin-top: 92px !important;
	}

	body.fih-public-shell-body .fih-home-intro {
		margin-top: -28px !important;
	}
}

/* v2.0.45 keep sticky header menu in one line */
body.fih-public-shell-body .fih-home-jump-menu {
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: center !important;
	align-items: center !important;
	width: min(1180px, calc(100vw - 40px)) !important;
	max-width: calc(100vw - 40px) !important;
	gap: clamp(2px, 0.35vw, 8px) !important;
	padding: 8px 10px !important;
	overflow: visible !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	flex: 0 1 auto !important;
	min-width: 0 !important;
	min-height: 34px !important;
	padding: 0 clamp(8px, 0.8vw, 14px) !important;
	font-size: clamp(11px, 0.72vw, 13px) !important;
	white-space: nowrap !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
	padding-left: clamp(18px, 1.35vw, 24px) !important;
	padding-right: clamp(18px, 1.35vw, 24px) !important;
}

@media (max-width: 980px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		justify-content: flex-start !important;
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scrollbar-width: none !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu::-webkit-scrollbar {
		display: none !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu a {
		flex: 0 0 auto !important;
		font-size: 12px !important;
	}
}

/* v2.0.46 compact header and content-fit trust pill */
body.fih-public-shell-body .fih-home-jump-menu {
	width: fit-content !important;
	max-width: calc(100vw - 40px) !important;
	gap: 4px !important;
	padding: 7px !important;
	flex-wrap: nowrap !important;
	overflow: visible !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	flex: 0 0 auto !important;
	min-height: 32px !important;
	padding: 0 clamp(7px, 0.68vw, 12px) !important;
	font-size: clamp(10.5px, 0.68vw, 12.5px) !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
	padding-left: clamp(16px, 1.1vw, 22px) !important;
	padding-right: clamp(16px, 1.1vw, 22px) !important;
}

body.fih-public-shell-body .fih-home-trust {
	display: inline-flex !important;
	width: auto !important;
	max-width: calc(100vw - 56px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 12px 22px !important;
	gap: 12px !important;
	align-items: center !important;
	justify-content: center !important;
}

body.fih-public-shell-body .fih-home-trust span {
	width: 34px !important;
	height: 34px !important;
	flex: 0 0 34px !important;
}

body.fih-public-shell-body .fih-home-trust strong {
	font-size: clamp(14px, 1vw, 17px) !important;
	white-space: nowrap !important;
}

@media (max-width: 1120px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		width: fit-content !important;
		max-width: calc(100vw - 24px) !important;
		overflow-x: auto !important;
		scrollbar-width: none !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu::-webkit-scrollbar {
		display: none !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		width: calc(100vw - 24px) !important;
	}

	body.fih-public-shell-body .fih-home-trust {
		display: flex !important;
		width: fit-content !important;
		max-width: calc(100vw - 28px) !important;
		padding: 12px 16px !important;
	}

	body.fih-public-shell-body .fih-home-trust strong {
		white-space: normal !important;
		text-align: left !important;
	}
}

/* v2.0.48 final homepage polish: premium sections, sticky contrast, reveal motion */
body.fih-public-shell-body .fih-home {
	background:
		radial-gradient(circle at 12% 18%, rgba(166, 30, 34, 0.08), transparent 26%),
		radial-gradient(circle at 86% 44%, rgba(166, 30, 34, 0.06), transparent 28%),
		#fff !important;
	overflow-x: hidden !important;
}

body.fih-public-shell-body .fih-home-jump-menu {
	top: 18px !important;
	width: fit-content !important;
	max-width: calc(100vw - 32px) !important;
	min-height: 58px !important;
	padding: 9px 10px !important;
	background: rgba(12, 14, 20, 0.62) !important;
	border-color: rgba(255, 255, 255, 0.22) !important;
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22) !important;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease !important;
}

body.fih-public-shell-body .fih-home-jump-menu.is-scrolled,
body.fih-public-shell-body .fih-home-jump-menu:hover {
	background: rgba(8, 10, 14, 0.86) !important;
	box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	min-height: 40px !important;
	padding: 0 clamp(9px, 0.72vw, 13px) !important;
	border-radius: 999px !important;
	color: rgba(255, 255, 255, 0.92) !important;
	font-weight: 850 !important;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22) !important;
}

body.fih-public-shell-body .fih-home-jump-menu a:hover {
	background: rgba(255, 255, 255, 0.14) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
	background: #a61e22 !important;
	color: #fff !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
}

body.fih-public-shell-body .fih-home-hero-actions {
	gap: 16px !important;
	justify-content: center !important;
}

body.fih-public-shell-body .fih-home-cta {
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	padding: 0 30px !important;
	min-height: 54px !important;
	border-radius: 16px !important;
	box-shadow: 0 20px 44px rgba(166, 30, 34, 0.22) !important;
}

body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions .fih-home-cta {
	min-width: 0 !important;
	padding-left: 34px !important;
	padding-right: 34px !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-tasting,
body.fih-public-shell-body .fih-home-faq {
	width: min(1360px, calc(100% - 72px)) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: clamp(52px, 5vw, 86px) !important;
	margin-bottom: clamp(52px, 5vw, 86px) !important;
	border-radius: 34px !important;
	scroll-margin-top: 112px !important;
}

body.fih-public-shell-body .fih-home-intro {
	position: relative !important;
	margin-top: -42px !important;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,247,247,0.94)),
		radial-gradient(circle at 88% 20%, rgba(166, 30, 34, 0.18), transparent 36%) !important;
	border: 1px solid rgba(166, 30, 34, 0.16) !important;
	box-shadow: 0 34px 100px rgba(166, 30, 34, 0.1) !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-intro::after {
	content: "FEEL" !important;
	position: absolute !important;
	right: clamp(28px, 5vw, 86px) !important;
	bottom: -0.28em !important;
	font-size: clamp(92px, 12vw, 220px) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	color: rgba(166, 30, 34, 0.045) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body .fih-home-intro h2,
body.fih-public-shell-body .fih-home-start h2,
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-process h2,
body.fih-public-shell-body .fih-home-audience h2,
body.fih-public-shell-body .fih-home-faq h2 {
	background: linear-gradient(92deg, #111827 0%, #a61e22 52%, #d84a45 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
}

body.fih-public-shell-body .fih-home-eyebrow {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: auto !important;
	padding: 8px 14px !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, rgba(166, 30, 34, 0.1), rgba(166, 30, 34, 0.04)) !important;
	color: #a61e22 !important;
	letter-spacing: 0.18em !important;
}

body.fih-public-shell-body .fih-home-start {
	display: grid !important;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.9fr) !important;
	gap: clamp(36px, 4vw, 72px) !important;
	align-items: center !important;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,250,250,0.96)),
		radial-gradient(circle at 18% 18%, rgba(166, 30, 34, 0.1), transparent 34%) !important;
	border: 1px solid rgba(166, 30, 34, 0.16) !important;
	box-shadow: 0 30px 90px rgba(17, 24, 39, 0.08) !important;
}

body.fih-public-shell-body .fih-home-checks {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 16px 20px !important;
	margin-top: 28px !important;
}

body.fih-public-shell-body .fih-home-checks span {
	position: relative !important;
	min-height: 62px !important;
	padding: 16px 18px 16px 58px !important;
	border: 1px solid rgba(166, 30, 34, 0.12) !important;
	border-radius: 18px !important;
	background: linear-gradient(135deg, #fff, #fff6f6) !important;
	box-shadow: 0 14px 34px rgba(166, 30, 34, 0.07) !important;
}

body.fih-public-shell-body .fih-home-checks span::before {
	content: "" !important;
	position: absolute !important;
	left: 16px !important;
	top: 50% !important;
	width: 28px !important;
	height: 28px !important;
	transform: translateY(-50%) !important;
	border-radius: 10px !important;
	background:
		linear-gradient(135deg, #a61e22, #c93032) !important;
	box-shadow: 0 10px 22px rgba(166, 30, 34, 0.2) !important;
}

body.fih-public-shell-body .fih-home-checks span::after {
	content: "" !important;
	position: absolute !important;
	left: 25px !important;
	top: 50% !important;
	width: 8px !important;
	height: 14px !important;
	border: solid #fff !important;
	border-width: 0 3px 3px 0 !important;
	transform: translateY(-58%) rotate(45deg) !important;
}

body.fih-public-shell-body .fih-home-video {
	min-height: 360px !important;
	border-radius: 26px !important;
	box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22) !important;
}

body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-faq {
	text-align: center !important;
	background:
		linear-gradient(180deg, #fff 0%, #fff9f9 100%) !important;
	border: 1px solid rgba(166, 30, 34, 0.14) !important;
	box-shadow: 0 24px 80px rgba(17, 24, 39, 0.06) !important;
}

body.fih-public-shell-body .fih-home-benefits .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-faq .fih-home-eyebrow {
	margin-left: auto !important;
	margin-right: auto !important;
}

body.fih-public-shell-body .fih-home-section-copy {
	max-width: 980px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.fih-public-shell-body .fih-home-benefit-grid {
	align-items: stretch !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div,
body.fih-public-shell-body .fih-home-process-grid article,
body.fih-public-shell-body .fih-home-audience-grid span,
body.fih-public-shell-body .fih-home-faq details {
	background: rgba(255, 255, 255, 0.92) !important;
	border: 1px solid rgba(166, 30, 34, 0.14) !important;
	box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06) !important;
}

body.fih-public-shell-body .fih-home-benefit-grid span {
	background: linear-gradient(135deg, #fff1f1, #f7dedf) !important;
	color: #a61e22 !important;
}

body.fih-public-shell-body .fih-home-tasting {
	border-radius: 46px !important;
	background:
		radial-gradient(circle at 24% 20%, rgba(166, 30, 34, 0.32), transparent 34%),
		linear-gradient(135deg, #121824, #080b10) !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-hero-actions {
	display: inline-flex !important;
	width: auto !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta {
	min-width: 0 !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
}

body.fih-public-shell-body .fih-home-faq {
	max-width: min(1180px, calc(100% - 72px)) !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-faq details {
	text-align: left !important;
}

body.fih-public-shell-body .fih-home-backtop {
	position: fixed !important;
	right: 22px !important;
	bottom: 96px !important;
	z-index: 1000 !important;
	width: 46px !important;
	height: 46px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
	background: #a61e22 !important;
	color: #fff !important;
	box-shadow: 0 20px 48px rgba(166, 30, 34, 0.32) !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transform: translateY(12px) !important;
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease !important;
}

body.fih-public-shell-body .fih-home-backtop.is-visible {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translateY(0) !important;
}

body.fih-public-shell-body .fih-home-backtop:hover {
	background: #111827 !important;
}

body.fih-public-shell-body .fih-home-backtop svg {
	width: 24px !important;
	height: 24px !important;
	fill: currentColor !important;
}

body.fih-public-shell-body .fih-home-reveal {
	opacity: 0 !important;
	transform: translateY(42px) scale(0.985) !important;
	transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

body.fih-public-shell-body .fih-home-reveal.is-visible {
	opacity: 1 !important;
	transform: translateY(0) scale(1) !important;
}

body.fih-public-shell-body:has(.fih-register-wrap) .fih-register-panel {
	position: relative !important;
}

body.fih-public-shell-body .fih-register-close {
	position: absolute !important;
	top: 24px !important;
	right: 24px !important;
	z-index: 8 !important;
	width: 44px !important;
	height: 44px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
	background: #fff4f4 !important;
	border: 1px solid rgba(166, 30, 34, 0.18) !important;
	color: #a61e22 !important;
	font-size: 28px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: 0 14px 34px rgba(166, 30, 34, 0.1) !important;
}

body.fih-public-shell-body .fih-register-close:hover {
	background: #a61e22 !important;
	color: #fff !important;
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		justify-content: flex-start !important;
		overflow-x: auto !important;
		scrollbar-width: none !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu::-webkit-scrollbar {
		display: none !important;
	}

	body.fih-public-shell-body .fih-home-start {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		top: 12px !important;
		min-height: 52px !important;
		border-radius: 999px !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu a {
		min-height: 36px !important;
	}

	body.fih-public-shell-body .fih-home-intro,
	body.fih-public-shell-body .fih-home-problem,
	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-benefits,
	body.fih-public-shell-body .fih-home-process,
	body.fih-public-shell-body .fih-home-audience,
	body.fih-public-shell-body .fih-home-tasting,
	body.fih-public-shell-body .fih-home-faq {
		width: calc(100% - 28px) !important;
		margin-top: 34px !important;
		margin-bottom: 34px !important;
		border-radius: 26px !important;
	}

	body.fih-public-shell-body .fih-home-intro {
		margin-top: -26px !important;
	}

	body.fih-public-shell-body .fih-home-checks {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-hero-actions,
	body.fih-public-shell-body .fih-home-tasting .fih-home-hero-actions {
		width: 100% !important;
	}

	body.fih-public-shell-body .fih-home-cta {
		width: auto !important;
		max-width: 100% !important;
	}

	body.fih-public-shell-body .fih-home-backtop {
		right: 16px !important;
		bottom: 86px !important;
	}

	body.fih-public-shell-body .fih-register-close {
		top: 16px !important;
		right: 16px !important;
		width: 40px !important;
		height: 40px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.fih-public-shell-body .fih-home-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* v2.0.49 homepage refinement: consistent premium sections and dessert showcase */
body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-products,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-faq {
	position: relative !important;
	width: min(1360px, calc(100% - 72px)) !important;
	margin: 54px auto !important;
	padding: clamp(58px, 5.2vw, 92px) clamp(40px, 5vw, 84px) !important;
	border: 1px solid rgba(166, 30, 34, 0.16) !important;
	border-radius: 36px !important;
	background:
		radial-gradient(circle at 8% 10%, rgba(166, 30, 34, 0.1), transparent 31%),
		radial-gradient(circle at 92% 16%, rgba(216, 74, 69, 0.08), transparent 33%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 247, 0.96)) !important;
	box-shadow: 0 28px 88px rgba(17, 24, 39, 0.07), 0 18px 58px rgba(166, 30, 34, 0.07) !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-intro::after,
body.fih-public-shell-body .fih-home-problem::after,
body.fih-public-shell-body .fih-home-start::after,
body.fih-public-shell-body .fih-home-products::after,
body.fih-public-shell-body .fih-home-benefits::after,
body.fih-public-shell-body .fih-home-process::after,
body.fih-public-shell-body .fih-home-audience::after,
body.fih-public-shell-body .fih-home-faq::after {
	content: "FEEL" !important;
	position: absolute !important;
	right: clamp(18px, 5vw, 80px) !important;
	bottom: -42px !important;
	z-index: 0 !important;
	font-size: clamp(96px, 13vw, 210px) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	color: rgba(166, 30, 34, 0.035) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body .fih-home-intro > *,
body.fih-public-shell-body .fih-home-problem > *,
body.fih-public-shell-body .fih-home-start > *,
body.fih-public-shell-body .fih-home-products > *,
body.fih-public-shell-body .fih-home-benefits > *,
body.fih-public-shell-body .fih-home-process > *,
body.fih-public-shell-body .fih-home-audience > *,
body.fih-public-shell-body .fih-home-faq > * {
	position: relative !important;
	z-index: 1 !important;
}

body.fih-public-shell-body .fih-home-eyebrow {
	display: inline-flex !important;
	align-items: center !important;
	width: fit-content !important;
	margin-bottom: 24px !important;
	padding: 11px 18px !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #fff2f2, #f8e6e7) !important;
	color: #a61e22 !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.18em !important;
}

body.fih-public-shell-body .fih-home-intro h2,
body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-start h2,
body.fih-public-shell-body .fih-home-products h2,
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-process h2,
body.fih-public-shell-body .fih-home-audience h2,
body.fih-public-shell-body .fih-home-tasting h2,
body.fih-public-shell-body .fih-home-faq h2 {
	max-width: 1040px !important;
	margin-top: 0 !important;
	margin-bottom: 24px !important;
	font-size: clamp(42px, 4.5vw, 72px) !important;
	line-height: 1.06 !important;
	letter-spacing: 0 !important;
	font-weight: 900 !important;
	background: linear-gradient(100deg, #111827 0%, #4a1523 46%, #a61e22 72%, #d44843 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
}

body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-faq {
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-problem .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-benefits .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-process .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-audience .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-faq .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-process h2,
body.fih-public-shell-body .fih-home-audience h2,
body.fih-public-shell-body .fih-home-faq h2 {
	margin-left: auto !important;
	margin-right: auto !important;
}

body.fih-public-shell-body .fih-home-intro p,
body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-start p,
body.fih-public-shell-body .fih-home-products p,
body.fih-public-shell-body .fih-home-benefits p,
body.fih-public-shell-body .fih-home-process p,
body.fih-public-shell-body .fih-home-audience p,
body.fih-public-shell-body .fih-home-faq p {
	color: #5f6b80 !important;
}

body.fih-public-shell-body .fih-home-start {
	display: grid !important;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr) !important;
	gap: clamp(34px, 5vw, 72px) !important;
	align-items: center !important;
}

body.fih-public-shell-body .fih-home-start > div:first-child {
	min-width: 0 !important;
}

body.fih-public-shell-body .fih-home-checks {
	display: grid !important;
	grid-template-columns: 1fr !important;
	max-width: 620px !important;
	gap: 14px !important;
	margin-top: 28px !important;
}

body.fih-public-shell-body .fih-home-checks span {
	min-height: 58px !important;
	padding: 15px 18px 15px 62px !important;
	border-radius: 22px !important;
	border: 1px solid rgba(166, 30, 34, 0.13) !important;
	background: linear-gradient(135deg, #fff, #fff6f6) !important;
	box-shadow: 0 16px 42px rgba(166, 30, 34, 0.07) !important;
	font-size: clamp(18px, 1.35vw, 24px) !important;
	line-height: 1.22 !important;
}

body.fih-public-shell-body .fih-home-video {
	height: 100% !important;
	min-height: 440px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-end !important;
	padding: clamp(30px, 4vw, 56px) !important;
	border-radius: 30px !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-video strong {
	max-width: 560px !important;
	font-size: clamp(28px, 2.6vw, 44px) !important;
	line-height: 1.15 !important;
}

body.fih-public-shell-body .fih-home-products {
	text-align: left !important;
}

body.fih-public-shell-body .fih-home-products-head {
	max-width: 900px !important;
}

body.fih-public-shell-body .fih-home-product-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
	margin-top: 36px !important;
}

body.fih-public-shell-body .fih-home-product-grid article {
	position: relative !important;
	min-width: 0 !important;
	overflow: hidden !important;
	border-radius: 28px !important;
	background: #fff !important;
	border: 1px solid rgba(166, 30, 34, 0.14) !important;
	box-shadow: 0 22px 58px rgba(17, 24, 39, 0.08) !important;
	transition: transform 180ms ease, box-shadow 180ms ease !important;
}

body.fih-public-shell-body .fih-home-product-grid article:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 28px 76px rgba(166, 30, 34, 0.15) !important;
}

body.fih-public-shell-body .fih-home-product-grid img {
	width: 100% !important;
	height: 220px !important;
	display: block !important;
	object-fit: cover !important;
}

body.fih-public-shell-body .fih-home-product-grid span {
	display: inline-flex !important;
	margin: 22px 22px 12px !important;
	padding: 8px 13px !important;
	border-radius: 999px !important;
	background: #f6e6e7 !important;
	color: #a61e22 !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
}

body.fih-public-shell-body .fih-home-product-grid h3 {
	margin: 0 22px 10px !important;
	color: #111827 !important;
	font-size: 25px !important;
	line-height: 1.18 !important;
	font-weight: 900 !important;
}

body.fih-public-shell-body .fih-home-product-grid p {
	margin: 0 22px 26px !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
}

body.fih-public-shell-body .fih-home-benefit-grid div,
body.fih-public-shell-body .fih-home-process-grid article,
body.fih-public-shell-body .fih-home-audience-grid span,
body.fih-public-shell-body .fih-home-faq details {
	border-color: rgba(166, 30, 34, 0.14) !important;
	border-radius: 26px !important;
	background: linear-gradient(135deg, #fff, #fff8f8) !important;
	box-shadow: 0 20px 54px rgba(17, 24, 39, 0.06) !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-process-grid article span {
	color: #a61e22 !important;
}

body.fih-public-shell-body .fih-home-audience-grid span {
	color: #111827 !important;
	font-weight: 800 !important;
}

body.fih-public-shell-body .fih-home-tasting {
	width: min(1360px, calc(100% - 72px)) !important;
	margin: 54px auto !important;
	border-radius: 38px !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-hero-actions {
	gap: 18px !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta {
	width: auto !important;
	min-width: 0 !important;
	padding: 18px 28px !important;
	border-radius: 18px !important;
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-start {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body.fih-public-shell-body .fih-home-video {
		min-height: 340px !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-intro,
	body.fih-public-shell-body .fih-home-problem,
	body.fih-public-shell-body .fih-home-start,
	body.fih-public-shell-body .fih-home-products,
	body.fih-public-shell-body .fih-home-benefits,
	body.fih-public-shell-body .fih-home-process,
	body.fih-public-shell-body .fih-home-audience,
	body.fih-public-shell-body .fih-home-tasting,
	body.fih-public-shell-body .fih-home-faq {
		width: calc(100% - 28px) !important;
		margin-top: 34px !important;
		margin-bottom: 34px !important;
		padding: 36px 20px !important;
		border-radius: 26px !important;
	}

	body.fih-public-shell-body .fih-home-intro h2,
	body.fih-public-shell-body .fih-home-problem h2,
	body.fih-public-shell-body .fih-home-start h2,
	body.fih-public-shell-body .fih-home-products h2,
	body.fih-public-shell-body .fih-home-benefits h2,
	body.fih-public-shell-body .fih-home-process h2,
	body.fih-public-shell-body .fih-home-audience h2,
	body.fih-public-shell-body .fih-home-tasting h2,
	body.fih-public-shell-body .fih-home-faq h2 {
		font-size: clamp(32px, 8vw, 44px) !important;
	}

	body.fih-public-shell-body .fih-home-product-grid {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-product-grid img {
		height: 210px !important;
	}

	body.fih-public-shell-body .fih-home-checks {
		max-width: none !important;
	}
}

/* v2.0.50 FAQ and CTA polish */
body.fih-public-shell-body .fih-home-problem::after,
body.fih-public-shell-body .fih-home-start::after,
body.fih-public-shell-body .fih-home-products::after,
body.fih-public-shell-body .fih-home-benefits::after,
body.fih-public-shell-body .fih-home-process::after,
body.fih-public-shell-body .fih-home-audience::after,
body.fih-public-shell-body .fih-home-faq::after {
	content: none !important;
	display: none !important;
}

body.fih-public-shell-body .fih-home-intro::after {
	left: clamp(18px, 5vw, 80px) !important;
	right: auto !important;
	bottom: -42px !important;
}

body.fih-public-shell-body .fih-home-faq {
	max-width: min(1220px, calc(100% - 72px)) !important;
	text-align: left !important;
	background:
		radial-gradient(circle at 7% 8%, rgba(166, 30, 34, 0.08), transparent 28%),
		linear-gradient(135deg, #fff, #fff8f8) !important;
}

body.fih-public-shell-body .fih-home-faq h2 {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 820px !important;
}

body.fih-public-shell-body .fih-home-faq details {
	position: relative !important;
	text-align: left !important;
	margin: 18px 0 !important;
	padding: 0 !important;
	border-radius: 24px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	border: 1px solid rgba(166, 30, 34, 0.14) !important;
	box-shadow: 0 18px 46px rgba(17, 24, 39, 0.06) !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-faq summary {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	min-height: 78px !important;
	padding: 24px 82px 24px 28px !important;
	cursor: pointer !important;
	color: #111827 !important;
	font-size: clamp(20px, 1.55vw, 27px) !important;
	line-height: 1.25 !important;
	font-weight: 900 !important;
	list-style: none !important;
}

body.fih-public-shell-body .fih-home-faq summary::-webkit-details-marker {
	display: none !important;
}

body.fih-public-shell-body .fih-home-faq summary::before,
body.fih-public-shell-body .fih-home-faq summary::after {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	right: 30px !important;
	width: 18px !important;
	height: 3px !important;
	border-radius: 999px !important;
	background: #a61e22 !important;
	transform: translateY(-50%) !important;
	transition: transform 180ms ease, opacity 180ms ease !important;
}

body.fih-public-shell-body .fih-home-faq summary::after {
	transform: translateY(-50%) rotate(90deg) !important;
}

body.fih-public-shell-body .fih-home-faq details[open] summary::after {
	opacity: 0 !important;
	transform: translateY(-50%) rotate(0deg) !important;
}

body.fih-public-shell-body .fih-home-faq details p {
	max-width: 920px !important;
	margin: 0 !important;
	padding: 0 82px 28px 28px !important;
	color: #5f6b80 !important;
	font-size: clamp(18px, 1.25vw, 22px) !important;
	line-height: 1.62 !important;
	text-align: left !important;
}

body.fih-public-shell-body .fih-home-faq details:hover {
	border-color: rgba(166, 30, 34, 0.28) !important;
	box-shadow: 0 24px 58px rgba(166, 30, 34, 0.1) !important;
}

body.fih-public-shell-body .fih-home-tasting {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 520px !important;
	padding: clamp(62px, 6vw, 106px) clamp(24px, 5vw, 88px) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 34px !important;
	background:
		radial-gradient(circle at 24% 0%, rgba(166, 30, 34, 0.42), transparent 38%),
		radial-gradient(circle at 90% 92%, rgba(255, 255, 255, 0.08), transparent 30%),
		linear-gradient(135deg, #111827, #070a0f 72%) !important;
	box-shadow: 0 30px 88px rgba(17, 24, 39, 0.16) !important;
	text-align: center !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-tasting::after {
	content: "FEEL" !important;
	position: absolute !important;
	left: clamp(24px, 5vw, 78px) !important;
	bottom: -48px !important;
	z-index: 0 !important;
	font-size: clamp(110px, 15vw, 230px) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	color: rgba(255, 255, 255, 0.035) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body .fih-home-tasting > * {
	position: relative !important;
	z-index: 1 !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-eyebrow {
	margin-left: auto !important;
	margin-right: auto !important;
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

body.fih-public-shell-body .fih-home-tasting h2 {
	max-width: 1040px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	color: #fff !important;
	text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

body.fih-public-shell-body .fih-home-tasting p {
	max-width: 880px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: clamp(20px, 1.5vw, 26px) !important;
	line-height: 1.5 !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-hero-actions {
	margin-top: 34px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-wrap: wrap !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta {
	min-width: 0 !important;
	width: auto !important;
	padding: 18px 28px !important;
	border-radius: 18px !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta-ghost {
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.34) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-cta-ghost:hover {
	background: #fff !important;
	border-color: #fff !important;
	color: #111827 !important;
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-faq {
		max-width: calc(100% - 28px) !important;
	}

	body.fih-public-shell-body .fih-home-faq summary {
		min-height: 68px !important;
		padding: 20px 62px 20px 20px !important;
	}

	body.fih-public-shell-body .fih-home-faq summary::before,
	body.fih-public-shell-body .fih-home-faq summary::after {
		right: 22px !important;
		width: 16px !important;
	}

	body.fih-public-shell-body .fih-home-faq details p {
		padding: 0 20px 22px !important;
	}

	body.fih-public-shell-body .fih-home-tasting {
		min-height: 0 !important;
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}

/* v2.0.51 readability and hero CTA spacing fixes */
body.fih-public-shell-body .fih-home-video {
	position: relative !important;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
		url("https://images.pexels.com/photos/3992131/pexels-photo-3992131.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover no-repeat !important;
}

body.fih-public-shell-body .fih-home-video::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.5)),
		radial-gradient(circle at 28% 68%, rgba(166, 30, 34, 0.35), transparent 36%) !important;
	pointer-events: none !important;
}

body.fih-public-shell-body .fih-home-video > * {
	position: relative !important;
	z-index: 1 !important;
}

body.fih-public-shell-body .fih-home-video strong,
body.fih-public-shell-body .fih-home-video p {
	color: #fff !important;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9) !important;
}

body.fih-public-shell-body .fih-home-video p {
	max-width: 560px !important;
	margin-top: 14px !important;
	opacity: 1 !important;
	font-weight: 700 !important;
	line-height: 1.46 !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: clamp(720px, 88vh, 900px) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	gap: clamp(14px, 1.7vw, 24px) !important;
	padding-bottom: clamp(28px, 4vh, 48px) !important;
}

body.fih-public-shell-body .fih-home-hero .fih-home-trust {
	margin-top: clamp(12px, 1.5vw, 20px) !important;
	margin-bottom: 0 !important;
}

body.fih-public-shell-body .fih-home-hero .fih-home-hero-actions {
	margin-top: clamp(16px, 2vw, 24px) !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
}

body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions .fih-home-cta {
	min-height: 56px !important;
	min-width: 0 !important;
	width: auto !important;
	padding: 15px 30px !important;
	border-radius: 18px !important;
	font-size: 20px !important;
	line-height: 1.1 !important;
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-hero {
		min-height: 720px !important;
	}

	body.fih-public-shell-body .fih-home-hero-inner {
		padding-bottom: 34px !important;
	}

	body.fih-public-shell-body .fih-home-hero .fih-home-hero-actions {
		margin-top: 14px !important;
	}

	body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions .fih-home-cta {
		width: auto !important;
		max-width: calc(100vw - 48px) !important;
		padding: 14px 22px !important;
		font-size: 17px !important;
	}
}

/* v2.0.52 hero spacing and alternating section tones */
body.fih-public-shell-body .fih-home-hero {
	min-height: clamp(720px, 92vh, 940px) !important;
}

body.fih-public-shell-body .fih-home-jump-menu {
	top: clamp(22px, 3vw, 42px) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	justify-content: flex-start !important;
	gap: clamp(8px, 1vw, 16px) !important;
	padding-top: clamp(148px, 17vh, 188px) !important;
	padding-bottom: clamp(22px, 3vh, 40px) !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(260px, 22vw, 390px) !important;
	margin: 0 auto clamp(6px, 0.8vw, 10px) !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	margin: 0 auto !important;
	font-size: clamp(54px, 6.2vw, 98px) !important;
	line-height: 0.98 !important;
	max-width: 1180px !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	margin: clamp(4px, 0.8vw, 10px) auto 0 !important;
	font-size: clamp(19px, 1.45vw, 25px) !important;
	line-height: 1.36 !important;
}

body.fih-public-shell-body .fih-home-hero .fih-home-trust {
	margin-top: clamp(14px, 1.7vw, 22px) !important;
}

body.fih-public-shell-body .fih-home-hero .fih-home-hero-actions {
	margin-top: clamp(14px, 1.7vw, 22px) !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-start,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-audience,
body.fih-public-shell-body .fih-home-faq {
	background:
		radial-gradient(circle at 10% 18%, rgba(166, 30, 34, 0.08), transparent 24%),
		radial-gradient(circle at 92% 20%, rgba(166, 30, 34, 0.06), transparent 26%),
		#fff !important;
	color: #121827 !important;
}

body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-products,
body.fih-public-shell-body .fih-home-process {
	background:
		radial-gradient(circle at 18% 0%, rgba(166, 30, 34, 0.42), transparent 34%),
		radial-gradient(circle at 92% 100%, rgba(255, 255, 255, 0.08), transparent 32%),
		linear-gradient(135deg, #141922, #070a0f 78%) !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	box-shadow: 0 34px 92px rgba(10, 12, 18, 0.2) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-problem .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-products .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-process .fih-home-eyebrow {
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-products h2,
body.fih-public-shell-body .fih-home-process h2 {
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-products p,
body.fih-public-shell-body .fih-home-process p {
	color: rgba(255, 255, 255, 0.76) !important;
}

body.fih-public-shell-body .fih-home-products .fih-home-product-grid article {
	background: rgba(255, 255, 255, 0.96) !important;
	border-color: rgba(255, 255, 255, 0.16) !important;
}

body.fih-public-shell-body .fih-home-products .fih-home-product-grid article h3,
body.fih-public-shell-body .fih-home-products .fih-home-product-grid article p {
	color: #121827 !important;
}

body.fih-public-shell-body .fih-home-process .fih-home-process-grid article {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-process .fih-home-process-grid article span,
body.fih-public-shell-body .fih-home-process .fih-home-process-grid article h3 {
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-process .fih-home-process-grid article p {
	color: rgba(255, 255, 255, 0.74) !important;
}

body.fih-public-shell-body .fih-home-tasting .fih-home-eyebrow {
	letter-spacing: 0.18em !important;
}

@media (max-width: 980px) {
	body.fih-public-shell-body .fih-home-hero-inner {
		padding-top: 138px !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(42px, 9vw, 68px) !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(230px, 42vw, 330px) !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-hero {
		min-height: 690px !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu {
		top: 12px !important;
	}

	body.fih-public-shell-body .fih-home-hero-inner {
		padding-top: 118px !important;
		gap: 10px !important;
	}

	body.fih-public-shell-body .fih-home-hero-sub {
		font-size: 17px !important;
	}
}

/* v2.0.53 full-width dark bands and premium dessert catalogue */
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-products,
body.fih-public-shell-body .fih-home-process,
body.fih-public-shell-body .fih-home-tasting {
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	border-radius: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background:
		radial-gradient(circle at 12% 0%, rgba(166, 30, 34, 0.44), transparent 30%),
		radial-gradient(circle at 92% 100%, rgba(255, 255, 255, 0.08), transparent 34%),
		linear-gradient(135deg, #151922, #07090d 76%) !important;
	box-shadow: none !important;
}

body.fih-public-shell-body .fih-home-problem > *,
body.fih-public-shell-body .fih-home-products > *,
body.fih-public-shell-body .fih-home-process > *,
body.fih-public-shell-body .fih-home-tasting > * {
	max-width: 1540px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.fih-public-shell-body .fih-home-products {
	padding: clamp(76px, 7vw, 124px) clamp(24px, 5vw, 86px) !important;
	overflow: hidden !important;
}

body.fih-public-shell-body .fih-home-products-head {
	display: grid !important;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr) !important;
	gap: clamp(24px, 5vw, 74px) !important;
	align-items: end !important;
	max-width: 1540px !important;
	margin-bottom: clamp(26px, 4vw, 54px) !important;
}

body.fih-public-shell-body .fih-home-products-head .fih-home-eyebrow {
	grid-column: 1 / -1 !important;
	width: fit-content !important;
	margin: 0 !important;
}

body.fih-public-shell-body .fih-home-products-head h2 {
	margin: 0 !important;
	font-size: clamp(40px, 5vw, 78px) !important;
	line-height: 0.98 !important;
	max-width: 820px !important;
}

body.fih-public-shell-body .fih-home-products-head p {
	margin: 0 !important;
	max-width: 520px !important;
	font-size: clamp(18px, 1.25vw, 22px) !important;
	line-height: 1.55 !important;
}

body.fih-public-shell-body .fih-home-product-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(245px, 1fr)) !important;
	gap: clamp(18px, 2vw, 30px) !important;
	max-width: 1540px !important;
}

body.fih-public-shell-body .fih-home-product-grid article {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	min-height: 520px !important;
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 28px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24) !important;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body.fih-public-shell-body .fih-home-product-grid article:hover {
	transform: translateY(-8px) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	box-shadow: 0 34px 92px rgba(0, 0, 0, 0.36) !important;
}

body.fih-public-shell-body .fih-home-product-grid img {
	width: 100% !important;
	height: clamp(250px, 19vw, 330px) !important;
	display: block !important;
	object-fit: cover !important;
	object-position: center !important;
	border-radius: 0 !important;
}

body.fih-public-shell-body .fih-home-product-grid span {
	display: none !important;
}

body.fih-public-shell-body .fih-home-product-grid h3 {
	margin: 26px 26px 12px !important;
	color: #07111f !important;
	font-size: clamp(27px, 2vw, 36px) !important;
	line-height: 1.05 !important;
	letter-spacing: 0 !important;
}

body.fih-public-shell-body .fih-home-product-grid p {
	margin: 0 26px 30px !important;
	color: #4c5870 !important;
	font-size: clamp(18px, 1.25vw, 22px) !important;
	line-height: 1.5 !important;
}

body.fih-public-shell-body .fih-home-product-grid article::after {
	content: none !important;
	display: none !important;
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-products-head {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 700px) {
	body.fih-public-shell-body .fih-home-products {
		padding: 58px 18px !important;
	}

	body.fih-public-shell-body .fih-home-product-grid {
		grid-template-columns: 1fr !important;
	}

	body.fih-public-shell-body .fih-home-product-grid article {
		min-height: 0 !important;
	}
}

/* v2.0.55 medium hero menu and higher logo position */
body.fih-public-shell-body .fih-home-jump-menu {
	top: clamp(20px, 2.4vw, 34px) !important;
	gap: clamp(10px, 1vw, 18px) !important;
	padding: 10px 12px 10px clamp(16px, 2vw, 26px) !important;
	min-height: 62px !important;
}

body.fih-public-shell-body .fih-home-jump-menu a {
	font-size: clamp(14px, 0.86vw, 16px) !important;
	line-height: 1.1 !important;
	white-space: nowrap !important;
}

body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
	min-height: 48px !important;
	padding: 0 24px !important;
	font-size: clamp(15px, 0.9vw, 16px) !important;
}

body.fih-public-shell-body .fih-home-hero {
	min-height: clamp(700px, 88vh, 880px) !important;
}

body.fih-public-shell-body .fih-home-hero-inner {
	gap: clamp(5px, 0.7vw, 10px) !important;
	padding-top: clamp(84px, 9vh, 108px) !important;
	padding-bottom: clamp(18px, 2vh, 30px) !important;
}

body.fih-public-shell-body .fih-home-hero-logo {
	width: clamp(250px, 19vw, 350px) !important;
	margin-bottom: 0 !important;
}

body.fih-public-shell-body .fih-home-hero h1 {
	margin-top: clamp(2px, 0.35vw, 6px) !important;
	margin-bottom: 0 !important;
	font-size: clamp(52px, 5.8vw, 92px) !important;
	line-height: 0.96 !important;
}

body.fih-public-shell-body .fih-home-hero-sub {
	margin-top: clamp(6px, 0.9vw, 10px) !important;
	margin-bottom: 0 !important;
}

body.fih-public-shell-body .fih-home-hero .fih-home-trust {
	margin-top: clamp(14px, 1.4vw, 20px) !important;
	margin-bottom: 0 !important;
}

body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions {
	margin-top: clamp(14px, 1.5vw, 22px) !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
}

body.fih-public-shell-body .fih-home-hero > .fih-home-hero-inner .fih-home-hero-actions .fih-home-cta {
	min-height: 56px !important;
	padding: 15px 30px !important;
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		max-width: calc(100vw - 32px) !important;
		overflow-x: auto !important;
		justify-content: flex-start !important;
	}
}

@media (max-width: 760px) {
	body.fih-public-shell-body .fih-home-jump-menu {
		min-height: 54px !important;
		padding: 7px 9px !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu a {
		font-size: 13px !important;
	}

	body.fih-public-shell-body .fih-home-jump-menu .fih-home-jump-login {
		min-height: 40px !important;
		padding: 0 16px !important;
	}

	body.fih-public-shell-body .fih-home-hero {
		min-height: 660px !important;
	}

	body.fih-public-shell-body .fih-home-hero-inner {
		padding-top: 78px !important;
		gap: 7px !important;
	}

	body.fih-public-shell-body .fih-home-hero-logo {
		width: clamp(220px, 52vw, 285px) !important;
	}

	body.fih-public-shell-body .fih-home-hero h1 {
		font-size: clamp(38px, 12vw, 58px) !important;
	}
}

/* v2.0.56 refreshed homepage content */
body.fih-public-shell-body .fih-home-product-grid {
	grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
}

body.fih-public-shell-body .fih-home-product-grid article {
	min-height: 0 !important;
}

body.fih-public-shell-body .fih-home-product-grid article::after {
	content: none !important;
	display: none !important;
}

body.fih-public-shell-body .fih-home-products-head {
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr) !important;
	align-items: start !important;
}

body.fih-public-shell-body .fih-home-products-head p + p {
	margin-top: 14px !important;
}

body.fih-public-shell-body .fih-home-products > .fih-home-section-copy {
	max-width: 1180px !important;
	margin: clamp(26px, 3vw, 44px) auto 0 !important;
	color: rgba(255, 255, 255, 0.78) !important;
	text-align: center !important;
}

body.fih-public-shell-body .fih-home-kitchen .fih-home-checks span {
	padding-left: 76px !important;
}

body.fih-public-shell-body .fih-home-kitchen .fih-home-checks span::before {
	background: #a61e22 !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-benefits .fih-home-section-copy {
	max-width: 1120px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 1180px) {
	body.fih-public-shell-body .fih-home-products-head,
	body.fih-public-shell-body .fih-home-product-grid {
		grid-template-columns: 1fr !important;
	}
}

/* v2.0.59 restore the homepage dark / light / dark section rhythm */
body.fih-public-shell-body .fih-home {
	background: #fff !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-faq {
	background:
		radial-gradient(circle at 8% 4%, rgba(166, 30, 34, 0.08), transparent 28%),
		linear-gradient(135deg, #fff, #fff8f8) !important;
	color: #111827 !important;
}

body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-kitchen,
body.fih-public-shell-body .fih-home-tasting {
	width: 100vw !important;
	max-width: none !important;
	margin: 0 calc(50% - 50vw) !important;
	border-radius: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background:
		radial-gradient(circle at 12% 0%, rgba(166, 30, 34, 0.44), transparent 30%),
		linear-gradient(135deg, #151922, #07090d 76%) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-products {
	width: 100vw !important;
	max-width: none !important;
	margin: 0 calc(50% - 50vw) !important;
	border-radius: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background:
		radial-gradient(circle at 92% 8%, rgba(166, 30, 34, 0.08), transparent 28%),
		linear-gradient(135deg, #fff, #fff8f8) !important;
	color: #111827 !important;
}

body.fih-public-shell-body .fih-home-problem > *,
body.fih-public-shell-body .fih-home-products > *,
body.fih-public-shell-body .fih-home-kitchen > *,
body.fih-public-shell-body .fih-home-tasting > * {
	position: relative !important;
	z-index: 1 !important;
}

body.fih-public-shell-body .fih-home-problem h2,
body.fih-public-shell-body .fih-home-kitchen h2,
body.fih-public-shell-body .fih-home-tasting h2 {
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-problem p,
body.fih-public-shell-body .fih-home-kitchen p,
body.fih-public-shell-body .fih-home-tasting p {
	color: rgba(255, 255, 255, 0.84) !important;
}

body.fih-public-shell-body .fih-home-products-head h2,
body.fih-public-shell-body .fih-home-products h2,
body.fih-public-shell-body .fih-home-products h3,
body.fih-public-shell-body .fih-home-benefits h2,
body.fih-public-shell-body .fih-home-faq h2,
body.fih-public-shell-body .fih-home-intro h2 {
	color: #111827 !important;
}

body.fih-public-shell-body .fih-home-products-head p,
body.fih-public-shell-body .fih-home-products > .fih-home-section-copy,
body.fih-public-shell-body .fih-home-products article p,
body.fih-public-shell-body .fih-home-benefits p,
body.fih-public-shell-body .fih-home-faq p,
body.fih-public-shell-body .fih-home-intro p {
	color: #5d687a !important;
}

body.fih-public-shell-body .fih-home-products .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-benefits .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-faq .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-intro .fih-home-eyebrow {
	background: rgba(166, 30, 34, 0.08) !important;
	border-color: rgba(166, 30, 34, 0.18) !important;
	color: #a61e22 !important;
}

body.fih-public-shell-body .fih-home-problem .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-kitchen .fih-home-eyebrow,
body.fih-public-shell-body .fih-home-tasting .fih-home-eyebrow {
	background: rgba(255, 255, 255, 0.10) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-kitchen .fih-home-checks span {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

body.fih-public-shell-body .fih-home-intro,
body.fih-public-shell-body .fih-home-problem,
body.fih-public-shell-body .fih-home-products,
body.fih-public-shell-body .fih-home-kitchen,
body.fih-public-shell-body .fih-home-benefits,
body.fih-public-shell-body .fih-home-tasting,
body.fih-public-shell-body .fih-home-faq {
	scroll-margin-top: 120px !important;
}
