/* ============================================================
   Fresh Cool — app.css
   Dark theme, animations, preloader, hero, shop filters, cards
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
	--fc-bg-gradient-a: #eff6ff;
	--fc-bg-gradient-b: #ffffff;
	--fc-bg-gradient-c: #f0f9ff;
	--fc-card: #ffffff;
	--fc-card-2: #f8fafc;
	--fc-foreground: hsl(222, 47%, 11%);
	--fc-muted: hsl(215, 16%, 47%);
	--fc-border: hsl(214, 32%, 91%);
	--fc-primary: hsl(221, 83%, 53%);
	--fc-primary-rgb: 37, 99, 235;
	--fc-primary-hover: hsl(221, 83%, 45%);
	--fc-accent: hsl(192, 91%, 50%);
	--fc-success: hsl(142, 71%, 45%);
	--fc-warn: hsl(38, 92%, 50%);
	--fc-whatsapp: #25D366;
	--fc-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
	--fc-shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
	--fc-shadow-lg: 0 24px 55px -20px rgba(15, 23, 42, .28);
	--fc-radius: 16px;
	--fc-ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
	--fc-bg-gradient-a: #050914;
	--fc-bg-gradient-b: #0b1220;
	--fc-bg-gradient-c: #0a1428;
	--fc-card: #0f172a;
	--fc-card-2: #111827;
	--fc-foreground: #e2e8f0;
	--fc-muted: #94a3b8;
	--fc-border: #1f2a44;
	--fc-primary: hsl(217, 91%, 65%);
	--fc-primary-rgb: 96, 165, 250;
	--fc-primary-hover: hsl(217, 91%, 72%);
	--fc-accent: hsl(192, 91%, 60%);
	--fc-shadow: 0 18px 45px -14px rgba(0, 0, 0, .6);
	--fc-shadow-lg: 0 32px 70px -20px rgba(0, 0, 0, .75);
}

html { scroll-behavior: smooth; }

body,
body.elementor-default {
	background:
		radial-gradient(1200px 700px at 10% -10%, rgba(var(--fc-primary-rgb), .12), transparent 60%),
		radial-gradient(900px 600px at 100% 10%, rgba(14, 165, 233, .08), transparent 60%),
		linear-gradient(180deg, var(--fc-bg-gradient-a), var(--fc-bg-gradient-b) 40%, var(--fc-bg-gradient-c));
	color: var(--fc-foreground);
	transition: background-color .4s var(--fc-ease), color .3s var(--fc-ease);
}

html[data-theme="dark"] body {
	background:
		radial-gradient(1100px 650px at 8% -12%, rgba(96, 165, 250, .18), transparent 60%),
		radial-gradient(900px 600px at 105% 0%, rgba(14, 165, 233, .12), transparent 60%),
		linear-gradient(180deg, #050914, #0a1120 45%, #070c18);
}

::selection { background: rgba(var(--fc-primary-rgb), .25); color: inherit; }

/* ---------- Preloader ---------- */
.fc-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 50% 40%, rgba(var(--fc-primary-rgb), .18), rgba(255, 255, 255, 0) 55%),
		linear-gradient(180deg, #ffffff, #eff6ff);
	transition: opacity .55s var(--fc-ease), visibility .55s var(--fc-ease);
}
html[data-theme="dark"] .fc-preloader {
	background: radial-gradient(circle at 50% 40%, rgba(96, 165, 250, .25), transparent 55%),
		linear-gradient(180deg, #050914, #0a1120);
}
.fc-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.fc-pre-logo {
	width: 84px;
	height: 84px;
	border-radius: 22px;
	background: var(--fc-card);
	display: grid;
	place-items: center;
	box-shadow: var(--fc-shadow-lg);
	animation: fcFloat 1.8s var(--fc-ease) infinite alternate;
}
.fc-pre-logo img { width: 56px; height: 56px; object-fit: contain; }
.fc-pre-ring {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: var(--fc-primary);
	border-right-color: rgba(var(--fc-primary-rgb), .4);
	animation: fcSpin 1.1s linear infinite;
}
@keyframes fcSpin { to { transform: rotate(360deg); } }
@keyframes fcFloat { from { transform: translateY(-4px); } to { transform: translateY(4px); } }

/* Snowflake swirl accents around preloader */
.fc-pre-flake {
	position: absolute;
	color: rgba(var(--fc-primary-rgb), .45);
	animation: fcFlake 6s ease-in-out infinite;
	opacity: 0;
}
.fc-pre-flake:nth-child(1) { top: 30%; left: 35%; animation-delay: 0s; }
.fc-pre-flake:nth-child(2) { top: 62%; left: 58%; animation-delay: 1.4s; }
.fc-pre-flake:nth-child(3) { top: 40%; left: 66%; animation-delay: 2.8s; }
@keyframes fcFlake {
	0% { transform: translateY(0) rotate(0); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: translateY(-60px) rotate(360deg); opacity: 0; }
}

/* ---------- Header upgrades (dark + scrolled state) ---------- */
.fc-header {
	background: rgba(255, 255, 255, .82);
	border-color: rgba(15, 23, 42, .08);
	transition: background-color .3s var(--fc-ease), box-shadow .3s var(--fc-ease), border-color .3s var(--fc-ease);
}
.fc-header.is-scrolled {
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 6px 24px -12px rgba(15, 23, 42, .2);
}
html[data-theme="dark"] .fc-header {
	background: rgba(10, 16, 32, .78);
	border-color: rgba(255, 255, 255, .06);
}
html[data-theme="dark"] .fc-header.is-scrolled {
	background: rgba(10, 16, 32, .92);
	box-shadow: 0 6px 28px -14px rgba(0, 0, 0, .6);
}

.fc-brand { transition: transform .3s var(--fc-ease); }
.fc-brand:hover { transform: translateY(-1px); }
.fc-brand img { transition: transform .4s var(--fc-ease), filter .4s var(--fc-ease); }
.fc-brand:hover img { transform: rotate(-6deg) scale(1.04); filter: drop-shadow(0 6px 10px rgba(var(--fc-primary-rgb), .35)); }

.fc-nav a { position: relative; }
.fc-nav a::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--fc-primary), var(--fc-accent));
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width .3s var(--fc-ease);
}
.fc-nav a:hover::before,
.fc-nav a.is-active::before { width: 100%; }
.fc-nav a.is-active::after { background: linear-gradient(90deg, var(--fc-primary), var(--fc-accent)); }

