/**
 * Live TV Services - main stylesheet.
 * Bright premium e-commerce design system.
 */

/* ---------------------------------------------------------------
 * Design tokens
 * ------------------------------------------------------------- */
:root {
	--ltv-white: #ffffff;
	--ltv-bg: #f8fafc;
	--ltv-bg-soft: #f1f5f9;
	--ltv-text: #111827;
	--ltv-text-soft: #64748b;
	--ltv-border: #e5e7eb;
	--ltv-accent: #635bff;
	--ltv-accent-hover: #5148e5;
	--ltv-accent-soft: #eef2ff;
	--ltv-navy: #0f172a;
	--ltv-success: #059669;
	--ltv-danger: #dc2626;

	--ltv-radius-sm: 8px;
	--ltv-radius: 14px;
	--ltv-radius-lg: 20px;

	--ltv-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
	--ltv-shadow: 0 4px 16px rgba(15, 23, 42, .06);
	--ltv-shadow-lg: 0 16px 40px rgba(15, 23, 42, .10);

	--ltv-font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--ltv-container: 1200px;
}

/* ---------------------------------------------------------------
 * Base
 * ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ltv-theme {
	margin: 0;
	font-family: var(--ltv-font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ltv-text);
	background: var(--ltv-white);
	-webkit-font-smoothing: antialiased;
}

body.ltv-no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: var(--ltv-accent); text-decoration: none; }
a:hover { color: var(--ltv-accent-hover); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--ltv-text); letter-spacing: -0.02em; margin: 0 0 .5em; }

:focus-visible {
	outline: 3px solid var(--ltv-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal;
}
.ltv-skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 999; clip: auto; clip-path: none;
	width: auto; height: auto; padding: 10px 16px; background: #fff; border-radius: 8px; box-shadow: var(--ltv-shadow);
}

.ltv-container { width: 100%; max-width: var(--ltv-container); margin: 0 auto; padding: 0 20px; }
.ltv-container--narrow { max-width: 840px; }
.ltv-center { text-align: center; }

.ltv-section { padding: 72px 0; }
.ltv-section--tight { padding: 40px 0; }
.ltv-section--alt { background: var(--ltv-bg); }

.ltv-grid { display: grid; gap: 20px; }
.ltv-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ltv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ltv-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ltv-card {
	background: var(--ltv-white);
	border: 1px solid var(--ltv-border);
	border-radius: var(--ltv-radius);
	box-shadow: var(--ltv-shadow-sm);
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.ltv-eyebrow {
	text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700;
	color: var(--ltv-accent); margin: 0 0 8px;
}
.ltv-section-heading { max-width: 680px; margin: 0 auto 36px; }
.ltv-section-heading--center { text-align: center; }
.ltv-section-heading--left { margin-left: 0; text-align: left; }
.ltv-section-title { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 10px; }
.ltv-section-sub { color: var(--ltv-text-soft); margin: 0; font-size: 17px; }
.ltv-section-more { text-align: center; margin-top: 28px; }
.ltv-h3 { font-size: 22px; }

/* ---------------------------------------------------------------
 * Buttons
 * ------------------------------------------------------------- */
.ltv-btn, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce .button, .wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--ltv-font); font-weight: 700; font-size: 15px; line-height: 1;
	padding: 12px 20px; border-radius: 10px; border: 1px solid transparent;
	cursor: pointer; text-align: center; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
	background: var(--ltv-accent); color: #fff;
}
.ltv-btn--primary, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit { background: var(--ltv-accent); color: #fff; }
.ltv-btn--primary:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
	background: var(--ltv-accent-hover); color: #fff;
}
.ltv-btn--outline {
	background: #fff; color: var(--ltv-text); border-color: var(--ltv-border);
}
.ltv-btn--outline:hover { background: var(--ltv-accent-soft); color: var(--ltv-accent-hover); border-color: var(--ltv-accent); }
.ltv-btn--ghost { background: var(--ltv-accent-soft); color: var(--ltv-accent-hover); }
.ltv-btn--ghost:hover { background: #e3e8ff; color: var(--ltv-accent-hover); }
.ltv-btn--sm { padding: 9px 14px; font-size: 14px; }
.ltv-btn--lg { padding: 15px 26px; font-size: 16px; }
.ltv-btn--block { display: flex; width: 100%; margin-top: 10px; }
.ltv-link { font-weight: 700; }

.ltv-badge-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--ltv-accent-soft); color: var(--ltv-accent-hover);
	padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; margin: 0 0 18px;
}

.ltv-notice { padding: 12px 16px; border-radius: 10px; font-weight: 600; }
.ltv-notice--success { background: #ecfdf5; color: var(--ltv-success); }
.ltv-notice--error { background: #fef2f2; color: var(--ltv-danger); }

/* ---------------------------------------------------------------
 * Header
 * ------------------------------------------------------------- */
.ltv-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--ltv-border);
}
.ltv-header.is-stuck { box-shadow: var(--ltv-shadow); }
.ltv-header__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.ltv-header__brand { flex: 0 0 auto; }
.ltv-header__actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }

.ltv-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ltv-text); }
.ltv-logo__img { max-height: 46px; width: auto; }
.ltv-logo__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 12px; background: var(--ltv-accent-soft); color: var(--ltv-accent);
}
.ltv-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.ltv-logo__text-strong { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.ltv-logo__text-light { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--ltv-text-soft); }
.ltv-logo--dark { color: #fff; }
.ltv-logo--dark .ltv-logo__mark { background: rgba(99,91,255,.18); color: #a5b4fc; }
.ltv-logo--dark .ltv-logo__text-light { color: #94a3b8; }

.ltv-nav__list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.ltv-nav__list li { position: relative; }
.ltv-nav__list a {
	display: block; padding: 10px 14px; border-radius: 10px;
	color: var(--ltv-text); font-weight: 600; font-size: 15px;
}
.ltv-nav__list a:hover, .ltv-nav__list .current-menu-item > a { background: var(--ltv-bg-soft); color: var(--ltv-accent-hover); }
.ltv-nav__list .sub-menu {
	display: none; position: absolute; top: 100%; left: 0; min-width: 200px; list-style: none;
	background: #fff; border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); box-shadow: var(--ltv-shadow-lg);
	padding: 8px; margin: 6px 0 0; z-index: 20;
}
.ltv-nav__list li:hover > .sub-menu, .ltv-nav__list li:focus-within > .sub-menu { display: block; }

.ltv-icon-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px; border: 1px solid transparent;
	background: transparent; color: var(--ltv-text); cursor: pointer;
}
.ltv-icon-btn:hover { background: var(--ltv-bg-soft); color: var(--ltv-accent-hover); }

.ltv-cart-count {
	position: absolute; top: 2px; right: 0; min-width: 20px; height: 20px; padding: 0 5px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--ltv-accent); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px;
}
.ltv-cart-count.is-empty { display: none; }

.ltv-burger { display: block; width: 20px; }
.ltv-burger span { display: block; height: 2px; background: currentColor; border-radius: 2px; margin: 4px 0; }
.ltv-menu-btn { display: none; }

.ltv-header-search { border-top: 1px solid var(--ltv-border); background: #fff; padding: 16px 0; }

/* Search form */
.ltv-searchform {
	position: relative; display: flex; align-items: center; gap: 10px;
	background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: 12px; padding: 6px 6px 6px 12px;
}
.ltv-searchform__icon { display: inline-flex; color: var(--ltv-text-soft); }
.ltv-searchform__input {
	flex: 1; border: 0; background: transparent; font: inherit; font-size: 15px; padding: 8px 0; color: var(--ltv-text);
}
.ltv-searchform__input:focus { outline: none; }
.ltv-searchform:focus-within { border-color: var(--ltv-accent); box-shadow: 0 0 0 3px rgba(99,91,255,.14); }
.ltv-searchform__input:focus-visible { outline: 2px solid var(--ltv-accent); outline-offset: 2px; }

/* ---------------------------------------------------------------
 * Drawers
 * ------------------------------------------------------------- */
.ltv-drawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.ltv-drawer.is-open { visibility: visible; }
.ltv-drawer__backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.45); opacity: 0; transition: opacity .2s ease; }
.ltv-drawer.is-open .ltv-drawer__backdrop { opacity: 1; }
.ltv-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 88vw);
	background: #fff; box-shadow: var(--ltv-shadow-lg); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
}
.ltv-drawer__panel--left { right: auto; left: 0; transform: translateX(-100%); }
.ltv-drawer.is-open .ltv-drawer__panel { transform: translateX(0); }
.ltv-drawer__head {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 18px 20px; border-bottom: 1px solid var(--ltv-border);
}
.ltv-drawer__title { margin: 0; font-size: 18px; }
.ltv-drawer__close {
	border: 0; background: var(--ltv-bg-soft); width: 36px; height: 36px; border-radius: 10px;
	font-size: 22px; line-height: 1; cursor: pointer; color: var(--ltv-text);
}
.ltv-drawer__body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.ltv-mobile-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ltv-mobile-nav a { display: block; padding: 12px 4px; font-weight: 700; color: var(--ltv-text); border-bottom: 1px solid var(--ltv-border); }
.ltv-mobile-nav a:hover { color: var(--ltv-accent-hover); }
.ltv-mini-cart .ltv-drawer__contents, .ltv-mini-cart__contents { padding: 20px; }
.ltv-mini-cart .woocommerce-mini-cart__buttons .button { width: 100%; margin-bottom: 8px; }

/* ---------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------- */
.ltv-hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(900px 420px at 8% -10%, rgba(99,91,255,.14), transparent 60%),
		radial-gradient(700px 380px at 92% 0%, rgba(56,189,248,.14), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, var(--ltv-bg) 100%);
	padding: 72px 0 84px;
}
.ltv-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.ltv-hero__title { font-size: clamp(34px, 5vw, 56px); margin: 0 0 16px; }
.ltv-hero__sub { font-size: 18px; color: var(--ltv-text-soft); max-width: 540px; margin: 0 0 28px; }
.ltv-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.ltv-hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 28px 0 0; color: var(--ltv-text-soft); font-weight: 600; font-size: 14px; }
.ltv-hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.ltv-hero__points svg { color: var(--ltv-accent); }

.ltv-hero__media { position: relative; }
.ltv-hero__img { width: 100%; border-radius: var(--ltv-radius-lg); box-shadow: var(--ltv-shadow-lg); display: block; }
.ltv-hero__card {
	position: absolute; display: flex; align-items: center; gap: 10px;
	background: #fff; border: 1px solid var(--ltv-border); border-radius: 14px; box-shadow: var(--ltv-shadow);
	padding: 12px 14px; font-size: 13px; line-height: 1.35;
}
.ltv-hero__card-icon {
	display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
	border-radius: 10px; background: var(--ltv-accent-soft); color: var(--ltv-accent);
}
.ltv-hero__card--one { left: -14px; bottom: 42px; }
.ltv-hero__card--two { right: -10px; top: 32px; }

/* ---------------------------------------------------------------
 * Page hero
 * ------------------------------------------------------------- */
.ltv-page-hero {
	background: linear-gradient(180deg, var(--ltv-accent-soft) 0%, #fff 100%);
	padding: 54px 0 40px; border-bottom: 1px solid var(--ltv-border); text-align: center;
}
.ltv-page-hero--shop { background: none; border: 0; padding: 34px 0 8px; text-align: left; }
.ltv-page-hero__title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 8px; }
.ltv-page-hero__sub { color: var(--ltv-text-soft); margin: 0; font-size: 17px; }
.ltv-breadcrumb, .woocommerce-breadcrumb { color: var(--ltv-text-soft); font-size: 14px; margin: 10px 0 0; }

/* ---------------------------------------------------------------
 * Benefits / why / steps
 * ------------------------------------------------------------- */
.ltv-benefit, .ltv-why__item, .ltv-step { padding: 24px; }
.ltv-benefit:hover, .ltv-why__item:hover, .ltv-step:hover { box-shadow: var(--ltv-shadow); transform: translateY(-2px); }
.ltv-benefit__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 14px; background: var(--ltv-accent-soft); color: var(--ltv-accent); margin-bottom: 14px;
}
.ltv-benefit__title { font-size: 17px; margin: 0 0 6px; }
.ltv-benefit__text { color: var(--ltv-text-soft); font-size: 14px; margin: 0; }
.ltv-step__num { font-size: 34px; font-weight: 800; color: var(--ltv-accent); opacity: .35; display: block; }
.ltv-step__title { font-size: 18px; margin: 6px 0 6px; }
.ltv-step__text { color: var(--ltv-text-soft); font-size: 15px; margin: 0; }

/* ---------------------------------------------------------------
 * Categories
 * ------------------------------------------------------------- */
.ltv-cat-card { display: flex; flex-direction: column; overflow: hidden; color: var(--ltv-text); }
.ltv-cat-card:hover { box-shadow: var(--ltv-shadow); transform: translateY(-2px); border-color: #d7dbff; }
.ltv-cat-card__media {
	display: flex; align-items: center; justify-content: center; aspect-ratio: 16/10;
	background: var(--ltv-bg-soft); overflow: hidden;
}
.ltv-cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ltv-cat-card__icon { color: var(--ltv-accent); }
.ltv-cat-card__body { padding: 16px 18px; }
.ltv-cat-card__name { display: block; font-weight: 800; }
.ltv-cat-card__count { display: block; font-size: 13px; color: var(--ltv-text-soft); }

/* ---------------------------------------------------------------
 * Products
 * ------------------------------------------------------------- */
.woocommerce ul.products, .ltv-products, ul.products {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
	list-style: none; margin: 0; padding: 0; clear: both;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none; }
.woocommerce ul.products li.product { width: auto; margin: 0; float: none; text-align: left; }

/* Grid hardening: neutralize WooCommerce's floated-column widths so cards
   always fill their grid cell, regardless of stylesheet load order. */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product.ltv-product-card {
	width: 100% !important;
	max-width: none;
	min-width: 0;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last,
.woocommerce-page ul.products li.product.first,
.woocommerce-page ul.products li.product.last {
	clear: none !important;
	margin: 0 !important;
}

.ltv-product-card { display: flex; flex-direction: column; overflow: hidden; }
.ltv-product-card:hover { box-shadow: var(--ltv-shadow-lg); transform: translateY(-3px); border-color: #d7dbff; }
.ltv-product-card__media { position: relative; background: var(--ltv-bg-soft); }
.ltv-product-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; margin: 0; }
.ltv-product-card__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.ltv-badge {
	display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px;
	font-size: 11px; font-weight: 800; letter-spacing: .02em; background: var(--ltv-accent); color: #fff;
}
.ltv-badge--sale { background: var(--ltv-accent); }
.ltv-badge--featured { background: #0f172a; }
.ltv-badge--out { background: #64748b; }

.ltv-product-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ltv-product-card__cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ltv-accent); }
.ltv-product-card__title { font-size: 17px; margin: 0; }
.ltv-product-card__title a { color: var(--ltv-text); }
.ltv-product-card__title a:hover { color: var(--ltv-accent-hover); }
.ltv-product-card__excerpt { color: var(--ltv-text-soft); font-size: 14px; margin: 0; }
.ltv-product-card__price { font-size: 19px; font-weight: 800; color: var(--ltv-text); margin-top: auto; }
.ltv-product-card__price del { color: var(--ltv-text-soft); font-weight: 600; font-size: 15px; margin-right: 6px; }
.ltv-product-card__price ins { text-decoration: none; color: var(--ltv-text); }
.ltv-product-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ltv-product-card__actions .ltv-btn, .ltv-product-card__actions .button { flex: 1 1 auto; }
.woocommerce ul.products li.product .price { color: inherit; font-size: inherit; }
.woocommerce ul.products li.product a img { margin: 0; box-shadow: none; }
.woocommerce .star-rating { color: #f59e0b; }

.ltv-empty {
	text-align: center; padding: 44px 24px; border: 1px dashed var(--ltv-border);
	border-radius: var(--ltv-radius); background: var(--ltv-bg); color: var(--ltv-text-soft);
}
.ltv-empty__title { color: var(--ltv-text); }
.ltv-empty__search, .ltv-404__search, .ltv-search-again { max-width: 520px; margin: 18px auto; }

/* ---------------------------------------------------------------
 * Shop toolbar
 * ------------------------------------------------------------- */
.ltv-shop-toolbar {
	background: var(--ltv-white); border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius);
	padding: 16px; margin: 20px 0 28px; box-shadow: var(--ltv-shadow-sm);
}
.ltv-shop-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ltv-field { display: flex; align-items: center; gap: 8px; background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: 10px; padding: 6px 12px; }
.ltv-field--search { flex: 1 1 220px; color: var(--ltv-text-soft); }
.ltv-field input, .ltv-field select { border: 0; background: transparent; font: inherit; font-size: 14px; color: var(--ltv-text); padding: 6px 0; }
.ltv-field input:focus, .ltv-field select:focus { outline: none; }
.ltv-field--price input { width: 70px; }
.ltv-field:focus-within { border-color: var(--ltv-accent); box-shadow: 0 0 0 3px rgba(99,91,255,.14); }
.ltv-field input:focus-visible, .ltv-field select:focus-visible { outline: 2px solid var(--ltv-accent); outline-offset: 2px; }
.ltv-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ltv-text-soft); font-weight: 600; }
.ltv-shop-toolbar__count { margin-top: 10px; font-size: 14px; color: var(--ltv-text-soft); }
.woocommerce .woocommerce-result-count { margin: 0; }

