/* =====================================================
   Local Store — Myntra-Style Fashion Homepage
   Signature Pink: #FF3F6C | Clean White: #FFFFFF
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Hide the default theme header (to prevent double-headers) */
.wraper_header,
.rt-header,
#header {
	display: none !important;
}

/* ---- CSS Variables ---- */
:root {
	--pink: #FF3F6C;
	--pink-dark: #D4002A;
	--pink-light: #FFF0F3;
	--ink: #1C1C1C;
	--ink-mid: #424553;
	--grey: #696B79;
	--grey-light: #93959F;
	--line: #EAEAEC;
	--bg: #F0F0F0;
	--white: #FFFFFF;
	--green: #03A685;
	--gold: #FF905A;

	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--maxw: 1440px;
	--radius: 4px;
}

/* Force the beautiful Inter font globally across the entire website */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
ul,
input,
button,
select,
textarea,
label {
	font-family: var(--font) !important;
}

/* ---- Global Base ---- */
#fs-home,
.fs-footer,
.fs-announce,
.fs-nav {
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

#fs-home *,
.fs-footer *,
.fs-announce *,
.fs-nav * {
	box-sizing: border-box;
}

#fs-home a {
	text-decoration: none;
	color: inherit;
}

#fs-home ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#fs-home img {
	max-width: 100%;
	display: block;
}

/* ---- Section defaults ---- */
#fs-home section {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 40px 40px;
}

/* ---- Global Section Title ---- */
.fs-section-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 24px;
	letter-spacing: -0.01em;
}

.fs-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.fs-link {
	font-size: 18px;
	font-weight: 600;
	color: var(--pink);
	border-bottom: 1px solid var(--pink);
	padding-bottom: 2px;
	letter-spacing: 0.02em;
}

/* ---- Global Buttons ---- */
.fs-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--font);
	font-size: 18px;
	font-weight: 700;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fs-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.fs-btn--pink {
	background: var(--pink);
	color: var(--white);
}

.fs-btn--dark {
	background: var(--ink);
	color: var(--white);
}

.fs-btn--light {
	background: var(--white);
	color: var(--pink);
	border: 2px solid var(--pink);
}

.fs-btn--outline-white {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}


/* =====================================================
   1. ANNOUNCEMENT BAR
===================================================== */
.fs-announce {
	background: var(--ink);
	color: var(--white);
	text-align: center;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
	z-index: 100;
}

.fs-announce a {
	color: var(--pink);
	font-weight: 700;
	text-decoration: underline;
	margin-left: 8px;
}

.fs-announce__close {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--white);
	font-size: 20px;
	cursor: pointer;
	opacity: 0.6;
	line-height: 1;
}


/* =====================================================
   2. STICKY NAV
===================================================== */
.fs-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}

.fs-nav.is-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.fs-nav__row {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.fs-nav__logo {
	font-size: 28px;
	font-weight: 800;
	color: var(--pink);
	white-space: nowrap;
	letter-spacing: -0.03em;
	flex-shrink: 0;
}

.fs-nav__menu {
	flex-shrink: 0;
}

.fs-nav__list {
	display: flex;
	align-items: center;
	gap: 0;
}

.fs-nav__item {
	position: relative;
}

.fs-nav__link {
	font-size: 16px;
	font-weight: 600;
	padding: 22px 16px;
	display: inline-block;
	color: var(--ink-mid);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	transition: color 0.15s, border-color 0.15s;
}

.fs-nav__link:hover,
.fs-nav__item:hover>.fs-nav__link {
	color: var(--pink);
	border-bottom-color: var(--pink);
}

/* Mega Menu */
.fs-nav__mega {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 180px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 300;
}

.fs-nav__item:hover .fs-nav__mega,
.fs-nav__item:focus-within .fs-nav__mega {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.fs-nav__mega ul li a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--ink-mid);
	transition: color 0.1s, background 0.1s;
}

.fs-nav__mega ul li a:hover {
	color: var(--pink);
	background: var(--pink-light);
}

/* Search Bar */
.fs-nav__search {
	flex: 1;
	max-width: 560px;
	display: flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	overflow: hidden;
	transition: border-color 0.15s;
}

.fs-nav__search:focus-within {
	border-color: var(--pink);
	background: var(--white);
}

.fs-nav__search input {
	flex: 1;
	border: none;
	padding: 11px 16px;
	font-family: var(--font);
	font-size: 14px;
	background: transparent;
	color: var(--ink);
}

.fs-nav__search input::placeholder {
	color: var(--grey-light);
}

.fs-nav__search input:focus {
	outline: none;
}

.fs-nav__search button {
	border: none;
	background: transparent;
	padding: 0 16px;
	cursor: pointer;
	color: var(--grey);
	display: flex;
	align-items: center;
	transition: color 0.15s;
}

.fs-nav__search button:hover {
	color: var(--pink);
}