html[data-theme="dark"] .fc-nav a { color: rgba(226, 232, 240, .82); }
html[data-theme="dark"] .fc-search input {
	background: rgba(255, 255, 255, .06);
	color: var(--fc-foreground);
}
html[data-theme="dark"] .fc-search input::placeholder { color: rgba(148, 163, 184, .7); }
html[data-theme="dark"] .fc-btn:hover { background: rgba(255, 255, 255, .06); }
html[data-theme="dark"] .fc-btn-outline { border-color: rgba(148, 163, 184, .28); color: var(--fc-foreground); }
html[data-theme="dark"] .fc-btn-outline:hover { background: rgba(96, 165, 250, .1); color: var(--fc-primary); }

/* ---------- TranslatePress: kill the default floater (we render our own toggle) ---------- */
body .trp-floater-ls-shortcode-language,
body .trp-floating-switcher,
body .trp-language-switcher.trp-floating-switcher { display: none !important; }

/* ---------- Theme toggle ---------- */
.fc-theme-toggle {
	position: relative;
	width: 44px;
	height: 36px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .05);
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: background-color .3s var(--fc-ease), transform .3s var(--fc-ease);
}
.fc-theme-toggle:hover { transform: translateY(-1px); background: rgba(var(--fc-primary-rgb), .1); }
.fc-theme-toggle svg { width: 18px; height: 18px; transition: transform .6s var(--fc-ease), opacity .3s var(--fc-ease); position: absolute; }
.fc-theme-toggle .fc-icon-moon { opacity: 1; transform: translateY(0) rotate(0); color: #1e293b; }
.fc-theme-toggle .fc-icon-sun  { opacity: 0; transform: translateY(20px) rotate(-90deg); color: #fbbf24; }
html[data-theme="dark"] .fc-theme-toggle { background: rgba(255, 255, 255, .08); }
html[data-theme="dark"] .fc-theme-toggle .fc-icon-moon { opacity: 0; transform: translateY(-20px) rotate(90deg); }
html[data-theme="dark"] .fc-theme-toggle .fc-icon-sun  { opacity: 1; transform: translateY(0) rotate(0); }

/* ---------- Buttons ---------- */
.fc-btn { letter-spacing: .01em; position: relative; overflow: hidden; }
.fc-btn-primary {
	background: linear-gradient(135deg, var(--fc-primary), #1d4ed8);
	box-shadow: 0 10px 25px -10px rgba(var(--fc-primary-rgb), .55);
}
.fc-btn-primary:hover {
	background: linear-gradient(135deg, var(--fc-primary-hover), #1e40af);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px -12px rgba(var(--fc-primary-rgb), .7);
}
.fc-btn-primary::after,
.fc-btn-outline::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at var(--fc-mx, 50%) var(--fc-my, 50%), rgba(255, 255, 255, .25), transparent 40%);
	opacity: 0;
	transition: opacity .35s var(--fc-ease);
	pointer-events: none;
}
.fc-btn-primary:hover::after,
.fc-btn-outline:hover::after { opacity: 1; }

.fc-btn-lg { height: 48px; padding: 0 1.5rem; font-size: 1rem; border-radius: 999px; }

/* Ripple */
.fc-ripple {
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, .45);
	transform: scale(0);
	animation: fcRipple .7s var(--fc-ease) forwards;
	pointer-events: none;
}
@keyframes fcRipple { to { transform: scale(16); opacity: 0; } }

/* ---------- Cards & utilities ---------- */
.fc-section { padding: 4.5rem 0; position: relative; }
.fc-section-lg { padding: 6rem 0; }
.fc-h-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .35rem .75rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fc-primary);
	background: rgba(var(--fc-primary-rgb), .12);
}
.fc-h-eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--fc-primary); border-radius: 999px; }
.fc-h-title {
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 800;
	margin: 1rem 0 .75rem;
	letter-spacing: -.02em;
	color: var(--fc-foreground);
	line-height: 1.15;
}
.fc-h-sub { color: var(--fc-muted); font-size: 1.05rem; max-width: 680px; line-height: 1.65; margin: 0; }
.fc-section-head { text-align: center; margin-bottom: 3rem; }
.fc-section-head .fc-h-sub { margin-left: auto; margin-right: auto; }

