/* =============================================================================
   VANTAIGE — AI Tools Archive  v3.3
   File: [child-theme]/assets/css/archive-ai-tools.css
   Loaded after vantaige-theme.css (dependency: 'vantaige-theme-system').

   SPECIFICITY NOTES:
   - WordPress "Additional CSS" / Customize CSS injects a <style> in <head>
     with light-mode JSF button styles. We beat it by:
     (a) Using [data-theme="dark"] scope (+0,1,0 specificity)
     (b) Using !important where the inline CSS also uses it
   - The inline CSS uses IDs (#jsf-sorting-tabs etc.) — these are Elementor
     widget container IDs set in the JSF page. We match or beat them.
============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   CONTAINER — redefined here since home styles only load on front page
───────────────────────────────────────────────────────────────────────────── */
.vhp-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   ORBS — redefined here for same reason
───────────────────────────────────────────────────────────────────────────── */
.vhp-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	will-change: opacity;
}
.vhp-orb--green  { top: 20%;    left: -10rem;  width: 28rem; height: 28rem; background: hsla(145,80%,50%,0.07); }
.vhp-orb--purple { bottom: 15%; right: -10rem; width: 28rem; height: 28rem; background: hsla(250,60%,55%,0.11); }


/* ─────────────────────────────────────────────────────────────────────────────
   SHARED TEXT HELPERS — redefined here for same reason
───────────────────────────────────────────────────────────────────────────── */
.vhp-accent-text { color: hsl(145, 80%, 50%); }
[data-theme="light"] .vhp-accent-text { color: var(--vt-primary); }


/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.vat-hero {
	position: relative;
	padding: 5rem 0 4rem;
	overflow: hidden;
}
.vat-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right,  rgba(255,255,255,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 52px 52px;
	-webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
	mask-image:         linear-gradient(to bottom, black 55%, transparent 100%);
	pointer-events: none;
}
[data-theme="light"] .vat-hero__grid { display: none; }

.vat-hero .vhp-container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
}
.vat-hero__content {
	max-width: 680px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.vat-hero__title {
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--vt-fg);
	margin: 0 0 1.25rem;
}

/* Tag pill */
.vhp-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	border: 1px solid hsla(145,80%,50%,0.3);
	background: hsla(145,80%,50%,0.07);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: hsl(145, 80%, 50%);
}
.vhp-hero__tag svg { color: hsl(145, 80%, 50%); }
[data-theme="light"] .vhp-hero__tag {
	border-color: rgba(100,64,251,0.25);
	background: rgba(100,64,251,0.06);
	color: var(--vt-primary);
}
[data-theme="light"] .vhp-hero__tag svg { color: var(--vt-primary); }

/* Description */
.vhp-hero__desc {
	max-width: 34rem;
	font-size: 1rem;
	color: var(--vt-muted);
	margin-bottom: 2rem;
	line-height: 1.75;
	text-align: center;
}
/* Stats */
.vhp-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 0.5rem;
}
.vhp-hero__stat {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--vt-muted);
}
.vhp-hero__stat svg { color: hsl(145, 80%, 50%); flex-shrink: 0; }
[data-theme="light"] .vhp-hero__stat svg { color: var(--vt-primary); }


/* ─────────────────────────────────────────────────────────────────────────────
   SEARCH BAR — single outer border, no second stroke on the input
   vantaige-theme.css section 26 adds border:1px solid to all inputs in light
   mode. We beat that with !important on the input resets.
───────────────────────────────────────────────────────────────────────────── */
.vat-search-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	max-width: 540px;
	background: var(--vt-card);
	border: 1px solid var(--vt-border);
	border-radius: var(--vt-radius);
	padding: 0 1.25rem;
	margin-bottom: 2.5rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.vat-search-wrap:focus-within {
	border-color: hsl(145, 80%, 50%);
	box-shadow: 0 0 0 3px hsla(145, 80%, 50%, 0.15);
}
[data-theme="light"] .vat-search-wrap {
	background: #fff;
	box-shadow: var(--vt-shadow-card);
}
[data-theme="light"] .vat-search-wrap:focus-within {
	border-color: var(--vt-primary);
	box-shadow: 0 0 0 3px rgba(100,64,251,0.1);
}
.vat-search-wrap__icon { color: var(--vt-muted); flex-shrink: 0; }
.vat-search-wrap__input {
	flex: 1;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	font-size: 0.9rem;
	color: var(--vt-fg);
	padding: 0.9rem 0;
	font-family: inherit;
}
.vat-search-wrap__input::placeholder { color: var(--vt-muted); }
.vat-search-wrap__input:focus,
.vat-search-wrap__input:active {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}