/* Nav Icons */
.fs-nav__icons {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.fs-nav__icon-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
	padding: 8px 12px;
	color: var(--ink-mid);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--radius);
	transition: color 0.15s, background 0.15s;
	position: relative;
	border: none;
	background: none;
	text-decoration: none;
}

.fs-nav__icon-btn:hover {
	color: var(--pink);
	background: var(--pink-light);
}

.fs-nav__icon-btn svg {
	display: block;
}

.fs-nav__cart-count {
	position: absolute;
	top: 4px;
	right: 6px;
	background: var(--pink);
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	min-width: 16px;
	height: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
}


/* =====================================================
   3. HERO CAROUSEL — full-bleed, 0 side gaps
===================================================== */
#fs-home .fs-hero-carousel {
	position: relative;
	max-width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 580px;
}

.fs-hero-carousel__track {
	display: flex;
	height: 100%;
	transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.fs-hero-slide {
	flex: 0 0 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-color: #1a1a2e;
	display: block;
	/* <a> tag needs display:block to fill height */
	position: relative;
	text-decoration: none;
	cursor: pointer;
}

/* Subtle hover zoom on the image */
.fs-hero-slide--link:hover {
	filter: brightness(0.92);
	transition: filter 0.25s ease;
}

/* Coloured gradient fallbacks for slides without images */
.fs-hero-slide--gradient-1 {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.fs-hero-slide--gradient-2 {
	background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
}

.fs-hero-slide--gradient-3 {
	background: linear-gradient(135deg, #7B2D8B 0%, #FF3F6C 100%);
}

.fs-hero-slide__inner {
	position: relative;
	z-index: 2;
	padding: 0 80px 64px;
	color: var(--white);
	max-width: 640px;
}

.fs-hero-slide__kicker {
	display: inline-block;
	background: var(--pink);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 2px;
	margin-bottom: 16px;
}

.fs-hero-slide__title {
	font-size: 58px;
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 16px;
	color: var(--white);
	letter-spacing: -0.02em;
}

.fs-hero-slide__sub {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.88);
	max-width: 480px;
}

.fs-hero-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	transition: transform 0.15s ease, background 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fs-hero-carousel__arrow:hover {
	background: var(--white);
	transform: translateY(-50%) scale(1.08);
}

.fs-hero-carousel__arrow--prev {
	left: 24px;
}

.fs-hero-carousel__arrow--next {
	right: 24px;
}

.fs-hero-carousel__dots {
	position: absolute;
	bottom: 24px;
	left: 80px;
	display: flex;
	gap: 8px;
	z-index: 3;
}

.fs-hero-carousel__dot {
	width: 24px;
	height: 4px;
	border-radius: 2px;
	border: none;
	background: rgba(255, 255, 255, 0.40);
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, width 0.2s;
}

.fs-hero-carousel__dot.is-active {
	background: var(--white);
	width: 40px;
}


/* =====================================================
   4. CATEGORY ICON RAIL
===================================================== */
#fs-home .fs-cats {
	max-width: 100%;
	padding: 32px 40px;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.fs-cats .fs-section-title {
	text-align: center;
	font-size: 22px;
	margin-bottom: 28px;
}

.fs-cats__grid {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 0;
	justify-content: space-around;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.fs-cats__grid::-webkit-scrollbar {
	display: none;
}

.fs-cats__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	min-width: 100px;
	flex-shrink: 0;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.fs-cats__card:hover {
	background: var(--pink-light);
}

.fs-cats__card-img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--bg);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: 3px solid transparent;
}

.fs-cats__card:hover .fs-cats__card-img {
	transform: scale(1.06);
	box-shadow: 0 4px 16px rgba(255, 63, 108, 0.25);
	border-color: var(--pink);
}

.fs-cats__card-label {
	font-size: 20px;
	font-weight: 600;
	color: var(--ink-mid);
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

.fs-cats__card:hover .fs-cats__card-label {
	color: var(--pink);
}

.fs-cats__empty {
	color: var(--grey);
	font-size: 16px;
	text-align: center;
	padding: 20px;
}


/* =====================================================
   5. DEALS STRIP — horizontal scroll cards
===================================================== */
#fs-home .fs-deals {
	max-width: 100%;
	padding: 40px 40px;
	background: var(--white);
}

.fs-deals__scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.fs-deals__scroll::-webkit-scrollbar {
	display: none;
}

.fs-deal-card {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 180px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	text-decoration: none;
}

.fs-deal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fs-deal-card__img {
	width: 100%;
	aspect-ratio: 3/4;
	background-size: cover;
	background-position: center;
	background-color: #e8e8e8;
}

.fs-deal-card__badge {
	position: absolute;
	top: 10px;
	left: 0;
	background: var(--pink);
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 0 3px 3px 0;
	letter-spacing: 0.03em;
}

.fs-deal-card__label {
	padding: 10px 12px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	background: var(--white);
}

.fs-deal-card__sub {
	padding: 0 12px 10px;
	font-size: 14px;
	color: var(--green);
	font-weight: 600;
}


/* =====================================================
   6. EDITORIAL 3-COLUMN BANNERS
===================================================== */
#fs-home .fs-editorial {
	max-width: 100%;
	padding: 0 40px 40px;
}