.fc-card {
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	transition: transform .45s var(--fc-ease), box-shadow .45s var(--fc-ease), border-color .3s var(--fc-ease);
	position: relative;
	overflow: hidden;
}
.fc-card:hover { transform: translateY(-6px); box-shadow: var(--fc-shadow-lg); border-color: rgba(var(--fc-primary-rgb), .35); }

/* ---------- HERO ---------- */
.fc-hero {
	position: relative;
	padding: 5rem 0 6.5rem;
	overflow: hidden;
	isolation: isolate;
}
.fc-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 960px) { .fc-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; } }

.fc-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .45rem 1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(var(--fc-primary-rgb), .12), rgba(14, 165, 233, .08));
	color: var(--fc-primary);
	font-weight: 600;
	font-size: .85rem;
	border: 1px solid rgba(var(--fc-primary-rgb), .2);
}
.fc-hero-eyebrow svg { width: 16px; height: 16px; }
.fc-hero h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.05;
	letter-spacing: -.03em;
	font-weight: 800;
	margin: 1.25rem 0 1rem;
	color: var(--fc-foreground);
}
.fc-hero h1 .fc-gradient-text {
	background: linear-gradient(135deg, var(--fc-primary) 0%, #06b6d4 50%, #2563eb 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-size: 200% 200%;
	animation: fcShift 7s ease-in-out infinite;
}
@keyframes fcShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.fc-hero p.lead {
	font-size: 1.1rem;
	color: var(--fc-muted);
	max-width: 560px;
	line-height: 1.7;
	margin: 0 0 2rem;
}
.fc-hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.fc-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px dashed var(--fc-border);
}
.fc-hero-stats .fc-stat { text-align: left; }
.fc-hero-stats strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--fc-foreground); letter-spacing: -.02em; }
.fc-hero-stats span { font-size: .78rem; color: var(--fc-muted); text-transform: uppercase; letter-spacing: .06em; }

