/* =========================================================
   FitFire — dark glass theme (RTL)
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
	color-scheme: dark;
	--ff-accent: #FF6A1A;
	--ff-accent-ink: #14100C;
	--ff-accent-soft: color-mix(in srgb, var(--ff-accent) 16%, transparent);
	--ff-accent-line: color-mix(in srgb, var(--ff-accent) 38%, transparent);
	--ff-accent-text: color-mix(in srgb, var(--ff-accent) 78%, #fff);

	--ff-bg: #08080A;
	--ff-bg-2: #0E0E12;
	--ff-glass: rgba(255, 255, 255, .05);
	--ff-glass-2: rgba(255, 255, 255, .08);
	--ff-glass-3: rgba(255, 255, 255, .11);
	--ff-line: rgba(255, 255, 255, .10);
	--ff-line-2: rgba(255, 255, 255, .15);
	--ff-well: rgba(0, 0, 0, .30);

	--ff-text: #F4F5F7;
	--ff-text-2: #C9CCD3;
	--ff-muted: #A3A7B0;
	--ff-dim: #8D919A;

	--ff-danger: #E0463C;
	--ff-danger-text: #FF8B80;
	--ff-ok: #3DD68C;
	--ff-eco: #3DD6B4;

	--ff-tile: #F1F1F4;

	--ff-r-lg: 26px;
	--ff-r: 20px;
	--ff-r-sm: 13px;
	--ff-r-xs: 9px;

	--ff-shadow: 0 22px 48px rgba(0, 0, 0, .34);
	--ff-inset: inset 0 1px 0 rgba(255, 255, 255, .07);
	--ff-blur: blur(22px) saturate(140%);

	--ff-gutter: clamp(16px, 4vw, 56px);
	--ff-font: 'Vazirmatn FD', Vazirmatn, Tahoma, 'Segoe UI', sans-serif;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.ff-theme {
	margin: 0;
	min-height: 100vh;
	background: var(--ff-bg);
	color: var(--ff-text);
	font-family: var(--ff-font);
	font-size: 15px;
	line-height: 1.9;
	direction: rtl;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* Ambient light behind the glass */
body.ff-theme::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(720px 560px at 18% -6%, color-mix(in srgb, var(--ff-accent) 24%, transparent), transparent 62%),
		radial-gradient(620px 560px at 102% 38%, rgba(124, 58, 237, .14), transparent 60%),
		radial-gradient(640px 560px at -6% 88%, color-mix(in srgb, var(--ff-accent) 12%, transparent), transparent 62%),
		var(--ff-bg);
}

img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--ff-accent-text); text-decoration: none; transition: color .15s ease; }
a:hover { color: #fff; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.5; font-weight: 800; color: var(--ff-text); }
p { margin: 0 0 1em; }
::selection { background: var(--ff-accent); color: var(--ff-accent-ink); }

:focus-visible { outline: 2px solid var(--ff-accent); outline-offset: 2px; border-radius: 6px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.ff-skip:focus {
	position: fixed !important; top: 12px; right: 12px; z-index: 1000; width: auto; height: auto; clip: auto;
	padding: 10px 18px; background: var(--ff-accent); color: var(--ff-accent-ink); border-radius: 10px; font-weight: 700;
}

.ff-container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--ff-gutter); }
.ff-narrow { max-width: 880px; }
.ff-main { display: block; padding-bottom: 72px; min-height: 50vh; }
.ff-accent { color: var(--ff-accent) !important; }
.ff-muted { color: var(--ff-muted); }

.ff-glass {
	background: var(--ff-glass);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-r-lg);
	box-shadow: var(--ff-inset), var(--ff-shadow);
	-webkit-backdrop-filter: var(--ff-blur);
	backdrop-filter: var(--ff-blur);
}

