/* =============================================================
	 Covers: tokens · base · navbar · footer · product cards
		hero carousel · PDP · trust bar · collection banners
	 ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
	/* Neutral Scale */

	/* Typography */
	--font-body: 'Geist', sans-serif;
	--font-heading: 'Geist', sans-serif;

	--neutral-25: #FFFFFF;
	--neutral-50: #F5F5F5;
	--neutral-75: #EDEDED;
	--neutral-100: #E1E1E1;
	--neutral-200: #DADADA;
	--neutral-250: #B1B1B1;
	--neutral-300: #999999;
	--neutral-350: #858585;
	--neutral-400: #5E5E5E;
	--neutral-450: #515151;
	--neutral-500: #4A4A4A;
	--neutral-600: #393939;
	--neutral-700: #333333;
	--neutral-800: #242424;
	--neutral-900: #1A1A1A;
	--neutral-1000: #0a0a0a;

	--color-dark-25: var(--neutral-25);
	--color-dark-50: var(--neutral-50);
	--color-dark-75: var(--neutral-75);
	--color-dark-100: var(--neutral-100);
	--color-dark-200: var(--neutral-200);
	--color-dark-250: var(--neutral-250);
	--color-dark-300: var(--neutral-300);
	--color-dark-350: var(--neutral-350);
	--color-dark-400: var(--neutral-400);
	--color-dark-450: var(--neutral-450);
	--color-dark-500: var(--neutral-500);
	--color-dark-600: var(--neutral-600);
	--color-dark-700: var(--neutral-700);
	--color-dark-800: var(--neutral-800);
	--color-dark-900: var(--neutral-900);
	--color-dark-1000: var(--neutral-1000);

	/* ── DESIGN TOKENS ── */

	/* Brand */
	--color-brand: #8B2FC9;
	--color-brand-dark: #6f24a0;
	--color-brand-light: #f3eefa;
	--color-neutral-subtle: #3b3b3b;

	/* Neutrals */
	--color-text: #111111;
	--color-text-sublte: #5E5E5E;
	--color-text-secondary: #444444;
	--color-text-muted: #888888;
	--color-border: #e8e8e8;
	--color-border-defult: #cccccc;
	--color-bg: #ffffff;
	--color-bg-subtle: #f5f5f5;
	--color-bg-muted: #f7f7f7;

	/* Radius tokens — standard naming */
	--radius-none: 0px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-2xl: 20px;
	--radius-full: 9999px;

	/* Typography scale */
	--text-xxs: 0.65rem;
	--text-xs: 0.75rem;
	/* 12px */
	--text-sm: 0.813rem;
	/* 13px */
	--text-base: 0.875rem;
	/* 14px */
	--text-md: 1rem;
	/* 16px */
	--text-lg: 1.125rem;
	/* 18px */
	--text-xl: 1.25rem;
	/* 20px */
	--text-2xl: 1.5rem;
	/* 24px */
	--text-3xl: 1.875rem;
	/* 30px */
	--text-4xl: 2.25rem;
	/* 36px */
	--text-5xl: 3rem;
	/* 48px */

	/* Font */
	--font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

/* ── RESET ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ── BASE ── */
html,
body {
				font-family: var(--font-sans);
			background: var(--color-bg);
			color: var(--color-text);
			-webkit-font-smoothing: antialiased;
			 width: 100%;
}

body {
			overflow-x: hidden;
}

/* ── TYPE SCALE — h1-h4, p ── */
h1 {
	font-family: var(--font-sans);
	font-size: var(--text-5xl);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.5px;
	color: var(--color-text);
}

h2 {
	font-family: var(--font-sans);
	font-size: var(--text-3xl);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.5px;
	color: var(--color-text);
}

h3 {
	font-family: var(--font-sans);
	font-size: var(--text-2xl);
	font-weight: 600;
	line-height: 1.25;
	color: var(--color-text);
}

h4 {
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.35;
	color: var(--color-text);
}

p {
	font-family: var(--font-sans);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 1.7;
	color: var(--color-text-secondary);
}

.purple {
	color: var(--color-brand);
}

/* ══════════════════════════════════════
			 NAVBAR WRAPPER
		══════════════════════════════════════ */
.site-navbar {
	background: var(--color-bg);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--color-border-light);
}

.nav-top {
	display: flex;
	align-items: center;
	padding: 12px 0px 12px 0px;
	flex-wrap: wrap;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	flex-shrink: 0;
}

.nav-brand-flower svg {
	width: 38px;
	height: 38px;
}

.nav-brand-text {
	line-height: 1;
}

.nav-brand-name {
	font-size: 1.25rem;
	font-weight: 900;
	color: var(--color-text);
	letter-spacing: -0.8px;
	display: block;
}

.nav-brand-sub {
	font-size: 0.46rem;
	color: var(--neutral-300);
	letter-spacing: 3px;
	font-weight: 400;
	text-transform: uppercase;
	display: block;
	margin-top: 1px;
}

.nav-search-wrap {
	width: 550px;
	flex: 0 0 550px;
	display: flex;
	align-items: center;
	border: 1.5px solid #d9d9d9;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: .2s;
}

.nav-search-wrap:focus-within {
	border-color: var(--color-brand);
}

.nav-search-dropdown {
	border: none;
	border-right: 1px solid #e5e5e5;
	background-color: #fff;

	height: 44px;

	font-size: 15px;
	font-weight: 600;
	color: #111;

	outline: none;
	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	padding: 0 28px 0 12px;

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9L12 15 18 9'/%3E%3C/svg%3E");

	background-repeat: no-repeat;
	background-position: right 8px center;

	min-width: 60px;
}

.nav-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 0 14px;
	font-family: var(--font-sans);
	font-size: var(--text-base);
	color: #333;
	height: 42px;
	background: transparent;
}

.nav-search-input::placeholder {
	color: #bbb;
}

.nav-search-btn {
	background: none;
	border: none;
	padding: 0 16px;
	color: var(--color-text);
	font-size: 1.05rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	height: 42px;
	flex-shrink: 0;
	transition: color .2s;
}

.nav-search-btn:hover {
	color: var(--color-brand);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
	flex-shrink: 0;
}