.fc-hero-visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--fc-shadow-lg);
	background:
		radial-gradient(circle at 25% 20%, rgba(6, 182, 212, .4), transparent 55%),
		linear-gradient(135deg, rgba(var(--fc-primary-rgb), .9), #0ea5e9);
}
@media (min-width: 960px) { .fc-hero-visual { aspect-ratio: 5 / 6; } }
.fc-hero-visual::before,
.fc-hero-visual::after {
	content: "";
	position: absolute;
	inset: -30%;
	background: radial-gradient(circle, rgba(255, 255, 255, .45), transparent 60%);
	animation: fcOrb 14s ease-in-out infinite alternate;
	mix-blend-mode: overlay;
	pointer-events: none;
}
.fc-hero-visual::after { inset: auto -40% -30% 30%; background: radial-gradient(circle, rgba(0, 213, 255, .55), transparent 60%); animation-delay: -7s; }
@keyframes fcOrb { from { transform: translate(-8%, -5%) scale(1); } to { transform: translate(10%, 6%) scale(1.15); } }
.fc-hero-visual img {
	position: absolute;
	inset: 10% 10% 0 10%;
	width: 80%;
	height: 85%;
	object-fit: contain;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
	animation: fcFloatY 6s ease-in-out infinite alternate;
}
@keyframes fcFloatY { from { transform: translateY(-8px); } to { transform: translateY(10px); } }

.fc-hero-floating {
	position: absolute;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
	padding: .75rem 1rem;
	border-radius: 14px;
	box-shadow: var(--fc-shadow);
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-size: .85rem;
	color: var(--fc-foreground);
	font-weight: 600;
	animation: fcFloatY 4.5s ease-in-out infinite alternate;
}
html[data-theme="dark"] .fc-hero-floating { background: rgba(15, 23, 42, .82); color: #e2e8f0; }
.fc-hero-floating.tl { top: 8%; left: -6%; animation-delay: -1.5s; }
.fc-hero-floating.br { bottom: 8%; right: -6%; animation-delay: -3s; }
.fc-hero-floating .fc-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--fc-success); box-shadow: 0 0 10px var(--fc-success); animation: fcPulse 1.8s ease-out infinite; }
@keyframes fcPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: .5; } }

.fc-marquee {
	margin-top: 3rem;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.fc-marquee-track {
	display: flex;
	gap: 3rem;
	animation: fcScroll 28s linear infinite;
	width: max-content;
	align-items: center;
}
.fc-marquee-track img { height: 40px; width: auto; opacity: .75; filter: grayscale(1); transition: filter .3s, opacity .3s, transform .3s; }
.fc-marquee-track a:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.08); }
.fc-marquee-track span {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--fc-muted);
	letter-spacing: .02em;
	transition: color .3s, transform .3s;
}
.fc-marquee-track a:hover span { color: var(--fc-primary); transform: translateY(-2px); }
@keyframes fcScroll { to { transform: translateX(-50%); } }