/* ---------------------------------------------------------------
 * Promo / support
 * ------------------------------------------------------------- */
.ltv-promo {
	display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
	background: linear-gradient(120deg, #eef2ff 0%, #f5f3ff 50%, #eff6ff 100%);
	border: 1px solid #e0e7ff; border-radius: var(--ltv-radius-lg); padding: 40px;
}
.ltv-promo__title { font-size: clamp(24px, 3vw, 34px); margin: 0 0 8px; }
.ltv-promo__text { color: var(--ltv-text-soft); margin: 0; max-width: 560px; }

.ltv-support__box {
	text-align: center; background: var(--ltv-white); border: 1px solid var(--ltv-border);
	border-radius: var(--ltv-radius-lg); box-shadow: var(--ltv-shadow); padding: 48px 24px;
}
.ltv-support__icon {
	display: inline-flex; width: 60px; height: 60px; align-items: center; justify-content: center;
	border-radius: 20px; background: var(--ltv-accent-soft); color: var(--ltv-accent); margin-bottom: 14px;
}
.ltv-support__title { font-size: 30px; margin: 0 0 8px; }
.ltv-support__text { color: var(--ltv-text-soft); max-width: 560px; margin: 0 auto 22px; }
.ltv-support__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Reviews */
.ltv-review { padding: 24px; display: flex; flex-direction: column; gap: 16px; margin: 0; }
.ltv-review__text { margin: 0; font-size: 15px; color: var(--ltv-text); }
.ltv-review__meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ltv-text-soft); }
.ltv-review__meta em { font-style: normal; display: block; font-size: 13px; }
.ltv-review__avatar {
	display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--ltv-accent-soft); color: var(--ltv-accent); font-weight: 800;
}

/* FAQ */
.ltv-accordion { display: flex; flex-direction: column; gap: 12px; }
.ltv-accordion__item {
	background: #fff; border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); padding: 4px 18px;
	box-shadow: var(--ltv-shadow-sm);
}
.ltv-accordion__q { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.ltv-accordion__q::-webkit-details-marker { display: none; }
.ltv-accordion__q::after { content: "+"; color: var(--ltv-accent); font-size: 20px; line-height: 1; }
.ltv-accordion__item[open] .ltv-accordion__q::after { content: "–"; }
.ltv-accordion__a { padding: 0 0 16px; color: var(--ltv-text-soft); }
.ltv-accordion__a p { margin: 0; }

/* Floating support button */
.ltv-float-support {
	position: fixed; right: 18px; bottom: 18px; z-index: 80;
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--ltv-accent); color: #fff; font-weight: 700; font-size: 14px;
	padding: 12px 18px; border-radius: 999px; box-shadow: var(--ltv-shadow-lg);
}
.ltv-float-support:hover { background: var(--ltv-accent-hover); color: #fff; }
.ltv-float-support__icon { display: inline-flex; }

/* ---------------------------------------------------------------
 * Content / prose
 * ------------------------------------------------------------- */
.ltv-prose { font-size: 17px; color: #1f2937; }
.ltv-prose h2 { font-size: 26px; margin-top: 1.6em; }
.ltv-prose h3 { font-size: 20px; margin-top: 1.4em; }
.ltv-prose ul, .ltv-prose ol { padding-left: 22px; }
.ltv-featured-img { border-radius: var(--ltv-radius); margin-bottom: 24px; }
.ltv-post-card { display: flex; flex-direction: column; overflow: hidden; }
.ltv-post-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ltv-post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.ltv-post-card__title { font-size: 19px; margin: 0; }
.ltv-post-card__title a { color: var(--ltv-text); }
.ltv-post-card__excerpt { color: var(--ltv-text-soft); font-size: 15px; margin: 0; }
.ltv-post-meta { color: var(--ltv-text-soft); font-size: 13px; margin: 0; }
.ltv-404__code { font-size: 76px; font-weight: 800; color: var(--ltv-accent); margin: 0; line-height: 1; }

.ltv-pagination, .woocommerce-pagination { margin-top: 36px; text-align: center; }
.ltv-pagination .page-numbers, .woocommerce-pagination .page-numbers li .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
	border-radius: 10px; border: 1px solid var(--ltv-border); margin: 0 3px; color: var(--ltv-text); font-weight: 700; padding: 0 10px;
}
.ltv-pagination .current, .woocommerce-pagination .page-numbers li .page-numbers.current {
	background: var(--ltv-accent); border-color: var(--ltv-accent); color: #fff;
}
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }

/* Forms */
.ltv-form label, .woocommerce form .form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.ltv-form input[type="text"], .ltv-form input[type="email"], .ltv-form textarea,
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce form .form-row select, .select2-container--default .select2-selection--single {
	width: 100%; border: 1px solid var(--ltv-border); border-radius: 10px; padding: 12px 14px;
	font: inherit; font-size: 15px; background: #fff; color: var(--ltv-text);
}
.ltv-form input:focus, .ltv-form textarea:focus,
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus {
	outline: none; border-color: var(--ltv-accent); box-shadow: 0 0 0 3px rgba(99,91,255,.14);
}
.ltv-form__hp { position: absolute; left: -9999px; }

/* ---------------------------------------------------------------
 * WooCommerce pages
 * ------------------------------------------------------------- */
.ltv-shop { padding-bottom: 72px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top: 0; background: var(--ltv-accent-soft); color: var(--ltv-text);
	border-radius: var(--ltv-radius); padding: 16px 20px; box-shadow: none; list-style: none;
}
.woocommerce-error { background: #fef2f2; color: #991b1b; }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }

/* Single product */
.woocommerce div.product { padding: 24px 0 0; }
.woocommerce div.product .product_title { font-size: clamp(26px, 3.4vw, 38px); }
.ltv-product-cat { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ltv-accent); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--ltv-text); font-size: 28px; font-weight: 800; }
.woocommerce div.product p.price del { color: var(--ltv-text-soft); font-size: 18px; font-weight: 600; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.woocommerce div.product form.cart .variations { width: 100%; }
.woocommerce div.product form.cart .variations select { max-width:100%; min-height:44px; border:1px solid var(--ltv-border); border-radius:10px; padding:9px 12px; background:var(--ltv-white); color:var(--ltv-text); font:inherit; }
.woocommerce div.product form.cart .reset_variations { display:inline-block; margin-left:8px; font-size:13px; font-weight:700; }
.woocommerce div.product .woocommerce-variation-add-to-cart { display:flex; flex-wrap:wrap; align-items:center; gap:10px; }
.woocommerce div.product form.cart div.quantity { margin: 0; }
.woocommerce .quantity .qty {
	width: 84px; border: 1px solid var(--ltv-border); border-radius: 10px; padding: 12px 8px; font: inherit; text-align: center;
}
.ltv-product-trust { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; color: var(--ltv-text-soft); font-size: 14px; font-weight: 600; }
.ltv-product-trust li { display: flex; align-items: center; gap: 10px; }
.ltv-product-trust svg { color: var(--ltv-accent); }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin-bottom: 20px; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--ltv-border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: 10px 10px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: #fff; border-bottom-color: #fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .images img { border-radius: var(--ltv-radius); }
.related.products > h2, .upsells.products > h2, .woocommerce-tabs h2 { font-size: 24px; }

/* Cart & checkout */
.woocommerce table.shop_table {
	border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); border-collapse: separate; overflow: hidden;
}
.woocommerce table.shop_table th { background: var(--ltv-bg); font-weight: 700; }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { padding: 16px 14px; }
.woocommerce .cart_totals h2, .woocommerce-checkout h3, .woocommerce-billing-fields h3 { font-size: 20px; }
.woocommerce #payment, .woocommerce-checkout-review-order, .woocommerce .cart_totals {
	background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); padding: 20px;
}
.woocommerce #payment ul.payment_methods { border-bottom: 1px solid var(--ltv-border); }
.woocommerce #payment div.form-row { padding: 16px 0 0; }
.woocommerce #payment #place_order { width: 100%; }
.woocommerce .coupon input.input-text { max-width: 200px; }
.woocommerce-cart-form { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.woocommerce-cart-form table.shop_table { min-width:680px; }

/* WooCommerce Cart and Checkout blocks (default on new WooCommerce installs). */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout { margin: 40px auto 72px; }
.wc-block-components-sidebar,
.wc-block-cart-items,
.wc-block-checkout__main { min-width: 0; }
.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar { box-sizing: border-box; }
.wc-block-components-totals-wrapper,
.wc-block-components-order-summary,
.wc-block-checkout__order-notes,
.wc-block-checkout__terms { border-color: var(--ltv-border); }
.wc-block-components-button:not(.is-link) {
	border-radius: 10px; background: var(--ltv-accent); color: #fff; font-family: var(--ltv-font); font-weight: 700;
}
.wc-block-components-button:not(.is-link):hover { background: var(--ltv-accent-hover); color: #fff; }
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-color: var(--ltv-border); border-radius: 10px; font-family: var(--ltv-font);
}
.wc-block-components-product-name { color: var(--ltv-text); font-weight: 700; }
.wc-block-components-product-metadata { color: var(--ltv-text-soft); }

/* My account */
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 25%; background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); padding: 12px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ltv-text); font-weight: 600; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, 
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: #fff; color: var(--ltv-accent-hover); box-shadow: var(--ltv-shadow-sm); }
.woocommerce-account .woocommerce-MyAccount-content { width: 71%; }
.ltv-account-intro { color: var(--ltv-text-soft); }
.woocommerce form.login, .woocommerce form.register, .woocommerce form.checkout_coupon {
	border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius); padding: 24px;
}

/* Thank you page */
.woocommerce ul.order_details {
	display: flex; flex-wrap: wrap; gap: 14px; list-style: none; padding: 20px; margin: 0 0 24px;
	background: var(--ltv-bg); border: 1px solid var(--ltv-border); border-radius: var(--ltv-radius);
}
.woocommerce ul.order_details li { border: 0; margin: 0; padding: 0 18px 0 0; font-size: 13px; color: var(--ltv-text-soft); text-transform: none; }
.woocommerce ul.order_details li strong { display: block; font-size: 16px; color: var(--ltv-text); }
.ltv-thankyou-support {
	background: var(--ltv-accent-soft); border-radius: var(--ltv-radius); padding: 24px; margin: 28px 0;
}
.ltv-thankyou-support h2 { font-size: 20px; }

/* Contact page */
.ltv-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.ltv-contact__form { padding: 28px; }
.ltv-contact__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; color: var(--ltv-text-soft); }
.ltv-contact__list li { display: flex; align-items: center; gap: 12px; }
.ltv-contact__list svg { color: var(--ltv-accent); }