.mobile-market-header { padding:6px 12px 0; border-radius:0; background:#fff; color:#17171b; border-bottom:1px solid #e8e8ed; box-shadow:0 3px 12px rgba(22,22,28,.08); }
.mobile-market-top { height:50px; display:flex; align-items:center; gap:10px; padding:0 2px; }
.mobile-market-menu { width:27px; height:40px; flex:0 0 27px; display:flex; align-items:center; justify-content:center; padding:0; border:0; background:transparent; color:#17171b; }
.mobile-market-menu svg { width:25px; height:25px; }
.mobile-market-menu .market-menu-close { display:none; }
.mobile-market-menu[aria-expanded="true"] .market-menu-bars { display:none; }
.mobile-market-menu[aria-expanded="true"] .market-menu-close { display:block; }
.mobile-market-logo { min-width:0; flex:1; display:flex; align-items:center; gap:7px; color:#17171b; text-decoration:none; font-size:15px; font-weight:900; letter-spacing:-.3px; white-space:nowrap; }
.mobile-market-logo:visited,
.mobile-market-logo:hover,
.mobile-market-logo:focus { color:#17171b; }
.mobile-market-logo img { width:32px; height:32px; filter:none; }
.mobile-market-account { height:40px; display:flex; align-items:center; gap:6px; color:#17171b; text-decoration:none; font-size:12px; white-space:nowrap; }
.mobile-market-account:visited,
.mobile-market-account:hover,
.mobile-market-account:focus { color:#17171b; }
.mobile-market-account svg { width:22px; height:22px; }
.mobile-market-account .mobile-market-flag { width:22px; height:15px; flex:0 0 22px; border-radius:2px; }
.mobile-market-cart { width:34px; height:40px; flex:0 0 34px; position:relative; display:flex; align-items:center; justify-content:center; color:#17171b; text-decoration:none; }
.mobile-market-cart:visited,
.mobile-market-cart:hover,
.mobile-market-cart:focus { color:#17171b; }
.mobile-market-cart svg { width:25px; height:25px; }
.mobile-market-cart b { position:absolute; top:0; right:-2px; min-width:18px; height:18px; display:flex; align-items:center; justify-content:center; border-radius:10px; background:var(--color-brand); color:#fff; font-size:9px; }
.mobile-market-search { display:none; height:50px; margin:5px 0 0; overflow:hidden; border:1px solid #dedee6; border-radius:28px; background:#f6f6f8; }
.mobile-market-search:focus-within { border-color:var(--color-brand); box-shadow:0 0 0 3px rgba(151,45,211,.1); background:#fff; }
.mobile-market-search input { flex:1; min-width:0; padding:0 15px 0 2px; border:0; outline:0; background:transparent; color:#17171b; font:inherit; font-size:13px; }
.mobile-market-search input::placeholder { color:#777985; opacity:1; }
.mobile-market-search button { width:50px; flex:0 0 50px; border:0; background:transparent; color:#292932; display:flex; align-items:center; justify-content:center; }
.mobile-market-search button svg { width:24px; height:24px; }
.mobile-market-subnav { min-height:36px; display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:4px; padding:0 3px; border-top:1px solid #f0f0f3; }
.mobile-market-subnav button { display:flex; align-items:center; gap:5px; padding:0; border:0; background:transparent; color:#292932; font:inherit; font-size:11px; }
.mobile-market-subnav button svg { width:15px; height:15px; }
.mobile-market-categories,
.mobile-market-categories:visited,
.mobile-market-categories:hover,
.mobile-market-categories:focus { display:flex; align-items:center; gap:5px; color:#292932 !important; font-size:10px; font-weight:700; line-height:1; text-decoration:none; }
.mobile-market-categories svg { width:12px; height:12px; }
.mobile-market-subnav a { color:var(--color-brand); font-size:10px; font-weight:800; text-decoration:none; white-space:nowrap; }

.mobile-header-menu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 34px;
	padding: 0;
	margin-right: 12px;
	border: 0;
	background: transparent;
	color: #111;
	flex: 0 0 28px;
}

.mobile-header-menu svg {
	width: 22px;
	height: 22px;
}

.mobile-menu-close-icon { display: none; }
.mobile-header-menu[aria-expanded="true"] .mobile-menu-open-icon { display: none; }
.mobile-header-menu[aria-expanded="true"] .mobile-menu-close-icon { display: block; }

.nav-mobile-search-toggle {
	padding: 0;
	border: 0;
	background: transparent;
}

.mobile-search-panel {
	background: #fff;
	border-bottom: 1px solid var(--color-border);
}

.mobile-search-form {
	display: flex;
	align-items: center;
	width: calc(100% - 10px);
	margin: 6px 5px;
	border: 1px solid #d9d9df;
	border-radius: 11px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.mobile-search-form:focus-within { border-color: var(--color-brand); }
.mobile-search-form input { flex:1; min-width:0; height:44px; padding:0 12px 0 2px; border:0; outline:0; font:inherit; font-size:14px; }
.mobile-search-form input::placeholder { color:#9b9ba3; opacity:1; }
.mobile-search-form button { width:48px; height:44px; flex:0 0 48px; display:flex; align-items:center; justify-content:center; padding:0; border:0; background:transparent; color:#111; }
.mobile-search-form button svg { width:20px; height:20px; }

.mobile-bottom-nav { position:fixed; left:0; right:0; bottom:0; z-index:1100; height:60px; display:flex; align-items:stretch; background:#fff; border-top:1px solid #e6e6e6; box-shadow:0 -2px 12px rgba(0,0,0,.05); padding-bottom:env(safe-area-inset-bottom); }
.mobile-bottom-link { position:relative; flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:5px 1px 4px; border:0; background:transparent; color:#666; font-family:var(--font-sans); font-size:8px; line-height:1; text-decoration:none; text-transform:capitalize; }
.mobile-bottom-link svg { width:21px; height:21px; }
.mobile-bottom-link.active { color:var(--color-brand); }
.mobile-bottom-icon-wrap { position:relative; display:flex; }
.mobile-bottom-icon-wrap i { position:absolute; top:-6px; right:-8px; min-width:15px; height:15px; padding:0 3px; display:flex; align-items:center; justify-content:center; border-radius:10px; background:var(--color-brand); color:#fff; font-size:9px; font-style:normal; }

.mobile-header-utility { position:relative; z-index:1050; width:100%; max-width:100vw; height:40px; display:flex; align-items:center; padding:0 7px; background:#fff; border-top:1px solid #f0f0f0; overflow:visible; }
.mobile-header-utility > a,
.mobile-header-utility > button,
.mobile-header-utility > span { min-width:0; display:flex; align-items:center; justify-content:center; padding:0 3px; border:0; background:transparent; color:#111; text-decoration:none; font-family:var(--font-sans); font-size:10px; line-height:1; white-space:nowrap; }
.mobile-header-utility > :last-child { border-right:0; }
.site-navbar:has(#mobileMenuPanel.show) .mobile-header-utility { display:none !important; }
.mobile-utility-deliver { flex:1.3; min-width:0; display:flex !important; align-items:center !important; justify-content:flex-start !important; gap:4px; text-align:left; }
.mobile-utility-deliver > svg { width:15px; height:15px; flex:0 0 15px; color:var(--color-brand); }
.mobile-utility-deliver > span { min-width:0; display:flex; flex-direction:column; gap:2px; }
.mobile-utility-deliver small { color:#777; font-size:8px; line-height:1; }
.mobile-utility-deliver strong { max-width:85px; overflow:hidden; text-overflow:ellipsis; color:#242424; font-size:10px; line-height:1; white-space:nowrap; }
.mobile-utility-currency-dropdown { flex:0 0 58px; width:58px; height:26px; }
.mobile-utility-currency-dropdown > button { width:58px; height:26px; display:flex; align-items:center; justify-content:center; gap:4px; padding:0; border:0; border-radius:0; background:transparent; color:#111; font-family:var(--font-sans); font-size:11px; font-weight:600; line-height:1; box-shadow:none; }
.mobile-utility-currency-dropdown > button svg { width:8px; height:6px; }
.mobile-header-utility .mobile-utility-link { flex:1; min-width:0; height:auto; overflow:hidden; font-size:9px; text-overflow:ellipsis; }
.mobile-header-utility .mobile-utility-track { flex:1.45; }
.mobile-currency-menu { z-index:1200; min-width:110px; padding:4px; border-color:#e4e4e4; border-radius:7px; box-shadow:0 8px 22px rgba(0,0,0,.14); }
.mobile-currency-menu li button { width:100%; padding:7px 9px; border:0; border-radius:5px; background:#fff; color:#222; text-align:left; font-size:11px; }
.mobile-currency-menu li button:hover { background:var(--color-brand-light); color:var(--color-brand); }

.nav-icon-btn {
	position: relative;
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s;
}

.nav-icon-btn:hover {
	color: var(--color-brand);
}

.nav-icon-btn svg {
	width: 24px;
	height: 24px;
}

.nav-icon-badge {
	position: absolute;
	top: -8px;
	right: -9px;
	background: var(--color-text);
	color: #fff;
	font-size: 10px;
	width: 17px;
	height: 17px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-deliver {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0 24px;
	transition: color .2s;
	border: none;
	background: none;
}

.nav-deliver:hover .nav-deliver-country {
	color: var(--color-brand);
}

.nav-deliver-pin svg {
	color: var(--color-brand);
	width: 18px;
	height: 18px;
}

.nav-deliver-text {
	line-height: 1.2;
	text-align: left;
}

.nav-deliver-label {
	font-size: var(--text-xs);
	color: #888;
	display: block;
}

.nav-deliver-country {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-text);
	display: block;
	transition: color .2s;
}

/* ── ONLY NEW ADDITION: currency dropdown styles ── */
.nav-currency-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-bg);
	font-family: var(--font-sans);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
	padding: 5px 10px;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1;
	transition: border-color .2s, color .2s;
}

.nav-currency-btn:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.nav-currency-btn.dropdown-toggle::after {
	display: none;
}

.currency-menu {
	min-width: 205px;
	border: 1.5px solid var(--color-border) !important;
	border-radius: var(--radius-md) !important;
	padding: 4px 0 6px !important;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1) !important;
	margin-top: 6px !important;
	z-index: 10000 !important;
}

.currency-menu-title {
	font-family: var(--font-sans);
	font-size: var(--text-xxs);
	font-weight: 700;
	color: #aaa;
	text-transform: uppercase;
	letter-spacing: .8px;
	padding: 6px 14px 8px;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 2px;
	display: block;
}

.currency-opt {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 7px 14px;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-sans);
	transition: background .12s;
}

.currency-opt:hover {
	background: var(--neutral-50);
}

.currency-opt.active {
	background: #f5eaff;
}

.currency-opt-flag {
	font-size: 1rem;
	line-height: 1;
	flex-shrink: 0;
}

.currency-opt-info {
	flex: 1;
	line-height: 1.2;
}

.currency-opt-code {
	display: block;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-text);
}

.currency-opt-name {
	display: block;
	font-size: var(--text-xxs);
	color: #999;
}

.currency-opt-check {
	color: var(--color-brand);
	flex-shrink: 0;
	opacity: 0;
}

.currency-opt.active .currency-opt-check {
	opacity: 1;
}

.deliver-modal .modal-header {
	border-bottom: 1px solid var(--color-border);
	padding: 18px 24px 14px;
}

.deliver-modal .modal-title {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
}

.deliver-modal .modal-body {
	padding: 20px 24px 24px;
}

.deliver-search-wrap {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--color-brand);
	border-radius: var(--radius-full);
	overflow: hidden;
	margin-bottom: 20px;
}

.deliver-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px 16px;
	font-family: var(--font-sans);
	font-size: var(--text-sm);
	color: #333;
}

.deliver-search-input::placeholder {
	color: #bbb;
}

.deliver-search-btn {
	background: none;
	border: none;
	padding: 0 16px;
	color: var(--color-brand);
	font-size: 1rem;
	cursor: pointer;
	height: 42px;
	display: flex;
	align-items: center;
}

.deliver-country-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-height: 320px;
	overflow-y: auto;
}

.deliver-country-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	border-radius: var(--radius-md);
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: border-color .15s, background .15s;
}

.deliver-country-item:hover {
	background: var(--neutral-50);
}

.deliver-country-item.selected {
	border-color: var(--color-brand);
	background: #f9f0ff;
}

.deliver-flag {
	font-size: 1.4rem;
	flex-shrink: 0;
}

.deliver-country-name {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
}

.deliver-country-sub {
	font-size: var(--text-xs);
	color: #888;
}

.deliver-check {
	margin-left: auto;
	color: var(--color-brand);
	display: none;
}

.deliver-country-item.selected .deliver-check {
	display: block;
}

.deliver-modal .modal-footer {
	border-top: 1px solid var(--color-border);
	padding: 14px 24px;
}

.btn-deliver-confirm {
	background: var(--color-brand);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	padding: 10px 24px;
	font-family: var(--font-sans);
	font-size: var(--text-sm);
	font-weight: 700;
	width: 100%;
	transition: background .2s;
	cursor: pointer;
}

.btn-deliver-confirm:hover {
	background: var(--color-brand-dark);
}

.nav-mobile-collapse {
	background: #fff;
	border-top: 1px solid var(--color-border);
	padding: 12px 0 16px;
}

.nav-mobile-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border);
	font-family: var(--font-sans);
	font-size: var(--text-base);
	font-weight: 500;
	color: #333;
	text-decoration: none;
	transition: color .2s;
}

.nav-mobile-link:last-child {
	border-bottom: none;
}

.nav-mobile-link.active,
.nav-mobile-link:hover {
	color: var(--color-brand);
}

.nav-mobile-link.active {
	font-weight: 600;
}

.btn-start-selling {
	background: var(--color-brand);
	color: #fff;
	border: none;
	border-radius: var(--radius-md);
	padding: 10px 12px;
	font-size: var(--text-sm);
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .2s;
	margin-left: 20px;
}

.btn-start-selling:hover {
	background: var(--color-brand-dark);
	color: #fff;
}

.btn-start-selling svg {
	flex-shrink: 0;
}

.nav-bottom {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 0;
}

.nav-cat-toggle {
	display: flex;
	align-items: center;
	gap: 7px;
	background: none;
	border: none;
	padding: 12px 20px 12px 0;
	font-family: var(--font-sans);
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-text);
	cursor: pointer;
	margin-right: 12px;
	white-space: nowrap;
	transition: color .2s;
}

.nav-cat-toggle:hover {
	color: var(--color-brand);
}

.nav-main-links {
	display: flex;
	align-items: center;
	flex: 1;
}

.nav-main-link {
	font-family: var(--font-sans);
	font-size: var(--text-base);
	font-weight: 500;
	color: #333;
	text-decoration: none;
	padding: 12px 14px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	transition: color .2s;
	white-space: nowrap;
	line-height: 1;
}

.nav-main-link:hover {
	color: var(--color-brand);
}

.nav-main-link.active {
	color: var(--color-brand);
	font-weight: 600;
}

.nav-main-link svg {
	opacity: .7;
}

.nav-main-link.active svg {
	opacity: 1;
}

.nav-mobile-menu {
	background: var(--color-bg);
	border-top: 1px solid var(--color-border);
	padding: 0 18px;
	max-height: calc(100dvh - 118px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.nav-mobile-search {
	display: flex;
	align-items: center;
	border: 1.5px solid #ccc;
	border-radius: var(--radius-full);
	overflow: hidden;
	margin-bottom: 16px;
}

.nav-mobile-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px 16px;
	font-family: var(--font-sans);
	font-size: var(--text-base);
	color: #333;
}

.nav-mobile-search button {
	background: none;
	border: none;
	padding: 0 16px;
	color: #555;
	font-size: 1.05rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	height: 42px;
}

.nav-mobile-links {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nav-mobile-menu .nav-mobile-search { display: none !important; }

.nav-mobile-link-label { display:flex; align-items:center; gap:16px; }
.nav-mobile-link-label > svg { width:22px; height:22px; flex:0 0 22px; }
.nav-mobile-link-label b { color:var(--color-brand); font-weight:700; }
.nav-mobile-chevron { width:16px; height:16px; }
.nav-mobile-footer { display:flex; border-top:1px solid var(--color-border); }
.nav-mobile-footer a,
.nav-mobile-footer button { flex:1; min-width:0; display:flex; flex-direction:row; align-items:center; justify-content:center; gap:9px; padding:14px 6px; border:0; border-right:1px solid var(--color-border); background:#fff; color:#111; text-decoration:none; font-family:var(--font-sans); font-size:10px; white-space:nowrap; }
.nav-mobile-footer > :last-child { border-right:0; }
.nav-mobile-footer svg { width:21px; height:21px; }
.nav-mobile-currency { display:flex; align-items:center; height:21px; font-size:13px; font-weight:700; }

.nav-mobile-icons {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 12px 0 4px;
}

.nav-mobile-icons .nav-icon-btn {
	font-size: 1.3rem;
}

/* Announcement bar — dark background, 100% width */
.lb_header_topbar {
	background-color: #111111;
	color: #ccc;
	padding: 8px 0px  8px  0px ;
	font-size: 11px;
	font-weight: 500;
	width: 100%;
}

.lb_header_topbar a {
	color: #ccc !important;
	text-decoration: none;
	transition: color .2s;
}

.lb_header_topbar a:hover {
	color: #fff !important;
}

.announce-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.announce-left,
.announce-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.announce-sep {
	color: #444;
}

hr {
	margin: 1rem 0;
	color: inherit;
	border: 0;
	border-top: 1px solid #e0e0e0;
}

@media (max-width: 1199px) {
	.nav-search-wrap {
		width: 430px;
		max-width: 430px;
		flex-basis: 430px;
	}

	.nav-main-link {
		padding: 12px 10px;
	}
}

@media (max-width: 991px) {
	.nav-bottom {
		display: none;
	}

	.announce-right {
		display: none;
	}
}

@media (max-width: 767px) {
	html,
	body { max-width:100%; overflow-x:clip; }
	body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); overflow-y:auto; }
	body.single-product-page { padding-bottom:0; }
	.site-navbar > .container .nav-top,
	.site-navbar > .mobile-header-utility,
	.site-navbar > hr { display:none !important; }
	.nav-mobile-menu { max-height:calc(100dvh - 222px); }

	.site-navbar .container {
		max-width: none;
		padding-left: 10px;
		padding-right: 10px;
	}

	.nav-top {
		width:100%;
		max-width:100%;
		padding: 8px 0;
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.nav-search-wrap {
		display: none;
	}

	.nav-right {
		min-width:0;
		gap: 13px;
		margin-left: auto;
	}

	.nav-right .nav-icon-btn.nav-mobile-action {
		display: inline-flex !important;
		flex: 0 0 22px;
	}

	.nav-right .nav-icon-btn svg {
		width: 19px;
		height: 19px;
	}

	.nav-right .nav-icon-btn.nav-mobile-action { flex-basis:19px; }
	.nav-right .nav-icon-badge { top:-7px; right:-7px; width:14px; height:14px; font-size:8px; }

	.nav-right .btn-start-selling {
		display: inline-flex;
		margin-left: 10px;
		padding: 9px 12px;
		border-radius: 6px;
		font-size: 11px;
	}

	.nav-currency-btn {
		display: none;
	}
}

@media (max-width: 575px) {
	body {
		padding-top: 162px;
	}

	.site-navbar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}

	.nav-brand {
		width: 160px !important;
		height: 36px !important;
		margin-left: -15px !important;
		overflow: hidden !important;
		flex: 0 0 160px;
	}

	.nav-brand > img {
		width: 32px !important;
		height: 32px !important;
		flex-basis: 32px !important;
	}

	.nav-brand .lilabalicom {
		width: 118px !important;
	}

	.nav-brand .lilabaliai {
		width: 58px !important;
	}

	.nav-brand .lb-typing-wrap {
		font-size: 6px !important;
		white-space: nowrap;
	}

	.nav-brand-name {
		font-size: 1.05rem;
	}

	.lb_header_topbar {
		display: none;
	}

	.btn-start-selling {
		padding: 8px 8px;
		margin-left: 2px;
		font-size: var(--text-xs);
	}
}

@media (max-width: 430px) {
	.mobile-header-menu {
		margin-right: 7px;
		flex-basis: 24px;
		width: 24px;
	}

	.nav-brand {
		width: 150px !important;
		flex: 0 1 150px;
		min-width: 0;
	}

	.nav-right {
		gap: 11px;
	}

	.nav-right .btn-start-selling {
		padding: 9px 11px;
	}
}

@media (max-width: 390px) {
	.nav-brand {
		width: 132px !important;
		flex-basis: 132px;
		gap: 2px;
	}

	.nav-brand .lilabalicom {
		width: 96px !important;
	}

	.nav-brand .lilabaliai {
		width: 48px !important;
	}

	.nav-right {
		gap: 8px;
	}

	.nav-right .btn-start-selling {
		padding: 8px;
		font-size: 10px;
		gap: 4px;
	}
}

.nav-car-active-circle
{
	background-color: #8B2FC9 !important;
}

/* ══════════════════════════════════════
			 HERO — 400vh STICKY SCROLL SLIDER
		══════════════════════════════════════ */
.hero-scroll-wrapper {
	height: 340vh;
	position: relative;
}

.hero-section {
	position: sticky;
	top: 0;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
	z-index: 1;
}

.hero-slides {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	transform: translateY(100%);
	transition: transform .72s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide.active {
	transform: translateY(0);
	z-index: 3;
}

.hero-slide.leaving {
	transform: translateY(-100%);
	z-index: 2;
}

.hero-slide-bg {
	position: absolute;
	inset: 0;
	display: flex;
}

.hero-col {
	flex: 1;
}

.hero-content {
	position: relative;
	z-index: 5;
	padding: 0 20px;
	max-width: 1100px;
}

.hero-content h1 {
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 900;
	line-height: 1.08;
	color: #2d2d2d;
}

.hero-content h1 .hl {
	color: var(--color-brand);
	display: block;
	font-size: clamp(2.4rem, 8vw, 4.5rem);
	letter-spacing: -1.5px;
}

.hero-content h1 strong {
	color: #1a1a1a;
}

.hero-content p {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	color: #444;
	line-height: 1.65;
	margin: 24px auto 40px;
	max-width: 560px;
}

.hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-hero-sell,
.btn-hero-shop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: var(--radius-md);
	padding: 5px 32px 5px 64px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	min-width: 200px;
	height: 55px;
	transition: box-shadow .3s;
}

.btn-hero-sell {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
	color: #fff;
	box-shadow: 0 4px 20px rgba(139, 47, 201, .4);
}

.btn-hero-sell:hover {
	color: #fff;
	box-shadow: 0 8px 32px rgba(139, 47, 201, .55);
}

.btn-hero-shop {
	background: #fff;
	color: #111;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
}

.btn-hero-shop:hover {
	color: #111;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

.btn-circle {
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	z-index: 2;
	transition: left .4s cubic-bezier(.4, 0, .2, 1);
}

.btn-hero-sell .btn-circle {
	background: rgba(255, 255, 255, .25);
	color: #fff;
}

.btn-hero-shop .btn-circle {
	background: #111;
	color: #fff;
}

.btn-hero-sell:hover .btn-circle,
.btn-hero-shop:hover .btn-circle {
	left: calc(100% - 57px);
}

.btn-label {
	position: relative;
	z-index: 1;
	white-space: nowrap;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.btn-hero-sell:hover .btn-label,
.btn-hero-shop:hover .btn-label {
	transform: translateX(-36px);
}

.hero-dots-side {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 10;
}

.hero-dot-side {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-full);
	border: 2px solid #888;
	background: transparent;
	cursor: pointer;
	transition: background .25s, border-color .25s;
}

.hero-dot-side.active {
	background: #333;
	border-color: #333;
}

/* ══════════════════════════════════════
				SLIDER 2
		══════════════════════════════════════ */

.hero-stage-section {
	background: var(--neutral-50);
	/* #1A1A1A */
	padding: 60px 0 30px;
	overflow: hidden;
	position: relative;
}

.hero-stage-outer {
	position: relative;
}

.hero-stage-track {
	display: flex;
	align-items: stretch;
	gap: 16px;
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.hero-slide-card {
	flex: 0 0 calc(100vw - 140px);
	max-width: 1440px;
	min-height: 500px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: stretch;
	opacity: .35;
	transform: scale(.97);
	transition: opacity .45s ease, transform .45s ease;
	flex-shrink: 0;
}

.hero-slide-card.active {
	opacity: 1;
	transform: scale(1);
}

.hs-text {
	flex: 0 0 52%;
	padding: 56px 52px 56px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.hs-eyebrow {
	font-family: var(--font-heading);
	font-size: var(--text-xs);
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.hs-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: 0;
	margin-bottom: 16px;
}

.hs-desc {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.65;
	margin-bottom: 32px;
	max-width: 320px;
	opacity: .85;
}

.hs-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 28px;
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 700;
	text-decoration: none;
	border: 2px solid transparent;
	width: fit-content;
	transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.hs-btn:hover {
	transform: translateY(-2px);
}

.hs-img {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hs-img img {
	max-height: 340px;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .2));
	transition: transform .4s ease;
}

.hero-slide-card.active .hs-img img {
	transform: scale(1.03);
}

/* ── Slide 1 — light grey using neutral tokens ── */
.slide-grey .hs-text {
	background: var(--color-bg);
}

.slide-grey .hs-img {
	background: var(--color-brand-dark);
}

.slide-grey .hs-eyebrow {
	color: var(--neutral-500);
}

.slide-grey .hs-title {
	color: var(--neutral-1000);
}

.slide-grey .hs-desc {
	color: var(--neutral-500);
}

.slide-grey .hs-btn {
	background: var(--color-brand);
	color: var(--neutral-25);
}

.slide-grey .hs-btn:hover {
	background: var(--color-brand-dark);
	color: var(--neutral-25);
}

/* ── Slide 2 — deep purple ── */
.slide-purple .hs-text {
	background: var(--color-bg)
}

.slide-purple .hs-img {
	background: var(--color-brand-dark);
}

.slide-purple .hs-eyebrow {
	color: var(--neutral-500);
}

.slide-purple .hs-title {
	color: var(--neutral-800);
}

.slide-purple .hs-desc {
	color: var(--neutral-500);
}

.slide-purple .hs-btn {
	background: var(--color-brand);
	color: var(--neutral-25);
}

.slide-purple .hs-btn:hover {
	background: var(--color-brand-dark);
	color: var(--neutral-25);
}

/* ── Slide 3 — warm cream ── */
.slide-cream .hs-text {
	background: var(--color-bg);
}

.slide-cream .hs-img {
	background: var(--color-brand-dark);
}

.slide-cream .hs-eyebrow {
	color: var(--neutral-500);
}

.slide-cream .hs-title {
	color: var(--neutral-900);
}

.slide-cream .hs-desc {
	color: var(--neutral-500);
}

.slide-cream .hs-btn {
	background: var(--color-brand);
	color: var(--neutral-25);
}

.slide-cream .hs-btn:hover {
	background: var(--color-brand-dark);
	color: var(--neutral-25);
}

/* ── Slide 4 — dark navy ── */
.slide-navy .hs-text {
	background: var(--color-bg);
}

.slide-navy .hs-img {
	background: var(--color-brand-dark);
}

.slide-navy .hs-eyebrow {
	color: var(--neutral-500);
}

.slide-navy .hs-title {
	color: var(--neutral-800);
}

.slide-navy .hs-desc {
	color: var(--neutral-500);
}

.slide-navy .hs-btn {
	background: var(--color-brand);
	color: var(--neutral-25);
}

.slide-navy .hs-btn:hover {
	background: var(--color-brand-dark);
	color: var(--neutral-25);
}

/* ── Navigation arrows ── */
.hero-stage-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	background: var(--neutral-50);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-md);
	color: var(--neutral-900);
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
	transition: background .2s, transform .15s, box-shadow .2s;
}

.hero-stage-nav:hover {
	background: var(--neutral-25);
	transform: translateY(-50%) scale(1.08);
	box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}

.hero-stage-nav.prev {
	left: calc(235px - 22px);
}

.hero-stage-nav.next {
	right: calc(225px - 22px);
}

/* ── Dot indicators ── */
.hero-stage-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.hero-stage-dot {
	width: 8px;
	height: 8px;
	border-radius: var(--radius-full);
	background: var(--neutral-250);
	border: none;
	cursor: pointer;
	transition: background .25s, transform .25s;
	padding: 0;
}

.hero-stage-dot.active {
	background: var(--neutral-500);
	transform: scale(1.35);
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.hero-slide-card {
		flex: 0 0 calc(100vw - 80px);
		min-height: 320px;
		flex-direction: column;
	}

	.hs-text {
		flex: none;
		padding: 32px 28px 20px;
	}

	.hs-img {
		min-height: 200px;
	}

	.hero-stage-nav.prev {
		left: 8px;
	}

	.hero-stage-nav.next {
		right: 8px;
	}
}

@media (max-width: 575px) {
	.hs-title {
		font-size: var(--text-3xl);
	}

	.hs-desc {
		font-size: var(--text-sm);
	}
}

/* ══════════════════════════════════════
			 PROMO BANNER SECTION
		══════════════════════════════════════ */
.promo-section {
	padding: 35px 0 60px;
	background: #fff;
}

/* ── Outer grid: left large + right column ── */
.promo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: stretch;
}

/* ── Right column: 2 stacked cards ── */
.promo-col-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ── Base card ── */
.promo-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	/* text anchored to bottom */
	text-decoration: none;
	background: #111;
	cursor: pointer;
}

/* Large left card — taller */
.promo-card-lg {
	height: 520px;
}

/* Small right cards — half height each */
.promo-card-sm {
	height: 252px;
}

/* Background image */
.promo-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .5s ease;
}

.promo-card:hover .promo-card-img {
	transform: scale(1.05);
}

/* Dark gradient overlay — bottom for text readability */
.promo-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, .72) 0%,
			rgba(0, 0, 0, .28) 45%,
			rgba(0, 0, 0, .05) 100%);
	pointer-events: none;
}

/* Content sits above overlay */
.promo-card-content {
	position: relative;
	z-index: 2;
	padding: 24px 28px 28px;
	width: 100%;
}

.promo-card-title {
	font-family: var(--font-sans);
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: .5px;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 14px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

/* Smaller title for sm cards */
.promo-card-sm .promo-card-title {
	font-size: 1.35rem;
}

/* Shop Now button */
.promo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-brand);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 9px 18px;
	font-family: var(--font-sans);
	font-size: .82rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .2px;
	transition: background .2s, transform .15s;
	cursor: pointer;
}

.promo-btn:hover {
	background: var(--color-brand-dark);
	color: #fff;
	transform: translateY(-1px);
}

.promo-btn svg {
	flex-shrink: 0;
}

/* ── Responsive ── */

/* Tablet: right cards become slightly shorter */
@media (max-width: 991px) {
	.promo-card-lg {
		height: 420px;
	}

	.promo-card-sm {
		height: 202px;
	}

	.promo-card-title {
		font-size: 1.35rem;
	}

	.promo-card-sm .promo-card-title {
		font-size: 1.1rem;
	}

	.promo-card-content {
		padding: 18px 20px 20px;
	}
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
	.promo-grid {
		grid-template-columns: 1fr;
	}

	.promo-card-lg {
		height: 340px;
	}

	.promo-card-sm {
		height: 220px;
	}

	.promo-col-right {
		flex-direction: row;
	}

	.promo-card-sm {
		flex: 1;
	}
}

/* Small mobile: right col stacks again */
@media (max-width: 500px) {
	.promo-col-right {
		flex-direction: column;
	}

	.promo-card-lg {
		height: 280px;
	}

	.promo-card-sm {
		height: 200px;
	}

	.promo-card-title {
		font-size: 1.15rem;
	}

	.promo-card-sm .promo-card-title {
		font-size: 1rem;
	}
}

/* ══════════════════════════════════════
			 SHOP BY CATEGORY
		══════════════════════════════════════ */
.cat-section {
	padding: 70px 0 60px;
	background: #fff;
}

.cat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.cat-header-left {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.cat-header-left h2 {
	font-size: 1.35rem;
	color: #111;
	margin: 0;
}

.cat-all-link {
	font-size: .82rem;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 3px;
}

.cat-all-link:hover {
	color: var(--color-brand);
}

.cat-arrows {
	display: flex;
	gap: 8px;
}

.cat-arrow {
	width: 34px;
	height: 34px;
	border-radius: var(--radius-sm);
	border: 1.5px solid #e0e0e0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: .85rem;
	color: #555;
	transition: background .2s, border-color .2s, color .2s;
}

.cat-arrow:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.cat-arrow.cat-next {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: #fff;
}

.cat-arrow.cat-next:hover {
	background: var(--color-brand-dark);
	border-color: var(--color-brand-dark);
}

.cat-slider-outer {
	overflow: hidden;
}

.cat-slider-track {
	display: flex;
	gap: 16px;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.cat-item {
	flex: 0 0 168px;
	text-decoration: none;
	color: #111;
	text-align: center;
}

.cat-item-img {
	width: 168px;
	background: var(--color-bg-subtle);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	transition: box-shadow .2s;
	padding-top: 12px;
}

.cat-item:hover .cat-item-img {
	box-shadow: 0 4px 18px rgba(0, 0, 0, .10);
}

.cat-item-img img {
	width: 88%;
	height: 140px;
	object-fit: contain;
	transition: transform .3s ease;
	display: block;
}

.cat-item:hover .cat-item-img img {
	transform: scale(1.06);
}

.cat-item-body {
	width: 100%;
	background: var(--color-bg-subtle);
	padding: 10px 8px 12px;
}

.cat-item-name {
	font-size: var(--text-md);
	font-weight: 600;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .3px;
	margin-bottom: 4px;
}

.cat-item-link {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-brand);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.cat-item-link:hover {
	color: var(--color-brand-dark);
}

/* ══════════════════════════════════════
			 SHOP BY CATEGORY 2
		══════════════════════════════════════ */
.cat-bar {
	background: var(--neutral-25);
	padding: 70px 0 52px;
}

/* Arrow row — top right */
.cat-bar-arrows {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 28px;
}

.cat-bar-arrow {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-sm);
	border: 1.5px solid #e0e0e0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: .82rem;
	color: #555;
	transition: background .2s, border-color .2s, color .2s;
}

.cat-bar-arrow:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.cat-bar-arrow.arrow-next {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: var(--neutral-25);
}

.cat-bar-arrow.arrow-next:hover {
	background: var(--color-brand-dark);
	border-color: var(--color-brand-dark);
}

/* Main row */
.cat-bar-inner {
	display: flex;
	align-items: center;
	gap: 0;
}

/* Left block */
.cat-bar-left {
	flex: 0 0 260px;
	padding-right: 40px;
}

.cat-bar-title {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--color-text);
	line-height: 1.15;
	margin-bottom: 12px;
}

.cat-bar-viewall {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 500;
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color .2s;
}

.cat-bar-viewall svg {
	width: 14px;
	height: 14px;
	stroke: var(--color-brand);
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cat-bar-viewall:hover {
	color: var(--color-brand);
}

/* Right scrollable */
.cat-bar-right {
	flex: 1;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.cat-bar-right::-webkit-scrollbar {
	display: none;
}

.cat-chips {
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 0;
}

/* Chip */
.cat-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 4px 38px;
	text-decoration: none;
	cursor: pointer;
	flex-shrink: 0;
	transition: opacity .2s;
}

.cat-chip:hover {
	opacity: .65;
}

/* SVG icon */
.cat-chip-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cat-chip-icon svg {
	width: 68px;
	height: 68px;
	stroke: var(--color-brand);
	fill: none;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Label */
.cat-chip-label {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 400;
	color: var(--color-text);
	white-space: nowrap;
}

@media (max-width: 991px) {
	.cat-bar-left {
		flex: 0 0 180px;
		padding-right: 24px;
	}

	.cat-chip {
		padding: 4px 28px;
	}
}

@media (max-width: 767px) {
	.cat-bar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.cat-bar-left {
		flex: none;
	}

	.cat-bar-right {
		width: 100%;
	}
}

/* ══════════════════════════════════════
			 FEATURED PRODUCTS
		══════════════════════════════════════ */
.feat-section {
	padding: 36px 0 48px;
	background: #fff;
}

.feat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.feat-header-left {
	display: flex;
	align-items: baseline;
	gap: 14px;
}

.feat-header-left h2 {
	font-size: 1.3rem;
	color: var(--color-text);
	margin: 0;
}

.feat-view-all {
	font-size: .82rem;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 3px;
}

.feat-view-all:hover {
	color: var(--color-brand);
}

.feat-arrows {
	display: flex;
	gap: 8px;
}

.feat-arrow {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-sm);
	border: 1.5px solid #e0e0e0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: .82rem;
	color: #555;
	transition: background .2s, border-color .2s, color .2s;
}

.feat-arrow:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.feat-arrow.feat-next {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: #fff;
}

.feat-arrow.feat-next:hover {
	background: var(--color-brand-dark);
	border-color: var(--color-brand-dark);
}

.feat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 991px) {
	.feat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.feat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.feat-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: #111;
	display: block;
	transition: box-shadow .25s;
}

.feat-card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
	color: #111;
}

.feat-card-img {
	background: var(--color-bg-subtle);
	border-radius: var(--radius-md);
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 12px;
}

.feat-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.feat-card:hover .feat-card-img img {
	transform: scale(1.05);
}

.feat-card-body {
	padding: 0 2px 14px;
}

.feat-card-name {
	font-size: .88rem;
	color: var(--color-text-sublte);
	margin-bottom: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.feat-card-price {
	font-size: .95rem;
	font-weight: 700;
	color: #111;
}

/* ══════════════════════════════════════
			 WHY SECTION
		══════════════════════════════════════ */
.why-section {
	background: var(--color-bg-muted);
	padding: 64px 0;
}

.why-title {
	font-size: var(--text-3xl);
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 12px;
	text-align: center;
}

.why-title .hl {
	color: var(--color-brand);
	font-weight: 900;
}

.why-sub {
	font-size: var(--text-md);
	color: var(--color-text-secondary);
	text-align: center;
	max-width: 580px;
	margin: 0 auto 44px;
	line-height: 1.7;
}

.why-card {
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 32px 28px 28px;
	background: #fff;
	height: 100%;
	text-align: center;
	transition: border-color .2s, box-shadow .2s;
}

.why-card:hover {
	border-color: #d0b8f0;
	box-shadow: 0 4px 18px rgba(139, 47, 201, .08);
}

.why-icon {
	width: 80px;
	height: 80px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 5px;
}

.why-icon svg {
	width: 50px;
	height: 50px;
}

.why-card h5 {
	font-size: .92rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 10px;
}

.why-card p {
	font-size: .82rem;
	color: var(--color-text-sublte);
	line-height: 1.65;
	margin: 0;
}

.btn-why {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--color-brand);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	padding: 12px 22px;
	font-size: var(--text-sm);
	font-weight: 600;
	text-decoration: none;
	margin-top: 44px;
	transition: background .2s;
}

.btn-why:hover {
	background: var(--color-brand-dark);
	color: #fff;
}

/* ══════════════════════════════════════
			 BANNER GRID
		══════════════════════════════════════ */
.banner-section {
	padding: 70px 0;
	background: #fff;
}

.banner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--radius-md);
	overflow: hidden;
	min-height: 380px;
}

@media (max-width: 767px) {
	.banner-grid {
		grid-template-columns: 1fr;
	}
}

.bn-left {
	background: #f4f4f4;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-strt;
	padding: 40px 36px 0;
	min-height: 480px;
	align-items: center;
	text-align: center;
}

.bn-left-text h4 {
	font-size: 1.15rem;
	font-weight: 700;
	text-align: center;
	color: var(--color-text);
	line-height: 1.3;
	margin-bottom: 16px;
}

.bn-left-img {
	padding-top: 20px;
	max-width: 300px;
	pointer-events: none;
}

.bn-left-img img {
	width: 100%;
	display: block;
	object-fit: contain;
}

.bn-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.bn-cell {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	min-height: 190px;
}

.bn-cell-img {
	position: absolute;
	pointer-events: none;
}

.bn-yellow {
	background: #EED532;
}

.bn-yellow-dark {
	background: #EEC925;
}

.bn-yellow-img .bn-cell-img {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	width: 80%;

}

.bn-yellow-img .bn-cell-img img {
	width: 100%;
	object-fit: contain;

}

.bn-yellow-text {
	justify-content: center;
	align-items: flex-start;
}

.bn-yellow-text h4 {
	font-size: .95rem;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
	margin-bottom: 12px;
}

.bn-navy {
	background: #1D2542;
}

.bn-navy-dark {
	background: #141A2F;
}

.bn-navy-text {
	justify-content: center;
	align-items: flex-start;
}

.bn-navy-text h4 {
	font-size: .95rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 12px;
}

.bn-navy-img .bn-cell-img {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
}

.bn-navy-img .bn-cell-img img {
	width: 100%;
	object-fit: contain;
}

.btn-bn-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-text);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	padding: 8px 12px;
	font-size: var(--text-xs);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s;
}

.btn-bn-dark:hover {
	background: #2e3a5c;
	color: #fff;
}

.btn-bn-outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #111;
	border: 1.5px solid #111;
	border-radius: var(--radius-sm);
	padding: 8px 16px;
	font-size: .78rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s, color .2s;
}

.btn-bn-outline-dark:hover {
	background: #111;
	color: #fff;
}

.btn-bn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .6);
	border-radius: var(--radius-sm);
	padding: 8px 16px;
	font-size: .78rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s, border-color .2s;
}

.btn-bn-outline-white:hover {
	background: rgba(255, 255, 255, .15);
	border-color: #fff;
}

/* ══════════════════════════════════════
			 PEOPLE CHOOSE
		══════════════════════════════════════ */
.people-section {
	padding: 60px 0 52px;
	background: #fff;
	text-align: center;
}

.people-heading {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--color-text);
	margin-bottom: 10px;
}

.people-heading .hl {
	color: var(--color-brand);
	font-weight: 700;
}

.people-sub-text {
	font-size: .9rem;
	color: var(--color-text-secondary);
	margin: 0 auto 50px;
	line-height: 1.65;
	max-width: 620px;
}

.marquee-outer {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	width: max-content;
}

.marquee-row.row1 {
	animation: scrollLeft 60s linear infinite;
}

.marquee-row.row2 {
	animation: scrollRight 70s linear infinite;
}

.marquee-row.row3 {
	animation: scrollLeft 65s linear infinite;
}

@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

.marquee-outer:hover .marquee-row {
	animation-play-state: paused;
}

.marquee-shade {
	position: absolute;
	inset: 0;
	z-index: 10;
	background: rgba(0, 0, 0, .03);
	pointer-events: none;
}

.logo-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 110px;
	padding: 0;
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-md);
	background: #fff;
	flex-shrink: 0;
	transition: border-color .2s, box-shadow .2s;

}

.logo-chip:hover {
	border-color: var(--color-brand);
}

.logo-chip img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--radius-md);
}