/* ─────────────────────────────────────────────────────────────────────────────
   SECTION SPACING
───────────────────────────────────────────────────────────────────────────── */
.vat-top-tools,
.vat-taxonomy-types,
.vat-taxonomy-usage,
.vat-directory {
	padding: 3.5rem 0;
	border-top: 1px solid var(--vt-border);
}


/* ─────────────────────────────────────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────────────────────────────────────── */
.vat-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.vat-section-header h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--vt-fg);
	margin: 0 0 0.35rem;
	line-height: 1.2;
}
.vat-section-header p { color: var(--vt-muted); font-size: 0.92rem; margin: 0; }
.vat-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: hsl(145, 80%, 50%);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: gap 0.2s;
}
.vat-link-arrow:hover { gap: 0.6rem; }
[data-theme="light"] .vat-link-arrow { color: var(--vt-primary); }

.vat-tax-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: hsl(145, 80%, 50%);
	margin: 0 0 1.25rem;
}
[data-theme="light"] .vat-tax-label { color: var(--vt-primary); }


/* ─────────────────────────────────────────────────────────────────────────────
   TOOL TYPE GRID
   Theme-aware: --vt-card / --vt-border / --vt-fg / --vt-muted all switch
   automatically via the CSS variable system in vantaige-theme.css.
───────────────────────────────────────────────────────────────────────────── */
.vat-type-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}
.vat-type-card {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1rem 1rem 0.875rem 1.125rem;
	background: var(--vt-card);
	border: 1px solid var(--vt-border);
	border-left: 3px solid var(--c, var(--vt-primary));
	border-radius: var(--vt-radius);
	text-decoration: none;
	transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.vat-type-card:hover {
	border-color: var(--c, var(--vt-primary));
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
[data-theme="light"] .vat-type-card { background: #fff; box-shadow: var(--vt-shadow-card); }
[data-theme="light"] .vat-type-card:hover { box-shadow: var(--vt-shadow-hover); }

.vat-type-card__icon { display: block; width: 26px; height: 26px; }
.vat-type-card__icon svg { width: 100%; height: 100%; stroke: var(--c, var(--vt-primary)); fill: none; }
.vat-type-card__name { font-size: 0.84rem; font-weight: 600; color: var(--vt-fg); line-height: 1.3; }
.vat-type-card__count { font-size: 0.7rem; color: var(--vt-muted); }


/* ─────────────────────────────────────────────────────────────────────────────
   USAGE CATEGORY — 2-ROW CAROUSEL with prev/next arrows + icons

   Structure (rendered in PHP):
     .vat-usage-carousel
       button#vat-usage-prev.vat-usage-arrow
       div#vat-usage-slider.vat-usage-slider
         div.vat-usage-grid
           a.vat-usage-pill (× N)
             span.vat-usage-pill__icon
             span.vat-usage-pill__label
       button#vat-usage-next.vat-usage-arrow

   Pills use white text + colored border in dark mode.
   In light mode they use the color as text/border on white bg.
───────────────────────────────────────────────────────────────────────────── */
.vat-usage-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* ── Arrow buttons — explicit size + background so they are always visible ── */
.vat-usage-arrow {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	min-width: 36px; /* prevent flex squish */
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: var(--vt-card);
	border: 1px solid var(--vt-border);
	border-radius: 50%;
	cursor: pointer;
	color: var(--vt-fg); /* explicit — not muted, so it's clearly visible */
	transition: border-color 0.15s, color 0.15s, background 0.15s, opacity 0.15s;
	padding: 0;
}
.vat-usage-arrow:hover {
	border-color: hsl(145, 80%, 50%);
	color: hsl(145, 80%, 50%);
	background: hsla(145, 80%, 50%, 0.07);
}
[data-theme="light"] .vat-usage-arrow {
	background: #fff;
	border-color: var(--vt-border);
	color: var(--vt-secondary);
	box-shadow: var(--vt-shadow-card);
}
[data-theme="light"] .vat-usage-arrow:hover {
	border-color: var(--vt-primary);
	color: var(--vt-primary);
}
.vat-usage-arrow svg { width: 16px; height: 16px; pointer-events: none; flex-shrink: 0; }

/* Scrollable track */
.vat-usage-slider {
	flex: 1;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}
.vat-usage-slider::-webkit-scrollbar { display: none; }
.vat-usage-slider.is-dragging { cursor: grabbing; }

/*
 * 2-row CSS grid. grid-auto-flow:column means items fill top→bottom,
 * then move to the next column — creating 2 rows × N columns.
 */
.vat-usage-grid {
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	gap: 0.5rem;
	padding: 0.25rem 0.25rem 0.5rem;
}

/* ── Individual pill — white text + colored border in dark, colored text in light ── */
.vat-usage-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	/*
	 * Dark mode: subtle colored border, white text — legible on dark bg.
	 * We do NOT use the color as text since neon greens/pinks are hard to read
	 * on a dark background at small font sizes.
	 */
	border: 1px solid var(--c, hsl(250,60%,55%));
	background: transparent;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	/* White text in dark mode — legible regardless of accent color */
	color: rgba(255,255,255,0.85);
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.vat-usage-pill:hover {
	background: color-mix(in srgb, var(--c, hsl(250,60%,55%)) 15%, transparent);
	color: #fff;
	border-color: var(--c, hsl(250,60%,55%));
}

/* Light mode: colored text + colored border on white background */
[data-theme="light"] .vat-usage-pill {
	color: var(--c, var(--vt-primary));
	background: color-mix(in srgb, var(--c, var(--vt-primary)) 6%, transparent);
}
[data-theme="light"] .vat-usage-pill:hover {
	background: color-mix(in srgb, var(--c, var(--vt-primary)) 14%, transparent);
	color: var(--c, var(--vt-primary));
}

/* Pill icon + label */
.vat-usage-pill__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	opacity: 0.8;
}
.vat-usage-pill__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.vat-usage-pill__label { line-height: 1; }


/* ─────────────────────────────────────────────────────────────────────────────
   JSF FILTER BAR
   ─────────────────────────────────────────────────────────────────────────────
   STRATEGY: Target actual Elementor data-id attributes and raw JSF class names
   from the rendered HTML. No manual Elementor class assignment required.

   Actual HTML structure (from live page inspection):
     [data-id="7bf11ae"].v-toolbar-container   ← outer toolbar container
       [data-id="3f4e85e"]                      ← SORT group (radio: Top/Recent)
         [data-id="c88b05f"]  .jet-radio-list   ← sorting filter widget
       [data-id="f97dcad"]                      ← VERIFIED group (checkbox)
         [data-id="abc4664"]  .jet-checkboxes-list  [data-query-var="_ai_tool_verified"]
       [data-id="4c3549e"]                      ← PRICING group (checkboxes)
         [data-id="8ad9cd4"]  .jet-checkboxes-list  [data-query-var="pricing_model"]

   Selectors use [data-id] (attribute, specificity 0,1,0) + JSF classes,
   which beats Elementor's own class selectors and wp-custom-css class rules.
   !important used only where JSF's own inline CSS uses it.
───────────────────────────────────────────────────────────────────────────── */

/*
 * ── TOOLBAR OUTER CONTAINER ──
 * Targets the Elementor container that wraps all three filter columns.
 * .v-toolbar-container is the custom CSS class on [data-id="7bf11ae"].
 * We also target by data-id as fallback.
 */
.v-toolbar-container,
[data-id="7bf11ae"] {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap;
	background: hsl(240, 12%, 10%) !important;
	border: 1px solid hsl(240, 8%, 18%) !important;
	border-radius: 1rem !important;
	padding: 0.6rem 1.25rem !important;
	margin-bottom: 2rem;
	gap: 0 !important;
}
[data-theme="light"] .v-toolbar-container,
[data-theme="light"] [data-id="7bf11ae"] {
	background: #fff !important;
	border-color: #e2e8f0 !important;
	box-shadow: 0 1px 3px rgba(15,23,42,0.08) !important;
}

/*
 * ── INNER COLUMN CONTAINERS ──
 * The three child containers (sort, verified, pricing) need to be
 * inline-flex rows, not stacked columns.
 */
[data-id="7bf11ae"] > .e-con-inner { display: flex !important; flex-wrap: wrap; align-items: center; gap: 0 !important; width: 100%; }
[data-id="3f4e85e"],
[data-id="f97dcad"],
[data-id="4c3549e"] {
	display: flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
	padding: 0.25rem 1rem 0.25rem 0 !important;
	margin-right: 0.875rem !important;
	border-right: 1px solid hsl(240, 8%, 18%) !important;
	/* Reset Elementor flex-column default */
	flex-direction: row !important;
	flex-wrap: wrap !important;
	min-width: unset !important;
	width: auto !important;
}
/* Last child — no right divider */
[data-id="4c3549e"] {
	border-right: none !important;
	margin-right: 0 !important;
	padding-right: 0 !important;
}
[data-theme="light"] [data-id="3f4e85e"],
[data-theme="light"] [data-id="f97dcad"],
[data-theme="light"] [data-id="4c3549e"] {
	border-right-color: #e2e8f0 !important;
}
[data-theme="light"] [data-id="4c3549e"] { border-right: none !important; }

/* Remove Elementor widget container default padding inside the groups */
[data-id="3f4e85e"] .elementor-widget-container,
[data-id="f97dcad"] .elementor-widget-container,
[data-id="4c3549e"] .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

/*
 * ── JSF LISTS → INLINE FLEX ROWS ──
 * The JSF plugin renders a <form> > <fieldset> > multiple .jet-*__row divs.
 * We flatten the whole chain to a flex row.
 */
[data-id="3f4e85e"] .jet-radio-list,
[data-id="f97dcad"] .jet-checkboxes-list,
[data-id="4c3549e"] .jet-checkboxes-list,
[data-id="3f4e85e"] .jet-radio-list-wrapper,
[data-id="4c3549e"] .jet-checkboxes-list-wrapper,
[data-id="f97dcad"] .jet-checkboxes-list-wrapper,
[data-id="3f4e85e"] fieldset,
[data-id="f97dcad"] fieldset,
[data-id="4c3549e"] fieldset,
[data-id="3f4e85e"] form,
[data-id="f97dcad"] form,
[data-id="4c3549e"] form {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	gap: 0.4rem !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: auto !important;
}
[data-id="3f4e85e"] .jet-radio-list__row,
[data-id="f97dcad"] .jet-checkboxes-list__row,
[data-id="4c3549e"] .jet-checkboxes-list__row { display: inline-flex !important; margin: 0 !important; }

/*
 * ── HIDE NATIVE INPUTS ──
 * Visually hidden but accessible — the visible <label> wraps each input
 * so keyboard focus and screen readers still work.
 */
[data-id="3f4e85e"] .jet-radio-list__input,
[data-id="f97dcad"] .jet-checkboxes-list__input,
[data-id="4c3549e"] .jet-checkboxes-list__input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* ── Hide the default JSF check decorator (we style the whole button as a pill) ── */
[data-id="3f4e85e"] .jet-radio-list__decorator,
[data-id="f97dcad"] .jet-checkboxes-list__decorator,
[data-id="4c3549e"] .jet-checkboxes-list__decorator { display: none !important; }

/*
 * ── PILL BASE STATE ──
 * Style: transparent bg, muted text, subtle border. Uppercase. Rounded.
 * Matches the .filter-btn design from the original React prototype.
 */
[data-id="3f4e85e"] .jet-radio-list__button,
[data-id="f97dcad"] .jet-checkboxes-list__button,
[data-id="4c3549e"] .jet-checkboxes-list__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 5px 14px !important;
	height: auto !important;
	border-radius: 9999px !important;
	border: 1px solid #2a2a2a !important;
	background: transparent !important;
	color: #a0a0a0 !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1 !important;
	gap: 0 !important;
	box-sizing: border-box !important;
	transition: all 0.15s !important;
}

/* Light mode base */
[data-theme="light"] [data-id="3f4e85e"] .jet-radio-list__button,
[data-theme="light"] [data-id="f97dcad"] .jet-checkboxes-list__button,
[data-theme="light"] [data-id="4c3549e"] .jet-checkboxes-list__button {
	border-color: #e2e8f0 !important;
	color: #4F547B !important;
	background: #fff !important;
}

/* ── PILL HOVER ── */
[data-id="3f4e85e"] .jet-radio-list__item:hover .jet-radio-list__button,
[data-id="4c3549e"] .jet-checkboxes-list__item:hover .jet-checkboxes-list__button {
	border-color: rgba(0,255,133,0.4) !important;
	color: #00FF85 !important;
	background: transparent !important;
}
[data-theme="light"] [data-id="3f4e85e"] .jet-radio-list__item:hover .jet-radio-list__button,
[data-theme="light"] [data-id="4c3549e"] .jet-checkboxes-list__item:hover .jet-checkboxes-list__button {
	border-color: #6440FB !important;
	color: #6440FB !important;
	background: rgba(100,64,251,0.06) !important;
}

/* ── PILL CHECKED/ACTIVE ── */
[data-id="3f4e85e"] .jet-radio-list__input:checked + .jet-radio-list__button,
[data-id="4c3549e"] .jet-checkboxes-list__input:checked + .jet-checkboxes-list__button {
	background: rgba(0,255,133,0.1) !important;
	border-color: #00FF85 !important;
	color: #00FF85 !important;
	font-weight: 700 !important;
}
[data-theme="light"] [data-id="3f4e85e"] .jet-radio-list__input:checked + .jet-radio-list__button,
[data-theme="light"] [data-id="4c3549e"] .jet-checkboxes-list__input:checked + .jet-checkboxes-list__button {
	background: #6440FB !important;
	border-color: #6440FB !important;
	color: #fff !important;
}

/*
 * ── VERIFIED TOGGLE [data-id="f97dcad"] ──
 * Always blue — overrides the green active state above for this specific group.
 * Icon: filled blue circle with white tick via ::before pseudo-element.
 */
[data-id="f97dcad"] .jet-checkboxes-list__button {
	gap: 0.45rem !important;
	padding: 5px 14px 5px 10px !important;
	border-color: rgba(59,130,246,0.35) !important;
	color: #60A5FA !important;
	background: transparent !important;
}

/* Blue verified badge icon */
[data-id="f97dcad"] .jet-checkboxes-list__button::before {
	content: '' !important;
	display: inline-block !important;
	flex-shrink: 0 !important;
	width: 14px !important;
	height: 14px !important;
	background-color: #3B82F6 !important;
	border-radius: 50% !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") !important;
	background-size: 9px 9px !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

/* Verified hover */
[data-id="f97dcad"] .jet-checkboxes-list__item:hover .jet-checkboxes-list__button {
	border-color: #3B82F6 !important;
	color: #3B82F6 !important;
	background: rgba(59,130,246,0.08) !important;
}

/* Verified checked/active */
[data-id="f97dcad"] .jet-checkboxes-list__input:checked + .jet-checkboxes-list__button {
	background: rgba(59,130,246,0.15) !important;
	border-color: #3B82F6 !important;
	color: #3B82F6 !important;
	font-weight: 700 !important;
}

/* ── Result count / pulse dot ── */
.vat-fb-count {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: auto;
	padding-left: 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: hsl(240, 5%, 65%);
	white-space: nowrap;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.vat-fb-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #00FF85;
	flex-shrink: 0;
	box-shadow: 0 0 8px rgba(0,255,133,0.5);
	animation: vat-pulse 2s ease-in-out infinite;
}
@keyframes vat-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.6; transform: scale(1.3); }
}
[data-theme="light"] .vat-fb-dot { box-shadow: none; background: #6440FB; animation: none; }

/*
 * ── RESPONSIVE — filter bar stacks vertically on mobile ──
 * The [data-id] column containers become full-width with bottom dividers.
 */
@media (max-width: 768px) {
	.v-toolbar-container,
	[data-id="7bf11ae"] {
		flex-direction: column !important;
		align-items: flex-start !important;
		border-radius: 0.75rem !important;
		padding: 1rem !important;
		gap: 0.75rem !important;
	}
	[data-id="7bf11ae"] > .e-con-inner { flex-direction: column !important; gap: 0.75rem !important; }
	[data-id="3f4e85e"],
	[data-id="f97dcad"],
	[data-id="4c3549e"] {
		border-right: none !important;
		border-bottom: 1px solid hsl(240, 8%, 18%) !important;
		padding-right: 0 !important;
		padding-bottom: 0.75rem !important;
		margin-right: 0 !important;
		width: 100% !important;
	}
	[data-id="4c3549e"] { border-bottom: none !important; padding-bottom: 0 !important; }
	[data-theme="light"] [data-id="3f4e85e"],
	[data-theme="light"] [data-id="f97dcad"] { border-bottom-color: #e2e8f0 !important; }
}


/* ─────────────────────────────────────────────────────────────────────────────
   ELEMENTOR WIDGET WRAP — prevent white background injection
───────────────────────────────────────────────────────────────────────────── */
.vhp-tools__widget-wrap { background: transparent; }
.vhp-tools__widget-wrap .e-con,
.vhp-tools__widget-wrap .elementor-section,
.vhp-tools__widget-wrap .elementor-container { background: transparent !important; }


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.vat-type-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
	.vat-hero { padding: 4rem 0 3rem; }
	.vat-hero__content { text-align: left; align-items: flex-start; }
	.vat-hero .vhp-container { justify-content: flex-start; }
	.vhp-hero__stats { justify-content: flex-start; }
	.vhp-hero__desc { text-align: left; }
	.vat-search-wrap { max-width: 100%; }
	.vat-type-grid { grid-template-columns: repeat(2, 1fr); }
	.vat-section-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
	.vat-usage-arrow { display: none; }
}

@media (max-width: 480px) {
	.vat-type-grid { gap: 0.5rem; }
	.vat-hero { padding: 3.5rem 0 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
	.vat-search-wrap, .vat-link-arrow,
	.vat-type-card, .vat-usage-pill,
	.vat-usage-arrow { transition-duration: 0.01ms !important; }
}