.fs-editorial__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.fs-editorial__card {
	position: relative;
	height: 420px;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: pointer;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fs-editorial__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0) 55%);
	z-index: 1;
	transition: opacity 0.25s;
}

.fs-editorial__card:hover::before {
	opacity: 1.3;
}

.fs-editorial__card--1 {
	background: linear-gradient(160deg, #4568DC 0%, #B06AB3 100%);
}

.fs-editorial__card--2 {
	background: linear-gradient(160deg, #11998e 0%, #38ef7d 100%);
}

.fs-editorial__card--3 {
	background: linear-gradient(160deg, #FF416C 0%, #FF4B2B 100%);
}

.fs-editorial__card-body {
	position: relative;
	z-index: 2;
	padding: 24px 24px 28px;
	color: var(--white);
}

.fs-editorial__card-label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 6px;
}

.fs-editorial__card-title {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.fs-editorial__card-cta {
	display: inline-block;
	background: var(--white);
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: var(--radius);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background 0.15s, color 0.15s;
}

.fs-editorial__card:hover .fs-editorial__card-cta {
	background: var(--pink);
	color: var(--white);
}


/* =====================================================
   7. PRODUCT GRIDS & BREADCRUMBS (WooCommerce)
===================================================== */
.woocommerce-breadcrumb {
	font-size: 16px !important;
	color: var(--grey) !important;
	margin-bottom: 24px !important;
}

.woocommerce-breadcrumb a {
	color: var(--ink-mid) !important;
	font-weight: 500;
}

.woocommerce-breadcrumb a:hover {
	color: var(--pink) !important;
}

#fs-home .fs-products {
	max-width: 100%;
	padding: 40px 40px;
}

ul.products,
#radiantthemes-shop {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 16px !important;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}

/* Page navigation spacing */
.woocommerce-pagination,
nav.woocommerce-pagination,
#fs-pagination .woocommerce-pagination,
#fs-pagination nav.woocommerce-pagination {
	margin-top: 48px !important;
	padding-top: 24px !important;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: center !important;
}

/* #fs-pagination placeholder itself needs no extra spacing — its children handle it */
#fs-pagination:empty {
	display: none;
}

/* Utility: force-hide any element, overrides all !important display rules */
.fs-hidden {
	display: none !important;
}
/* Extra specificity for WooCommerce pagination hiding */
nav.woocommerce-pagination.fs-hidden,
.woocommerce-pagination.fs-hidden {
	display: none !important;
}

/* ---- Sort / Views Toolbar ---- */
/* Hide default WooCommerce result count + ordering row — we render Sort inside the filter bar now */
.woocommerce-result-count,
.woocommerce-ordering,
form.woocommerce-ordering,
.radiantthemes-shop-toolbar,
.woocommerce-ordering svg,
.rt-grid-view-switcher,
.rt-display-view {
	display: none !important;
}

/* Sort option links inside our custom sort dropdown */
.fs-sort-option {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 6px 0 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: var(--ink) !important;
	text-decoration: none !important;
	cursor: pointer !important;
	border-radius: 4px !important;
	transition: color 0.15s ease !important;
	margin-bottom: 8px !important;
}
.fs-sort-option:last-child { margin-bottom: 0 !important; }
.fs-sort-option:hover { color: var(--pink) !important; }
.fs-sort-option.active { color: var(--pink) !important; font-weight: 700 !important; }
.fs-sort-option .fs-checkbox-box { flex-shrink: 0; }


ul.products li.product,
.radiantthemes-shop-box {
	background: var(--white) !important;
	border: 2px solid var(--line) !important;
	border-radius: 8px !important;
	padding: 0 !important;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}

ul.products li.product:hover,
.radiantthemes-shop-box:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
	transform: translateY(-3px);
}

ul.products li.product a.woocommerce-loop-product__link,
.radiantthemes-shop-box .pic,
.fs-products__grid .radiantthemes-shop-box .pic {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	display: block;
	position: relative;
}

ul.products li.product a.woocommerce-loop-product__link img,
.radiantthemes-shop-box .pic img,
.fs-products__grid .radiantthemes-shop-box .pic img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}