/* ---------- 3. Buttons, pills, badges ---------- */
.ff-btn,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) input.button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #respond input#submit,
.ff-theme a.button,
.ff-theme button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: var(--ff-r-sm);
	background: var(--ff-glass-2);
	color: var(--ff-text);
	font-family: var(--ff-font);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
	white-space: nowrap;
}
.ff-btn:hover { transform: translateY(-1px); }
.ff-btn:active { transform: translateY(0); }
.ff-btn[disabled], :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .button.disabled, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .button:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.ff-btn-primary,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.alt,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.button.alt,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) input.button.alt,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #respond input#submit.alt,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.add_to_cart_button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_variable,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_simple,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_grouped,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_external,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.single_add_to_cart_button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.checkout-button,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #place_order {
	background: var(--ff-accent);
	border-color: var(--ff-accent);
	color: var(--ff-accent-ink);
	box-shadow: 0 12px 28px color-mix(in srgb, var(--ff-accent) 24%, transparent);
}
.ff-btn-primary:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.alt:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.button.alt:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.add_to_cart_button:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_variable:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.product_type_simple:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.single_add_to_cart_button:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.checkout-button:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #place_order:hover {
	background: color-mix(in srgb, var(--ff-accent) 88%, #fff);
	border-color: color-mix(in srgb, var(--ff-accent) 88%, #fff);
	color: var(--ff-accent-ink);
}

.ff-btn-glass,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button:not(.alt):not(.add_to_cart_button):not([class*="product_type_"]):not(.checkout-button),
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.button:not(.alt):not(.single_add_to_cart_button) {
	background: var(--ff-glass-2);
	border-color: var(--ff-line-2);
	color: var(--ff-text);
	-webkit-backdrop-filter: var(--ff-blur);
	backdrop-filter: var(--ff-blur);
}
.ff-btn-glass:hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button:not(.alt):not(.add_to_cart_button):not([class*="product_type_"]):not(.checkout-button):hover,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) button.button:not(.alt):not(.single_add_to_cart_button):hover {
	background: var(--ff-glass-3);
	color: #fff;
}
.ff-btn-ghost { background: transparent; border-color: var(--ff-line-2); color: var(--ff-text-2); }
.ff-btn-ghost:hover { background: var(--ff-glass); color: #fff; }
.ff-btn-dark { background: var(--ff-accent-ink); color: #fff; }
.ff-btn-dark:hover { color: #fff; background: #000; }
.ff-btn-lg { min-height: 58px; padding: 0 32px; font-size: 16px; border-radius: 16px; }
.ff-btn-sm { min-height: 40px; padding: 0 16px; font-size: 13px; border-radius: 11px; }
.ff-btn-block { width: 100%; }

.ff-pill {
	display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
	background: var(--ff-glass-2); border: 1px solid var(--ff-line-2); border-radius: 999px;
	font-size: 13px; font-weight: 700; color: var(--ff-accent-text);
	-webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur);
}

.ff-line-badge {
	display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 8px;
	font-size: 12px; font-weight: 700; line-height: 1.6; white-space: nowrap; vertical-align: middle;
}
.ff-line-main { background: var(--ff-accent-soft); color: var(--ff-accent-text); border: 1px solid var(--ff-accent-line); }
.ff-line-eco { background: rgba(61, 214, 180, .12); color: var(--ff-eco); border: 1px solid rgba(61, 214, 180, .34); }
.ff-badge-sm { padding: 2px 8px; font-size: 11px; border-radius: 7px; }
h1 .ff-line-badge { font-size: 13px; margin-inline-start: 8px; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) span.onsale,
.ff-theme span.onsale {
	position: static; display: inline-flex; min-width: 0; min-height: 0; margin: 0; padding: 5px 10px;
	border-radius: 9px; background: var(--ff-danger); color: #fff; font-size: 12px; font-weight: 700; line-height: 1.5;
}
.ff-badge-out { display: inline-flex; padding: 5px 10px; border-radius: 9px; background: rgba(20, 16, 12, .8); color: #fff; font-size: 12px; font-weight: 700; }

.ff-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ff-accent); }
.ff-icon { flex-shrink: 0; }
.ff-star { color: var(--ff-accent); fill: var(--ff-accent); stroke: none; }

/* ---------- 4. Forms ---------- */
.ff-theme input[type="text"], .ff-theme input[type="email"], .ff-theme input[type="tel"],
.ff-theme input[type="url"], .ff-theme input[type="password"], .ff-theme input[type="number"],
.ff-theme input[type="search"], .ff-theme input[type="date"], .ff-theme select, .ff-theme textarea,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row .input-text, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row select {
	width: 100%;
	min-height: 50px;
	padding: 10px 16px;
	background: var(--ff-well);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-r-sm);
	color: var(--ff-text);
	font-size: 15px;
	line-height: 1.6;
	transition: border-color .15s ease, box-shadow .15s ease;
	-webkit-appearance: none;
	appearance: none;
}
.ff-theme textarea { min-height: 120px; }
.ff-theme select, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row select {
	padding-left: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A3A7B0' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 14px center;
}
.ff-theme select option { background: #16171B; color: var(--ff-text); }
.ff-theme input::placeholder, .ff-theme textarea::placeholder { color: var(--ff-dim); opacity: 1; }
.ff-theme input:focus, .ff-theme select:focus, .ff-theme textarea:focus,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row .input-text:focus {
	outline: none;
	border-color: var(--ff-accent);
	box-shadow: 0 0 0 3px var(--ff-accent-soft);
}
.ff-theme label { color: var(--ff-text-2); font-size: 14px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row label { line-height: 2; margin-bottom: 4px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row .required { color: var(--ff-danger-text); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row.woocommerce-invalid .input-text,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form .form-row.woocommerce-invalid select { border-color: var(--ff-danger); }
.ff-theme input[type="checkbox"], .ff-theme input[type="radio"] { accent-color: var(--ff-accent); width: 18px; height: 18px; }

.ff-field { display: flex; flex-direction: column; gap: 8px; margin: 0 0 18px; border: 0; padding: 0; min-width: 0; }
.ff-field > label, .ff-field > legend { font-size: 14px; color: var(--ff-text-2); padding: 0; margin-bottom: 8px; }
.ff-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ff-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* Segmented radio chips */
.ff-seg { flex-direction: row; flex-wrap: wrap; gap: 9px; }
.ff-seg legend { width: 100%; }
.ff-seg label { position: relative; flex: 1 1 110px; margin: 0; }
.ff-seg input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.ff-seg span {
	display: flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 12px;
	background: var(--ff-glass); border: 1px solid var(--ff-line-2); border-radius: var(--ff-r-sm);
	color: var(--ff-text-2); font-weight: 600; transition: all .15s ease;
}
.ff-seg input:checked + span { background: var(--ff-glass-3); border: 2px solid var(--ff-accent); color: #fff; font-weight: 800; }
.ff-seg input:focus-visible + span { outline: 2px solid var(--ff-accent); outline-offset: 2px; }

.ff-notice { padding: 16px 20px; border-radius: var(--ff-r-sm); margin-bottom: 18px; font-weight: 600; }
.ff-notice-ok { background: rgba(61, 214, 140, .12); border: 1px solid rgba(61, 214, 140, .35); color: #9AF0C4; }
.ff-notice-err { background: rgba(224, 70, 60, .12); border: 1px solid rgba(224, 70, 60, .4); color: var(--ff-danger-text); }

/* ---------- 5. Topbar & header ---------- */
.ff-topbar { background: rgba(255, 255, 255, .03); border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 13px; color: var(--ff-muted); }
.ff-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.ff-topbar-items { display: flex; align-items: center; gap: 22px; }
.ff-topbar-items > * { display: inline-flex; align-items: center; gap: 8px; }
.ff-topbar-items .ff-icon { color: var(--ff-accent); }
.ff-topbar a { color: var(--ff-muted); }
.ff-topbar a:hover { color: #fff; }

.ff-header {
	position: sticky; top: 0; z-index: 90;
	background: rgba(12, 12, 15, .62);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	-webkit-backdrop-filter: blur(24px) saturate(150%);
	backdrop-filter: blur(24px) saturate(150%);
	transition: background .2s ease, box-shadow .2s ease;
}
.ff-header.is-scrolled { background: rgba(10, 10, 13, .84); box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
.admin-bar .ff-header { top: 32px; }
.ff-header-inner { display: flex; align-items: center; gap: 26px; min-height: 84px; }

.ff-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ff-text); flex-shrink: 0; }
.ff-logo:hover { color: #fff; }
.ff-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.ff-logo-fa { font-size: 20px; font-weight: 900; letter-spacing: -.3px; }
.ff-logo-en { font-size: 10px; font-weight: 700; color: var(--ff-dim); letter-spacing: 2.4px; direction: ltr; text-align: right; }
.custom-logo-link img { max-height: 52px; width: auto; }

.ff-nav { flex-shrink: 0; }
.ff-nav-head { display: none; }
.ff-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.ff-menu > li { position: relative; }
.ff-menu a {
	display: flex; align-items: center; min-height: 42px; padding: 0 12px; border-radius: 10px;
	color: var(--ff-text-2); font-size: 15px; font-weight: 600; white-space: nowrap;
}
.ff-menu a:hover, .ff-menu .current-menu-item > a, .ff-menu .current_page_item > a { color: #fff; background: var(--ff-glass); }
.ff-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; right: 0; min-width: 210px;
	background: rgba(18, 18, 22, .96); border: 1px solid var(--ff-line); border-radius: 16px; box-shadow: var(--ff-shadow);
	opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease; z-index: 5;
}
.ff-menu li:hover > .sub-menu, .ff-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.ff-search {
	flex: 1 1 auto; display: flex; align-items: center; gap: 10px; min-width: 180px; height: 48px; padding: 0 16px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 14px; color: var(--ff-dim);
}
.ff-search:focus-within { border-color: var(--ff-accent); box-shadow: 0 0 0 3px var(--ff-accent-soft); }
.ff-theme .ff-search input[type="search"] {
	flex: 1; min-height: 0; height: 44px; padding: 0; background: transparent; border: 0; box-shadow: none; font-size: 14px;
}
.ff-theme .ff-search input[type="search"]:focus { box-shadow: none; }
.ff-theme .ff-search input[type="search"]::-webkit-search-cancel-button { filter: invert(1); }

.ff-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ff-icon-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 48px; height: 48px; padding: 0 12px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 14px; color: var(--ff-text-2);
	font-size: 13px; font-weight: 600; cursor: pointer;
}
.ff-icon-btn:hover { color: #fff; background: var(--ff-glass-2); }
.ff-menu-toggle, .ff-search-toggle { display: none; }
.ff-cart-btn {
	position: relative; display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 18px;
	background: var(--ff-accent); border-radius: 14px; color: var(--ff-accent-ink); font-size: 14px; font-weight: 800;
	box-shadow: 0 10px 26px color-mix(in srgb, var(--ff-accent) 26%, transparent);
}
.ff-cart-btn:hover { color: var(--ff-accent-ink); background: color-mix(in srgb, var(--ff-accent) 88%, #fff); }
.ff-cart-count {
	display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 6px;
	background: var(--ff-accent-ink); color: #fff; border-radius: 11px; font-size: 12px; font-weight: 800;
}
.ff-cart-count[data-count="0"] { opacity: .55; }
.ff-nav-overlay { position: fixed; inset: 0; z-index: 98; background: rgba(0, 0, 0, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

/* ---------- 6. Sections ---------- */
.ff-section { padding-top: 64px; }
.ff-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.ff-section-head h2 { font-size: 30px; font-weight: 800; }
.ff-section-head p { margin: 6px 0 0; color: var(--ff-dim); font-size: 14px; }
.ff-link-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.ff-empty {
	padding: 40px 24px; text-align: center; color: var(--ff-muted);
	background: var(--ff-glass); border: 1px dashed var(--ff-line-2); border-radius: var(--ff-r);
}
.ff-empty p { margin-bottom: 14px; }

.ff-page-head { padding: 40px 0 26px; }
.ff-page-head h1 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 900; }
.ff-page-head p, .ff-page-desc { margin-top: 8px; color: var(--ff-muted); }

/* ---------- 7. Home ---------- */
.ff-hero { padding: 36px 0 12px; }
.ff-hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: center; min-height: 560px; }
.ff-hero-text { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.ff-hero-text h1 { font-size: clamp(38px, 5.4vw, 72px); line-height: 1.18; font-weight: 900; letter-spacing: -1.6px; }
.ff-hero-text p { margin: 0; font-size: 18px; line-height: 2; color: var(--ff-muted); max-width: 540px; }
.ff-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.ff-hero-points { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.ff-hero-points li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ff-muted); }
.ff-hero-points .ff-icon { color: var(--ff-accent); stroke-width: 2.6; }

.ff-hero-visual { position: relative; min-height: 480px; border-radius: 34px; display: flex; align-items: center; justify-content: center; padding: 40px; }
.ff-hero-product { display: flex; align-items: center; justify-content: center; }
.ff-hero-img {
	width: min(290px, 56%); aspect-ratio: 1; border-radius: 28px; overflow: hidden;
	background: radial-gradient(110% 90% at 50% 25%, #fff 0%, var(--ff-tile) 70%);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .45); display: flex; align-items: center; justify-content: center;
}
.ff-hero-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ff-float {
	position: absolute; display: flex; flex-direction: column; gap: 3px; padding: 13px 17px; max-width: 240px;
	background: rgba(255, 255, 255, .09); border: 1px solid var(--ff-line-2); border-radius: 16px;
	-webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur); box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}
.ff-float small { font-size: 12px; color: var(--ff-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ff-float b { font-size: 18px; font-weight: 900; }
.ff-float b del { display: none; }
.ff-float b ins { text-decoration: none; }
.ff-float-1 { top: 36px; right: 30px; }
.ff-float-2 { bottom: 48px; left: 30px; }
.ff-float-3 { top: 36px; left: 30px; max-width: 200px; }
.ff-float { z-index: 2; }
.ff-hero-product { position: relative; z-index: 1; }

.ff-goals { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ff-goal { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; min-height: 180px; padding: 24px; color: var(--ff-text); transition: transform .2s ease, border-color .2s ease; position: relative; }
.ff-goal:hover { transform: translateY(-3px); border-color: var(--ff-accent-line); color: #fff; }
.ff-goal-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--ff-glass-2); display: flex; align-items: center; justify-content: center; color: var(--ff-accent); }
.ff-goal-text { display: flex; flex-direction: column; gap: 4px; }
.ff-goal-text b { font-size: 19px; font-weight: 800; }
.ff-goal-text small { font-size: 13px; color: var(--ff-dim); }
.ff-goal-arrow { position: absolute; top: 24px; left: 24px; color: var(--ff-dim); }

.ff-tools-teaser { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.ff-teaser { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 32px 34px; }
.ff-teaser h3 { font-size: 22px; }
.ff-teaser p { margin: 0 0 6px; color: var(--ff-muted); font-size: 14px; line-height: 2; }
.ff-teaser-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--ff-glass-2); color: var(--ff-accent); display: inline-flex; align-items: center; justify-content: center; }
.ff-teaser-icon-accent { background: var(--ff-accent); color: var(--ff-accent-ink); }

.ff-eco-band { display: flex; align-items: center; justify-content: space-between; padding: 30px 34px; margin-bottom: 22px; border-color: rgba(61, 214, 180, .25); }
.ff-eco-text { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.ff-eco-text h2 { font-size: 26px; }
.ff-eco-text p { margin: 0 0 6px; color: var(--ff-muted); max-width: 620px; }

.ff-promo-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.ff-promo { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 34px 36px; border-radius: var(--ff-r-lg); }
.ff-promo h2 { font-size: 26px; font-weight: 900; }
.ff-promo p { margin: 0 0 8px; font-size: 14px; line-height: 2.1; max-width: 460px; color: var(--ff-muted); }
.ff-promo-eyebrow { font-size: 13px; font-weight: 800; }
.ff-promo-accent { background: var(--ff-accent); color: var(--ff-accent-ink); box-shadow: 0 26px 56px rgba(0, 0, 0, .42); }
.ff-promo-accent h2 { color: var(--ff-accent-ink); }
.ff-promo-accent p { color: rgba(20, 16, 12, .82); }
.ff-promo-accent .ff-promo-eyebrow { color: rgba(20, 16, 12, .7); }

.ff-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ff-post-card { overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--ff-inset); }
.ff-post-thumb { display: block; aspect-ratio: 16 / 10; background: var(--ff-well); overflow: hidden; }
.ff-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ff-post-card:hover .ff-post-thumb img { transform: scale(1.04); }
.ff-post-thumb-empty { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; color: var(--ff-accent); opacity: .7; }
.ff-post-body { display: flex; flex-direction: column; gap: 10px; padding: 22px; }
.ff-post-meta { font-size: 12px; color: var(--ff-dim); }
.ff-post-title { font-size: 17px; font-weight: 700; line-height: 1.8; }
.ff-post-title a { color: var(--ff-text); }
.ff-post-title a:hover { color: var(--ff-accent-text); }
.ff-post-excerpt { margin: 0; font-size: 13px; color: var(--ff-muted); line-height: 2; }

.ff-consult { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 32px 36px; }
.ff-consult > div:first-child { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.ff-consult h2 { font-size: 24px; }
.ff-consult p { margin: 0; color: var(--ff-muted); max-width: 640px; }
.ff-consult-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* ---------- 8. Product grid & card ---------- */
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products,
.ff-theme ul.products {
	display: grid;
	grid-template-columns: repeat(var(--ff-cols, 4), minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ff-theme ul.products.columns-2 { --ff-cols: 2; }
.ff-theme ul.products.columns-3 { --ff-cols: 3; }
.ff-theme ul.products.columns-4 { --ff-cols: 4; }
.ff-theme ul.products.columns-5 { --ff-cols: 5; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products::before, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products::after,
.ff-theme ul.products::before, .ff-theme ul.products::after { display: none; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products li.product,
.ff-theme ul.products li.product.ff-card {
	float: none; width: auto; margin: 0; padding: 0; text-align: right;
	display: flex; flex-direction: column;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 22px;
	box-shadow: var(--ff-inset); overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ff-theme ul.products li.product.ff-card:hover { transform: translateY(-3px); border-color: var(--ff-line-2); box-shadow: var(--ff-inset), var(--ff-shadow); }

.ff-card-media { position: relative; margin: 12px 12px 0; border-radius: 16px; overflow: hidden; background: radial-gradient(110% 90% at 50% 25%, #fff 0%, var(--ff-tile) 72%); }
.ff-card-img { display: block; aspect-ratio: 1 / 1; }
.ff-theme ul.products li.product .ff-card-img img {
	width: 100%; height: 100%; margin: 0; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; box-shadow: none;
}
.ff-theme ul.products li.product.ff-card:hover .ff-card-img img { transform: scale(1.04); }
.ff-card-badges { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.ff-compare-toggle {
	position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px; min-height: 30px; padding: 0 10px;
	background: rgba(20, 16, 12, .72); border: 1px solid rgba(255, 255, 255, .16); border-radius: 9px; color: #fff;
	font-size: 11px; font-weight: 700; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.ff-compare-toggle.is-active { background: var(--ff-accent); border-color: var(--ff-accent); color: var(--ff-accent-ink); }

.ff-card-body { display: flex; flex-direction: column; gap: 10px; padding: 14px 18px 18px; flex: 1; }
.ff-card-eyebrow { display: flex; align-items: center; gap: 8px; min-height: 22px; flex-wrap: wrap; }
.ff-card-brand { font-size: 12px; color: var(--ff-dim); font-weight: 600; }
.ff-theme ul.products li.product .ff-card-title,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products li.product .woocommerce-loop-product__title {
	margin: 0; padding: 0; font-size: 15px; font-weight: 700; line-height: 1.75; min-height: 3.5em;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ff-card-title a { color: var(--ff-text); }
.ff-card-title a:hover { color: var(--ff-accent-text); }
.ff-card-meta { display: flex; align-items: center; justify-content: space-between; min-height: 22px; font-size: 12px; color: var(--ff-dim); }
.ff-card-rating { display: inline-flex; align-items: center; gap: 5px; }
.ff-card-rating b { font-size: 13px; color: var(--ff-text-2); font-weight: 700; }

.ff-pps {
	display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 12px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 11px;
}
.ff-pps-label { font-size: 12px; color: var(--ff-dim); }
.ff-pps-value { font-size: 14px; font-weight: 800; color: var(--ff-accent-text); }
.ff-pps-value .woocommerce-Price-currencySymbol { font-size: 11px; font-weight: 600; }
.ff-pps-sm { padding: 6px 10px; }

.ff-card-price { margin-top: auto; }
.ff-theme ul.products li.product .price,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul.products li.product .price {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin: 0; color: var(--ff-text); font-size: 18px; font-weight: 900;
}
.ff-theme .price del, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .price del { color: var(--ff-dim); font-size: 13px; font-weight: 500; opacity: 1; }
.ff-theme .price ins, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .price ins { text-decoration: none; font-weight: 900; }
.ff-theme .woocommerce-Price-currencySymbol { font-size: .72em; font-weight: 600; color: var(--ff-muted); margin-inline-start: 2px; }
.ff-theme ul.products li.product .ff-card-actions .button {
	display: flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; margin: 0; padding: 0 14px;
	line-height: 1.2; font-size: 14px; border-radius: 13px;
}
.ff-card-actions .added_to_cart { display: block; margin-top: 8px; text-align: center; font-size: 13px; font-weight: 700; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.button.loading::after { top: auto; right: auto; left: 14px; }

/* ---------- 9. Shop archive ---------- */
.ff-breadcrumb, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-breadcrumb {
	margin: 0; padding: 26px 0 4px; font-size: 13px; color: var(--ff-dim);
}
.ff-breadcrumb a, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-breadcrumb a { color: var(--ff-muted); }
.ff-breadcrumb a:hover { color: #fff; }
.ff-bc-sep { margin: 0 8px; opacity: .6; }

.ff-shop-head { display: flex; flex-direction: column; gap: 10px; padding: 14px 0 24px; }
.ff-shop-head > div:first-child { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.ff-shop-head h1 { font-size: clamp(26px, 3vw, 34px); font-weight: 900; }
.ff-shop-count { font-size: 14px; color: var(--ff-dim); }
.ff-shop-desc { color: var(--ff-muted); max-width: 820px; font-size: 14px; }
.ff-shop-desc p:last-child { margin-bottom: 0; }

.ff-shop-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 26px; align-items: start; }
.ff-shop-layout.ff-no-sidebar { grid-template-columns: minmax(0, 1fr); }
.ff-shop-sidebar { position: sticky; top: 108px; }
.admin-bar .ff-shop-sidebar { top: 140px; }
.ff-filters-mobile-head { display: none; }

.ff-filters {
	display: flex; flex-direction: column; gap: 20px; padding: 22px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 24px; box-shadow: var(--ff-inset);
	-webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur);
	max-height: calc(100vh - 130px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--ff-line-2) transparent;
}
.ff-filters-head { display: flex; align-items: center; justify-content: space-between; }
.ff-filters-head strong { font-size: 17px; font-weight: 800; }
.ff-filters-reset { font-size: 13px; font-weight: 600; }
.ff-filter-group { margin: 0; padding: 0 0 18px; border: 0; border-bottom: 1px solid var(--ff-line); display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.ff-filter-group legend { padding: 0; margin-bottom: 10px; font-size: 14px; font-weight: 700; color: var(--ff-text); }
.ff-check, .ff-radio { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ff-text-2); cursor: pointer; }
.ff-check em { margin-inline-start: auto; font-style: normal; color: var(--ff-dim); font-size: 12px; }
.ff-filter-scroll { max-height: 250px; overflow-y: auto; }
.ff-filter-chips { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.ff-filter-chips legend { width: 100%; }
.ff-chip { position: relative; }
.ff-chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.ff-chip span { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; background: var(--ff-glass); border: 1px solid var(--ff-line-2); border-radius: 10px; font-size: 12px; font-weight: 600; color: var(--ff-text-2); }
.ff-chip input:checked + span { background: var(--ff-accent); border-color: var(--ff-accent); color: var(--ff-accent-ink); font-weight: 800; }
.ff-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ff-theme .ff-price-inputs input { min-height: 44px; font-size: 14px; }
.ff-switch { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ff-text-2); cursor: pointer; }
.ff-switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ff-switch-ui { order: 2; position: relative; width: 46px; height: 26px; border-radius: 13px; background: var(--ff-glass-3); transition: background .15s ease; flex-shrink: 0; }
.ff-switch-ui::after { content: ""; position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .15s ease; }
.ff-switch input:checked + .ff-switch-ui { background: var(--ff-accent); }
.ff-switch input:checked + .ff-switch-ui::after { transform: translateX(-20px); }
.ff-switch input:focus-visible + .ff-switch-ui { outline: 2px solid var(--ff-accent); outline-offset: 2px; }

.ff-shop-toolbar {
	display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding: 12px 16px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px;
}
.ff-filters-toggle { display: none; }
.ff-sort { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }
.ff-sort-label { font-size: 13px; color: var(--ff-dim); white-space: nowrap; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-ordering { margin: 0; float: none; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-ordering select { min-height: 42px; min-width: 230px; font-size: 13px; border-radius: 11px; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination { margin-top: 32px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul,
.ff-theme .navigation.pagination .nav-links { border: 0; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul li { border: 0; overflow: visible; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul li a,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul li span,
.ff-theme .navigation.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 12px; color: var(--ff-text-2); font-weight: 700;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul li span.current,
.ff-theme .navigation.pagination .page-numbers.current { background: var(--ff-accent); border-color: var(--ff-accent); color: var(--ff-accent-ink); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) nav.woocommerce-pagination ul li a:hover { background: var(--ff-glass-2); color: #fff; }

/* ---------- 10. Single product ---------- */
.ff-theme.single-product div.product { position: relative; }
.ff-single-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 40px; align-items: start; padding-top: 18px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.summary { float: none; width: auto; margin: 0; }
.ff-single-media { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 16px; }
.admin-bar .ff-single-media { top: 140px; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .woocommerce-product-gallery__wrapper,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-viewport {
	border-radius: 28px; overflow: hidden; background: radial-gradient(110% 90% at 50% 25%, #fff 0%, var(--ff-tile) 72%);
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images img { mix-blend-mode: multiply; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-control-thumbs { display: flex; gap: 10px; margin-top: 12px; padding: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-control-thumbs li { width: 84px; float: none; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-control-thumbs li img {
	border-radius: 14px; background: var(--ff-tile); opacity: .55; border: 2px solid transparent;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-control-thumbs li img.flex-active,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .flex-control-thumbs li img:hover { opacity: 1; border-color: var(--ff-accent); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.images .woocommerce-product-gallery__trigger {
	left: 16px; right: auto; top: 16px; background: rgba(20, 16, 12, .75); border-radius: 12px; width: 40px; height: 40px;
}
.ff-single-video { padding: 16px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 22px; }
.ff-single-video-title { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-weight: 700; font-size: 14px; }
.ff-single-video-title .ff-icon { color: var(--ff-accent); }
.ff-video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: #000; }
.ff-video-frame iframe, .ff-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.summary { display: flex; flex-direction: column; gap: 18px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product div.summary > * { margin: 0; }
.ff-single-eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.ff-single-brand { font-weight: 700; color: var(--ff-text-2); }
.ff-single-sku { color: var(--ff-dim); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .product_title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; line-height: 1.6; margin: 0; }
.ff-single-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 13px; }
.ff-single-rating { display: inline-flex; align-items: center; gap: 6px; color: var(--ff-text-2); }
.ff-single-rating b { font-size: 14px; }
.ff-single-rating span { color: var(--ff-accent-text); }
.ff-stock { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; }
.ff-stock i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.ff-stock.is-in { color: var(--ff-ok); }
.ff-stock.is-out { color: var(--ff-danger-text); }

.ff-price-box {
	display: flex; flex-direction: column; gap: 16px; padding: 22px 24px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 22px; box-shadow: var(--ff-inset);
	-webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur);
}
.ff-price-main { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product p.price, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product span.price {
	display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin: 0; color: var(--ff-text); font-size: 32px; font-weight: 900; line-height: 1.3;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product p.price:has(del) { flex-direction: column; gap: 4px; }
.ff-theme.single-product .product-type-variable .ff-price-main > p.price { font-size: 24px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product p.price del { font-size: 15px; }
.ff-save-badge { padding: 9px 14px; border-radius: 11px; background: var(--ff-danger); color: #fff; font-size: 14px; font-weight: 700; }
.ff-price-cells { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.ff-price-cell { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 13px; }
.ff-price-cell > span { font-size: 12px; color: var(--ff-dim); }
.ff-price-cell b { font-size: 15px; font-weight: 800; }
.ff-price-cell .ff-pps-value { color: var(--ff-accent-text); font-size: 16px; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-product-details__short-description { color: var(--ff-muted); font-size: 14px; line-height: 2.1; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-product-details__short-description p:last-child { margin: 0; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart::before, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart::after { display: none; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart.variations_form { flex-direction: column; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations { width: 100%; margin: 0; border: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations tr { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations th, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations td { display: block; padding: 0; text-align: right; line-height: 1.8; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations label { font-weight: 700; color: var(--ff-text); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .variations select { margin: 0; min-width: 0; width: 100%; max-width: 100%; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .reset_variations { font-size: 13px; margin-top: 6px; display: inline-block; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .woocommerce-variation-price .price { font-size: 22px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .woocommerce-variation-add-to-cart { display: flex; gap: 12px; flex-wrap: wrap; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .quantity .qty,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart div.quantity .qty {
	width: 90px; min-height: 58px; text-align: center; font-size: 17px; font-weight: 800; border-radius: 15px; padding: 0 8px;
	-moz-appearance: textfield;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart div.quantity { float: none; margin: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product form.cart .button.single_add_to_cart_button {
	flex: 1; min-height: 58px; font-size: 16px; font-weight: 800; border-radius: 15px; float: none;
}
.ff-compare-single { align-self: flex-start; }
.ff-compare-single.is-active { border-color: var(--ff-accent); color: var(--ff-accent-text); background: var(--ff-accent-soft); }
.ff-compare-single.is-active span::before { content: "✓ "; }

.ff-trust-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.ff-trust-tile { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 15px; }
.ff-trust-tile .ff-icon { color: var(--ff-accent); margin-top: 3px; }
.ff-trust-tile span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ff-trust-tile b { font-size: 13px; }
.ff-trust-tile small { font-size: 11px; color: var(--ff-dim); overflow-wrap: anywhere; }
.ff-single-facts { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: 13px; color: var(--ff-text-2); }
.ff-single-facts em { font-style: normal; color: var(--ff-dim); }

/* Tabs */
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs { margin-top: 56px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs {
	display: flex; gap: 6px; margin: 0 0 26px; padding: 6px; overflow-x: auto;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 16px; scrollbar-width: none;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs::before,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li::before,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li::after { display: none; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; background: transparent; border: 0; border-radius: 11px; flex-shrink: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 10px 18px; color: var(--ff-muted); font-weight: 700; font-size: 14px; white-space: nowrap; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li.active { background: var(--ff-accent); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ff-accent-ink); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs .panel {
	margin: 0; padding: 30px 32px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 24px;
	color: var(--ff-text-2); line-height: 2.2;
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs .panel > h2:first-child, .ff-tab-title { font-size: 19px; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.ff-tab-title small { font-size: 13px; font-weight: 500; color: var(--ff-dim); }
.ff-nutrition { width: 100%; max-width: 620px; border-collapse: collapse; }
.ff-nutrition th, .ff-nutrition td { padding: 12px 4px; border-bottom: 1px solid var(--ff-line); text-align: right; font-size: 14px; }
.ff-nutrition th { color: var(--ff-muted); font-weight: 500; }
.ff-nutrition td { font-weight: 700; color: var(--ff-text); text-align: left; }
.ff-nutrition tr:last-child th, .ff-nutrition tr:last-child td { border-bottom: 0; }
.ff-warning-box { padding: 4px 2px; }
.ff-warning-box .ff-tab-title { color: var(--ff-danger-text); }
.ff-warning-box .ff-tab-title .ff-icon { color: var(--ff-danger-text); }
.ff-warning-box ul { margin: 0; padding-right: 20px; color: #E5C2BE; }
.ff-warning-box li { margin-bottom: 6px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_attributes { border: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_attributes th, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_attributes td {
	border: 0; border-bottom: 1px solid var(--ff-line); background: transparent !important; padding: 12px 8px; font-style: normal; color: var(--ff-text-2);
}

/* Reviews */
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments h2, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #reply-title { font-size: 18px; font-weight: 800; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist { padding: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li { margin-bottom: 14px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li .comment-text {
	margin: 0 58px 0 0; padding: 16px 18px; border: 1px solid var(--ff-line); border-radius: 16px; background: var(--ff-glass);
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li img.avatar { right: 0; left: auto; width: 44px; border-radius: 50%; background: var(--ff-glass-2); border: 0; padding: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li .comment-text p.meta { color: var(--ff-dim); font-size: 13px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__verified { color: var(--ff-ok); font-style: normal; font-weight: 700; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .star-rating { color: var(--ff-accent); float: left; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .star-rating::before { color: rgba(255, 255, 255, .2); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) p.stars a { color: var(--ff-accent); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #review_form #respond textarea { min-height: 130px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #review_form #respond { padding: 22px; border: 1px solid var(--ff-line); border-radius: 18px; background: var(--ff-glass); }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product section.related, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product section.upsells { margin-top: 56px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product section.related > h2, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product section.upsells > h2 { font-size: 26px; margin-bottom: 22px; }

/* ---------- 11. Notices, tables, cart, checkout, account ---------- */
.ff-theme .woocommerce-message, .ff-theme .woocommerce-info, .ff-theme .woocommerce-error,
.ff-theme .woocommerce-notices-wrapper .woocommerce-message {
	margin: 0 0 22px; padding: 16px 52px 16px 20px; background: var(--ff-glass); border: 1px solid var(--ff-line);
	border-top: 0; border-right: 3px solid var(--ff-accent); border-radius: 14px; color: var(--ff-text); list-style: none;
	display: flex; align-items: center; flex-wrap: wrap; gap: 10px; line-height: 1.9;
}
.ff-theme .woocommerce-message::before, .ff-theme .woocommerce-info::before, .ff-theme .woocommerce-error::before { right: 18px; left: auto; top: 50%; transform: translateY(-50%); color: var(--ff-accent); }
.ff-theme .woocommerce-message::after, .ff-theme .woocommerce-info::after { display: none; }
.ff-theme .woocommerce-error { border-right-color: var(--ff-danger); }
.ff-theme .woocommerce-error::before { color: var(--ff-danger); }
.ff-theme .woocommerce-message .button, .ff-theme .woocommerce-info .button { order: 2; margin-inline-start: auto; min-height: 40px; font-size: 13px; }

:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table {
	border: 1px solid var(--ff-line); border-radius: 20px; border-collapse: separate; overflow: hidden; margin: 0 0 24px; background: var(--ff-glass);
}
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table th { color: var(--ff-muted); font-weight: 700; padding: 14px 16px; text-align: right; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table td { border-top: 1px solid var(--ff-line); padding: 14px 16px; text-align: right; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table tfoot td, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table tfoot th,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table tbody th,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .cart_totals table.shop_table tr td,
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .cart_totals table.shop_table tr th { border-top: 1px solid var(--ff-line); border-bottom: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table tr:first-child > th, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table tr:first-child > td { border-top: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table thead + tbody tr:first-child > td { border-top: 1px solid var(--ff-line); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.shop_table td.product-name a { color: var(--ff-text); font-weight: 700; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.cart img, .ff-theme .woocommerce-cart table.cart img { width: 72px; border-radius: 12px; background: var(--ff-tile); mix-blend-mode: normal; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.remove { color: var(--ff-danger-text) !important; border: 1px solid var(--ff-line); width: 30px; height: 30px; line-height: 27px; border-radius: 9px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) a.remove:hover { background: var(--ff-danger); color: #fff !important; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.cart td.actions .coupon .input-text { width: 200px; min-height: 48px; margin-left: 8px; border-color: var(--ff-line); }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .cart-collaterals .cart_totals, :is(.ff-theme .woocommerce-page, .ff-theme.woocommerce-page) .cart-collaterals .cart_totals { float: left; width: 46%; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .cart-collaterals h2 { font-size: 20px; margin-bottom: 14px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .wc-proceed-to-checkout a.checkout-button { width: 100%; min-height: 58px; font-size: 17px; margin-bottom: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) ul#shipping_method li { margin-bottom: 6px; }

.ff-theme .woocommerce-checkout #payment, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) #payment {
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 20px;
}
.ff-theme .woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--ff-line); padding: 18px; }
.ff-theme .woocommerce-checkout #payment div.payment_box { background: var(--ff-glass-2); color: var(--ff-text-2); border-radius: 12px; }
.ff-theme .woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--ff-glass-2); }
.ff-theme .woocommerce-checkout #payment div.form-row { padding: 18px; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #place_order { width: 100%; min-height: 58px; font-size: 17px; float: none; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) form.checkout_coupon, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) form.login, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) form.register {
	border: 1px solid var(--ff-line); border-radius: 20px; background: var(--ff-glass); padding: 22px;
}
.ff-theme #order_review_heading, .ff-theme .woocommerce-billing-fields h3, .ff-theme .woocommerce-additional-fields h3 { font-size: 20px; margin: 10px 0 16px; }

/* Select2 (country / state pickers) */
.ff-theme .select2-container--default .select2-selection--single {
	height: 50px; background: var(--ff-well); border: 1px solid var(--ff-line); border-radius: var(--ff-r-sm);
}
.ff-theme .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 48px; color: var(--ff-text); padding-right: 16px; padding-left: 36px; }
.ff-theme .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; left: 10px; right: auto; }
.ff-theme .select2-dropdown { background: #16171B; border: 1px solid var(--ff-line-2); border-radius: 12px; color: var(--ff-text); overflow: hidden; }
.ff-theme .select2-container--default .select2-results__option--highlighted[aria-selected],
.ff-theme .select2-container--default .select2-results__option--highlighted[data-selected] { background: var(--ff-accent); color: var(--ff-accent-ink); }
.ff-theme .select2-container--default .select2-results__option[aria-selected="true"] { background: var(--ff-glass-2); }
.ff-theme .select2-container--default .select2-search--dropdown .select2-search__field { background: var(--ff-well); border: 1px solid var(--ff-line); color: var(--ff-text); border-radius: 9px; }

/* My account */
.ff-theme .woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 26px; align-items: start; }
.ff-theme .woocommerce-account .woocommerce > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.ff-theme .woocommerce-account .woocommerce-MyAccount-navigation, .ff-theme .woocommerce-account .woocommerce-MyAccount-content { float: none; width: auto; }
.ff-theme .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 8px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 20px; }
.ff-theme .woocommerce-MyAccount-navigation li a { display: block; padding: 11px 14px; border-radius: 12px; color: var(--ff-text-2); font-weight: 600; }
.ff-theme .woocommerce-MyAccount-navigation li.is-active a, .ff-theme .woocommerce-MyAccount-navigation li a:hover { background: var(--ff-glass-2); color: #fff; }
.ff-theme .woocommerce-MyAccount-navigation li.is-active a { box-shadow: inset -3px 0 0 var(--ff-accent); }
.ff-theme .woocommerce-account:not(.logged-in) .woocommerce { display: block; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .col2-set .col-1, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .col2-set .col-2 { float: right; }

.ff-theme .blockUI.blockOverlay { background: rgba(8, 8, 10, .6) !important; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-customer-details address { border: 1px solid var(--ff-line); border-radius: 16px; padding: 16px; }

/* ---------- 12. Tools (plugin UI) ---------- */
.ff-tool {
	margin: 0 0 26px; padding: 30px 34px;
	background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 28px;
	box-shadow: var(--ff-inset), var(--ff-shadow); -webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur);
	scroll-margin-top: 120px;
}
.ff-tool-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ff-tool-head h2 { font-size: 23px; font-weight: 900; margin: 0; }
.ff-tool-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--ff-glass-2); color: var(--ff-accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ff-tool-icon-accent { background: var(--ff-accent); color: var(--ff-accent-ink); }
.ff-calc-form { max-width: 720px; }
.ff-calc-error { color: var(--ff-danger-text); margin: 12px 0 0; font-weight: 600; }
.ff-calc-result { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.ff-calc-main {
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 26px;
	background: var(--ff-accent); color: var(--ff-accent-ink); border-radius: 20px;
}
.ff-calc-main > div { display: flex; flex-direction: column; gap: 4px; }
.ff-calc-k { font-size: 13px; font-weight: 700; opacity: .75; }
.ff-calc-v { font-size: 16px; font-weight: 700; }
.ff-calc-v b { font-size: 38px; font-weight: 900; margin-left: 6px; }
.ff-calc-note { margin: 0; color: var(--ff-text-2); }
.ff-calc-products .ff-calc-k { display: block; margin-bottom: 10px; color: var(--ff-muted); opacity: 1; }
.ff-disclaimer { margin: 6px 0 0; font-size: 12px; color: var(--ff-dim); line-height: 2; }

.ff-quiz-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.ff-quiz-progress span { width: 44px; height: 6px; border-radius: 3px; background: var(--ff-glass-3); }
.ff-quiz-progress span.is-done { background: var(--ff-accent); }
.ff-quiz-progress em { font-style: normal; font-size: 13px; color: var(--ff-dim); margin-inline-start: 8px; }
.ff-quiz-step { border: 0; margin: 0; padding: 0; min-width: 0; }
.ff-quiz-step legend { padding: 0; font-size: 22px; font-weight: 800; line-height: 1.7; margin-bottom: 18px; color: var(--ff-text); }
.ff-quiz-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.ff-quiz-option {
	position: relative; display: flex; align-items: center; gap: 14px; min-height: 62px; padding: 0 20px;
	background: var(--ff-glass); border: 1px solid var(--ff-line-2); border-radius: 16px; color: var(--ff-text-2);
	font-size: 15px; font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.ff-quiz-option input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.ff-radio-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .25); flex-shrink: 0; position: relative; }
.ff-quiz-option.is-checked, .ff-quiz-option:has(input:checked) { border: 2px solid var(--ff-accent); background: var(--ff-glass-2); color: #fff; font-weight: 700; }
.ff-quiz-option.is-checked .ff-radio-dot, .ff-quiz-option:has(input:checked) .ff-radio-dot { border-color: var(--ff-accent); }
.ff-quiz-option.is-checked .ff-radio-dot::after, .ff-quiz-option:has(input:checked) .ff-radio-dot::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--ff-accent); }
.ff-quiz-option:has(input:focus-visible) { outline: 2px solid var(--ff-accent); outline-offset: 2px; }
.ff-quiz-nav { display: flex; gap: 12px; margin-top: 22px; }
.ff-quiz-nav [data-ff-next] { flex: 1; }
.ff-quiz-result h3 { font-size: 20px; margin-bottom: 8px; }
.ff-quiz-advice { color: var(--ff-text-2); }
.ff-quiz-result .ff-btn { margin-top: 14px; }

.ff-mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 14px; }
.ff-mini-card .ff-pps-label, .ff-mini-card .ff-pps-value { white-space: nowrap; }
.ff-mini-price .price, .ff-mini-price { display: flex; flex-wrap: wrap; gap: 0 6px; }
.ff-mini-card { display: flex; gap: 12px; padding: 12px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px; color: var(--ff-text); transition: border-color .15s ease, transform .15s ease; }
.ff-mini-card:hover { border-color: var(--ff-accent-line); transform: translateY(-2px); color: var(--ff-text); }
.ff-mini-img { width: 84px; height: 84px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: radial-gradient(110% 90% at 50% 25%, #fff 0%, var(--ff-tile) 72%); }
.ff-mini-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ff-mini-body { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; min-width: 0; flex: 1; }
.ff-mini-brand { font-size: 11px; color: var(--ff-dim); }
.ff-mini-name { font-size: 13px; font-weight: 700; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ff-mini-price { font-size: 14px; font-weight: 800; }
.ff-mini-price del { display: none; }
.ff-mini-price ins { text-decoration: none; }
.ff-mini-body .ff-pps { width: 100%; }

.ff-compare-scroll { overflow-x: auto; border: 1px solid var(--ff-line); border-radius: 24px; background: var(--ff-glass); }
.ff-compare-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.ff-compare-table th, .ff-compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--ff-line); text-align: center; font-size: 14px; vertical-align: middle; }
.ff-compare-table tbody th { text-align: right; color: var(--ff-muted); font-weight: 500; width: 170px; white-space: nowrap; }
.ff-compare-table tbody tr:nth-child(odd) { background: rgba(255, 255, 255, .02); }
.ff-compare-table tbody tr.is-diff td { color: #fff; font-weight: 700; }
.ff-compare-table tr.is-key th { color: var(--ff-text); font-weight: 800; }
.ff-compare-table td.is-best { color: var(--ff-accent-text) !important; font-weight: 900; }
.ff-compare-table td em { display: block; font-style: normal; font-size: 11px; font-weight: 700; color: var(--ff-accent); }
.ff-compare-table td del { display: block; font-size: 12px; color: var(--ff-dim); }
.ff-compare-table td ins { text-decoration: none; }
.ff-compare-head { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; padding-top: 8px; }
.ff-compare-head a { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--ff-text); font-weight: 700; line-height: 1.7; }
.ff-compare-head img { width: 96px; height: 96px; object-fit: contain; border-radius: 14px; background: var(--ff-tile); mix-blend-mode: normal; }
.ff-compare-x { position: absolute; top: 0; left: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--ff-glass-2); border: 1px solid var(--ff-line); color: var(--ff-text-2); cursor: pointer; font-size: 18px; line-height: 1; }
.ff-compare-x:hover { background: var(--ff-danger); color: #fff; }
.ff-compare-foot { margin-top: 14px; }

.ff-compare-bar {
	position: fixed; bottom: 18px; right: 24px; z-index: 95;
	display: flex; align-items: center; gap: 18px; padding: 12px 14px 12px 12px; padding-right: 22px;
	background: rgba(22, 22, 27, .82); border: 1px solid var(--ff-line-2); border-radius: 18px;
	-webkit-backdrop-filter: var(--ff-blur); backdrop-filter: var(--ff-blur); box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
	width: max-content; max-width: calc(100vw - 24px);
}
.ff-compare-bar[hidden] { display: none; }
.ff-compare-bar-text { font-size: 14px; font-weight: 600; }
.ff-compare-bar-text b { color: var(--ff-accent); font-size: 16px; }
.ff-compare-bar-actions { display: flex; gap: 8px; }

.ff-toast {
	position: fixed; top: 96px; left: 50%; z-index: 200; transform: translate(-50%, -10px); opacity: 0; pointer-events: none;
	padding: 12px 20px; border-radius: 14px; background: rgba(22, 22, 27, .92); border: 1px solid var(--ff-line-2);
	color: #fff; font-size: 14px; font-weight: 600; box-shadow: var(--ff-shadow); transition: all .2s ease;
}
.ff-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.ff-contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 26px; align-items: stretch; }
.ff-contact-item { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px; }
.ff-contact-item a, .ff-contact-item strong { font-size: 16px; font-weight: 800; color: var(--ff-text); }
.ff-contact-info > .ff-btn { align-self: center; justify-self: start; }

/* ---------- 13. Prose, article, comments, 404 ---------- */
.ff-prose { color: var(--ff-text-2); line-height: 2.2; font-size: 16px; }
.ff-prose h2 { font-size: 24px; margin: 1.6em 0 .6em; }
.ff-prose h3 { font-size: 20px; margin: 1.4em 0 .5em; }
.ff-prose ul, .ff-prose ol { padding-right: 22px; }
.ff-prose img { border-radius: 18px; }
.ff-prose blockquote { margin: 1.4em 0; padding: 16px 22px; border-right: 3px solid var(--ff-accent); background: var(--ff-glass); border-radius: 12px; }
.ff-prose a { text-decoration: underline; text-underline-offset: 4px; }
.ff-page-wc .ff-prose { font-size: 15px; line-height: 1.9; }
.ff-page-wc .ff-prose a:not(.button),
.ff-prose .ff-tool a, .ff-prose .ff-contact-info a, .ff-prose .ff-compare a, .ff-prose .ff-mini-card { text-decoration: none; }
.ff-prose .ff-tool, .ff-prose .ff-compare, .ff-prose .ff-contact-info { line-height: 1.9; font-size: 15px; }
.ff-prose > p:empty { display: none; }
.ff-article-cover { margin: 0 0 28px; border-radius: 26px; overflow: hidden; }
.ff-comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--ff-line); }
.ff-comments-title { font-size: 20px; margin-bottom: 18px; }
.ff-comment-list { list-style: none; padding: 0; }
.ff-comment-list .comment-body { padding: 16px 18px; margin-bottom: 12px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 16px; }
.ff-comment-list .avatar { border-radius: 50%; float: right; margin-left: 12px; }
.ff-404 { max-width: 720px; margin: 60px auto 0; padding: 56px 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ff-404-code { font-size: 88px; font-weight: 900; color: var(--ff-accent); line-height: 1; }
.ff-404 h1 { font-size: 28px; }
.ff-404 p { color: var(--ff-muted); }

/* ---------- 14. Footer & bottom nav ---------- */
.ff-footer { margin-top: 40px; padding: 56px 0 0; background: rgba(255, 255, 255, .03); border-top: 1px solid var(--ff-line); }
.ff-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 36px; }
.ff-footer-about { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.ff-footer-about p { margin: 0; font-size: 13px; line-height: 2.2; color: var(--ff-dim); max-width: 340px; }
.ff-footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--ff-muted); }
.ff-footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.ff-footer-contact .ff-icon { color: var(--ff-accent); margin-top: 5px; }
.ff-footer-contact a { color: var(--ff-text-2); }
.ff-footer-title { font-size: 15px; font-weight: 800; margin-bottom: 16px; }
.ff-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ff-footer-col a { font-size: 13px; color: var(--ff-dim); }
.ff-footer-col a:hover { color: #fff; }
.ff-trust-seals { display: flex; flex-wrap: wrap; gap: 12px; }
.ff-seal { min-width: 96px; min-height: 96px; display: flex; align-items: center; justify-content: center; padding: 6px; background: #fff; border-radius: 16px; }
.ff-seal img { max-width: 110px; }
.ff-seal-empty { background: transparent; border: 1px dashed var(--ff-line-2); color: var(--ff-dim); font-size: 12px; text-align: center; line-height: 1.8; }
.ff-social { display: flex; gap: 10px; margin-top: 16px; }
.ff-social a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--ff-glass); border: 1px solid var(--ff-line); color: var(--ff-text-2); }
.ff-social a:hover { color: var(--ff-accent-ink); background: var(--ff-accent); border-color: var(--ff-accent); }
.ff-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; min-height: 70px; border-top: 1px solid var(--ff-line); font-size: 12px; color: var(--ff-dim); }

.ff-bottom-nav { display: none; }

/* ---------- 15. Responsive ---------- */
@media (max-width: 1240px) {
	.ff-header-inner { gap: 16px; }
	.ff-menu a { padding: 0 9px; font-size: 14px; }
	.ff-hide-md { display: none; }
	.ff-cart-btn { padding: 0 14px; }
}

@media (max-width: 1100px) {
	.ff-menu-toggle, .ff-search-toggle { display: inline-flex; }
	.ff-header-inner { min-height: 70px; gap: 10px; }
	.ff-header-inner .ff-logo { margin-inline-end: auto; }
	.ff-nav {
		position: fixed; top: 0; right: 0; bottom: 0; z-index: 99; width: min(340px, 86vw);
		padding: 18px; overflow-y: auto; background: rgba(14, 14, 18, .97); border-left: 1px solid var(--ff-line);
		transform: translateX(105%); transition: transform .25s ease; visibility: hidden;
	}
	.ff-nav.is-open { transform: none; visibility: visible; }
	.ff-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
	.ff-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.ff-menu a { min-height: 50px; font-size: 16px; padding: 0 14px; }
	.ff-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; padding: 0 12px 0 0; }
	.ff-search {
		display: none; position: absolute; top: 100%; right: 0; left: 0; margin: 0 var(--ff-gutter); margin-top: 8px;
		background: rgba(18, 18, 22, .97); z-index: 5;
	}
	.ff-search.is-open { display: flex; }
	.ff-header-inner { position: relative; }
	.ff-account-btn { display: none; }
	.ff-cart-btn { height: 46px; }

	.ff-hero-inner { grid-template-columns: 1fr; min-height: 0; gap: 30px; }
	.ff-hero-visual { min-height: 400px; }
	.ff-goals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ff-theme ul.products.columns-4, .ff-theme ul.products.columns-5 { --ff-cols: 3; }
	.ff-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ff-bottom-nav {
		position: fixed; bottom: 0; right: 0; left: 0; z-index: 94; display: flex; justify-content: space-around;
		padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
		background: rgba(14, 14, 18, .86); border-top: 1px solid var(--ff-line);
		-webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
	}
	.ff-bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 0; font-size: 11px; font-weight: 600; color: var(--ff-dim); }
	.ff-bottom-nav a.is-current { color: var(--ff-accent); }
	body.ff-theme { padding-bottom: 72px; }
	.ff-compare-bar { bottom: 86px; }
}

@media (max-width: 900px) {
	.ff-shop-layout { grid-template-columns: minmax(0, 1fr); }
	.ff-shop-sidebar {
		position: fixed; top: 0; right: 0; bottom: 0; z-index: 110; width: min(360px, 90vw); padding: 16px; overflow-y: auto;
		background: rgba(14, 14, 18, .98); border-left: 1px solid var(--ff-line);
		transform: translateX(105%); transition: transform .25s ease; visibility: hidden;
	}
	.ff-shop-sidebar.is-open { transform: none; visibility: visible; }
	body.ff-filters-open::after { content: ""; position: fixed; inset: 0; z-index: 105; background: rgba(0, 0, 0, .55); }
	.ff-filters-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 18px; }
	.ff-filters { max-height: none; overflow: visible; padding: 18px; }
	.ff-filters-head { display: none; }
	.ff-filters-toggle { display: inline-flex; }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .woocommerce-ordering select { min-width: 0; width: 100%; }
	.ff-sort-label { display: none; }

	.ff-single-top { grid-template-columns: minmax(0, 1fr); gap: 26px; }
	.ff-single-media { position: static; }
	.ff-tools-teaser, .ff-promo-pair { grid-template-columns: minmax(0, 1fr); }
	.ff-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ff-consult { flex-direction: column; align-items: flex-start; }
	.ff-eco-band { padding: 24px; }
	.ff-theme .woocommerce-account .woocommerce { grid-template-columns: minmax(0, 1fr); }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .cart-collaterals .cart_totals, :is(.ff-theme .woocommerce-page, .ff-theme.woocommerce-page) .cart-collaterals .cart_totals { width: 100%; float: none; }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) .col2-set .col-1, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) .col2-set .col-2 { float: none; width: 100%; }
}

@media (max-width: 640px) {
	body.ff-theme { font-size: 14px; }
	.ff-hide-sm { display: none !important; }
	.ff-topbar-inner { min-height: 36px; font-size: 12px; }
	.ff-logo-fa { font-size: 18px; }
	.ff-logo-en { display: none; }
	.ff-logo-mark { width: 34px; height: 34px; }
	.ff-icon-btn { min-width: 42px; height: 42px; padding: 0 8px; border-radius: 12px; }
	.ff-cart-btn { height: 42px; padding: 0 12px; border-radius: 12px; }

	.ff-section { padding-top: 44px; }
	.ff-section-head h2 { font-size: 22px; }
	.ff-hero { padding-top: 18px; }
	.ff-hero-text { gap: 18px; }
	.ff-hero-text p { font-size: 15px; }
	.ff-hero-visual { min-height: 330px; padding: 24px; border-radius: 26px; }
	.ff-float { padding: 10px 13px; }
	.ff-float b { font-size: 15px; }
	.ff-float-1 { top: 16px; right: 14px; }
	.ff-float-2 { bottom: 16px; left: 14px; }
	.ff-float-3 { display: none; }
	.ff-btn-lg { min-height: 52px; padding: 0 22px; font-size: 15px; }

	.ff-goals { gap: 10px; }
	.ff-goal { min-height: 0; padding: 16px; gap: 16px; border-radius: 18px; }
	.ff-goal-icon { width: 42px; height: 42px; border-radius: 12px; }
	.ff-goal-text b { font-size: 15px; }
	.ff-goal-text small, .ff-goal-arrow { display: none; }
	.ff-teaser, .ff-promo, .ff-consult, .ff-tool { padding: 22px 20px; border-radius: 22px; }

	.ff-theme ul.products, .ff-theme ul.products.columns-3, .ff-theme ul.products.columns-4 { --ff-cols: 2; gap: 12px; }
	.ff-theme ul.products li.product.ff-card { border-radius: 18px; }
	.ff-card-media { margin: 8px 8px 0; border-radius: 12px; }
	.ff-card-body { padding: 10px 12px 12px; gap: 8px; }
	.ff-theme ul.products li.product .ff-card-title { font-size: 13px; }
	.ff-card-brand, .ff-card-servings { font-size: 11px; }
	.ff-pps { padding: 6px 8px; }
	.ff-pps-label { font-size: 10px; }
	.ff-pps-value { font-size: 12px; }
	.ff-theme ul.products li.product .price { font-size: 15px; }
	.ff-card-actions .button { min-height: 42px; font-size: 12px; padding: 0 8px; }
	.ff-compare-toggle span { display: none; }
	.ff-compare-toggle { padding: 0 8px; }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) span.onsale, .ff-badge-out { font-size: 10px; padding: 3px 7px; }

	.ff-posts { grid-template-columns: minmax(0, 1fr); }
	.ff-footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
	.ff-form-row { grid-template-columns: minmax(0, 1fr); }
	.ff-quiz-options { grid-template-columns: minmax(0, 1fr); }
	.ff-quiz-step legend { font-size: 18px; }
	.ff-calc-v b { font-size: 30px; }
	.ff-trust-tiles { grid-template-columns: minmax(0, 1fr); }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product p.price, :is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product span.price { font-size: 26px; }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) div.product .woocommerce-tabs .panel { padding: 20px 18px; }
	.ff-compare-bar { left: 12px; right: 12px; transform: none; width: auto; justify-content: space-between; gap: 10px; padding: 10px 12px; }
	.ff-compare-bar-text { font-size: 12px; }
	:is(.ff-theme .woocommerce, .ff-theme.woocommerce) table.cart td.actions .coupon .input-text { width: 100%; margin: 0 0 8px; }
}

@media (max-width: 782px) {
	.admin-bar .ff-header { top: 46px; }
}
@media (max-width: 600px) {
	.admin-bar .ff-header { top: 0; }
}

/* Lighter effects on small or low-power devices */
@media (max-width: 640px), (prefers-reduced-transparency: reduce) {
	.ff-glass, .ff-filters, .ff-price-box, .ff-tool, .ff-pill { -webkit-backdrop-filter: none; backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

.ff-avatar { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--ff-glass-3); color: var(--ff-text); font-weight: 800; font-size: 15px; text-align: center; flex-shrink: 0; }
:is(.ff-theme .woocommerce, .ff-theme.woocommerce) #reviews #comments ol.commentlist li .ff-avatar { position: absolute; top: 0; right: 0; }

/* =========================================================
   Stage 2 — coach panel, club, reviews, Q&A, plans
   ========================================================= */
.ff-promo-wide { flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; }
.ff-promo-wide > div { display: flex; flex-direction: column; gap: 10px; }
.ff-promo-wide p { max-width: 720px; }

.ff-trio { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.ff-trio-card { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 28px; }
.ff-trio-card h3 { font-size: 20px; }
.ff-trio-card p { margin: 0; color: var(--ff-muted); font-size: 14px; line-height: 2; flex: 1; }

.ff-account-lines { display: flex; flex-direction: column; line-height: 1.35; text-align: right; }
.ff-account-lines small { font-size: 11px; color: var(--ff-accent-text); font-weight: 700; }
.ff-account-lines small .woocommerce-Price-currencySymbol { color: inherit; }

.ff-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 0 0 20px; }
.ff-stat { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px; }
.ff-stat span { font-size: 13px; color: var(--ff-dim); }
.ff-stat b { font-size: 22px; font-weight: 900; }
.ff-stat-accent { background: var(--ff-accent); border-color: var(--ff-accent); color: var(--ff-accent-ink); }
.ff-stat-accent span, .ff-stat-accent .woocommerce-Price-currencySymbol { color: rgba(20, 16, 12, .75); }
.ff-stat-accent b { color: var(--ff-accent-ink); }

.ff-coach-code { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; margin-bottom: 16px; background: var(--ff-glass); border: 1px dashed var(--ff-accent-line); border-radius: 20px; }
.ff-coach-code span { font-size: 13px; color: var(--ff-dim); }
.ff-coach-code b { font-size: 30px; font-weight: 900; letter-spacing: 2px; color: var(--ff-accent-text); text-align: right; }
.ff-coach-code small { color: var(--ff-muted); }
.ff-coach-code em { font-style: normal; color: var(--ff-danger-text); font-weight: 700; }
.ff-coach-panel h3, .ff-club h3 { font-size: 18px; margin: 24px 0 12px; }
.ff-small { font-size: 12px; line-height: 2; }
.ff-status { display: inline-flex; padding: 3px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; background: var(--ff-glass-2); color: var(--ff-text-2); }
.ff-status-earned { background: var(--ff-accent-soft); color: var(--ff-accent-text); }
.ff-status-paid { background: rgba(61, 214, 140, .14); color: var(--ff-ok); }
.ff-status-void { background: rgba(224, 70, 60, .12); color: var(--ff-danger-text); }
.ff-plus { color: var(--ff-ok); font-weight: 700; }
.ff-minus { color: var(--ff-danger-text); font-weight: 700; }

.ff-club-box {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin: 0 0 22px; padding: 16px 20px;
	background: var(--ff-accent-soft); border: 1px solid var(--ff-accent-line); border-radius: 16px;
}
.ff-club-box > span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.ff-club-box .ff-icon { color: var(--ff-accent); }
.ff-club-box small { color: var(--ff-muted); }
.ff-reminder-optin { margin: 0 0 16px !important; padding: 12px 14px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 12px; }
.ff-reminder-optin label { display: flex !important; align-items: center; gap: 10px; color: var(--ff-text-2); }

.ff-dash-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; }
.ff-dash-link { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px; color: var(--ff-text); }
.ff-dash-link:hover { border-color: var(--ff-accent-line); color: var(--ff-text); }
.ff-dash-link span { font-size: 13px; color: var(--ff-dim); }
.ff-dash-link b { font-size: 17px; font-weight: 800; }

/* Review summary + sub-ratings */
.ff-review-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; padding: 20px 22px; margin-bottom: 24px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 20px; }
.ff-review-total { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; min-width: 130px; }
.ff-review-total > b { font-size: 42px; font-weight: 900; line-height: 1.1; }
.ff-review-total > span { font-size: 13px; color: var(--ff-dim); }
.ff-review-total .star-rating { float: none !important; margin: 4px 0 0; }
.ff-review-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 10px; }
.ff-review-bar { display: grid; grid-template-columns: 90px minmax(0, 1fr) 36px; align-items: center; gap: 12px; font-size: 13px; color: var(--ff-text-2); }
.ff-review-bar i { display: block; height: 8px; border-radius: 4px; background: var(--ff-glass-3); overflow: hidden; }
.ff-review-bar em { display: block; height: 100%; background: var(--ff-accent); border-radius: 4px; }
.ff-review-bar b { text-align: left; }
.ff-subrate-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ff-subrate-chips span { padding: 4px 10px; border-radius: 8px; background: var(--ff-glass-2); font-size: 12px; color: var(--ff-muted); }
.ff-subrate-chips b { color: var(--ff-text); }
.ff-subrate-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 10px 0 16px; padding: 14px; border: 1px solid var(--ff-line); border-radius: 14px; }
.ff-subrate-title { grid-column: 1 / -1; font-weight: 700; font-size: 14px; }
.ff-subrate-title small { color: var(--ff-dim); font-weight: 500; }
.ff-subrate-field { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.ff-theme .ff-subrate-field select { min-height: 44px; font-size: 13px; }

/* Q&A */
.ff-qa-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ff-qa-item { padding: 18px 20px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 18px; display: flex; flex-direction: column; gap: 12px; }
.ff-qa-q, .ff-qa-a { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 4px 12px; align-items: start; }
.ff-qa-q p, .ff-qa-a p { margin: 0; line-height: 2; }
.ff-qa-q p { color: var(--ff-text); font-weight: 700; }
.ff-qa-a p { color: var(--ff-text-2); }
.ff-qa-q small, .ff-qa-a small { grid-column: 2; font-size: 12px; color: var(--ff-dim); }
.ff-qa-tag { padding: 3px 10px; border-radius: 8px; background: var(--ff-glass-3); font-size: 12px; font-weight: 800; color: var(--ff-text-2); }
.ff-qa-tag-accent { background: var(--ff-accent); color: var(--ff-accent-ink); }
.ff-qa-form { padding: 22px; border: 1px solid var(--ff-line); border-radius: 20px; background: var(--ff-glass); }
.ff-qa-form h3 { font-size: 17px; margin-bottom: 14px; }

/* Free plans */
.ff-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 20px 0; }
.ff-plan-card { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 22px; }
.ff-plan-card h3 { font-size: 18px; margin: 0; }
.ff-plan-card p { margin: 0; font-size: 13px; }
.ff-plan-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--ff-glass-2); color: var(--ff-accent); display: inline-flex; align-items: center; justify-content: center; }
.ff-prose .ff-plan-card a { text-decoration: none; }
.ff-prose .wp-block-table { margin: 0 0 24px; overflow-x: auto; }
.ff-prose .wp-block-table table { width: 100%; border-collapse: collapse; background: var(--ff-glass); border: 1px solid var(--ff-line); border-radius: 16px; overflow: hidden; font-size: 14px; }
.ff-prose .wp-block-table th, .ff-prose .wp-block-table td { padding: 10px 14px; border-bottom: 1px solid var(--ff-line); text-align: right; }
.ff-prose .wp-block-table thead th { background: var(--ff-glass-2); color: var(--ff-text); }
.ff-print-row { margin-top: 28px; }

@media (max-width: 900px) {
	.ff-promo-wide { flex-direction: column; align-items: flex-start; }
	.ff-subrate-fields { grid-template-columns: minmax(0, 1fr); }
}

@media print {
	body.ff-theme { background: #fff !important; color: #000; padding: 0 !important; font-size: 12pt; }
	body.ff-theme::before, .ff-topbar, .ff-header, .ff-footer, .ff-bottom-nav, .ff-compare-bar, .ff-print-row, .ff-toast { display: none !important; }
	.ff-prose, .ff-prose p, .ff-prose li, .ff-page-head h1 { color: #000 !important; }
	.ff-prose .wp-block-table table { background: #fff; border-color: #999; }
	.ff-prose .wp-block-table th, .ff-prose .wp-block-table td { border-color: #bbb; color: #000; }
	.ff-prose .wp-block-table thead th { background: #eee; }
	a { color: #000 !important; }
}