.lilabali-fixed {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
	background: #111;
	border-radius: var(--radius-lg);
	width: 137px;
	height: 137px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0px 0px 40px 20px rgb(255 255 255), 0 2px 16px 20px rgb(255 255 255);
	pointer-events: none;
}

.lilabali-fixed svg {
	width: 100px;
	height: 100px;
}

.lilabali-fixed-label {
	font-size: .72rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.brand-heavy-metal {
	font-size: .65rem;
	font-weight: 900;
	color: #111;
	text-align: left;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.brand-heavy-metal span {
	display: block;
	font-size: .58rem;
	font-weight: 700;
	color: #555;
}

.brand-jubbathobe {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: .72rem;
	font-weight: 600;
	color: #333;
}

.brand-jubbathobe .jt-icon {
	width: 22px;
	height: 22px;
	border-radius: var(--radius-full);
	border: 1.5px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
}

.brand-muslim-names {
	display: flex;
	align-items: center;
	gap: 5px;
}

.brand-muslim-names .mn-icon {
	width: 26px;
	height: 26px;
	background: var(--color-brand);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .75rem;
}

.brand-muslim-names .mn-text {
	text-align: left;
	line-height: 1.15;
}

.brand-muslim-names .mn-text .top {
	font-size: .72rem;
	font-weight: 800;
	color: var(--color-brand);
}

.brand-muslim-names .mn-text .bot {
	font-size: .55rem;
	font-weight: 600;
	color: #555;
	letter-spacing: .3px;
}

.brand-mu-na {
	display: flex;
	align-items: center;
	gap: 5px;
}

.brand-mu-na .mn-icon {
	width: 26px;
	height: 26px;
	background: var(--color-brand);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .75rem;
}

.brand-mu-na .mn-text .top {
	font-size: .72rem;
	font-weight: 800;
	color: #111;
}

.btn-people-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--color-brand);
	border: 1px solid var(--color-brand);
	border-radius: var(--radius-md);
	padding: 12px 28px;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
	margin-top: 50px;
	transition: background .2s, color .2s;
}