ul.products li.product .woocommerce-loop-product__title,
.radiantthemes-shop-box .woocommerce-loop-product__title,
.radiantthemes-shop-box .holder .product-title {
	font-size: 15px;
	font-weight: 700;
	padding: 12px 12px 4px;
	margin: 0;
	color: var(--ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

ul.products li.product .price,
.radiantthemes-shop-box .price {
	padding: 0 12px 12px;
	font-size: 16px;
	color: var(--ink);
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

ul.products li.product .price,
ul.products li.product .price bdi,
ul.products li.product .price .amount,
.radiantthemes-shop-box .price,
.radiantthemes-shop-box .price bdi,
.radiantthemes-shop-box .price .amount {
	font-weight: 800 !important;
}

ul.products li.product .price ins,
ul.products li.product .price ins bdi,
ul.products li.product .price ins .amount,
.radiantthemes-shop-box .price ins,
.radiantthemes-shop-box .price ins bdi,
.radiantthemes-shop-box .price ins .amount {
	text-decoration: none;
	color: var(--ink) !important;
	font-weight: 800 !important;
}

ul.products li.product .price del,
ul.products li.product .price del bdi,
ul.products li.product .price del .amount,
.radiantthemes-shop-box .price del,
.radiantthemes-shop-box .price del bdi,
.radiantthemes-shop-box .price del .amount {
	color: var(--grey-light) !important;
	font-weight: 400 !important;
	font-size: 14px !important;
}

/* Orange discount % badge */
.fs-discount-badge {
	font-size: 13px;
	font-weight: 700;
	color: #FF6B00;
	background: #FFF3E0;
	border-radius: 4px;
	padding: 2px 6px;
	letter-spacing: 0.02em;
	margin-left: 2px;
}

/* WooCommerce add-to-cart button */
ul.products li.product .button {
	display: block !important;
	margin: 0 12px 12px !important;
	padding: 10px !important;
	text-align: center !important;
	background: var(--pink) !important;
	color: var(--white) !important;
	border: none !important;
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	transition: background 0.15s ease !important;
	width: calc(100% - 24px) !important;
}

ul.products li.product .button:hover {
	background: var(--pink-dark) !important;
}

/* Discount badge */
ul.products li.product .onsale,
.radiantthemes-shop-box .onsale {
	background: var(--pink) !important;
	color: var(--white) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	padding: 4px 10px !important;
	border-radius: 20px !important;
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	left: auto !important;
	z-index: 10 !important;
	line-height: 1 !important;
	min-height: 0 !important;
	min-width: 0 !important;
}

/* Hide Quick View / Inspect button */
.yith-wcqv-button {
	display: none !important;
}

/* Hide default plugin wishlist buttons globally, EXCEPT our styled custom one */
.yith-wcwl-add-to-wishlist {
	display: none !important;
}
.tinv-wraper:not(.custom-wishlist-wrapper .tinv-wraper) {
	display: none !important;
}

/* Hide all action buttons (Add to Cart, Wishlist, Quick View) from product grid */
/* Users tap the product card to go to the product page on mobile */
.radiantthemes-shop-box .action-buttons {
	display: none !important;
}

/* Beautiful Single Product Wishlist Button */
.custom-wishlist-wrapper .tinvwl_add_to_wishlist_button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	padding: 12px 24px !important;
	background-color: #ffffff !important;
	color: #282c3f !important;
	border: 1px solid #d4d5d9 !important;
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.custom-wishlist-wrapper .tinvwl_add_to_wishlist_button:hover {
	border-color: var(--pink) !important;
	color: var(--pink) !important;
	background-color: #fff9fa !important;
}

/* Make the heart icon inside it bigger and nicely positioned */
.custom-wishlist-wrapper .tinvwl_add_to_wishlist_button::before {
	font-size: 18px !important;
	margin-right: 8px !important;
}

/* Force text to show next to the icon just in case the plugin text is disabled */
/* REMOVED: Plugin already outputs text natively */


/* =====================================================
   8. FULL-WIDTH PROMO SALE STRIP
===================================================== */
#fs-home .fs-strip {
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.fs-strip__img-link {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1440 / 220;
	cursor: pointer;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #D4002A;
	transition: filter 0.2s ease;
}

.fs-strip__img-link:hover {
	filter: brightness(0.92);
}

.fs-strip__inner {
	background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 50%, #FF6B98 100%);
	padding: 72px 80px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
}

.fs-strip__content {
	color: var(--white);
}

.fs-strip__eyebrow {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.8;
	margin-bottom: 8px;
}

.fs-strip__title {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0 0 8px;
}

.fs-strip__sub {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	font-weight: 400;
}


/* =====================================================
   9. USP BAR
===================================================== */
#fs-home .fs-usp {
	max-width: 100%;
	display: flex;
	justify-content: space-around;
	gap: 0;
	background: var(--bg);
	padding: 28px 40px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.fs-usp__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 24px;
}

.fs-usp__item+.fs-usp__item {
	border-left: 1px solid var(--line);
}

.fs-usp__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pink-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pink);
}

.fs-usp__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
}

.fs-usp__sub {
	font-size: 14px;
	color: var(--grey);
	margin: 2px 0 0;
}


/* =====================================================
   10. NEWSLETTER
===================================================== */
#fs-home .fs-newsletter {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
	padding: 64px 40px;
}