/* ---------- Category grid ---------- */
.fc-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}
.fc-cat-card {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	padding: 2rem 1.5rem;
	text-align: center;
	align-items: center;
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	transition: transform .4s var(--fc-ease), box-shadow .4s var(--fc-ease), border-color .3s;
	position: relative;
	overflow: hidden;
}
.fc-cat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(var(--fc-primary-rgb), .18), transparent 70%);
	opacity: 0;
	transition: opacity .4s var(--fc-ease);
	pointer-events: none;
}
.fc-cat-card:hover { transform: translateY(-8px); box-shadow: var(--fc-shadow-lg); border-color: rgba(var(--fc-primary-rgb), .4); }
.fc-cat-card:hover::before { opacity: 1; }
.fc-cat-icon {
	width: 72px;
	height: 72px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(var(--fc-primary-rgb), .15), rgba(14, 165, 233, .1));
	color: var(--fc-primary);
	display: grid;
	place-items: center;
	transition: transform .6s var(--fc-ease);
}
.fc-cat-icon svg { width: 36px; height: 36px; }
.fc-cat-card:hover .fc-cat-icon { transform: rotate(-8deg) scale(1.08); }
.fc-cat-card h3 { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--fc-foreground); }
.fc-cat-card p { color: var(--fc-muted); margin: 0; font-size: .9rem; }
.fc-cat-link { font-size: .85rem; font-weight: 600; color: var(--fc-primary); display: inline-flex; gap: .3rem; align-items: center; margin-top: auto; }
.fc-cat-card:hover .fc-cat-link svg { transform: translateX(4px); }
.fc-cat-link svg { width: 14px; height: 14px; transition: transform .3s var(--fc-ease); }

/* ---------- Product grid ---------- */
.fc-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}
.fc-pc {
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .4s var(--fc-ease), box-shadow .4s var(--fc-ease), border-color .3s;
	text-decoration: none;
	color: inherit;
	position: relative;
}
.fc-pc:hover { transform: translateY(-8px); box-shadow: var(--fc-shadow-lg); border-color: rgba(var(--fc-primary-rgb), .35); color: inherit; }
.fc-pc-media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fc-card-2);
	overflow: hidden;
}
.fc-pc-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--fc-ease);
}
.fc-pc:hover .fc-pc-media img { transform: scale(1.08); }
.fc-pc-badge {
	position: absolute;
	top: .75rem;
	left: .75rem;
	background: var(--fc-primary);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	padding: .25rem .55rem;
	border-radius: 999px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.fc-pc-badge.sale { background: #ef4444; }
.fc-pc-wish {
	position: absolute;
	top: .5rem;
	right: .5rem;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	border: 0;
	color: var(--fc-muted);
	cursor: pointer;
	display: grid;
	place-items: center;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .3s, transform .3s, color .2s;
}
.fc-pc:hover .fc-pc-wish { opacity: 1; transform: translateY(0); }
.fc-pc-wish:hover { color: #ef4444; }
.fc-pc-wish svg { width: 16px; height: 16px; }
.fc-pc-body { padding: 1rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.fc-pc-brand { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fc-muted); font-weight: 600; }
.fc-pc-title { font-size: .95rem; font-weight: 700; margin: 0; color: var(--fc-foreground); line-height: 1.35; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fc-pc-meta { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; }
.fc-pc-tag {
	font-size: .7rem;
	color: var(--fc-muted);
	background: var(--fc-card-2);
	border: 1px solid var(--fc-border);
	padding: .15rem .5rem;
	border-radius: 999px;
}
.fc-pc-price {
	display: flex;
	align-items: baseline;
	gap: .5rem;
	font-weight: 800;
	color: var(--fc-primary);
	font-size: 1.15rem;
}
.fc-pc-price del { color: var(--fc-muted); font-size: .85rem; font-weight: 500; }

.fc-pc-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	height: 38px;
	margin: 0 1.1rem 1.1rem;
	border-radius: 999px;
	background: rgba(var(--fc-primary-rgb), .08);
	color: var(--fc-primary);
	font-weight: 600;
	font-size: .85rem;
	transition: background-color .25s, color .25s, transform .25s;
}
.fc-pc:hover .fc-pc-cta { background: var(--fc-primary); color: #fff; }
.fc-pc-cta svg { width: 14px; height: 14px; transition: transform .3s var(--fc-ease); }
.fc-pc:hover .fc-pc-cta svg { transform: translateX(3px); }

/* ---------- Shop layout with filters ---------- */
.fc-shop-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
@media (min-width: 960px) { .fc-shop-wrap { grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; } }

.fc-shop-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.fc-shop-head h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0; letter-spacing: -.02em; font-weight: 800; }
.fc-shop-head p { color: var(--fc-muted); margin: .25rem 0 0; }
.fc-shop-tools { display: inline-flex; gap: .5rem; align-items: center; }
.fc-select, .fc-input {
	height: 40px;
	padding: 0 .9rem;
	border-radius: 10px;
	border: 1px solid var(--fc-border);
	background: var(--fc-card);
	color: var(--fc-foreground);
	font-family: inherit;
	font-size: .9rem;
}

.fc-filters-toggle {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	height: 40px;
	padding: 0 1rem;
	border: 1px solid var(--fc-border);
	background: var(--fc-card);
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	color: var(--fc-foreground);
}
@media (min-width: 960px) { .fc-filters-toggle { display: none; } }

.fc-filters {
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.5rem;
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}
@media (max-width: 959px) {
	.fc-filters { display: none; position: fixed; inset: 0; z-index: 70; border-radius: 0; max-height: none; overflow-y: auto; padding: 5rem 1.5rem 2rem; }
	.fc-filters.is-open { display: block; }
}
.fc-filters h4 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fc-muted); font-weight: 600; margin: 0 0 .75rem; }
.fc-filter-group { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--fc-border); }
.fc-filter-group:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.fc-filter-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.fc-filter-list label {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .9rem;
	color: var(--fc-foreground);
	cursor: pointer;
	padding: .3rem .4rem;
	border-radius: 8px;
	transition: background-color .2s;
}
.fc-filter-list label:hover { background: var(--fc-card-2); }
.fc-filter-list input[type="checkbox"] { accent-color: var(--fc-primary); width: 16px; height: 16px; }
.fc-filter-list .count { margin-left: auto; color: var(--fc-muted); font-size: .75rem; font-variant-numeric: tabular-nums; }