.btn-people-cta:hover {
	background: var(--color-brand);
	color: #fff;
}

/* ══════════════════════════════════════
			 INDUSTRIES
		══════════════════════════════════════ */

.ind-section {
	background: var(--color-bg-muted);
	overflow: hidden;
	padding: 0;
}

/* LEFT aligned with container, RIGHT bleed */
.ind-inner {
	margin-left: max(1.5rem, calc((100vw - 1320px) / 2 + 1.5rem));
	margin-right: 0;

	display: flex;
	align-items: stretch;
	gap: 0;
}

/* LEFT CONTENT */
.ind-left {
	flex: 0 0 320px;
	width: 320px;

	padding: 4rem 2.5rem 4rem 0;

	display: flex;
	flex-direction: column;
	justify-content: center;

	min-height: 500px;
}

.ind-left h2 {
	font-size: clamp(1.8rem, 2.5vw, 2rem);
	line-height: 1.12;
	font-weight: 700;
	margin-bottom: 1rem;
}

.ind-left p {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	line-height: 1.7;

	max-width: 260px;
	margin-bottom: 2rem;
}

/* ARROWS */
.ind-arrows {
	display: flex;
	gap: .65rem;
}

.ind-arrow {
	width: 42px;
	height: 42px;

	border-radius: 50%;
	border: 1.5px solid #cfcfcf;

	background: #fff;
	color: #111;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;

	transition: .25s ease;
}