.fs-newsletter__title {
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.fs-newsletter__sub {
	color: var(--grey);
	font-size: 17px;
	margin: 0 0 28px;
	line-height: 1.6;
}

.fs-newsletter__form {
	display: flex;
	gap: 0;
	max-width: 460px;
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	border: 2px solid var(--pink);
}

.fs-newsletter__form input {
	flex: 1;
	padding: 14px 18px;
	border: none;
	font-family: var(--font);
	font-size: 17px;
	color: var(--ink);
	outline: none;
}

.fs-newsletter__form button {
	background: var(--pink);
	color: var(--white);
	border: none;
	padding: 14px 28px;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background 0.15s;
}

.fs-newsletter__form button:hover {
	background: var(--pink-dark);
}


/* =====================================================
   11. FOOTER
===================================================== */
.fs-footer {
	background: #1C1C1C;
	color: #999;
	font-family: var(--font);
}

.fs-footer__grid {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 56px 40px 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.fs-footer__col h3 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 18px;
	color: var(--white);
}

.fs-footer__col ul li {
	margin-bottom: 12px;
}

.fs-footer__col ul li a {
	font-size: 15px;
	color: var(--white);
	transition: color 0.15s;
}

.fs-footer__col ul li a:hover {
	color: var(--pink);
}

.fs-footer__social {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}

.fs-footer__social a {
	width: 36px;
	height: 36px;
	border: 1px solid #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #888;
	transition: border-color 0.15s, color 0.15s;
}

.fs-footer__social a:hover {
	border-color: var(--pink);
	color: var(--pink);
}

.fs-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.fs-footer__payment-badge {
	padding: 4px 10px;
	background: #2a2a2a;
	border: 1px solid #333;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
}

.fs-footer__bottom {
	border-top: 1px solid #2a2a2a;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.fs-footer__bottom p {
	font-size: 14px;
	color: var(--white);
	margin: 0;
}

.fs-footer__bottom a {
	color: var(--white);
	font-size: 14px;
}

.fs-footer__bottom a:hover {
	color: var(--pink);
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
	.fs-products__grid ul.products {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}

@media (max-width: 960px) {
	.fs-nav__row {
		padding: 0 20px;
		gap: 16px;
	}

	.fs-nav__list {
		display: none;
	}

	.fs-nav__search {
		max-width: none;
	}

	#fs-home .fs-hero-carousel {
		height: 420px;
	}

	.fs-hero-slide__title {
		font-size: 40px;
	}

	.fs-hero-slide__inner {
		padding: 0 40px 48px;
	}

	.fs-editorial__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fs-editorial__card {
		height: 300px;
	}

	.fs-products__grid ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.fs-strip__inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 48px 40px;
	}

	.fs-strip__title {
		font-size: 34px;
	}

	.fs-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	#fs-home .fs-usp {
		flex-wrap: wrap;
		gap: 16px;
	}

	.fs-usp__item {
		border-left: none !important;
		padding: 0;
	}
}