.fc-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.fc-chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .75rem;
	padding: .3rem .6rem;
	border-radius: 999px;
	background: rgba(var(--fc-primary-rgb), .1);
	color: var(--fc-primary);
	cursor: pointer;
	border: 1px solid rgba(var(--fc-primary-rgb), .2);
}
.fc-chip svg { width: 12px; height: 12px; }
.fc-reset-all {
	margin-top: .75rem;
	font-size: .8rem;
	color: var(--fc-muted);
	background: transparent;
	border: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fc-result-count { color: var(--fc-muted); font-size: .9rem; margin-bottom: 1rem; }
.fc-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 4rem 1rem;
	background: var(--fc-card);
	border: 1px dashed var(--fc-border);
	border-radius: var(--fc-radius);
	color: var(--fc-muted);
}
.fc-empty svg { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--fc-muted); opacity: .6; }

/* ---------- Features / Why-us ---------- */
.fc-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}
.fc-feature {
	padding: 2rem 1.75rem;
	border-radius: var(--fc-radius);
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	position: relative;
	overflow: hidden;
	transition: transform .45s var(--fc-ease), box-shadow .45s var(--fc-ease), border-color .3s;
}
.fc-feature::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	right: -60px;
	top: -60px;
	background: radial-gradient(circle, rgba(var(--fc-primary-rgb), .18), transparent 70%);
	transition: transform .6s var(--fc-ease);
	pointer-events: none;
}
.fc-feature:hover { transform: translateY(-6px); box-shadow: var(--fc-shadow-lg); border-color: rgba(var(--fc-primary-rgb), .35); }
.fc-feature:hover::after { transform: scale(1.4); }
.fc-feat-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--fc-primary), #0ea5e9);
	color: #fff;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	box-shadow: 0 10px 25px -10px rgba(var(--fc-primary-rgb), .6);
}
.fc-feat-icon svg { width: 26px; height: 26px; }
.fc-feature h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .4rem; }
.fc-feature p { color: var(--fc-muted); margin: 0; font-size: .92rem; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.fc-testi {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.fc-testi-card {
	background: var(--fc-card);
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	padding: 1.75rem;
	position: relative;
	overflow: hidden;
	transition: transform .4s var(--fc-ease), box-shadow .4s var(--fc-ease);
}
.fc-testi-card:hover { transform: translateY(-4px); box-shadow: var(--fc-shadow-lg); }
.fc-testi-card::before {
	content: "\201C";
	position: absolute;
	top: -30px;
	right: 20px;
	font-size: 8rem;
	font-family: Georgia, serif;
	color: rgba(var(--fc-primary-rgb), .09);
	line-height: 1;
}
.fc-testi-stars { display: flex; gap: .2rem; margin-bottom: .75rem; color: #fbbf24; }
.fc-testi-stars svg { width: 16px; height: 16px; fill: currentColor; }
.fc-testi-text { color: var(--fc-foreground); font-size: .95rem; line-height: 1.65; margin: 0 0 1.25rem; }
.fc-testi-person { display: flex; align-items: center; gap: .75rem; }
.fc-testi-avatar {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--fc-primary), #0ea5e9);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}
.fc-testi-name { font-weight: 700; color: var(--fc-foreground); font-size: .92rem; }
.fc-testi-role { color: var(--fc-muted); font-size: .8rem; }

/* ---------- CTA band ---------- */
.fc-cta {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
	background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
	color: #fff;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
	isolation: isolate;
}
@media (min-width: 768px) { .fc-cta { grid-template-columns: 1.4fr 1fr; } }
.fc-cta::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .25), transparent 55%),
		radial-gradient(circle at 80% 80%, rgba(6, 182, 212, .4), transparent 60%);
	animation: fcOrb 18s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: -1;
}
.fc-cta h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 .75rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.fc-cta p { opacity: .92; margin: 0 0 1.5rem; font-size: 1.05rem; line-height: 1.6; max-width: 520px; }
.fc-cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.fc-cta .fc-btn-primary {
	background: #fff;
	color: var(--fc-primary);
	box-shadow: 0 10px 25px -10px rgba(0, 0, 0, .3);
}
.fc-cta .fc-btn-primary:hover { background: #f1f5f9; color: var(--fc-primary); }
.fc-cta .fc-btn-outline { border-color: rgba(255, 255, 255, .4); color: #fff; }
.fc-cta .fc-btn-outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Scroll reveal ---------- */
.fc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--fc-ease), transform .8s var(--fc-ease); }
.fc-reveal.is-inview { opacity: 1; transform: translateY(0); }
.fc-reveal.delay-1 { transition-delay: .08s; }
.fc-reveal.delay-2 { transition-delay: .16s; }
.fc-reveal.delay-3 { transition-delay: .24s; }
.fc-reveal.delay-4 { transition-delay: .32s; }
.fc-reveal.delay-5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
	.fc-reveal { opacity: 1; transform: none; transition: none; }
	.fc-hero-visual img, .fc-hero-floating, .fc-pre-logo, .fc-pre-ring, .fc-marquee-track, .fc-hero h1 .fc-gradient-text { animation: none !important; }
}