.ind-arrow:hover {
	background: #111827;
	border-color: #111827;
	color: #fff;
}

/* RIGHT SLIDER */
.ind-right {
	flex: 1;

	padding: 7rem 0 7rem 2rem;

	overflow: hidden;

	display: flex;
	align-items: center;
}

.ind-track {
	display: flex;
	gap: 1.2rem;

	transition: transform .45s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

/* CARD */
.ind-card {
	flex: 0 0 500px;
	width: 300px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
	display: flex;
	flex-direction: column;
	transition: .25s ease;
}

.ind-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
}

/* IMAGE */
.ind-card-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	flex-shrink: 0;
}

.ind-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;

	transition: transform .4s ease;
}

.ind-card:hover .ind-card-img img {
	transform: scale(1.06);
}

/* BODY */
.ind-card-body {
	padding: 1.3rem 1.35rem 1.5rem;

	display: flex;
	flex-direction: column;
	flex: 1;
}

.ind-card-title {
	font-size: var(--text-base);
	font-weight: 700;
	margin-bottom: .55rem;
}

.ind-card-desc {
	font-size: .92rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 1rem;

	flex: 1;
}

.ind-learn-more {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	text-decoration: none;
	color: #111827;
	font-size: .95rem;
	font-weight: 600;

	transition: .2s ease;
}