@media (max-width: 640px) {
	#fs-home section {
		padding: 32px 20px;
	}

	#fs-home .fs-hero-carousel {
		height: 360px;
	}

	.fs-hero-slide__title {
		font-size: 30px;
	}

	.fs-hero-slide__inner {
		padding: 0 24px 40px;
	}

	.fs-hero-slide__sub {
		font-size: 17px;
	}

	.fs-hero-carousel__arrow {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.fs-hero-carousel__dots {
		left: 24px;
		bottom: 16px;
	}

	.fs-cats__grid {
		justify-content: flex-start;
	}

	.fs-deals__scroll {
		gap: 12px;
	}

	.fs-deal-card {
		flex: 0 0 140px;
	}

	.fs-newsletter__form {
		flex-direction: column;
		border: none;
	}

	.fs-newsletter__form input {
		border: 2px solid var(--line);
		border-radius: var(--radius);
	}

	.fs-newsletter__form button {
		border-radius: var(--radius);
		padding: 14px;
	}

	.fs-footer__grid {
		grid-template-columns: 1fr;
	}

	.fs-strip__title {
		font-size: 28px;
	}
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {

	#fs-home *,
	.fs-nav * {
		transition: none !important;
		animation: none !important;
	}
}

/* =====================================================
   MYNTRA STYLE ADDRESS BOOK
===================================================== */
/* Hide the default duplicate WooCommerce section, the shipping book, and tools */
.woocommerce-Addresses.col2-set,
p:has(+ .woocommerce-Addresses),
.shipping_address_book,
.myaccount_address,
.address_book_tools {
	display: none !important;
}

/* Layout for the unified Billing book */
.billing_address_book {
	position: relative;
	max-width: 800px;
}

/* Header */
.billing_address_book>header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

/* Rename "Billing Address Book" to "Saved Addresses" */
.billing_address_book>header h3 {
	font-size: 0 !important;
	margin: 0;
}

.billing_address_book>header h3::after {
	content: "Saved Addresses";
	font-size: 18px;
	font-weight: 700;
	color: #282C3F;
	text-transform: uppercase;
}

/* Myntra style "Add Address" Button */
.billing_address_book header .wc-address-book-add-new-address a.add {
	display: inline-block !important;
	border: 1px solid #d4d5d9 !important;
	border-radius: 4px !important;
	padding: 10px 16px !important;
	background: #fff !important;
	color: #526EE3 !important;
	/* Myntra blue */
	font-size: 0 !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	box-shadow: none !important;
}

.billing_address_book header .wc-address-book-add-new-address a.add:hover {
	border-color: #526EE3 !important;
}

.billing_address_book header .wc-address-book-add-new-address a.add::before {
	content: "+ ADD NEW ADDRESS";
	font-size: 12px;
	font-weight: 700;
}

/* Address wrapper */
.addresses.address-book {
	display: block !important;
}

/* Individual Address Cards */
.wc-address-book-address {
	width: 100% !important;
	height: auto !important;
	border: 1px solid #EAEAEC !important;
	border-radius: 4px !important;
	padding: 0 !important;
	/* Padding handled internally */
	position: relative;
	background: #fff !important;
	margin-bottom: 16px !important;
	box-shadow: none !important;
}

.wc-address-book-address .woocommerce-Address-title {
	border: none !important;
	background: transparent !important;
	padding: 24px 24px 8px 24px !important;
	margin-bottom: 0 !important;
	text-align: left !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
}

.wc-address-book-address .woocommerce-Address-title h3 {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #282C3F !important;
	margin: 0 !important;
	background: transparent !important;
	text-align: left !important;
	flex: 1 !important;
}

.wc-address-book-address address {
	font-size: 13px !important;
	color: #696B79 !important;
	line-height: 1.6 !important;
	font-style: normal !important;
	padding: 0 24px 24px 24px !important;
}

/* Bottom Action Links Wrapper */
.wc-address-book-meta {
	position: static !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	background: #fff !important;
	border-top: 1px solid #EAEAEC !important;
	padding: 0 !important;
}

/* Buttons inside the meta wrapper */
html body div.wc-address-book-meta .button,
html body div.wc-address-book-meta button.button,
html body div.wc-address-book-meta a.button {
	flex: 1 !important;
	/* equal width */
	display: block !important;
	background: transparent !important;
	border: none !important;
	border-right: 1px solid #EAEAEC !important;
	padding: 14px 0 !important;
	color: #526EE3 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
	text-align: center !important;
	border-radius: 0 !important;
	height: auto !important;
	line-height: normal !important;
}

html body div.wc-address-book-meta .button:last-child,
html body div.wc-address-book-meta button.button:last-child,
html body div.wc-address-book-meta a.button:last-child {
	border-right: none !important;
}

html body div.wc-address-book-meta .button:hover,
html body div.wc-address-book-meta button.button:hover,
html body div.wc-address-book-meta a.button:hover {
	color: var(--pink) !important;
	text-decoration: none !important;
	background: #F9F9F9 !important;
}

/* Remove the fake pipes from amazon style */
html body div.wc-address-book-meta .button+.button::before,
html body div.wc-address-book-meta button.button+button.button::before,
html body div.wc-address-book-meta a.button+button.button::before {
	display: none !important;
}

/* The "Default" Badge (Pill style like Myntra "HOME") */
.wc-address-book-address-default-label {
	position: static !important;
	background: #F0F0F0 !important;
	color: #535766 !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	padding: 4px 8px !important;
	border-radius: 20px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Clearfix */
.billing_address_book::after {
	content: "";
	display: table;
	clear: both;
}

/* =====================================================
   MYNTRA STYLE CART
===================================================== */
/* Hide the table headers */
.woocommerce-cart-form__contents thead {
	display: none !important;
}

.radiantthemes-cart h4 {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #282C3F !important;
	text-transform: uppercase !important;
	margin-bottom: 16px !important;
}

/* Convert table to block layout */
.woocommerce-cart-form__contents,
.woocommerce-cart-form__contents tbody,
.woocommerce-cart-form__contents tr {
	display: block !important;
	width: 100% !important;
}

/* Style the Cart Item row as a Card using CSS Grid */
.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
	position: relative !important;
	border: 1px solid #EAEAEC !important;
	border-radius: 4px !important;
	margin-bottom: 12px !important;
	padding: 12px !important;
	background: #fff !important;

	/* Use Grid to force side-by-side layout regardless of table tags */
	display: grid !important;
	grid-template-columns: 90px 1fr !important;
	gap: 16px !important;
	align-items: start !important;
}

/* Reset td padding/border */
.woocommerce-cart-form__cart-item td {
	border: none !important;
	padding: 0 !important;
	display: block !important;
}

/* Thumbnail */
.woocommerce-cart-form__cart-item td.product-thumbnail {
	width: 90px !important;
	min-width: 90px !important;
	margin: 0 !important;
}

.woocommerce-cart-form__cart-item td.product-thumbnail img {
	width: 90px !important;
	height: auto !important;
	border-radius: 4px !important;
}

/* Product Details Column */
.woocommerce-cart-form__cart-item td.product-details {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
}

/* The row wrapper inside details */
.woocommerce-cart-form__cart-item td.product-details .row {
	margin: 0 !important;
	width: 100% !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
}

/* Hide Subtotal and original cols */
.woocommerce-cart-form__cart-item td.product-details .product-subtotal {
	display: none !important;
}

.woocommerce-cart-form__cart-item td.product-details .col-md-6,
.woocommerce-cart-form__cart-item td.product-details .col-sm-12 {
	width: auto !important;
	padding: 0 !important;
}

/* The Product Name wrapper (holds Name, Price, and Quantity) */
.woocommerce-cart-form__cart-item td.product-details .product-name {
	/* Use Grid Areas to precisely match the drawing without needing new HTML divs! */
	display: grid !important;
	grid-template-columns: 1fr auto !important;
	grid-template-areas:
		"name qty"
		"price qty" !important;
	align-items: center !important;
	width: 100% !important;
	padding-right: 16px !important;
	gap: 4px 16px !important;
}

/* Big Blue Rectangle (Left/Middle) */
.woocommerce-cart-form__cart-item .product-name a {
	grid-area: name !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #282C3F !important;
	text-decoration: none !important;
	display: block !important;
	margin-bottom: 0 !important;
}

.woocommerce-cart-form__cart-item .product-price {
	grid-area: price !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #282C3F !important;
	margin-bottom: 0 !important;
}

/* Small Blue Rectangle (Right) */
.woocommerce-cart-form__cart-item .product-quantity {
	grid-area: qty !important;
	display: inline-flex !important;
	align-items: center !important;
	background: #F4F4F5 !important;
	border-radius: 4px !important;
	padding: 0 4px !important;
	height: 32px !important;
	margin: 0 !important;
}

.woocommerce-cart-form__cart-item .product-quantity::before {
	content: "Qty:";
	font-size: 12px;
	font-weight: 700;
	color: #282C3F;
	margin-left: 8px;
}

.woocommerce-cart-form__cart-item .product-quantity .quantity input {
	background: transparent !important;
	border: none !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #282C3F !important;
	padding: 0 !important;
	width: 30px !important;
	text-align: center !important;
	height: 32px !important;
}

.woocommerce-cart-form__cart-item .product-quantity .quantity input:focus {
	outline: none !important;
	box-shadow: none !important;
}

.woocommerce-cart-form__cart-item .product-quantity .quantity .minus,
.woocommerce-cart-form__cart-item .product-quantity .quantity .plus {
	display: none !important;
}

/* Remove (X) Button */
.woocommerce-cart-form__cart-item .product-remove {
	position: static !important;
	margin-left: 16px !important;
}

.woocommerce-cart-form__cart-item .product-remove a.remove {
	color: #282C3F !important;
	background: transparent !important;
	width: 24px !important;
	height: 24px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 0 !important;
}

.woocommerce-cart-form__cart-item .product-remove a.remove svg {
	width: 18px !important;
	height: 18px !important;
}

.woocommerce-cart-form__cart-item .product-remove a.remove:hover {
	color: #FF3F6C !important;
	background: transparent !important;
}

/* Actions Row (Coupon & Update Cart) */
button[name="update_cart"] {
	display: none !important;
}

.woocommerce-cart-form__contents tr:last-child {
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
	margin-top: 24px !important;
}

.woocommerce-cart-form__contents .actions {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 16px !important;
	justify-content: space-between !important;
}

.woocommerce-cart-form__contents .actions .coupon {
	display: flex !important;
	gap: 8px !important;
}

.woocommerce-cart-form__contents .actions .coupon label {
	display: none !important;
}

.woocommerce-cart-form__contents .actions .coupon input {
	border: 1px solid #d4d5d9 !important;
	border-radius: 4px !important;
	padding: 10px 16px !important;
	width: 200px !important;
	font-size: 12px !important;
}

.woocommerce-cart-form__contents .actions .button {
	background: #fff !important;
	color: #526EE3 !important;
	border: 1px solid #d4d5d9 !important;
	border-radius: 4px !important;
	padding: 10px 24px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
}

.woocommerce-cart-form__contents .actions .button:hover {
	border-color: #526EE3 !important;
	background: #F9F9F9 !important;
}

/* --- Checkout Page Visibility Enhancements --- */
.woocommerce-checkout form.checkout label,
.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout .select2-selection__rendered,
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td,
.woocommerce-checkout .wc_payment_method label,
.woocommerce-checkout address,
.woocommerce-checkout .woocommerce-privacy-policy-text {
	font-size: 14px !important;
}

.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
	font-size: 18px !important;
}