/* ---------- Scroll-to-top ---------- */
.fc-totop {
	position: fixed;
	bottom: 5.5rem;
	right: 1.25rem;
	z-index: 45;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--fc-card);
	color: var(--fc-primary);
	border: 1px solid var(--fc-border);
	display: grid;
	place-items: center;
	box-shadow: var(--fc-shadow);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .3s, transform .3s, background-color .3s;
	cursor: pointer;
}
.fc-totop.is-visible { opacity: 1; transform: translateY(0); }
.fc-totop:hover { background: var(--fc-primary); color: #fff; }
.fc-totop svg { width: 18px; height: 18px; }
body.rtl .fc-totop { right: auto; left: 1.25rem; }

/* ---------- Tweaks for WooCommerce blocks (single product, archive) ---------- */
html[data-theme="dark"] .fc-desc h2,
html[data-theme="dark"] .fc-desc h3 { color: #e2e8f0; }
html[data-theme="dark"] .site h1,
html[data-theme="dark"] .site h2,
html[data-theme="dark"] .site h3 { color: #e2e8f0; }
html[data-theme="dark"] .woocommerce-breadcrumb,
html[data-theme="dark"] .woocommerce-breadcrumb a { color: var(--fc-muted); }
html[data-theme="dark"] .woocommerce div.product p.price,
html[data-theme="dark"] .woocommerce div.product span.price { color: var(--fc-primary); }
html[data-theme="dark"] .woocommerce ul.products li.product .woocommerce-loop-product__title { color: #e2e8f0; }
html[data-theme="dark"] .wc-block-components-product-button .wp-block-button__link,
html[data-theme="dark"] .woocommerce a.button {
	background: var(--fc-primary);
	color: #fff;
}

/* Woo page skins */
.woocommerce ul.products li.product .button { border-radius: 999px !important; }
.woocommerce .price { color: var(--fc-primary) !important; }
.woocommerce-message, .woocommerce-info {
	border-top-color: var(--fc-primary) !important;
	background: rgba(var(--fc-primary-rgb), .06) !important;
	color: var(--fc-foreground) !important;
}

/* ---------- Mobile menu upgrade ---------- */
.fc-mobile-menu {
	background: var(--fc-card);
	color: var(--fc-foreground);
}
html[data-theme="dark"] .fc-mobile-menu { background: var(--fc-card); border-top-color: rgba(255, 255, 255, .08); }

/* ---------- Elementor-rendered pages (About, Contact, etc.) ---------- */
.fc-elementor-page {
	font-family: "Plus Jakarta Sans", "Cairo", sans-serif;
	color: var(--fc-foreground);
	background: var(--fc-bg);
}
body.rtl .fc-elementor-page { font-family: "Cairo", "Plus Jakarta Sans", sans-serif; }
.fc-elementor-page .elementor-widget-container,
.fc-elementor-page .elementor-heading-title,
.fc-elementor-page .elementor-icon-list-text,
.fc-elementor-page p,
.fc-elementor-page li { font-family: inherit; }
.fc-elementor-page h1,
.fc-elementor-page h2,
.fc-elementor-page h3,
.fc-elementor-page h4,
.fc-elementor-page .elementor-heading-title { color: var(--fc-foreground); }

html[data-theme="dark"] .fc-elementor-page { color: #e2e8f0; }
html[data-theme="dark"] .fc-elementor-page h1,
html[data-theme="dark"] .fc-elementor-page h2,
html[data-theme="dark"] .fc-elementor-page h3,
html[data-theme="dark"] .fc-elementor-page h4,
html[data-theme="dark"] .fc-elementor-page .elementor-heading-title { color: #f1f5f9 !important; }
html[data-theme="dark"] .fc-elementor-page p,
html[data-theme="dark"] .fc-elementor-page li,
html[data-theme="dark"] .fc-elementor-page .elementor-icon-list-text,
html[data-theme="dark"] .fc-elementor-page .elementor-widget-text-editor,
html[data-theme="dark"] .fc-elementor-page .elementor-widget-container { color: #cbd5e1 !important; }
html[data-theme="dark"] .fc-elementor-page a { color: #93c5fd; }
html[data-theme="dark"] .fc-elementor-page a:hover { color: #bfdbfe; }
html[data-theme="dark"] .fc-elementor-page .elementor-icon-list-icon svg,
html[data-theme="dark"] .fc-elementor-page .elementor-icon svg { fill: #93c5fd; color: #93c5fd; }
html[data-theme="dark"] .fc-elementor-page input,
html[data-theme="dark"] .fc-elementor-page textarea,
html[data-theme="dark"] .fc-elementor-page select {
	background: rgba(255, 255, 255, .04);
	color: #e2e8f0;
	border-color: rgba(148, 163, 184, .3);
}
html[data-theme="dark"] .fc-elementor-page input::placeholder,
html[data-theme="dark"] .fc-elementor-page textarea::placeholder { color: rgba(148, 163, 184, .7); }
html[data-theme="dark"] .fc-elementor-page .wpcf7-form-control-wrap { color: #e2e8f0; }

/* ---------- RTL small tweaks ---------- */
body.rtl .fc-hero-cta { flex-direction: row-reverse; }
body.rtl .fc-hero-floating.tl { left: auto; right: -6%; }
body.rtl .fc-hero-floating.br { right: auto; left: -6%; }
body.rtl .fc-pc-cta svg { transform: scaleX(-1); }
body.rtl .fc-pc:hover .fc-pc-cta svg { transform: scaleX(-1) translateX(3px); }
body.rtl .fc-cat-card:hover .fc-cat-link svg { transform: scaleX(-1) translateX(4px); }