.ind-learn-more:hover {
	gap: .6rem;
}

/* RESPONSIVE */
@media (max-width:991px) {

	.ind-inner {
		margin-left: 1.2rem;
		flex-direction: column;
	}

	.ind-left {
		width: 100%;
		flex: none;

		min-height: auto;

		padding: 2.5rem 1.2rem 1.5rem 0;
	}

	.ind-left p {
		max-width: 100%;
	}

	.ind-right {
		padding: 0 0 2rem 0;
	}

	.ind-card {
		flex: 0 0 280px;
		width: 280px;
	}
}

@media (max-width: 551px) {

	.cta-section {
		padding: 40px 0 0 !important;
	}

}

/* ══════════════════════════════════════
			 CTA BANNER
		══════════════════════════════════════ */
.cta-section {
	padding: 40px 40px 0;
	background: #f4f4f4;
}

.cta-inner {
	background: var(--color-brand);
	border-radius: 15px 15px 0 0;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .07) 0px, rgba(255, 255, 255, .07) 1px, transparent 1px, transparent 80px);
	pointer-events: none;
}

.cta-inner h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 28px;
	line-height: 1.15;
	position: relative;
}

.btn-cta-white {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: var(--color-brand);
	border: 2px solid #fff;
	border-radius: var(--radius-md);
	padding: 13px 32px;
	font-size: .92rem;
	font-weight: 700;
	text-decoration: none;
	position: relative;
	transition: background .2s, color .2s;
}