.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout .select2-selection {
	padding: 12px !important;
	height: auto !important;
}

/* Hide redundant Billing Address summary text when "Use same address" is checked */
.wp-block-woocommerce-checkout-billing-address-block .wc-block-components-address-card {
	display: none !important;
}

/* =====================================================
   FILTER BAR — Shop / Category Pages
===================================================== */
.fs-filter-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px 0 18px;
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 20px;
	position: relative;
}

.fs-filter-group {
	position: relative;
}

/* Pill buttons */
.fs-filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid #d4d5d9;
	border-radius: 24px;
	background: #fff;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	color: #282c3f;
	cursor: pointer;
	transition: all 0.18s ease;
	white-space: nowrap;
	user-select: none;
}
.fs-filter-pill:hover { border-color: var(--pink); color: var(--pink); }
.fs-filter-pill.active { border-color: var(--pink); background: #fff0f3; color: var(--pink); }
.fs-filter-pill.fs-filter-clear { border-color: #ff3f6c; color: #ff3f6c; background: #fff0f3; }
.fs-filter-arrow { font-size: 10px; transition: transform 0.18s ease; }
.fs-pill-x { font-size: 14px; line-height: 1; }

/* Price dropdown panel */
.fs-filter-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 9999;
	background: #fff;
	border: 1.5px solid #eee;
	border-radius: 12px;
	padding: 20px 20px 16px;
	width: 280px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	display: none;
}
.fs-filter-dropdown.open { display: block; }

.fs-filter-label {
	font-size: 13px;
	font-weight: 700;
	color: #282c3f;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Dual range slider */
.fs-range-track {
	position: relative;
	height: 4px;
	background: #eee;
	border-radius: 4px;
	margin: 24px 0 8px;
}
.fs-range-fill {
	position: absolute;
	height: 100%;
	background: var(--pink);
	border-radius: 4px;
	pointer-events: none;
}
.fs-range-track input[type=range] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	pointer-events: none;
	height: 20px;
	margin: 0;
}
.fs-range-track input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 2px solid var(--pink);
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	transition: transform 0.15s ease;
}
.fs-range-track input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.fs-range-track input[type=range]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	background: #fff;
	border: 2px solid var(--pink);
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
}
.fs-range-labels {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 600;
	color: #282c3f;
	margin-top: 10px;
}