/* ---------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------- */
.ltv-footer { background: var(--ltv-navy); color: #cbd5e1; margin-top: 60px; }
.ltv-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-top: 56px; padding-bottom: 40px; }
.ltv-footer__title { font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin: 0 0 14px; }
.ltv-footer__text { font-size: 14px; color: #94a3b8; margin: 16px 0; max-width: 360px; }
.ltv-footer__note { font-size: 13px; color: #64748b; }
.ltv-footer__links, .ltv-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ltv-footer__links a, .ltv-footer__contact a { color: #cbd5e1; font-size: 14px; }
.ltv-footer__links a:hover, .ltv-footer__contact a:hover { color: #fff; }
.ltv-footer__contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.ltv-footer__contact svg { color: #a5b4fc; }
.ltv-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; color: #94a3b8; }
.ltv-footer__bottom p { margin: 0; }

/* ---------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ltv-grid--4, .woocommerce ul.products, .ltv-products, ul.products { grid-template-columns: repeat(3, 1fr); }
	.ltv-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.ltv-nav { display: none; }
	.ltv-menu-btn { display: inline-flex; }
	.ltv-hide-mobile { display: none; }
	.ltv-hero__inner { grid-template-columns: 1fr; }
	.ltv-hero__media { order: -1; }
	.ltv-hero__card { display: none; }
	.ltv-contact { grid-template-columns: 1fr; }
	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; }
	.woocommerce-account .woocommerce-MyAccount-content { margin-top: 20px; }
	.woocommerce div.product div.images, .woocommerce div.product div.summary { width: 100%; float: none; margin-bottom: 24px; }
}

@media (max-width: 720px) {
	.ltv-section { padding: 52px 0; }
	.ltv-grid--3, .ltv-grid--4, .woocommerce ul.products, .ltv-products, ul.products { grid-template-columns: repeat(2, 1fr); }
	.ltv-promo { padding: 28px; }
	.ltv-float-support__label { display: none; }
	.ltv-float-support { padding: 14px; }
	.ltv-shop-filters { flex-direction: column; align-items: stretch; }
	.ltv-field { width: 100%; }
	.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width:100%; float:none; }
	.wp-block-woocommerce-cart,
	.wp-block-woocommerce-checkout { margin-top: 24px; margin-bottom: 52px; }
}

@media (max-width: 520px) {
	.ltv-grid--3, .ltv-grid--4, .ltv-grid--2, .woocommerce ul.products, .ltv-products, ul.products { grid-template-columns: 1fr; }
	.ltv-footer__grid { grid-template-columns: 1fr; }
	.ltv-hero { padding: 44px 0 56px; }
	.ltv-product-card__actions { flex-direction: column; }
	.woocommerce div.product form.cart .button, .woocommerce div.product form.cart .ltv-buy-now { flex:1 1 100%; width:100%; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------
 * Reviews carousel + service filter
 * ------------------------------------------------------------- */
.ltv-reviews__note { text-align:center; color:var(--ltv-text-soft); font-size:13px; margin:-14px auto 24px; max-width:650px; }
.ltv-reviews__note strong { color:var(--ltv-text); margin-right:6px; }
.ltv-rev-filters { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin:0 0 30px; }
.ltv-rev-filter { font-family:var(--ltv-font); font-weight:700; font-size:13.5px; padding:9px 17px; border-radius:999px; cursor:pointer; border:1px solid var(--ltv-border); background:var(--ltv-white); color:var(--ltv-text-soft); transition:background .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease; }
.ltv-rev-filter:hover { border-color:var(--ltv-accent); color:var(--ltv-accent); }
.ltv-rev-filter.is-active { background:var(--ltv-accent); border-color:var(--ltv-accent); color:#fff; box-shadow:0 8px 18px rgba(99,91,255,.28); }
.ltv-rev-viewport { overflow:hidden; touch-action:pan-y; padding:8px 4px 14px; margin:-8px -4px -14px; }
.ltv-rev-track { position:relative; display:flex; gap:20px; transition:transform .55s cubic-bezier(.22,.61,.36,1); }
.ltv-rev-track.is-dragging { transition:none; cursor:grabbing; }
.ltv-rev-slide { flex:0 0 calc((100% - 60px)/4); min-height:238px; padding:24px; margin:0; display:flex; flex-direction:column; gap:18px; border-radius:16px; border-color:#e7e9f3; box-shadow:0 8px 28px rgba(15,23,42,.07); }
.ltv-rev-slide.is-hidden { display:none; }
.ltv-rev-slide.ltv-pop { animation:ltv-pop .38s ease backwards; }
@keyframes ltv-pop { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.ltv-rev-slide__top { display:flex; align-items:center; justify-content:space-between; min-height:18px; }
.ltv-rev-stars { display:inline-flex; gap:3px; color:#f59e0b; }
.ltv-rev-slide__text { margin:0; font-size:15px; line-height:1.7; color:var(--ltv-text); flex:1; }
.ltv-rev-slide__meta { display:flex; align-items:center; gap:12px; padding-top:15px; border-top:1px solid var(--ltv-border); }
.ltv-rev-avatar { width:44px; height:44px; border-radius:50%; flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center; background:var(--ltv-accent); color:#fff; font-size:13px; font-weight:800; }
.ltv-rev-avatar--1 { background:#0ea5e9; }.ltv-rev-avatar--2 { background:#059669; }.ltv-rev-avatar--3 { background:#d946ef; }.ltv-rev-avatar--4 { background:#e08700; }
.ltv-rev-who strong { display:block; font-size:14.5px; }.ltv-rev-who em { font-style:normal; display:block; font-size:12.5px; color:var(--ltv-text-soft); margin-top:2px; }
.ltv-rev-nav { display:flex; align-items:center; justify-content:center; gap:18px; margin-top:28px; }
.ltv-rev-arrow { width:42px; height:42px; border-radius:50%; border:1px solid var(--ltv-border); background:var(--ltv-white); color:var(--ltv-text); display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease; }
.ltv-rev-arrow:hover { border-color:var(--ltv-accent); color:var(--ltv-accent); transform:translateY(-1px); box-shadow:var(--ltv-shadow); }
.ltv-rev-dots { display:flex; align-items:center; gap:8px; }.ltv-rev-dot { width:8px; height:8px; border-radius:999px; border:0; padding:0; background:#cbd5e1; cursor:pointer; transition:width .25s ease,background .25s ease; }.ltv-rev-dot.is-active { width:24px; background:var(--ltv-accent); }


/* Genuine WooCommerce reviews on single product pages. */
.ltv-product-real-reviews { padding-top: 42px; padding-bottom: 42px; }
.ltv-product-real-reviews__head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:22px; }
.ltv-product-real-reviews__eyebrow { display:block; margin-bottom:6px; color:var(--ltv-accent); font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.ltv-product-real-reviews__head h2 { margin:0 0 5px; font-size:clamp(24px,3vw,34px); line-height:1.12; }
.ltv-product-real-reviews__head p { margin:0; color:var(--ltv-text-soft); font-size:14px; }
.ltv-product-real-reviews__summary { flex:0 0 auto; min-width:135px; padding:13px 16px; border:1px solid var(--ltv-border); border-radius:16px; background:#fff; text-align:center; box-shadow:var(--ltv-shadow-sm); }
.ltv-product-real-reviews__summary strong { display:block; font-size:25px; line-height:1; }
.ltv-product-real-reviews__summary .star-rating { float:none; display:inline-block; margin:7px 0 2px; }
.ltv-product-real-reviews__summary small { display:block; color:var(--ltv-text-soft); font-size:11px; }
.ltv-product-real-reviews__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.ltv-product-review-card { min-width:0; padding:18px; border:1px solid var(--ltv-border); border-radius:16px; background:#fff; box-shadow:var(--ltv-shadow-sm); }
.ltv-product-review-card__top { display:flex; align-items:center; justify-content:space-between; gap:10px; min-height:20px; }
.ltv-product-review-card__stars { display:inline-flex; color:#f59e0b; }
.ltv-product-review-card__stars .star-rating { float:none; margin:0; }
.ltv-product-review-card__top time { color:var(--ltv-text-soft); font-size:11px; white-space:nowrap; }
.ltv-product-review-card blockquote { margin:14px 0 17px; font-size:14px; line-height:1.62; color:var(--ltv-text); }
.ltv-product-review-card blockquote p { margin:0; }
.ltv-product-review-card footer { display:flex; align-items:center; gap:10px; padding-top:13px; border-top:1px solid var(--ltv-border); }
.ltv-product-review-card__avatar { width:36px; height:36px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; background:var(--ltv-accent-soft); color:var(--ltv-accent); font-size:12px; font-weight:800; }
.ltv-product-review-card__author { min-width:0; }
.ltv-product-review-card__author strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:13.5px; }
.ltv-product-review-card__author small { display:block; margin-top:2px; color:#15803d; font-size:11px; font-weight:700; }
.ltv-rev-slide__top time { color:var(--ltv-text-soft); font-size:11px; white-space:nowrap; }
@media(max-width:1024px){ .ltv-product-real-reviews__grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media(max-width:640px){
 .ltv-product-real-reviews{padding-top:28px;padding-bottom:28px;}
 .ltv-product-real-reviews__head{align-items:flex-start;flex-direction:column;gap:14px;}
 .ltv-product-real-reviews__summary{min-width:0;width:100%;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:8px;text-align:left;}
 .ltv-product-real-reviews__summary strong{font-size:22px;}
 .ltv-product-real-reviews__summary .star-rating{margin:0;}
 .ltv-product-real-reviews__summary small{display:block;text-align:right;}
 .ltv-product-real-reviews__grid{grid-template-columns:1fr;gap:12px;}
 .ltv-product-review-card{padding:15px;border-radius:14px;}
 .ltv-product-review-card blockquote{font-size:13.5px;line-height:1.58;margin:12px 0 14px;}
}

/* Customer conversation screenshots + Telegram mockups */
.ltv-convos { position:relative; overflow:hidden; background:linear-gradient(180deg,#fff 0%,#f7f8ff 50%,#eef3ff 100%); }
.ltv-convos__notice { width:fit-content; max-width:calc(100% - 32px); margin:-14px auto 8px; padding:8px 13px; border:1px solid #ddd8ff; border-radius:8px; color:var(--ltv-text-soft); background:rgba(255,255,255,.82); text-align:center; font-size:12.5px; }
.ltv-convos__rows { display:flex; flex-direction:column; gap:28px; margin:38px 0 12px; }
.ltv-convos__row { overflow:hidden; padding:12px 0; opacity:0; transform:translateY(26px); transition:opacity .7s ease,transform .7s ease; -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.ltv-convos__row:nth-child(2) { transition-delay:.14s; }.ltv-convos__row:nth-child(3) { transition-delay:.28s; }.ltv-convos.is-in .ltv-convos__row { opacity:1; transform:none; }
.ltv-convos__track { display:flex; align-items:flex-start; gap:30px; width:max-content; animation:ltv-marquee-l 72s linear infinite; will-change:transform; }
.ltv-convos__row--right .ltv-convos__track { animation-name:ltv-marquee-r; animation-duration:84s; }.ltv-convos__row:nth-child(3) .ltv-convos__track { animation-duration:96s; }
.ltv-convos__row:hover .ltv-convos__track,.ltv-convos__track:focus-within { animation-play-state:paused; }
@keyframes ltv-marquee-l { from { transform:translateX(-50%); } to { transform:translateX(0); } } @keyframes ltv-marquee-r { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.ltv-shot { flex:0 0 auto; width:292px; transition:transform .3s ease,filter .3s ease; transform-origin:center; }.ltv-shot--rotate--1 { transform:rotate(-1.2deg); }.ltv-shot--rotate-1 { transform:rotate(1.2deg); }.ltv-shot:hover,.ltv-shot:focus-within { position:relative; z-index:4; transform:scale(1.035) rotate(0); filter:drop-shadow(0 20px 26px rgba(28,35,76,.16)); }
.ltv-shot__open { display:block; width:100%; border:0; padding:0; background:transparent; cursor:zoom-in; }
.ltv-phone { position:relative; display:block; overflow:hidden; width:100%; aspect-ratio:9/16.2; background:#e9f0f4; border:8px solid #172033; border-radius:34px; box-shadow:0 17px 38px rgba(15,23,42,.2),inset 0 0 0 1px rgba(255,255,255,.18); animation:ltv-phone-float 8s ease-in-out infinite alternate; }
.ltv-shot:nth-child(2n) .ltv-phone { animation-duration:9.5s; animation-delay:-3s; }.ltv-shot:nth-child(3n) .ltv-phone { animation-duration:7s; animation-delay:-5s; } @keyframes ltv-phone-float { from { translate:0 -4px; } to { translate:0 5px; } }
.ltv-phone__speaker { position:absolute; z-index:5; top:5px; left:50%; translate:-50% 0; width:48px; height:10px; border-radius:0 0 10px 10px; background:#172033; }
.ltv-phone__image { display:block; width:100%; height:100%; object-fit:contain; background:#0f172a; }
.ltv-phone--mockup { display:flex; flex-direction:column; background:#dce8ef; }
.ltv-tg-head { display:flex; align-items:center; gap:8px; min-height:62px; padding:25px 12px 8px; background:#fff; color:#172033; }.ltv-tg-head__back { color:#2aabee; font-size:27px; line-height:1; }.ltv-tg-avatar { width:34px; height:34px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center; color:#fff; background:linear-gradient(145deg,#38bdf8,#635bff); font-weight:800; }.ltv-tg-person { min-width:0; flex:1; }.ltv-tg-person strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:12px; }.ltv-tg-person em { display:block; color:#2aabee; font-style:normal; font-size:9.5px; }.ltv-tg-icon { color:#2aabee; }
.ltv-tg-chat { flex:1; display:flex; flex-direction:column; justify-content:center; gap:7px; padding:17px 10px 12px; background-color:#dce8ef; background-image:radial-gradient(circle at 20% 30%,rgba(255,255,255,.34) 0 1px,transparent 2px); background-size:22px 22px; }.ltv-tg-day { align-self:center; padding:3px 9px; border-radius:999px; background:rgba(92,125,143,.7); color:#fff; font-size:8px; font-weight:700; }.ltv-tg-message { position:relative; max-width:88%; margin:0; padding:8px 8px 15px; border-radius:11px; font-size:10.5px; line-height:1.35; box-shadow:0 1px 1px rgba(15,23,42,.08); }.ltv-tg-message time { position:absolute; right:7px; bottom:3px; color:#70838d; font-size:7.5px; }.ltv-tg-message--in { align-self:flex-start; background:#fff; border-bottom-left-radius:3px; }.ltv-tg-message--out { align-self:flex-end; background:#d5f7c8; border-bottom-right-radius:3px; }.ltv-tg-message--out time { color:#579c68; }
.ltv-tg-compose { display:flex; gap:10px; align-items:center; margin:5px; padding:9px 10px; border-radius:18px; background:#fff; color:#94a3b8; font-size:10px; }.ltv-tg-compose span:nth-child(2) { flex:1; }
.ltv-shot__meta { padding:13px 10px 0; text-align:center; }.ltv-shot__meta strong { display:block; color:var(--ltv-text); font-size:14px; }.ltv-shot__meta span { display:block; color:var(--ltv-text-soft); font-size:12px; margin-top:2px; }.ltv-shot__meta p { margin:5px 0 0; color:var(--ltv-text-soft); font-size:12px; }
.ltv-trust-row { list-style:none; display:flex; flex-wrap:wrap; justify-content:center; gap:12px 30px; margin:42px 0 0; padding:20px 24px; background:var(--ltv-white); border:1px solid var(--ltv-border); border-radius:var(--ltv-radius); box-shadow:var(--ltv-shadow-sm); }.ltv-trust-row li { display:inline-flex; align-items:center; gap:9px; font-weight:700; font-size:14px; }.ltv-trust-row .ltv-icon { color:var(--ltv-accent); }
.ltv-convos__cta { text-align:center; margin-top:24px; padding:42px 24px; background:var(--ltv-white); border:1px solid var(--ltv-border); border-radius:var(--ltv-radius-lg); box-shadow:var(--ltv-shadow); }.ltv-convos__cta-title { font-size:clamp(22px,2.6vw,30px); margin:0 0 8px; }.ltv-convos__cta-text { color:var(--ltv-text-soft); margin:0 0 22px; }.ltv-convos__cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.ltv-lightbox { position:fixed; inset:0; z-index:120; display:none; align-items:center; justify-content:center; padding:24px; }.ltv-lightbox.is-open { display:flex; }.ltv-lightbox__backdrop { position:absolute; inset:0; border:0; background:rgba(10,15,30,.88); cursor:zoom-out; }.ltv-lightbox__content { position:relative; z-index:1; display:flex; align-items:center; justify-content:center; width:min(1100px,100%); height:min(90vh,900px); }.ltv-lightbox__image { display:block; max-width:calc(100% - 120px); max-height:100%; object-fit:contain; border-radius:18px; box-shadow:0 24px 70px rgba(0,0,0,.4); }.ltv-lightbox__close,.ltv-lightbox__nav { position:absolute; z-index:2; display:grid; place-items:center; border:1px solid rgba(255,255,255,.28); background:rgba(255,255,255,.12); color:#fff; cursor:pointer; backdrop-filter:blur(8px); }.ltv-lightbox__close { top:0; right:0; width:44px; height:44px; border-radius:50%; font-size:28px; }.ltv-lightbox__nav { top:50%; translate:0 -50%; width:48px; height:58px; border-radius:12px; font-size:34px; }.ltv-lightbox__nav--prev { left:0; }.ltv-lightbox__nav--next { right:0; }
@media(max-width:1024px){.ltv-rev-slide{flex-basis:calc((100% - 20px)/2)}.ltv-shot{width:260px}}
@media(max-width:640px){.ltv-rev-slide{flex-basis:100%;min-height:220px}.ltv-rev-filters{justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;padding:2px 18px 10px;margin-inline:-18px}.ltv-rev-filter{flex:0 0 auto}.ltv-convos__rows{gap:12px}.ltv-convos__row:nth-child(3){display:none}.ltv-shot{width:220px}.ltv-phone{border-width:6px;border-radius:27px}.ltv-tg-message{font-size:8.5px}.ltv-trust-row{display:grid;grid-template-columns:1fr 1fr;gap:13px;padding:17px}.ltv-lightbox{padding:12px}.ltv-lightbox__image{max-width:100%;max-height:calc(100% - 90px)}.ltv-lightbox__nav{top:auto;bottom:0}.ltv-lightbox__close{top:0}.ltv-convos__cta-actions .ltv-btn{width:100%}}
@media(prefers-reduced-motion:reduce){.ltv-convos__track,.ltv-phone{animation:none}.ltv-rev-track{transition:none}.ltv-convos__row{opacity:1;transform:none;transition:none}}

/* ---------------------------------------------------------------
 * Desktop product-grid hardening (screens wider than 1024px).
 *
 * Forces the WooCommerce product loop to render as a full-width
 * 4-column grid on desktop, regardless of plugin stylesheet load
 * order or combined/minified CSS on the host. Placed last in the
 * cascade on purpose. Rules for tablet/mobile (max-width: 1024px
 * and below) live earlier in this file and are unchanged.
 * ------------------------------------------------------------- */
@media (min-width: 1025px) {
	body.woocommerce ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products.ltv-products,
	ul.products {
		display: grid !important;
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 20px;
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		justify-items: stretch;
		align-items: stretch;
	}
	body.woocommerce ul.products li.product,
	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product,
	ul.products li.product {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		margin: 0 !important;
		float: none !important;
		clear: none !important;
		flex: 0 1 auto !important;
	}
	.woocommerce ul.products li.product.first,
	.woocommerce ul.products li.product.last,
	.woocommerce-page ul.products li.product.first,
	.woocommerce-page ul.products li.product.last {
		clear: none !important;
		margin: 0 !important;
	}
}

/* Desktop container hardening: make sure the loop's own wrappers never
   shrink the grid below the content width (v1.2.5). */
@media (min-width: 1025px) {
	.ltv-shop .ltv-container,
	.ltv-products-section .ltv-container { width: 100%; max-width: var(--ltv-container); }
	.woocommerce .ltv-container > .woocommerce,
	.ltv-products-section .woocommerce,
	.woocommerce-page div.woocommerce,
	.woocommerce div.woocommerce,
	.woocommerce .products,
	.woocommerce-page .products { width: 100% !important; max-width: 100% !important; float: none !important; }
	ul.products.columns-1,
	ul.products.columns-2,
	ul.products.columns-3,
	ul.products.columns-4,
	ul.products.columns-5,
	ul.products.columns-6 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
	ul.products li.product .ltv-product-card__body,
	ul.products li.product img { width: 100% !important; max-width: 100% !important; }
}

/* ---------------------------------------------------------------
 * Subscription marketplace UX (v1.3.1)
 * Keeps the existing LiveTV Services theme and adds an Anexly-style
 * search, compact mobile product rails and scroll subscription picker.
 * ------------------------------------------------------------- */
.ltv-service-browser { padding: 0 0 26px; background: var(--ltv-white); }
.ltv-service-search { max-width: 920px; margin: -18px auto 18px; min-height: 58px; display:flex; align-items:center; gap:10px; padding:7px 10px 7px 18px; background:#fff; border:1px solid #e5e7eb; border-radius:999px; box-shadow:0 12px 34px rgba(15,23,42,.08); }
.ltv-service-search__icon { display:inline-flex; color:var(--ltv-text-soft); flex:0 0 auto; }
.ltv-service-search input[type="search"] { flex:1; min-width:0; border:0; outline:0; background:transparent; font:600 15px var(--ltv-font); color:var(--ltv-text); }
.ltv-service-search input[type="search"]::placeholder { color:#94a3b8; }
.ltv-service-search button { width:42px; height:42px; border:0; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:var(--ltv-accent); color:#fff; cursor:pointer; flex:0 0 auto; }
.ltv-service-chips { display:flex; gap:9px; overflow-x:auto; scrollbar-width:none; padding:2px 2px 8px; }
.ltv-service-chips::-webkit-scrollbar { display:none; }
.ltv-service-chip { flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center; min-height:40px; padding:8px 17px; border:1px solid var(--ltv-border); border-radius:999px; background:#fff; color:var(--ltv-text); font-size:13px; font-weight:800; white-space:nowrap; box-shadow:var(--ltv-shadow-sm); }
.ltv-service-chip:hover { color:var(--ltv-accent); border-color:var(--ltv-accent); }
.ltv-service-chip.is-active { color:#fff; background:var(--ltv-accent); border-color:var(--ltv-accent); }



/* In-flow subscription selector. */
.ltv-subscription-picker{position:relative;margin:28px auto 0;max-width:760px;z-index:20}
.ltv-subscription-picker__trigger{width:100%;min-height:62px;display:flex;align-items:center;gap:13px;padding:8px 18px;border:1px solid #d8dbe6;border-radius:18px;background:rgba(255,255,255,.98);box-shadow:0 12px 34px rgba(15,23,42,.10);color:var(--ltv-text);cursor:pointer;font:700 16px var(--ltv-font)}
.ltv-subscription-picker__icon{width:42px;height:42px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;color:#fff;background:var(--ltv-accent);flex:0 0 auto}
.ltv-subscription-picker__label{flex:1;text-align:left}
.ltv-subscription-picker__chevron{font-size:28px;line-height:1;transition:transform .18s ease}
.ltv-subscription-picker__trigger[aria-expanded="true"] .ltv-subscription-picker__chevron{transform:rotate(180deg)}
.ltv-subscription-picker__menu{position:absolute;top:70px;left:0;right:0;max-height:min(62vh,520px);overflow:auto;background:#fff;border:1px solid #e5e7eb;border-radius:18px;box-shadow:0 20px 50px rgba(15,23,42,.18);padding:8px}
.ltv-subscription-picker__menu-title{padding:13px 14px 10px;font-size:14px;font-weight:800;color:var(--ltv-text-soft)}
.ltv-subscription-picker__item{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:12px;color:var(--ltv-text)}
.ltv-subscription-picker__item:hover{background:var(--ltv-bg);color:var(--ltv-text)}
.ltv-subscription-picker__thumb{width:42px;height:42px;border-radius:10px;overflow:hidden;background:var(--ltv-bg-soft);flex:0 0 auto;display:flex;align-items:center;justify-content:center}
.ltv-subscription-picker__thumb img{width:100%;height:100%;object-fit:cover}
.ltv-subscription-picker__name{flex:1;font-weight:800;font-size:14px}
.ltv-subscription-picker__arrow{font-size:25px;color:#94a3b8}

/* Compact marketplace cards. */
.ltv-products-section ul.products li.product.ltv-product-card { border-radius:16px; }
.ltv-products-section .ltv-product-card__media img { aspect-ratio: 1.25 / 1; }
.ltv-products-section .ltv-product-card__body { padding:13px 14px 15px; gap:6px; }
.ltv-products-section .ltv-product-card__cat { font-size:10px; }
.ltv-products-section .ltv-product-card__title { font-size:15px; }
.ltv-products-section .ltv-product-card__excerpt { font-size:12px; line-height:1.45; }
.ltv-products-section .ltv-product-card__price { font-size:17px; }
.ltv-products-section .ltv-product-card__actions .ltv-btn--ghost { display:none; }
.ltv-products-section .ltv-product-card__actions .button { min-height:42px; width:100%; border-radius:999px; }

/* Variable-product choices: keep WooCommerce selects as the source of truth,
   but present the customer with clickable option cards. */
.woocommerce div.product form.cart .variations { border:0; }
.ltv-variation-row { margin:0 0 17px; }
.ltv-variation-row > .label { display:block; margin:0 0 8px; }
.ltv-variation-row > .label label { font-size:14px; font-weight:800; color:var(--ltv-text); }
.ltv-variation-row .value { padding:0 !important; }
.ltv-variation-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.ltv-variation-option { position:relative; min-height:54px; display:flex; align-items:center; gap:10px; padding:10px 13px; border:1px solid var(--ltv-border); border-radius:14px; background:#fff; color:var(--ltv-text); cursor:pointer; font:700 14px var(--ltv-font); text-align:left; transition:border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease; }
.ltv-variation-option::before { content:'○'; width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border:1px solid #cbd5e1; border-radius:50%; color:transparent; flex:0 0 auto; }
.ltv-variation-option.is-selected { border-color:var(--ltv-accent); background:var(--ltv-accent-soft); box-shadow:0 6px 18px rgba(99,91,255,.12); }
.ltv-variation-option.is-selected::before { content:'✓'; border-color:var(--ltv-accent); background:var(--ltv-accent); color:#fff; font-size:13px; }
.ltv-variation-option.is-disabled { opacity:.42; cursor:not-allowed; text-decoration:line-through; }
.ltv-variation-option__badge { position:absolute; right:10px; top:-10px; padding:3px 8px; border-radius:999px; background:var(--ltv-accent); color:#fff; font-size:10px; font-weight:800; }

@media (max-width: 720px) {
    .ltv-service-browser { padding-bottom:18px; }
    .ltv-service-search { margin: -12px 0 13px; min-height:54px; }
    .ltv-service-search button { width:38px; height:38px; }
    .ltv-service-chip { min-height:37px; padding:7px 14px; }
    .ltv-subscription-picker { top:68px; }
    .ltv-subscription-picker__trigger { min-height:54px; border-radius:16px; }
    .ltv-subscription-picker__menu { width:calc(100% - 28px); top:62px; max-height:55vh; }
    .ltv-products-section ul.products { display:flex !important; grid-template-columns:none !important; gap:14px !important; overflow-x:auto; overflow-y:hidden; scroll-snap-type:x mandatory; padding:5px 4px 16px; margin:0 -4px !important; scrollbar-width:none; }
    .ltv-products-section ul.products::-webkit-scrollbar { display:none; }
    .ltv-products-section ul.products li.product { flex:0 0 72vw !important; max-width:72vw !important; scroll-snap-align:start; }
    .ltv-products-section .ltv-product-card__media img { aspect-ratio:1.35 / 1; }
    .ltv-products-section .ltv-product-card__excerpt { display:none; }
    .ltv-products-section .ltv-product-card__body { padding:12px 13px 13px; }
    .ltv-variation-options { grid-template-columns:1fr; }
}
.ltv-native-variation-select { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }


/* ---------------------------------------------------------------
 * Product purchase UX: selected variation price + quantity stepper
 * ------------------------------------------------------------- */
.woocommerce div.product .ltv-selected-variation-price {
    width:100%;
    margin:0 0 16px;
    color:var(--ltv-text);
    font-size:28px;
    line-height:1.15;
    font-weight:800;
}
.woocommerce div.product .ltv-selected-variation-price[hidden] { display:none !important; }
.woocommerce div.product .ltv-selected-variation-price del {
    color:var(--ltv-text-soft);
    font-size:18px;
    font-weight:600;
    margin-right:7px;
}
.woocommerce div.product .ltv-selected-variation-price ins { text-decoration:none; }
.woocommerce div.product .ltv-parent-price--hidden { display:none !important; }
.woocommerce div.product .ltv-native-variation-price--hidden { display:none !important; }
.woocommerce div.product form.cart div.quantity {
    display:flex;
    align-items:center;
    margin:0;
}
.woocommerce div.product .ltv-qty-controls {
    display:inline-flex;
    align-items:center;
    gap:0;
    min-height:52px;
    border:1px solid var(--ltv-border);
    border-radius:14px;
    background:#fff;
    overflow:hidden;
}
.woocommerce div.product .ltv-qty-btn {
    width:48px;
    height:50px;
    border:0;
    background:#fff;
    color:var(--ltv-text);
    font:800 21px/1 var(--ltv-font);
    cursor:pointer;
    transition:background .18s ease,color .18s ease;
}
.woocommerce div.product .ltv-qty-btn:hover:not(:disabled) {
    background:var(--ltv-accent-soft);
    color:var(--ltv-accent);
}
.woocommerce div.product .ltv-qty-btn:disabled { opacity:.35; cursor:not-allowed; }
.woocommerce div.product .ltv-qty-controls .ltv-native-qty-input {
    width:48px !important;
    min-width:48px;
    height:50px;
    padding:0 !important;
    border:0 !important;
    border-left:1px solid var(--ltv-border) !important;
    border-right:1px solid var(--ltv-border) !important;
    border-radius:0 !important;
    background:#fff !important;
    color:var(--ltv-text);
    font:800 16px/1 var(--ltv-font);
    text-align:center;
    box-shadow:none !important;
    -moz-appearance:textfield;
}
.woocommerce div.product .ltv-qty-controls .ltv-native-qty-input::-webkit-outer-spin-button,
.woocommerce div.product .ltv-qty-controls .ltv-native-qty-input::-webkit-inner-spin-button {
    -webkit-appearance:none;
    margin:0;
}
@media (max-width:720px) {
    .woocommerce div.product .ltv-selected-variation-price { font-size:25px; margin-bottom:14px; }
    .woocommerce div.product .ltv-selected-variation-price del { font-size:17px; }
    .woocommerce div.product .ltv-qty-controls,
    .woocommerce div.product .ltv-qty-btn { min-height:48px; height:48px; }
    .woocommerce div.product .ltv-qty-btn { width:45px; }
    .woocommerce div.product .ltv-qty-controls .ltv-native-qty-input { width:45px !important; min-width:45px; height:48px; }
}

/* ---------------------------------------------------------------
 * Marketplace first-fold redesign (v1.3.3)
 * ------------------------------------------------------------- */
.ltv-hero--marketplace{min-height:430px;padding:72px 0 58px;background:radial-gradient(520px 300px at 15% 15%,rgba(99,91,255,.22),transparent 70%),radial-gradient(520px 300px at 85% 10%,rgba(56,189,248,.20),transparent 70%),linear-gradient(135deg,#f8f8ff 0%,#eef4ff 48%,#f9fbff 100%)}
.ltv-hero--marketplace::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(260px 160px at 50% 100%,rgba(255,255,255,.92),transparent 70%)}
.ltv-hero--marketplace .ltv-hero__inner{display:block;position:relative;z-index:1}
.ltv-hero--marketplace .ltv-hero__content{max-width:900px;margin:0 auto;text-align:center}
.ltv-hero--marketplace .ltv-hero__title{max-width:900px;margin:18px auto 14px;font-size:clamp(40px,6vw,68px);line-height:1.05;letter-spacing:-.045em}
.ltv-hero--marketplace .ltv-hero__sub{max-width:690px;margin:0 auto 26px;font-size:18px}
.ltv-hero--marketplace .ltv-hero__cta{justify-content:center}
.ltv-hero--marketplace .ltv-hero__points{justify-content:center;margin-top:24px}
.ltv-hero--marketplace .ltv-hero__media{display:none}
.ltv-marketplace{position:relative;padding:0 0 58px;background:#fff}
.ltv-marketplace>.ltv-container{position:relative}
.ltv-marketplace .ltv-service-search{position:relative;z-index:5;margin:-29px auto 18px;min-height:64px;max-width:920px;border:1px solid rgba(99,91,255,.12);box-shadow:0 18px 46px rgba(15,23,42,.12)}
.ltv-marketplace .ltv-service-search input[type=search]{font-size:16px}
.ltv-marketplace .ltv-service-search button{background:var(--ltv-accent);box-shadow:0 7px 16px rgba(99,91,255,.25)}
.ltv-marketplace .ltv-service-chips{padding:2px 2px 10px}
.ltv-marketplace .ltv-service-chip{min-height:42px}
.ltv-marketplace-heading{display:flex;align-items:end;justify-content:space-between;gap:20px;padding:28px 0 18px}
.ltv-marketplace-heading__eyebrow{margin:0 0 3px;color:var(--ltv-accent);font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.ltv-marketplace-heading h2{margin:0;font-size:clamp(24px,3vw,34px);letter-spacing:-.025em}
.ltv-marketplace-heading__all{color:var(--ltv-accent);font-weight:800;white-space:nowrap}
.ltv-marketplace-heading__all:hover{color:var(--ltv-accent-hover)}
.ltv-marketplace-product-grid{width:100%!important;display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important;margin:0!important;padding:0!important}
.ltv-marketplace-product{width:auto!important;min-width:0;margin:0!important;float:none!important}
.ltv-marketplace-product>.ltv-product-card{height:100%;margin:0!important;width:100%!important}
.ltv-marketplace-product.is-filtered{display:none!important}
.ltv-marketplace-empty{margin:20px 0 0;padding:28px;text-align:center;color:var(--ltv-text-soft);border:1px dashed var(--ltv-border);border-radius:16px;background:var(--ltv-bg-soft)}
.ltv-marketplace-product .ltv-product-card__media{aspect-ratio:1.28/1}
.ltv-marketplace-product .ltv-product-card__media img{width:100%;height:100%;object-fit:cover}
.ltv-marketplace-product .ltv-product-card__body{padding:14px 15px 15px;gap:6px}
.ltv-marketplace-product .ltv-product-card__title{font-size:16px;line-height:1.25}
.ltv-marketplace-product .ltv-product-card__excerpt{display:none}
.ltv-marketplace-product .ltv-product-card__price{font-size:17px;margin-top:2px}
.ltv-marketplace-product .ltv-product-card__actions{margin-top:5px}
.ltv-marketplace-product .ltv-product-card__actions .button{width:100%;min-height:42px;border-radius:999px}
@media(max-width:900px){.ltv-marketplace-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:720px){
	.ltv-hero--marketplace{min-height:0;padding:48px 0 42px}
	.ltv-hero--marketplace .ltv-hero__title{font-size:clamp(36px,10vw,52px)}
	.ltv-hero--marketplace .ltv-hero__sub{font-size:16px}
	.ltv-hero--marketplace .ltv-hero__cta .ltv-btn{min-height:46px}
	.ltv-marketplace{padding-bottom:40px}
	.ltv-marketplace .ltv-service-search{margin:-24px 0 15px;min-height:58px}
	.ltv-marketplace-heading{padding:23px 0 14px;align-items:center}
	.ltv-marketplace-heading h2{font-size:23px}
	.ltv-marketplace-heading__all{font-size:13px}
	.ltv-marketplace-product-grid{display:flex!important;flex-wrap:nowrap!important;grid-template-columns:none!important;gap:12px!important;overflow-x:auto;overflow-y:hidden;padding:4px 2px 14px!important;margin:0 -2px!important;scroll-snap-type:x mandatory;scrollbar-width:none}
	.ltv-marketplace-product-grid::-webkit-scrollbar{display:none}
	.ltv-marketplace-product{flex:0 0 43.5%!important;width:43.5%!important;max-width:43.5%!important;min-width:0!important;margin:0!important;float:none!important;scroll-snap-align:start}
	.ltv-marketplace-product .ltv-product-card{width:100%!important;min-width:0!important}
	.ltv-marketplace-product .ltv-product-card__media{aspect-ratio:1/.92}
	.ltv-marketplace-product .ltv-product-card__body{padding:11px 11px 12px}
	.ltv-marketplace-product .ltv-product-card__title{font-size:14px;line-height:1.2}
	.ltv-marketplace-product .ltv-product-card__price{font-size:15px}
	.ltv-marketplace-product .ltv-product-card__actions .button{min-height:38px;font-size:12px;padding:8px 9px}
	.ltv-marketplace-product .ltv-product-card__cat{font-size:9px}
	.ltv-subscription-picker{margin:26px 0 0;max-width:none}
	.ltv-subscription-picker__trigger{min-height:58px;border-radius:16px;font-size:15px}
	.ltv-subscription-picker__menu{top:66px;max-height:55vh}
}


/* ---------------------------------------------------------------
 * v1.3.4 — Anexly-inspired marketplace layout, safely integrated
 * into the existing LiveTV Services theme.
 * ------------------------------------------------------------- */

/* Never let a marketplace child create horizontal page overflow. */
html, body { max-width:100%; overflow-x:hidden; }
.ltv-main, .ltv-home, .ltv-marketplace, .ltv-marketplace__top { max-width:100%; overflow-x:hidden; }

/* Soft pink marketplace top, matching the reference flow. */
.ltv-hero--marketplace {
	min-height: 0;
	padding: 62px 0 54px;
	background:
		radial-gradient(260px 180px at 8% 34%, rgba(255,122,145,.12), transparent 72%),
		radial-gradient(340px 220px at 92% 12%, rgba(255,205,215,.42), transparent 72%),
		linear-gradient(180deg, #fff4f6 0%, #ffeef2 55%, #fff8f9 100%);
}
.ltv-hero--marketplace::before {
	background: radial-gradient(320px 180px at 50% 100%, rgba(255,255,255,.88), transparent 72%);
}
.ltv-hero--marketplace .ltv-hero__content { max-width: 920px; }
.ltv-hero--marketplace .ltv-badge-pill { background:rgba(255,255,255,.72); }
.ltv-hero--marketplace .ltv-hero__title {
	max-width: 820px;
	font-size: clamp(42px, 6vw, 70px);
	line-height: 1.05;
	margin-top: 16px;
}
.ltv-hero--marketplace .ltv-hero__sub { max-width: 720px; }
.ltv-hero--marketplace .ltv-hero__cta { gap: 14px; }
.ltv-hero--marketplace .ltv-hero__points { gap: 26px; }

/* Search + category chips live directly on the soft marketplace background. */
.ltv-marketplace {
	padding: 0 0 58px;
	background: #fff;
}
.ltv-marketplace__top {
	background: linear-gradient(180deg, #fff8f9 0%, #fff0f3 100%);
	padding: 0 0 18px;
}
.ltv-marketplace .ltv-service-search {
	margin: -20px auto 16px;
	width: min(920px, 100%);
	min-height: 66px;
	padding: 8px 10px 8px 22px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 999px;
	background: rgba(255,255,255,.97);
	box-shadow: 0 12px 35px rgba(31,41,55,.10);
}
.ltv-marketplace .ltv-service-search input[type="search"] {
	font-size: 18px;
	font-weight: 500;
}
.ltv-marketplace .ltv-service-search input[type="search"]::placeholder { color:#7b7d86; }
.ltv-marketplace .ltv-service-search button {
	width:52px;
	height:52px;
	border-radius:50%;
	background:var(--ltv-accent);
	box-shadow:0 8px 20px rgba(99,91,255,.24);
}
.ltv-marketplace .ltv-service-chips {
	display:flex;
	gap:12px;
	overflow-x:auto;
	padding:2px 0 4px;
	scrollbar-width:none;
}
.ltv-marketplace .ltv-service-chips::-webkit-scrollbar { display:none; }
.ltv-marketplace .ltv-service-chip {
	min-height:48px;
	padding:9px 22px;
	border-radius:999px;
	font-size:16px;
	background:#fff;
	box-shadow:0 3px 10px rgba(15,23,42,.05);
}
.ltv-marketplace .ltv-service-chip.is-active {
	background:var(--ltv-accent);
	border-color:var(--ltv-accent);
	color:#fff;
}

/* Product area starts cleanly below the pink top. */
.ltv-marketplace-products { width:100%; overflow:hidden; }
.ltv-marketplace-heading {
	padding:44px 0 20px;
	align-items:flex-end;
}
.ltv-marketplace-heading__eyebrow { font-size:14px; }
.ltv-marketplace-heading h2 { font-size:clamp(28px,4vw,40px); }

/* Four clean cards on desktop. */
.ltv-marketplace-product-grid {
	width:100%!important;
	display:grid!important;
	grid-template-columns:repeat(4,minmax(0,1fr))!important;
	gap:22px!important;
	margin:0!important;
	padding:0!important;
}
.ltv-marketplace-product-grid > li.ltv-marketplace-product {
	display:flex!important;
	flex-direction:column;
	width:100%!important;
	min-width:0!important;
	max-width:none!important;
	margin:0!important;
	float:none!important;
	clear:none!important;
}
.ltv-marketplace-product .ltv-product-card__media {
	aspect-ratio: 1.35 / 1;
	overflow:hidden;
}
.ltv-marketplace-product .ltv-product-card__media img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.ltv-marketplace-product .ltv-product-card__body {
	padding:14px 15px 16px;
}
.ltv-marketplace-product .ltv-product-card__cat {
	font-size:11px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.08em;
}
.ltv-marketplace-product .ltv-product-card__title {
	font-size:18px;
	line-height:1.2;
	min-height:43px;
}
.ltv-marketplace-product .ltv-product-card__price {
	font-size:18px;
	margin-top:8px;
}
.ltv-marketplace-product .ltv-product-card__actions {
	margin-top:auto;
	padding-top:10px;
}
.ltv-marketplace-product .ltv-product-card__actions .button {
	display:flex;
	width:100%;
	min-height:44px;
	align-items:center;
	justify-content:center;
	border-radius:999px;
}

/* The subscription picker stays in the normal document flow. */
.ltv-subscription-picker {
	position:relative!important;
	margin:46px auto 0!important;
	max-width:760px;
}
.ltv-subscription-picker__trigger { min-height:66px; border-radius:22px; }

/* Mobile: two compact Anexly-style cards with a visible next card. */
@media (max-width: 720px) {
	.ltv-hero--marketplace {
		padding:48px 0 34px;
	}
	.ltv-hero--marketplace .ltv-hero__title {
		font-size:clamp(38px,9.8vw,52px);
		line-height:1.07;
	}
	.ltv-hero--marketplace .ltv-hero__sub {
		font-size:16px;
		line-height:1.55;
	}
	.ltv-hero--marketplace .ltv-hero__cta .ltv-btn {
		min-height:48px;
		padding-left:22px;
		padding-right:22px;
	}
	.ltv-hero--marketplace .ltv-hero__points {
		gap:12px 20px;
		font-size:14px;
	}
	.ltv-marketplace__top { padding-bottom:14px; }
	.ltv-marketplace .ltv-service-search {
		margin:-14px 0 14px;
		min-height:60px;
		padding-left:17px;
	}
	.ltv-marketplace .ltv-service-search input[type="search"] { font-size:16px; }
	.ltv-marketplace .ltv-service-search button { width:46px; height:46px; }
	.ltv-marketplace .ltv-service-chips {
		margin:0 -20px;
		padding:2px 20px 5px;
		gap:10px;
	}
	.ltv-marketplace .ltv-service-chip {
		min-height:44px;
		padding:8px 18px;
		font-size:15px;
	}
	.ltv-marketplace-heading {
		padding:34px 0 18px;
	}
	.ltv-marketplace-heading h2 { font-size:28px; line-height:1.15; }
	.ltv-marketplace-heading__eyebrow { font-size:13px; }
	.ltv-marketplace-heading__all { font-size:14px; }
	.ltv-marketplace-product-grid {
		display:flex!important;
		flex-wrap:nowrap!important;
		gap:18px!important;
		overflow-x:auto!important;
		overflow-y:hidden!important;
		scroll-snap-type:x mandatory;
		scrollbar-width:none;
		padding:2px 2px 14px!important;
		margin:0 -2px!important;
	}
	.ltv-marketplace-product-grid::-webkit-scrollbar { display:none; }
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex:0 0 clamp(180px,29vw,270px)!important;
		width:clamp(180px,29vw,270px)!important;
		max-width:clamp(180px,29vw,270px)!important;
		scroll-snap-align:start;
	}
	.ltv-marketplace-product .ltv-product-card__media { aspect-ratio:1.35 / 1; }
	.ltv-marketplace-product .ltv-product-card__body { padding:12px 12px 13px; }
	.ltv-marketplace-product .ltv-product-card__title {
		font-size:16px;
		min-height:38px;
	}
	.ltv-marketplace-product .ltv-product-card__price { font-size:16px; }
	.ltv-marketplace-product .ltv-product-card__actions .button {
		min-height:40px;
		font-size:13px;
	}
	.ltv-subscription-picker {
		margin:34px 0 0!important;
		max-width:none;
	}
	.ltv-subscription-picker__trigger {
		min-height:62px;
		border-radius:20px;
		font-size:16px;
	}
}

/* Small phones: keep the cards usable instead of overflowing the viewport. */
@media (max-width: 430px) {
	.ltv-container { padding-left:18px; padding-right:18px; }
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex-basis:220px!important;
		width:220px!important;
		max-width:220px!important;
	}
	.ltv-marketplace-heading__all { display:none; }
}

/* ---------------------------------------------------------------
 * v1.3.5 — Final Anexly-style marketplace fixes
 * - Search/category filters operate on ALL published products.
 * - Mobile cards use a compact horizontal rail (2 cards visible).
 * - Product cards are centered and match the reference marketplace.
 * - Subscription picker remains fully clickable and visible above cards.
 * ------------------------------------------------------------- */

/* Search/filter state must never leave a card in a collapsed grid cell. */
.ltv-marketplace-product.is-filtered { display:none !important; }
.ltv-marketplace-products { min-width:0; }

/* Anexly-like product card proportions on the marketplace only. */
.ltv-marketplace-product .ltv-product-card {
	background:#fff;
	border:1px solid #ececf1;
	border-radius:22px;
	box-shadow:0 4px 16px rgba(15,23,42,.05);
	overflow:hidden;
	transform:none;
}
.ltv-marketplace-product .ltv-product-card:hover {
	transform:translateY(-2px);
	box-shadow:0 10px 28px rgba(15,23,42,.09);
}
.ltv-marketplace-product .ltv-product-card__media {
	aspect-ratio:1 / 1 !important;
	background:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px 20px 8px;
	overflow:hidden;
}
.ltv-marketplace-product .ltv-product-card__media a {
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}
.ltv-marketplace-product .ltv-product-card__media img {
	width:112px !important;
	height:112px !important;
	max-width:112px !important;
	object-fit:contain !important;
	border-radius:18px;
}
.ltv-marketplace-product .ltv-product-card__badges { display:none; }
.ltv-marketplace-product .ltv-product-card__body {
	padding:10px 16px 18px;
	gap:7px;
	text-align:center;
}
.ltv-marketplace-product .ltv-product-card__cat { display:none; }
.ltv-marketplace-product .ltv-product-card__title {
	font-size:19px;
	line-height:1.25;
	min-height:48px;
	margin:0;
	display:flex;
	align-items:center;
	justify-content:center;
}
.ltv-marketplace-product .ltv-product-card__title a { color:#111827; }
.ltv-marketplace-product .ltv-product-card__price {
	font-size:20px;
	font-weight:800;
	color:#ef5b76;
	margin:2px 0 4px;
}
.ltv-marketplace-product .ltv-product-card__price del { color:#9ca3af; }
.ltv-marketplace-product .ltv-product-card__price ins { color:#ef5b76; }
.ltv-marketplace-product .ltv-product-card__actions { padding-top:4px; margin-top:auto; }
.ltv-marketplace-product .ltv-product-card__actions .button {
	width:100%;
	min-height:46px;
	border:0;
	border-radius:999px;
	background:linear-gradient(90deg,#f45169 0%,#ff765f 100%);
	color:#fff;
	font-size:15px;
	font-weight:800;
}
.ltv-marketplace-product .ltv-product-card__actions .button:hover {
	background:linear-gradient(90deg,#eb4660 0%,#f66c56 100%);
	color:#fff;
}

/* Picker: reference-style full-width selector. */
.ltv-subscription-picker {
	width:min(760px,100%);
	z-index:30;
}
.ltv-subscription-picker__trigger {
	background:#fff;
	border:1px solid #cfd1d8;
	box-shadow:0 7px 24px rgba(15,23,42,.08);
	border-radius:999px;
	padding-left:18px;
}
.ltv-subscription-picker__icon {
	width:50px;
	height:50px;
	border-radius:14px;
}
.ltv-subscription-picker__label {
	font-size:18px;
	font-weight:500;
	color:#6b7280;
}
.ltv-subscription-picker__chevron { color:#4b4b4b; }
.ltv-subscription-picker__menu {
	top:calc(100% + 8px);
	border-radius:18px;
	padding:8px;
	box-shadow:0 18px 45px rgba(15,23,42,.16);
	z-index:50;
}
.ltv-subscription-picker__menu-title {
	text-align:center;
	font-size:16px;
	padding:13px 12px 12px;
}
.ltv-subscription-picker__item {
	min-height:62px;
	padding:9px 12px;
	border-radius:12px;
}
.ltv-subscription-picker__thumb {
	width:46px;
	height:46px;
	border-radius:10px;
}
.ltv-subscription-picker__name { font-size:15px; font-weight:600; }

/* Mobile reference: two full cards + a visible part of the next card. */
@media (max-width:720px) {
	.ltv-marketplace-product-grid {
		display:flex !important;
		flex-wrap:nowrap !important;
		grid-template-columns:none !important;
		gap:14px !important;
		overflow-x:auto !important;
		overflow-y:hidden !important;
		scroll-snap-type:x mandatory;
		-webkit-overflow-scrolling:touch;
		scrollbar-width:none;
		padding:2px 2px 16px !important;
		margin:0 -2px !important;
	}
	.ltv-marketplace-product-grid::-webkit-scrollbar { display:none; }
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex:0 0 calc((100vw - 50px) / 2) !important;
		width:calc((100vw - 50px) / 2) !important;
		max-width:calc((100vw - 50px) / 2) !important;
		min-width:0 !important;
		scroll-snap-align:start;
	}
	.ltv-marketplace-product .ltv-product-card__media {
		aspect-ratio:1 / .96 !important;
		padding:18px 12px 4px;
	}
	.ltv-marketplace-product .ltv-product-card__media img {
		width:78px !important;
		height:78px !important;
		max-width:78px !important;
	}
	.ltv-marketplace-product .ltv-product-card__body { padding:9px 10px 12px; }
	.ltv-marketplace-product .ltv-product-card__title {
		font-size:15px;
		min-height:38px;
	}
	.ltv-marketplace-product .ltv-product-card__price { font-size:16px; }
	.ltv-marketplace-product .ltv-product-card__actions .button {
		min-height:40px;
		font-size:12px;
		padding:8px 7px;
	}
	.ltv-subscription-picker__trigger {
		min-height:60px;
		border-radius:999px;
	}
	.ltv-subscription-picker__icon {
		width:44px;
		height:44px;
		border-radius:12px;
	}
	.ltv-subscription-picker__label { font-size:16px; }
}

@media (max-width:380px) {
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex-basis:calc((100vw - 44px) / 2) !important;
		width:calc((100vw - 44px) / 2) !important;
		max-width:calc((100vw - 44px) / 2) !important;
	}
	.ltv-marketplace-product .ltv-product-card__title { font-size:14px; }
	.ltv-marketplace-product .ltv-product-card__actions .button { font-size:11px; }
}

/* ---------------------------------------------------------------
 * v1.3.6 — Anexly-style homepage interaction + layout hardening
 * Existing LiveTV Services theme is preserved.
 * ------------------------------------------------------------- */
html, body { overflow-x:hidden; }

.ltv-hero--marketplace {
	padding: 56px 0 42px;
	background:
		radial-gradient(260px 180px at 12% 42%, rgba(255,120,145,.12), transparent 72%),
		radial-gradient(340px 220px at 90% 12%, rgba(255,205,215,.38), transparent 72%),
		linear-gradient(180deg,#fff5f7 0%,#ffedf1 58%,#fff8f9 100%);
}
.ltv-hero--marketplace .ltv-hero__title { max-width: 900px; }
.ltv-hero__accent { color:#ef5873; }
.ltv-hero--marketplace .ltv-hero__sub { color:#69758a; }

.ltv-marketplace { padding-bottom:54px; background:#fff; }
.ltv-marketplace__top {
	background:linear-gradient(180deg,#fff8f9 0%,#ffedf1 100%);
	padding:0 0 26px;
}
.ltv-marketplace__controls { display:flex; flex-direction:column; gap:18px; }
.ltv-marketplace .ltv-service-chips {
	order:1;
	display:flex;
	align-items:stretch;
	gap:12px;
	overflow-x:auto;
	padding:2px 0 3px;
	scrollbar-width:none;
}
.ltv-marketplace .ltv-service-chips::-webkit-scrollbar { display:none; }
.ltv-marketplace .ltv-service-chip {
	flex:0 0 auto;
	min-height:74px;
	min-width:94px;
	padding:11px 15px;
	border:1px solid #eeeef2;
	border-radius:18px;
	background:#fff;
	box-shadow:0 5px 18px rgba(31,41,55,.05);
	color:#5f5c66;
	font-size:14px;
	font-weight:800;
	flex-direction:column;
	gap:6px;
}
.ltv-marketplace .ltv-service-chip__icon { display:inline-flex; align-items:center; justify-content:center; color:#69656e; }
.ltv-marketplace .ltv-service-chip.is-active { background:#ef596f; border-color:#ef596f; color:#fff; box-shadow:0 10px 24px rgba(239,89,111,.22); }
.ltv-marketplace .ltv-service-chip.is-active .ltv-service-chip__icon { color:#fff; }
.ltv-marketplace .ltv-service-search {
	order:2;
	width:min(760px,100%);
	margin:0 auto;
	min-height:64px;
	padding:8px 10px 8px 22px;
	border:1px solid rgba(255,255,255,.95);
	border-radius:999px;
	background:#fff;
	box-shadow:0 12px 35px rgba(31,41,55,.10);
}
.ltv-marketplace .ltv-service-search input[type="search"] { font-size:17px; color:#17151a; }
.ltv-marketplace .ltv-service-search button { width:50px; height:50px; background:#111013; box-shadow:none; }

.ltv-marketplace__products-wrap { padding-top:32px; }
.ltv-marketplace-products { overflow:visible; }
.ltv-marketplace-rail { position:relative; display:flex; align-items:center; gap:10px; }
.ltv-marketplace-viewport { min-width:0; width:100%; overflow:hidden; }
.ltv-marketplace-product-grid {
	display:flex!important;
	flex-wrap:nowrap!important;
	gap:20px!important;
	width:max-content!important;
	min-width:100%;
	margin:0!important;
	padding:4px 2px 14px!important;
	transition:transform .28s ease;
}
.ltv-marketplace-product-grid > li.ltv-marketplace-product {
	flex:0 0 clamp(250px,22vw,300px)!important;
	width:clamp(250px,22vw,300px)!important;
	max-width:clamp(250px,22vw,300px)!important;
	margin:0!important;
	float:none!important;
}
.ltv-marketplace-arrow {
	flex:0 0 40px;
	width:40px;
	height:40px;
	border:1px solid #e7e7eb;
	border-radius:50%;
	background:#fff;
	color:#111013;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	box-shadow:0 5px 15px rgba(0,0,0,.06);
}
.ltv-marketplace-arrow:hover { background:#111013; color:#fff; }
.ltv-marketplace-arrow[disabled] { opacity:.35; cursor:default; }
.ltv-marketplace-dots { display:flex; justify-content:center; gap:7px; min-height:14px; margin-top:4px; }
.ltv-marketplace-dot { width:7px; height:7px; border:0; padding:0; border-radius:99px; background:#d8d4d4; }
.ltv-marketplace-dot.is-active { width:28px; background:#ef596f; }

.ltv-marketplace-product .ltv-product-card { border-radius:24px; }
.ltv-marketplace-product .ltv-product-card__media { aspect-ratio:1.32 / 1!important; }
.ltv-marketplace-product .ltv-product-card__media img { width:112px!important; height:112px!important; object-fit:contain!important; }
.ltv-marketplace-product .ltv-product-card__body { padding:12px 15px 16px; }
.ltv-marketplace-product .ltv-product-card__title { font-size:18px; }
.ltv-marketplace-product .ltv-product-card__price { color:#ef5873; }

.ltv-subscription-picker { margin-top:30px!important; }
.ltv-subscription-picker__trigger { min-height:64px; padding:8px 18px; }
.ltv-subscription-picker__icon { width:44px; height:44px; border-radius:12px; background:#fff; color:#ef5873; border:1px solid #ececf0; }
.ltv-subscription-picker__divider { width:1px; height:24px; background:#d5d5d8; flex:0 0 auto; }
.ltv-subscription-picker__label { font-size:17px; }
.ltv-subscription-picker__menu { z-index:9999!important; }

@media (max-width:900px) {
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex-basis:260px!important;
		width:260px!important;
		max-width:260px!important;
	}
}
@media (max-width:720px) {
	.ltv-hero--marketplace { padding:42px 0 32px; }
	.ltv-hero--marketplace .ltv-hero__title { font-size:clamp(36px,10vw,52px); }
	.ltv-marketplace__top { padding-bottom:20px; }
	.ltv-marketplace .ltv-service-chips { margin:0 -18px; padding:2px 18px 3px; }
	.ltv-marketplace .ltv-service-chip { min-width:82px; min-height:68px; padding:9px 12px; font-size:12px; }
	.ltv-marketplace .ltv-service-search { min-height:60px; padding-left:17px; }
	.ltv-marketplace .ltv-service-search button { width:46px; height:46px; }
	.ltv-marketplace__products-wrap { padding-top:26px; }
	.ltv-marketplace-rail { gap:0; }
	.ltv-marketplace-arrow { display:none; }
	.ltv-marketplace-viewport { overflow-x:auto; overflow-y:hidden; scrollbar-width:none; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; }
	.ltv-marketplace-viewport::-webkit-scrollbar { display:none; }
	.ltv-marketplace-product-grid { width:max-content!important; gap:14px!important; }
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex:0 0 calc((100vw - 54px) / 2)!important;
		width:calc((100vw - 54px) / 2)!important;
		max-width:calc((100vw - 54px) / 2)!important;
		scroll-snap-align:start;
	}
	.ltv-marketplace-product .ltv-product-card__media { aspect-ratio:1 / .96!important; padding:16px 10px 2px; }
	.ltv-marketplace-product .ltv-product-card__media img { width:78px!important; height:78px!important; }
	.ltv-marketplace-product .ltv-product-card__body { padding:9px 10px 12px; }
	.ltv-marketplace-product .ltv-product-card__title { font-size:15px; min-height:38px; }
	.ltv-marketplace-product .ltv-product-card__price { font-size:16px; }
	.ltv-marketplace-product .ltv-product-card__actions .button { min-height:40px; font-size:12px; }
	.ltv-subscription-picker__trigger { min-height:60px; }
}

/* ---------------------------------------------------------------
 * v1.3.7 — Exact Anexly-style first fold, while keeping LiveTV theme
 * ------------------------------------------------------------- */
:root { --ltv-anexly-coral:#ee4e67; --ltv-anexly-coral-2:#f47a63; --ltv-anexly-pink:#fff0f3; --ltv-anexly-text:#111013; --ltv-anexly-muted:#737175; }

/* Anexly uses DM Sans for this marketplace area. */
.ltv-hero--marketplace,
.ltv-marketplace,
.ltv-marketplace * { font-family:"DM Sans",var(--ltv-font); }

/* First fold: compact, centered, pink, no oversized empty space. */
.ltv-hero--marketplace {
	position:relative;
	min-height:0;
	padding:82px 0 34px;
	overflow:hidden;
	background:linear-gradient(180deg,#fff8f9 0%,#fff0f3 48%,#ffecef 100%);
}
.ltv-hero--marketplace::before {
	content:"";
	position:absolute;
	inset:0;
	background:radial-gradient(360px 240px at 50% 100%,rgba(255,255,255,.62),transparent 72%);
	pointer-events:none;
}
.ltv-hero--marketplace .ltv-hero__inner { position:relative; z-index:2; display:block; }
.ltv-hero--marketplace .ltv-hero__content { max-width:1000px; margin:0 auto; text-align:center; }
.ltv-hero--marketplace .ltv-hero__title {
	max-width:1000px;
	margin:0 auto 22px;
	font-size:58px;
	font-weight:400;
	line-height:1.12;
	letter-spacing:-.035em;
	color:var(--ltv-anexly-text);
}
.ltv-hero--marketplace .ltv-hero__title strong { font-weight:700; }
.ltv-hero__line { display:block; }
.ltv-hero--marketplace .ltv-hero__accent { color:var(--ltv-anexly-coral); }
.ltv-hero--marketplace .ltv-hero__sub {
	max-width:760px;
	margin:0 auto;
	font-size:18px;
	line-height:1.55;
	font-weight:400;
	color:#737175;
}
.ltv-anexly-doodle { position:absolute; z-index:1; pointer-events:none; }
.ltv-anexly-doodle--left {
	left:11%; top:115px; width:120px; height:150px;
	border-left:3px solid #f6a1ad; border-bottom:3px solid #f6a1ad;
	border-radius:48% 0 40% 50%; transform:rotate(-20deg); opacity:.9;
}
.ltv-anexly-doodle--left::before {
	content:""; position:absolute; left:-5px; top:-16px; width:42px; height:34px;
	border:3px solid #f6a1ad; border-radius:55% 55% 50% 45%; transform:rotate(20deg);
}
.ltv-anexly-doodle--left::after {
	content:""; position:absolute; right:-12px; bottom:-6px; width:26px; height:26px;
	border-right:3px solid #f6a1ad; border-bottom:3px solid #f6a1ad; transform:rotate(-8deg) skew(-12deg);
}
.ltv-anexly-doodle--circle {
	right:22%; top:154px; width:285px; height:62px;
	border:6px solid rgba(247,161,174,.62); border-left-color:transparent; border-radius:50%; transform:rotate(-3deg);
}

/* Category controls: same square-card language as the reference, not pills. */
.ltv-marketplace { padding:0 0 42px; background:#fff; }
.ltv-marketplace__top { background:linear-gradient(180deg,#fff0f3 0%,#ffedf1 100%); padding:20px 0 34px; }
.ltv-marketplace__controls { max-width:976px; display:flex; flex-direction:column; gap:26px; }
.ltv-marketplace .ltv-service-chips {
	display:flex; justify-content:center; align-items:stretch; gap:14px; overflow-x:auto;
	padding:0 0 24px; margin:0; scrollbar-width:none; border-bottom:1px solid #c8c8c8;
}
.ltv-marketplace .ltv-service-chips::-webkit-scrollbar { display:none; }
.ltv-marketplace .ltv-service-chip {
	flex:0 0 112px; width:112px; min-height:108px; padding:14px 10px 12px;
	border:1px solid #eeeef1; border-radius:22px; background:#fff; color:#5e5c64;
	box-shadow:0 3px 10px rgba(17,16,19,.035); display:flex; flex-direction:column;
	align-items:center; justify-content:center; gap:8px; font-size:16px; font-weight:600; line-height:1.15;
	cursor:pointer; transition:all .18s ease;
}
.ltv-marketplace .ltv-service-chip:hover { transform:translateY(-1px); border-color:#f4a0ad; }
.ltv-marketplace .ltv-service-chip.is-active {
	background:linear-gradient(180deg,#ec4c62 0%,#f57957 100%); color:#fff; border-color:#ec4c62;
	box-shadow:0 8px 18px rgba(236,76,98,.18);
}
.ltv-marketplace .ltv-service-chip__icon { width:31px; height:31px; display:flex; align-items:center; justify-content:center; }
.ltv-marketplace .ltv-service-chip__icon .ltv-icon { width:29px; height:29px; }
.ltv-marketplace .ltv-service-chip.is-active .ltv-service-chip__icon { color:#fff; }

/* Reference search: wide, centered and clean. */
.ltv-marketplace .ltv-service-search {
	width:min(650px,100%); min-height:82px; margin:0 auto; padding:0 25px;
	border:0; border-radius:48px; background:#fff; box-shadow:0 9px 30px rgba(17,16,19,.09);
}
.ltv-marketplace .ltv-service-search__icon { display:none; }
.ltv-marketplace .ltv-service-search input[type="search"] {
	font-family:"DM Sans",var(--ltv-font); font-size:20px; font-weight:400; color:#111013; padding:0;
}
.ltv-marketplace .ltv-service-search input[type="search"]::placeholder { color:#7b7b7f; opacity:1; }
.ltv-marketplace .ltv-service-search button {
	width:50px; height:50px; flex:0 0 50px; border-radius:50%; background:transparent; color:#111013;
	box-shadow:none; padding:0;
}
.ltv-marketplace .ltv-service-search button .ltv-icon { width:27px; height:27px; }

/* Product rail begins immediately after the first fold instead of being pushed down. */
.ltv-marketplace-products { width:100%; overflow:hidden; }
.ltv-marketplace-products .ltv-marketplace-rail { position:relative; }
.ltv-marketplace-arrow { display:none !important; }
.ltv-marketplace-dots { margin-top:22px; }
.ltv-marketplace-product-grid { gap:28px !important; }
.ltv-marketplace-product .ltv-product-card { border-radius:30px; box-shadow:0 4px 18px rgba(17,16,19,.045); }
.ltv-marketplace-product .ltv-product-card__media { padding:26px 20px 10px; }
.ltv-marketplace-product .ltv-product-card__media img { width:118px !important; height:118px !important; max-width:118px !important; border-radius:20px; }
.ltv-marketplace-product .ltv-product-card__title { font-size:20px; }
.ltv-marketplace-product .ltv-product-card__price { font-size:22px; color:#f0526e; }
.ltv-marketplace-product .ltv-product-card__actions .button { min-height:48px; font-size:16px; background:linear-gradient(180deg,#ec4c62 0%,#f57957 100%); }

/* Selector: reference rounded dropdown, with reliable click target. */
.ltv-subscription-picker { position:relative !important; width:min(720px,100%); margin:42px auto 0 !important; z-index:100; }
.ltv-subscription-picker__trigger {
	position:relative; width:100%; min-height:68px; padding:9px 18px; border:1px solid #bdbdbd;
	border-radius:48px; background:#fff; box-shadow:3px 4px 12px rgba(0,0,0,.10); cursor:pointer;
}
.ltv-subscription-picker__icon { width:46px; height:46px; border-radius:10px; overflow:hidden; background:#fff; flex:0 0 46px; }
.ltv-subscription-picker__divider { width:2px; height:30px; background:#b3b3b3; margin:0 18px 0 12px; }
.ltv-subscription-picker__label { font-family:"DM Sans",var(--ltv-font); font-size:20px; color:#666; font-weight:400; text-align:left; }
.ltv-subscription-picker__chevron { margin-left:auto; font-size:31px; line-height:1; color:#555; }
.ltv-subscription-picker__menu {
	position:absolute !important; left:0; right:0; top:calc(100% + 7px) !important; width:100% !important;
	max-height:360px; overflow-y:auto; padding:8px 0 10px; border:1px solid #bcbcbc; border-radius:18px;
	background:#fff; box-shadow:0 14px 34px rgba(0,0,0,.13); z-index:1000;
}
.ltv-subscription-picker__menu-title { padding:14px 18px 12px; font-size:17px; font-weight:700; color:#737175; text-align:center; }
.ltv-subscription-picker__item { min-height:58px; padding:8px 18px; border-radius:0; display:flex; align-items:center; gap:12px; color:#111013; }
.ltv-subscription-picker__item:hover { background:#f8f8f8; color:#111013; }
.ltv-subscription-picker__thumb { width:42px; height:42px; border-radius:8px; overflow:hidden; flex:0 0 42px; }
.ltv-subscription-picker__name { font-size:16px; font-weight:500; color:#111013; }

@media (max-width:1100px) {
	.ltv-hero--marketplace .ltv-hero__title { font-size:54px; }
	.ltv-anexly-doodle--left { left:5%; }
	.ltv-anexly-doodle--circle { right:12%; }
}
@media (max-width:720px) {
	.ltv-hero--marketplace { padding:42px 0 20px; }
	.ltv-hero--marketplace .ltv-hero__title { font-size:40px; line-height:1.08; margin-bottom:14px; }
	.ltv-hero--marketplace .ltv-hero__sub { font-size:16px; line-height:1.45; padding:0 8px; }
	.ltv-anexly-doodle--left { left:-28px; top:75px; transform:scale(.7) rotate(-20deg); }
	.ltv-anexly-doodle--circle { right:2%; top:108px; width:160px; height:38px; border-width:4px; }
	.ltv-marketplace__top { padding:12px 0 22px; }
	.ltv-marketplace__controls { gap:18px; }
	.ltv-marketplace .ltv-service-chips { justify-content:flex-start; gap:10px; padding:0 0 17px; margin:0 -2px; }
	.ltv-marketplace .ltv-service-chip { flex:0 0 92px; width:92px; min-height:92px; border-radius:18px; padding:10px 6px; font-size:13px; }
	.ltv-marketplace .ltv-service-chip__icon .ltv-icon { width:25px; height:25px; }
	.ltv-marketplace .ltv-service-search { min-height:62px; padding:0 13px 0 20px; }
	.ltv-marketplace .ltv-service-search input[type="search"] { font-size:16px; }
	.ltv-marketplace .ltv-service-search button { width:42px; height:42px; flex-basis:42px; }
	.ltv-marketplace .ltv-service-search button .ltv-icon { width:24px; height:24px; }
	.ltv-marketplace-product-grid { gap:14px !important; }
	.ltv-marketplace-product .ltv-product-card__media { padding:17px 10px 5px; }
	.ltv-marketplace-product .ltv-product-card__media img { width:76px !important; height:76px !important; max-width:76px !important; border-radius:15px; }
	.ltv-marketplace-product .ltv-product-card__title { font-size:15px; min-height:38px; }
	.ltv-marketplace-product .ltv-product-card__price { font-size:16px; }
	.ltv-marketplace-product .ltv-product-card__actions .button { min-height:40px; font-size:12px; }
	.ltv-subscription-picker { margin:30px auto 0 !important; }
	.ltv-subscription-picker__trigger { min-height:58px; }
	.ltv-subscription-picker__icon { width:42px; height:42px; flex-basis:42px; }
	.ltv-subscription-picker__divider { height:25px; margin-left:10px; margin-right:12px; }
	.ltv-subscription-picker__label { font-size:16px; }
}


/* ---------------------------------------------------------------
 * v1.3.8 — Anexly mobile reference match
 * Mobile-only refinement. Desktop styles from v1.3.7 are preserved.
 * ------------------------------------------------------------- */
@media (max-width:720px) {
	/* Match the Anexly mobile headline scale and line rhythm. */
	.ltv-hero--marketplace .ltv-hero__title {
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:32px !important;
		line-height:1.10 !important;
		letter-spacing:-.035em !important;
		max-width:360px !important;
		margin:10px auto 13px !important;
	}
	.ltv-hero--marketplace .ltv-hero__title strong { font-weight:700 !important; }
	.ltv-hero--marketplace .ltv-hero__sub { display:none !important; }

	/* Keep the hand-drawn decorations in the same visual positions as the
	 * mobile reference instead of changing the desktop artwork. */
	.ltv-anexly-doodle--left {
		left:-26px !important;
		top:64px !important;
		transform:scale(.68) rotate(-20deg) !important;
	}
	.ltv-anexly-doodle--circle {
		right:2% !important;
		top:104px !important;
		width:160px !important;
		height:38px !important;
		border-width:4px !important;
	}

	/* Anexly-style category strip: same compact cards/icons and horizontal
	 * scrolling behavior, with no wrapping. */
	.ltv-marketplace .ltv-service-chips {
		justify-content:flex-start !important;
		align-items:center !important;
		gap:10px !important;
		overflow-x:auto !important;
		padding:2px 0 3px !important;
		margin:0 !important;
		border-bottom:0 !important;
	}
	.ltv-marketplace .ltv-service-chip {
		flex:0 0 auto !important;
		min-width:82px !important;
		width:auto !important;
		min-height:68px !important;
		padding:9px 12px !important;
		border-radius:18px !important;
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:13px !important;
		font-weight:600 !important;
		line-height:1.12 !important;
		gap:6px !important;
	}
	.ltv-marketplace .ltv-service-chip__icon,
	.ltv-marketplace .ltv-service-chip__icon .ltv-icon {
		width:26px !important;
		height:26px !important;
	}

	/* Search dimensions match the mobile reference. */
	.ltv-marketplace .ltv-service-search {
		width:calc(100% - 30px) !important;
		min-height:62px !important;
		margin:0 auto 14px !important;
		padding:0 13px 0 20px !important;
		border-radius:999px !important;
	}
	.ltv-marketplace .ltv-service-search input[type="search"] {
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:16px !important;
		line-height:1 !important;
	}
	.ltv-marketplace .ltv-service-search button {
		width:42px !important;
		height:42px !important;
		flex-basis:42px !important;
	}
	.ltv-marketplace .ltv-service-search button .ltv-icon { width:24px !important; height:24px !important; }

	/* Product rail: two equal cards on the mobile viewport, exactly like the
	 * reference; keep native horizontal swipe and snap. */
	.ltv-marketplace__products-wrap { padding-top:0 !important; }
	.ltv-marketplace-product-grid {
		gap:14px !important;
		padding:0 0 14px !important;
		width:max-content !important;
		min-width:0 !important;
	}
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex:0 0 calc((100vw - 54px) / 2) !important;
		width:calc((100vw - 54px) / 2) !important;
		max-width:calc((100vw - 54px) / 2) !important;
		margin:0 !important;
		scroll-snap-align:start !important;
	}
	.ltv-marketplace-product .ltv-product-card {
		border-radius:28px !important;
		box-shadow:0 3px 14px rgba(17,16,19,.045) !important;
		overflow:hidden !important;
	}
	.ltv-marketplace-product .ltv-product-card__media {
		aspect-ratio:1 / .96 !important;
		padding:16px 10px 2px !important;
	}
	.ltv-marketplace-product .ltv-product-card__media img {
		width:78px !important;
		height:78px !important;
		max-width:78px !important;
		border-radius:15px !important;
	}
	.ltv-marketplace-product .ltv-product-card__title {
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:15px !important;
		line-height:1.25 !important;
		min-height:38px !important;
	}
	.ltv-marketplace-product .ltv-product-card__price {
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:16px !important;
		line-height:1.2 !important;
	}
	.ltv-marketplace-product .ltv-product-card__actions .button {
		min-height:40px !important;
		font-family:"DM Sans",var(--ltv-font),sans-serif !important;
		font-size:12px !important;
		border-radius:999px !important;
	}

	/* The reference does not show navigation arrows on mobile. */
	.ltv-marketplace-arrow { display:none !important; }
}

@media (max-width:380px) {
	.ltv-marketplace-product-grid > li.ltv-marketplace-product {
		flex-basis:calc((100vw - 44px) / 2) !important;
		width:calc((100vw - 44px) / 2) !important;
		max-width:calc((100vw - 44px) / 2) !important;
	}
}

/* ---------------------------------------------------------------
 * Product purchase area v1.4.1
 * Price + quantity + Add to Cart appear immediately after options.
 * ------------------------------------------------------------- */
.woocommerce div.product .ltv-purchase-top {
    width: 100%;
    margin: 20px 0 0;
}
.woocommerce div.product .ltv-selected-variation-price {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}
.woocommerce div.product .ltv-selected-variation-price ins {
    text-decoration: none;
}
.woocommerce div.product .ltv-purchase-row {
    width: 100%;
    margin: 0 0 20px;
}
.woocommerce div.product .ltv-purchase-row .variations_button {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 !important;
}
.woocommerce div.product .ltv-purchase-row .variations_button .single_add_to_cart_button {
    margin: 0 !important;
}
.woocommerce div.product .ltv-purchase-row .variations_button .quantity {
    margin: 0 !important;
}
.woocommerce div.product .ltv-native-variation-description--hidden {
    display: none !important;
}
.woocommerce div.product .ltv-selected-variation-description {
    width: 100%;
    margin: 0 0 24px;
}
.woocommerce div.product .ltv-selected-variation-description[hidden] {
    display: none !important;
}
@media (max-width: 720px) {
    .woocommerce div.product .ltv-purchase-top { margin-top: 14px; }
    .woocommerce div.product .ltv-selected-variation-price { font-size: 25px; margin-bottom: 12px; }
    .woocommerce div.product .ltv-purchase-row .variations_button { gap: 9px; }
    .woocommerce div.product .ltv-purchase-row .variations_button .single_add_to_cart_button { flex: 1 1 auto; }
}


/* Anexly-style WooCommerce shop archive (v1.4.2). */
.ltv-anexly-shop-hero{background:linear-gradient(180deg,#fff0f3 0%,#ffedf1 100%);padding:44px 0 38px;overflow:hidden}
.ltv-anexly-shop-hero__eyebrow{margin:0 0 10px;text-transform:uppercase;letter-spacing:.08em;font-size:13px;font-weight:800;color:#ef5873}
.ltv-anexly-shop-hero h1{margin:0;max-width:920px;font-size:clamp(38px,5.2vw,68px);line-height:1.03;letter-spacing:-.045em;color:#111013}
.ltv-anexly-shop .ltv-marketplace{padding-top:0}
@media(max-width:640px){.ltv-anexly-shop-hero{padding:30px 0 26px}.ltv-anexly-shop-hero h1{font-size:34px;line-height:1.08}}


/* Anexly-style live product search dropdown. */
.ltv-service-search { position: relative; }
.ltv-live-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15,23,42,.16);
    padding: 8px;
    max-height: 430px;
    overflow-y: auto;
}
.ltv-live-search-results[hidden] { display: none !important; }
.ltv-live-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 64px;
    padding: 9px 12px;
    border-radius: 13px;
    color: var(--ltv-text);
    text-decoration: none !important;
    transition: background .15s ease;
}
.ltv-live-search-result:hover,
.ltv-live-search-result:focus { background: #f8f7ff; outline: none; }
.ltv-live-search-result img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: cover;
    border-radius: 10px;
}
.ltv-live-search-result__name {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}
.ltv-live-search-result__arrow {
    color: var(--ltv-accent);
    font-size: 26px;
    line-height: 1;
}

/* Anexly desktop category sizing — measured from the reference site. */
@media (min-width: 721px) {
  .ltv-marketplace .ltv-service-chip {
    flex: 0 0 80px !important;
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    height: 78.6979px !important;
    min-height: 78.6979px !important;
    max-height: 78.6979px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    gap: 2px !important;
    font-size: 13.3333px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    box-sizing: border-box !important;
  }

  .ltv-marketplace .ltv-service-chip__icon {
    width: 22px !important;
    height: 22px !important;
  }

  .ltv-marketplace .ltv-service-chip__icon .ltv-icon {
    width: 22px !important;
    height: 22px !important;
  }
}


/* Anexly desktop search exact dimensions measured in DevTools */
@media (min-width: 721px) {
  .ltv-marketplace .ltv-service-search {
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    padding-top: 14px !important;
    padding-right: 52px !important;
    padding-bottom: 14px !important;
    padding-left: 28px !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
  }
}


/* Anexly-style desktop search button placement */
@media (min-width: 721px) {
  .ltv-marketplace .ltv-service-search {
    position: relative !important;
  }
  .ltv-marketplace .ltv-service-search button {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .ltv-marketplace .ltv-service-search button .ltv-icon {
    width: 32px !important;
    height: 32px !important;
  }
}


/* Full footer pink background to match the marketplace/home pink tone */
.site-footer,
footer.site-footer,
.ltv-site-footer {
  background: #fff0f3 !important;
  color: #111013 !important;
  border-top-color: #ffdde4 !important;
}
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4,
footer.site-footer h1, footer.site-footer h2, footer.site-footer h3, footer.site-footer h4 {
  color: #111013 !important;
}
.site-footer p, .site-footer li, .site-footer span,
footer.site-footer p, footer.site-footer li, footer.site-footer span {
  color: #5f5c66 !important;
}
.site-footer a, footer.site-footer a {
  color: #111013 !important;
}
.site-footer a:hover, footer.site-footer a:hover {
  color: #ef5873 !important;
}

/* Correct footer selector: theme uses .ltv-footer */
.ltv-footer {
  background: #fff0f3 !important;
  color: #111013 !important;
  border-top: 1px solid #ffdde4 !important;
}
.ltv-footer .ltv-footer__title { color: #111013 !important; }
.ltv-footer .ltv-footer__text { color: #5f5c66 !important; }
.ltv-footer .ltv-footer__note { color: #737175 !important; }
.ltv-footer .ltv-footer__links a,
.ltv-footer .ltv-footer__contact a { color: #333139 !important; }
.ltv-footer .ltv-footer__links a:hover,
.ltv-footer .ltv-footer__contact a:hover { color: #ef5873 !important; }
.ltv-footer .ltv-footer__contact li { color: #333139 !important; }
.ltv-footer .ltv-footer__contact svg { color: #ef5873 !important; }
.ltv-footer__bottom { border-top-color: #ffdde4 !important; color: #737175 !important; }
.ltv-footer__bottom p { color: #737175 !important; }
.ltv-footer .ltv-footer__newsletter .button,
.ltv-footer .ltv-footer__newsletter a.button,
.ltv-footer .ltv-footer__newsletter .wp-block-button__link {
  background: #ef5873 !important;
  color: #fff !important;
  border-color: #ef5873 !important;
}

/* Category title: use exactly the existing Shop heading typography */
.ltv-marketplace .ltv-category-title,
.ltv-marketplace .ltv-shop-title,
.ltv-marketplace h1.page-title {
  font-size: 28px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}


/* ---------------------------------------------------------------
 * Anexly-style category loading state
 * ------------------------------------------------------------- */
html.ltv-anexly-loading,
body.ltv-anexly-loading {
  overflow: hidden !important;
}

body.ltv-anexly-loading > *:not(#ltv-anexly-category-loading) {
  filter: blur(7px);
  transition: filter .18s ease;
}

.ltv-anexly-category-loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  background: rgba(255,255,255,.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}

.ltv-anexly-category-loading.is-visible {
  opacity: 1;
  visibility: visible;
}

.ltv-anexly-category-loading__spinner {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
}

.ltv-anexly-category-loading__core {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f15b62;
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 3px 12px rgba(241,91,98,.22);
  transform: rotate(-45deg);
}

.ltv-anexly-category-loading__spinner i {
  position: absolute;
  inset: 4px;
  border: 6px solid transparent;
  border-top-color: #f15b62;
  border-right-color: #f15b62;
  border-radius: 50%;
  animation: ltv-anexly-spin 1s linear infinite;
}

.ltv-anexly-category-loading__spinner i:nth-child(3) {
  inset: 17px;
  border-width: 5px;
  border-top-color: transparent;
  border-left-color: #f15b62;
  animation-direction: reverse;
  animation-duration: .8s;
}

.ltv-anexly-category-loading__spinner i:nth-child(4) {
  inset: -8px;
  border-width: 5px;
  border-top-color: #f15b62;
  border-right-color: transparent;
  animation-duration: 1.25s;
}

.ltv-anexly-category-loading__text {
  margin-top: 34px;
  color: #8f91ad;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .01em;
}

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

@media (max-width: 720px) {
  .ltv-anexly-category-loading {
    padding-top: 70px;
  }
  .ltv-anexly-category-loading__spinner {
    width: 92px;
    height: 92px;
  }
  .ltv-anexly-category-loading__core {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
  .ltv-anexly-category-loading__text {
    margin-top: 26px;
    font-size: 19px;
  }
}

/* ---------------------------------------------------------------
 * v1.5.0 — Final Anexly-inspired hero composition
 * Live TV Services branding/content preserved. Existing JS/WooCommerce
 * filtering and search markup are intentionally untouched.
 * ------------------------------------------------------------- */
.ltv-hero--marketplace {
	position: relative;
	min-height: 0;
	padding: 58px 0 50px !important;
	background: linear-gradient(180deg, #fffafa 0%, #fff5f7 100%) !important;
	text-align: center;
	overflow: hidden;
}
.ltv-hero--marketplace::before,
.ltv-hero--marketplace::after { content: none !important; }
.ltv-hero--marketplace .ltv-hero__inner {
	display: block !important;
	position: relative;
	z-index: 1;
}
.ltv-hero--marketplace .ltv-hero__content {
	width: 100%;
	max-width: 1000px !important;
	margin: 0 auto;
	text-align: center;
}
.ltv-hero--marketplace .ltv-hero__title {
	width: 100%;
	max-width: 860px !important;
	margin: 0 auto 22px !important;
	font-family: "DM Sans", var(--ltv-font), sans-serif !important;
	font-size: 56px !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.038em !important;
	color: #111013 !important;
}
.ltv-hero--marketplace .ltv-hero__line { display: block; white-space: nowrap; }
.ltv-hero--marketplace .ltv-hero__title strong { font-weight: 700 !important; }
.ltv-hero--marketplace .ltv-hero__accent { color: #ef526c !important; }
.ltv-hero--marketplace .ltv-hero__sub {
	display: block !important;
	max-width: 700px !important;
	margin: 0 auto !important;
	font-family: "DM Sans", var(--ltv-font), sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	letter-spacing: 0 !important;
	color: #343239 !important;
}

/* Controls remain part of the same visual first fold. */
.ltv-marketplace {
	padding-bottom: 46px !important;
	background: linear-gradient(180deg, #fff5f7 0%, #fffafb 100%) !important;
}
.ltv-marketplace__top {
	padding: 0 0 28px !important;
	background: transparent !important;
}
.ltv-marketplace__controls {
	width: 100%;
	max-width: 976px !important;
	margin: 0 auto;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 30px !important;
}

/* Desktop categories: exact compact Anexly-style square cards. */
.ltv-marketplace .ltv-service-chips {
	order: 1 !important;
	width: min(780px, 100%) !important;
	max-width: 780px !important;
	margin: 0 auto !important;
	padding: 0 0 24px !important;
	border-bottom: 1px solid #c9c9c9 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: stretch !important;
	gap: 14px !important;
	overflow-x: auto !important;
	scrollbar-width: none;
}
.ltv-marketplace .ltv-service-chips::-webkit-scrollbar { display: none; }
.ltv-marketplace .ltv-service-chip {
	flex: 0 0 80px !important;
	width: 80px !important;
	min-width: 80px !important;
	max-width: 80px !important;
	height: 78.6979px !important;
	min-height: 78.6979px !important;
	max-height: 78.6979px !important;
	padding: 8px !important;
	box-sizing: border-box !important;
	border: 1px solid #eeeef1 !important;
	border-radius: 16px !important;
	background: #fff !important;
	color: #5e5c64 !important;
	box-shadow: 0 5px 16px rgba(17,16,19,.045) !important;
	font-family: "DM Sans", var(--ltv-font), sans-serif !important;
	font-size: 13.3333px !important;
	font-weight: 400 !important;
	line-height: normal !important;
	gap: 2px !important;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.ltv-marketplace .ltv-service-chip:hover {
	transform: translateY(-1px);
	border-color: #f2a0ad !important;
	box-shadow: 0 8px 18px rgba(17,16,19,.07) !important;
}
.ltv-marketplace .ltv-service-chip__icon {
	width: 22px !important;
	height: 22px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #69656e !important;
}
.ltv-marketplace .ltv-service-chip__icon .ltv-icon { width: 22px !important; height: 22px !important; }
.ltv-marketplace .ltv-service-chip.is-active {
	background: linear-gradient(180deg, #ef5669 0%, #f5795b 100%) !important;
	border-color: #ef5669 !important;
	color: #fff !important;
	box-shadow: 0 9px 22px rgba(239,86,105,.20) !important;
}
.ltv-marketplace .ltv-service-chip.is-active .ltv-service-chip__icon { color: #fff !important; }

/* Desktop search: 480 × 60px, centered beneath the divider. */
.ltv-marketplace .ltv-service-search {
	order: 2 !important;
	position: relative !important;
	width: 480px !important;
	min-width: 480px !important;
	max-width: 480px !important;
	height: 60px !important;
	min-height: 60px !important;
	max-height: 60px !important;
	margin: 0 auto !important;
	padding: 14px 52px 14px 28px !important;
	box-sizing: border-box !important;
	border: 0 !important;
	border-radius: 50px !important;
	background: #fff !important;
	box-shadow: 0 10px 30px rgba(17,16,19,.085) !important;
}
.ltv-marketplace .ltv-service-search__icon { display: none !important; }
.ltv-marketplace .ltv-service-search input[type="search"] {
	width: 100% !important;
	min-width: 0 !important;
	height: 32px !important;
	padding: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	font-family: "DM Sans", var(--ltv-font), sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 32px !important;
	color: #111013 !important;
}
.ltv-marketplace .ltv-service-search input[type="search"]::placeholder { color: #77777d !important; opacity: 1 !important; }
.ltv-marketplace .ltv-service-search button {
	position: absolute !important;
	right: 14px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #111013 !important;
	box-shadow: none !important;
}
.ltv-marketplace .ltv-service-search button .ltv-icon { width: 27px !important; height: 27px !important; }

/* Mobile reference composition: title → search → horizontally scrolling pills. */
@media (max-width: 720px) {
	.ltv-hero--marketplace {
		padding: 58px 0 34px !important;
		background: #fff !important;
	}
	.ltv-hero--marketplace .ltv-hero__title {
		max-width: 360px !important;
		margin: 0 auto 24px !important;
		font-size: 32px !important;
		line-height: 1.10 !important;
		letter-spacing: -0.035em !important;
	}
	.ltv-hero--marketplace .ltv-hero__line { white-space: normal; }
	.ltv-hero--marketplace .ltv-hero__sub { display: none !important; }

	.ltv-marketplace {
		padding-bottom: 34px !important;
		background: #fff !important;
	}
	.ltv-marketplace__top {
		padding: 0 0 20px !important;
		background: #fff !important;
	}
	.ltv-marketplace__controls {
		gap: 18px !important;
		align-items: stretch !important;
	}
	.ltv-marketplace .ltv-service-search {
		order: 1 !important;
		width: calc(100% - 30px) !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 60px !important;
		min-height: 60px !important;
		max-height: 60px !important;
		margin: 0 auto !important;
		padding: 14px 50px 14px 22px !important;
	}
	.ltv-marketplace .ltv-service-search input[type="search"] { font-size: 16px !important; }
	.ltv-marketplace .ltv-service-search button {
		right: 11px !important;
		width: 34px !important;
		height: 34px !important;
		min-width: 34px !important;
		min-height: 34px !important;
	}
	.ltv-marketplace .ltv-service-search button .ltv-icon { width: 24px !important; height: 24px !important; }

	.ltv-marketplace .ltv-service-chips {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 -18px !important;
		padding: 0 18px 3px !important;
		border-bottom: 0 !important;
		justify-content: flex-start !important;
		align-items: center !important;
		gap: 8px !important;
		overflow-x: auto !important;
	}
	.ltv-marketplace .ltv-service-chip {
		flex: 0 0 auto !important;
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 56px !important;
		min-height: 56px !important;
		max-height: 56px !important;
		padding: 0 17px !important;
		border-radius: 999px !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		gap: 8px !important;
		box-shadow: 0 5px 16px rgba(17,16,19,.055) !important;
	}
	.ltv-marketplace .ltv-service-chip__icon,
	.ltv-marketplace .ltv-service-chip__icon .ltv-icon {
		width: 22px !important;
		height: 22px !important;
	}
	.ltv-marketplace .ltv-service-chip.is-active { box-shadow: 0 8px 20px rgba(239,86,105,.20) !important; }

	.ltv-marketplace__products-wrap { padding-top: 8px !important; }
	.ltv-marketplace-heading { padding-top: 28px !important; }
}

@media (max-width: 430px) {
	.ltv-container { padding-left: 18px; padding-right: 18px; }
	.ltv-hero--marketplace .ltv-hero__title {
		max-width: 340px !important;
		font-size: 31px !important;
	}
	.ltv-marketplace .ltv-service-search { width: calc(100% - 24px) !important; }
}

/* Surgical mobile fix: keep the complete WooCommerce product description
 * inside the viewport while preserving the existing content and line breaks.
 * Desktop remains unchanged.
 */
@media (max-width: 720px) {
    .woocommerce div.product .woocommerce-tabs,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description p,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description li,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description div {
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: normal;
        max-width: 100%;
        box-sizing: border-box;
    }

    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description pre {
        white-space: pre-wrap !important;
        overflow-wrap: anywhere;
        word-break: normal;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description img,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description table,
    .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description iframe {
        max-width: 100%;
    }
}



/* ---------------------------------------------------------------
 * Surgical mobile single-product image sizing.
 * Keep desktop untouched; only reduce the main product image/logo
 * on phones so product information appears sooner in the viewport.
 * ------------------------------------------------------------- */
@media (max-width: 640px) {
	.woocommerce div.product div.images {
		margin-bottom: 12px;
	}

	.woocommerce div.product div.images .woocommerce-product-gallery__image img,
	.woocommerce div.product div.images > img {
		display: block;
		width: 220px !important;
		max-width: 58vw !important;
		height: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
		object-fit: contain;
	}
}