.btn-cta-white:hover {
	background: transparent;
	color: #fff;
}

/* ══════════════════════════════════════
			 FOOTER TOP
		══════════════════════════════════════ */
.footer-top {
	background: #fff;
	padding: 48px 0 32px;
	text-align: center;
}

.footer-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 16px;
}

.footer-logo-wrap svg {
	width: 300px;
}

.footer-logo-sub {
	font-size: .55rem;
	letter-spacing: 4px;
	color: var(--color-text-muted);
	font-weight: 400;
	text-transform: uppercase;
	display: block;
	margin-top: 2px;
}

.footer-top-info {
	font-size: .82rem;
	color: var(--color-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.footer-top-info span {
	color: var(--color-text-muted);
}

.footer-top-social {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 20px;
}

.footer-top-social a {
	color: #888;
	font-size: 1.15rem;
	text-decoration: none;
	transition: color .2s;
}

.footer-top-social a:hover {
	color: #fff;
}

.footer-top-copy {
	font-size: .75rem;
	color: var(--color-text-muted);
}

.testimonial-section {
	padding: 80px 20px 45px;
	background: #ffffff;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

.testimonial-header {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.tag {
	display: inline-block;
	padding: 6px 16px;
	border: 1px solid #ddd;
	border-radius: 999px;
	font-size: 14px;
	margin-bottom: 18px;
}

.testimonial-header h2 {
	font-size: 40px;
	font-family: var(--font-heading);
	line-height: 1.1;
	margin: 0;
	font-weight: 700;
	color: #111;
}

.testimonial-header p {
	margin-top: 18px;
	color: #666;
	font-size: 16px;
}

.testimonial-wrapper {
	max-width: 1140px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	gap: 24px;
	max-height: 500px;
	overflow: hidden;
	mask-image: linear-gradient(to bottom,
			transparent,
			black 20%,
			black 80%,
			transparent);
	-webkit-mask-image: linear-gradient(to bottom,
			transparent,
			black 20%,
			black 80%,
			transparent);
}

.testimonial-column {
	width: 320px;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation: scrollUp 16s linear infinite;
}

.speed-1 .testimonial-track {
	animation-duration: 15s;
}

.speed-2 .testimonial-track {
	animation-duration: 19s;
}

.speed-3 .testimonial-track {
	animation-duration: 17s;
}

.card {
	padding: 28px;
	border: 1px solid #e5e5e5;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card p {
	margin: 0;
	color: #333;
	line-height: 1.6;
	font-size: 15px;
}

.user {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}

.user img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

.user h4 {
	margin: 0;
	font-size: 15px;
	color: #111;
}

.user span {
	font-size: 13px;
	color: #777;
}

@keyframes scrollUp {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-50%);
	}
}

@media (max-width: 900px) {
	.hide-tablet {
		display: none;
	}

	.testimonial-header h2 {
		font-size: 36px;
	}
}

@media (max-width: 600px) {
	.hide-mobile {
		display: none;
	}

	.testimonial-column {
		width: 100%;
	}

	.testimonial-header h2 {
		font-size: 30px;
	}
}