.fs-filter-apply-btn {
	display: block;
	width: 100%;
	margin-top: 14px;
	padding: 10px;
	background: var(--pink);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s ease;
}
.fs-filter-apply-btn:hover { background: #c0001f; }

/* Multi-select Dropdowns */
.fs-dropdown-checkboxes {
	width: 240px;
}
.fs-checkbox-list {
	max-height: 220px;
	overflow-y: auto;
	margin: 0 -12px 0 0;
	padding-right: 12px;
}
.fs-checkbox-list::-webkit-scrollbar {
	width: 4px;
}
.fs-checkbox-list::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}
.fs-checkbox-list::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 4px;
}
.fs-checkbox-list::-webkit-scrollbar-thumb:hover {
	background: #ccc;
}
.fs-checkbox-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	cursor: pointer;
	user-select: none;
}
.fs-checkbox-item:last-child {
	margin-bottom: 0;
}
.fs-checkbox-item input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.fs-checkbox-box {
	position: relative;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border: 1.5px solid #ccc;
	border-radius: 3px;
	margin-right: 10px;
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.fs-radio-style .fs-checkbox-box {
	border-radius: 50%;
}
.fs-checkbox-item:hover input ~ .fs-checkbox-box {
	border-color: var(--pink);
}
.fs-checkbox-item input:checked ~ .fs-checkbox-box {
	background-color: var(--pink);
	border-color: var(--pink);
}
.fs-checkbox-box:after {
	content: "";
	position: absolute;
	display: none;
}
.fs-checkbox-item input:checked ~ .fs-checkbox-box:after {
	display: block;
}
/* Checkmark */
.fs-checkbox-item:not(.fs-radio-style) .fs-checkbox-box:after {
	left: 4.5px;
	top: 1.5px;
	width: 4px;
	height: 8px;
	border: solid white;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
}
/* Radio dot */
.fs-radio-style .fs-checkbox-box:after {
	left: 4px;
	top: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}
.fs-checkbox-name {
	font-size: 13px;
	color: #282c3f;
	font-weight: 500;
	line-height: 1.2;
}

/* Spinner */
.fs-filter-spinner {
	position: fixed;
	inset: 0;
	background: rgba(255,255,255,0.5);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fs-spinner-ring {
	width: 40px;
	height: 40px;
	border: 4px solid #f0f0f0;
	border-top-color: var(--pink);
	border-radius: 50%;
	animation: fs-spin 0.7s linear infinite;
}
@keyframes fs-spin { to { transform: rotate(360deg); } }

/* Mobile: horizontal scroll */
@media (max-width: 640px) {
	.fs-filter-bar {
		gap: 8px;
		padding: 10px 0 14px;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.fs-filter-bar::-webkit-scrollbar { display: none; }
	.fs-filter-dropdown { width: 260px; }
}