/* ============================================================
   Ramz Al Ehtimam - main.css
   Modern UI in brand colors:
   #02205C (navy)  #13497D (blue)  #B49F6A (gold)  #F2DA87 (pale)
   ============================================================ */

:root {
	--c-navy: #02205C;
	--c-blue: #13497D;
	--c-gold: #B49F6A;
	--c-pale: #F2DA87;
	--c-ink:  #0c1626;
	--c-muted:#5c6577;
	--c-line: #e6e8ee;
	--c-bg:   #ffffff;
	--c-bg-alt:#f6f7fb;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow: 0 10px 30px rgba(2, 32, 92, 0.08);
	--shadow-lg: 0 20px 60px rgba(2, 32, 92, 0.15);
	--grad: linear-gradient(135deg, #02205C 0%, #13497D 100%);
	--grad-gold: linear-gradient(135deg, #B49F6A 0%, #F2DA87 100%);
	--trans: 0.25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-navy); }

h1, h2, h3, h4 {
	font-family: 'Inter', system-ui, sans-serif;
	color: var(--c-navy);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.container { max-width: 1250px; margin: 0 auto; padding: 0 24px; }
.site-main { min-height: 60vh; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all var(--trans);
	text-decoration: none;
	font-family: inherit;
	white-space: nowrap;
}
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-primary {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 8px 22px rgba(2, 32, 92, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(2, 32, 92, 0.32); color:#fff; }
.btn-gold {
	background: var(--grad-gold);
	color: var(--c-navy);
	box-shadow: 0 8px 22px rgba(180, 159, 106, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(180, 159, 106, 0.45); color: var(--c-navy); }
.btn-ghost {
	background: transparent;
	color: var(--c-navy);
	border-color: var(--c-navy);
}
.btn-ghost:hover { background: var(--c-navy); color: #fff; }

/* WhatsApp icon */
.wa-icon {
	width: 18px; height: 18px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2c-5.52 0-10 4.48-10 10 0 1.76.46 3.42 1.27 4.86L2 22l5.28-1.38A9.96 9.96 0 0 0 12.04 22c5.52 0 10-4.48 10-10s-4.48-10-10-10zm5.84 14.13c-.25.7-1.45 1.34-2.01 1.42-.51.07-1.16.1-1.88-.12-.43-.13-.99-.31-1.7-.62-3-1.3-4.96-4.32-5.11-4.52-.15-.2-1.22-1.62-1.22-3.09 0-1.47.77-2.19 1.04-2.49.27-.3.59-.37.79-.37s.4 0 .57.01c.18.01.43-.07.67.51.25.6.84 2.07.91 2.22.07.15.12.32.02.52-.1.2-.15.32-.3.5-.15.18-.31.4-.45.54-.15.15-.3.31-.13.61.18.3.79 1.3 1.7 2.11 1.17 1.04 2.16 1.36 2.46 1.51.3.15.48.13.66-.08.18-.2.76-.89.96-1.19.2-.3.4-.25.67-.15.27.1 1.74.82 2.04.97.3.15.5.22.57.35.07.13.07.74-.18 1.45z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2c-5.52 0-10 4.48-10 10 0 1.76.46 3.42 1.27 4.86L2 22l5.28-1.38A9.96 9.96 0 0 0 12.04 22c5.52 0 10-4.48 10-10s-4.48-10-10-10zm5.84 14.13c-.25.7-1.45 1.34-2.01 1.42-.51.07-1.16.1-1.88-.12-.43-.13-.99-.31-1.7-.62-3-1.3-4.96-4.32-5.11-4.52-.15-.2-1.22-1.62-1.22-3.09 0-1.47.77-2.19 1.04-2.49.27-.3.59-.37.79-.37s.4 0 .57.01c.18.01.43-.07.67.51.25.6.84 2.07.91 2.22.07.15.12.32.02.52-.1.2-.15.32-.3.5-.15.18-.31.4-.45.54-.15.15-.3.31-.13.61.18.3.79 1.3 1.7 2.11 1.17 1.04 2.16 1.36 2.46 1.51.3.15.48.13.66-.08.18-.2.76-.89.96-1.19.2-.3.4-.25.67-.15.27.1 1.74.82 2.04.97.3.15.5.22.57.35.07.13.07.74-.18 1.45z'/></svg>") no-repeat center / contain;
	display: inline-block;
	flex-shrink: 0;
}

/* ---------- Announcement bar ---------- */
.announce {
	background: linear-gradient(90deg, #02205C 0%, #0a2f6e 55%, #13497D 100%);
	color: rgba(255,255,255,.9);
	font-size: .82rem;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.announce-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 22px; flex-wrap: wrap; }
.announce-list li { display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.announce-list svg { color: rgba(255,255,255,.55); flex-shrink: 0; }
.announce-link { color: inherit; text-decoration: none; }
.announce-link:hover { color: #fff; text-decoration: underline; }
.announce-meta li { color: rgba(255,255,255,.7); }
.announce-meta svg { color: rgba(255,255,255,.5); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: #fff;
	border-bottom: 1px solid var(--c-line);
	transition: background var(--trans), box-shadow var(--trans), border-color var(--trans), backdrop-filter var(--trans);
}
.site-header::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--c-navy) 22%, var(--c-blue) 50%, var(--c-navy) 78%, transparent 100%);
	opacity: .22;
	pointer-events: none;
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: saturate(180%) blur(18px);
	-webkit-backdrop-filter: saturate(180%) blur(18px);
	border-bottom-color: rgba(2, 32, 92, .08);
	box-shadow: 0 8px 28px rgba(2, 32, 92, .08);
}
.site-header.is-scrolled .header-row { padding: 10px 24px; }
.site-header.is-scrolled .logo-img { height: 44px; }
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 14px 24px;
	transition: padding var(--trans);
}
.branding { flex: 0 0 auto; }
.logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.logo-img {
	height: 56px;
	width: auto;
	display: block;
	transition: height var(--trans);
}
.custom-logo { max-height: 56px; width: auto; }

.site-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
}
.site-nav::before,
.site-nav::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1px;
	height: 22px;
	background: var(--c-line);
	transform: translateY(-50%);
}
.site-nav::before { left: 0; }
.site-nav::after  { right: 0; }
.menu {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0 12px;
}
.menu li { position: relative; }
.menu a {
	display: block;
	padding: 12px 16px;
	color: var(--c-navy);
	font-weight: 600;
	font-size: .76rem;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	border-radius: 6px;
	transition: all var(--trans);
	position: relative;
}
.menu > li > a::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 6px;
	width: 4px;
	height: 4px;
	background: var(--c-blue);
	border-radius: 50%;
	transform: translateX(-50%) scale(0);
	transition: transform var(--trans);
}
.menu > li > a::after {
	content: '';
	position: absolute;
	left: 14px; right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--c-navy);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--trans);
}
.menu > li > a:hover::before,
.menu > li.current-menu-item > a::before,
.menu > li.current_page_item > a::before { transform: translateX(-50%) scale(1); }
.menu > li > a:hover::after,
.menu > li.current-menu-item > a::after,
.menu > li.current_page_item > a::after { transform: scaleX(1); }
.menu a:hover,
.menu .current-menu-item > a,
.menu .current_page_item > a {
	color: var(--c-navy);
}
.menu .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 8px;
	list-style: none;
}
.menu li:hover > .sub-menu { display: block; }
.menu .sub-menu a { padding: 10px 14px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.action-cluster {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.icon-btn {
	position: relative;
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: 10px;
	border: 1px solid var(--c-line);
	background: #fff;
	color: var(--c-navy);
	cursor: pointer;
	transition: all var(--trans);
}
.icon-btn:hover {
	border-color: var(--c-navy);
	box-shadow: 0 4px 12px rgba(2, 32, 92, .12);
}
.badge {
	position: absolute;
	top: -4px; right: -4px;
	min-width: 18px; height: 18px;
	padding: 0 5px;
	background: var(--c-gold);
	color: var(--c-navy);
	font-size: .7rem;
	font-weight: 700;
	border-radius: 999px;
	display: grid; place-items: center;
	border: 2px solid #fff;
}
.burger { display: none; }

/* Search overlay (modal) */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 8vh 24px 24px;
	animation: searchFade .2s ease;
}
.search-overlay[hidden] { display: none; }
@keyframes searchFade { from { opacity: 0; } to { opacity: 1; } }
.search-overlay-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 32, 92, .55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
}
.search-overlay-panel {
	position: relative;
	width: 100%;
	max-width: 720px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(2, 32, 92, .35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	max-height: 82vh;
	animation: searchSlide .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes searchSlide {
	from { transform: translateY(-14px); opacity: 0; }
	to   { transform: translateY(0);     opacity: 1; }
}
.search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--c-line);
}
.search-form-icon {
	display: grid;
	place-items: center;
	color: var(--c-muted);
	flex-shrink: 0;
}
.search-form input[type=search] {
	flex: 1;
	padding: 10px 0;
	border: none;
	background: transparent;
	font-size: 1.15rem;
	font-family: inherit;
	color: var(--c-ink);
	outline: none;
	min-width: 0;
}
.search-form input[type=search]::placeholder { color: var(--c-muted); }
.search-form input[type=search]::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-form-close {
	flex-shrink: 0;
	width: 36px; height: 36px;
	display: grid; place-items: center;
	background: var(--c-bg-alt);
	color: var(--c-navy);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all var(--trans);
}
.search-form-close:hover { background: var(--c-navy); color: #fff; }

.search-overlay-body {
	flex: 1;
	overflow-y: auto;
	min-height: 80px;
}
.search-results:empty { display: none; }
.search-results a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border-bottom: 1px solid var(--c-line);
	color: var(--c-ink);
	transition: background var(--trans);
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover,
.search-results a:focus { background: var(--c-bg-alt); outline: none; }
.search-results img {
	width: 52px; height: 52px;
	border-radius: 10px;
	object-fit: cover;
	background: var(--c-bg-alt);
	flex-shrink: 0;
}
.search-results .meta { font-size: .8rem; color: var(--c-muted); margin-top: 2px; }

.search-hint {
	padding: 40px 24px;
	text-align: center;
	color: var(--c-muted);
}
.search-hint-title {
	font-weight: 600;
	color: var(--c-navy);
	margin: 0 0 6px;
	font-size: 1rem;
}
.search-hint-sub { margin: 0; font-size: .9rem; }
.search-hint.is-hidden { display: none; }

.search-overlay-foot {
	display: flex;
	gap: 22px;
	justify-content: flex-end;
	padding: 12px 18px;
	background: var(--c-bg-alt);
	border-top: 1px solid var(--c-line);
	font-size: .78rem;
	color: var(--c-muted);
}
.search-overlay-foot kbd {
	display: inline-grid; place-items: center;
	min-width: 22px; height: 22px;
	padding: 0 6px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-bottom-width: 2px;
	border-radius: 6px;
	font-family: inherit;
	font-size: .72rem;
	color: var(--c-navy);
	font-weight: 600;
	margin-right: 4px;
}

body.search-open { overflow: hidden; }

@media (max-width: 540px) {
	.search-overlay { padding: 0; }
	.search-overlay-panel { border-radius: 0; max-height: 100vh; height: 100vh; max-width: 100%; }
	.search-overlay-foot { display: none; }
}

/* ---------- Hero Carousel ---------- */
.hero-carousel {
	position: relative;
	width: 100%;
	height: clamp(560px, 78vh, 760px);
	overflow: hidden;
	isolation: isolate;
	background: var(--c-ink);
}
.hero-slides {
	position: absolute;
	inset: 0;
}
.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity .9s ease, visibility 0s linear .9s;
	z-index: 1;
}
.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity .9s ease, visibility 0s linear 0s;
	z-index: 2;
}
.hero-slide-bg {
	position: absolute;
	inset: 0;
	background-image: var(--slide-img);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -2;
	transform: scale(1.05);
}
.hero-slide.is-active .hero-slide-bg {
	animation: heroSlideZoom 9s ease-out forwards;
}
@keyframes heroSlideZoom {
	from { transform: scale(1.05); }
	to   { transform: scale(1.14); }
}
.hero-slide-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(95deg, rgba(2, 32, 92, .92) 0%, rgba(2, 32, 92, .78) 32%, rgba(12, 22, 38, .55) 58%, rgba(12, 22, 38, .25) 85%, rgba(12, 22, 38, .1) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 100%);
}
.hero-slide-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at 15% 40%, #000 0%, transparent 55%);
	-webkit-mask-image: radial-gradient(ellipse at 15% 40%, #000 0%, transparent 55%);
	opacity: .7;
	pointer-events: none;
}
.hero-slide-inner {
	position: relative;
	width: 100%;
	z-index: 1;
}
.hero-slide-copy {
	max-width: 620px;
}
.hero-slide.is-active .hero-slide-kicker,
.hero-slide.is-active .hero-slide-title,
.hero-slide.is-active .hero-slide-sub,
.hero-slide.is-active .hero-slide-actions {
	animation: heroCopyIn .8s cubic-bezier(.2, .7, .3, 1) both;
}
.hero-slide.is-active .hero-slide-kicker  { animation-delay: .1s; }
.hero-slide.is-active .hero-slide-title   { animation-delay: .22s; }
.hero-slide.is-active .hero-slide-sub     { animation-delay: .34s; }
.hero-slide.is-active .hero-slide-actions { animation-delay: .46s; }
@keyframes heroCopyIn {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

.hero-slide-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px 8px 14px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.hero-slide-kicker-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--c-pale);
	box-shadow: 0 0 0 3px rgba(242, 218, 135, .22);
}
.hero-slide-title {
	color: #fff;
	font-size: clamp(2.4rem, 5.4vw, 4.4rem);
	font-weight: 700;
	line-height: 1.04;
	margin: 0 0 20px;
	letter-spacing: -.8px;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero-slide-sub {
	color: rgba(255, 255, 255, .88);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.65;
	margin: 0 0 36px;
	max-width: 540px;
	font-weight: 400;
}
.hero-slide-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}
.hero-slide-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	background: #fff;
	color: var(--c-navy);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .3px;
	border-radius: 6px;
	border: 1.5px solid #fff;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
	transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hero-slide-btn svg { transition: transform .25s ease; }
.hero-slide-btn:hover {
	background: var(--c-pale);
	border-color: var(--c-pale);
	color: var(--c-navy);
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(0, 0, 0, .34);
}
.hero-slide-btn:hover svg { transform: translateX(4px); }
.hero-slide-btn--ghost {
	background: rgba(255, 255, 255, .06);
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: none;
}
.hero-slide-btn--ghost:hover {
	background: rgba(255, 255, 255, .14);
	border-color: #fff;
	color: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.hero-slide-btn--ghost .wa-icon { width: 18px; height: 18px; }

/* Right-side pagination with label */
.hero-pagination {
	position: absolute;
	top: 50%;
	right: 32px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	z-index: 10;
}
.hero-page-num {
	display: flex;
	align-items: center;
	gap: 14px;
	background: none;
	border: none;
	padding: 9px 0 9px 18px;
	cursor: pointer;
	color: rgba(255, 255, 255, .45);
	font-family: inherit;
	position: relative;
	transition: color .25s ease, gap .25s ease, padding .25s ease;
}
.hero-page-index {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	min-width: 30px;
	text-align: right;
	order: 2;
	transition: font-size .25s ease, color .25s ease;
}
.hero-page-label {
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateX(8px);
	white-space: nowrap;
	order: 1;
	transition: opacity .3s ease, transform .3s ease;
}
.hero-page-bar {
	position: absolute;
	right: 0;
	bottom: 2px;
	height: 1.5px;
	width: 0;
	background: #fff;
	transition: width .35s ease;
	order: 3;
}
.hero-page-num:hover {
	color: rgba(255, 255, 255, .85);
}
.hero-page-num:hover .hero-page-label {
	opacity: .75;
	transform: translateX(0);
}
.hero-page-num.is-active {
	color: #fff;
	gap: 16px;
}
.hero-page-num.is-active .hero-page-index {
	font-size: 1.15rem;
}
.hero-page-num.is-active .hero-page-label {
	opacity: 1;
	transform: translateX(0);
}
.hero-page-num.is-active .hero-page-bar { width: 42px; }

/* Slide counter (top-right, subtle) */
.hero-counter {
	position: absolute;
	top: 32px;
	right: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .75);
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: 2px;
	font-variant-numeric: tabular-nums;
	z-index: 5;
}
.hero-counter-current { color: #fff; font-size: 1.05rem; }
.hero-counter-sep {
	width: 22px;
	height: 1px;
	background: rgba(255, 255, 255, .35);
	display: inline-block;
}
.hero-counter-total { color: rgba(255, 255, 255, .55); }

/* Autoplay progress bar */
.hero-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, .1);
	z-index: 6;
}
.hero-progress-bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--c-pale), #fff);
	box-shadow: 0 0 12px rgba(242, 218, 135, .5);
}
.hero-progress-bar.is-running {
	animation: heroProgress var(--hero-duration, 6000ms) linear forwards;
}
@keyframes heroProgress {
	from { width: 0; }
	to   { width: 100%; }
}

@media (max-width: 860px) {
	.hero-carousel { height: clamp(520px, 72vh, 620px); }
	.hero-slide-copy { max-width: 100%; }
	.hero-slide-sub { margin-bottom: 26px; max-width: 100%; }
	.hero-slide-actions .hero-slide-btn { padding: 13px 22px; font-size: .88rem; }
	.hero-pagination { right: 14px; gap: 2px; }
	.hero-page-num { padding: 6px 0 6px 12px; gap: 10px; }
	.hero-page-label { display: none; }
	.hero-page-index { font-size: .9rem; min-width: 24px; }
	.hero-page-num.is-active .hero-page-index { font-size: 1rem; }
	.hero-page-num.is-active .hero-page-bar { width: 24px; }
	.hero-counter { top: 20px; right: 20px; font-size: .75rem; letter-spacing: 1.5px; }
	.hero-counter-current { font-size: .9rem; }
	.hero-counter-sep { width: 16px; }
	.hero-slide-kicker { padding: 6px 14px 6px 10px; font-size: 10.5px; letter-spacing: 1.8px; margin-bottom: 18px; }
}
@media (max-width: 540px) {
	.hero-carousel { height: 560px; }
	.hero-slide-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
	.hero-slide-actions .hero-slide-btn { width: auto; }
}

/* ---------- Hero ---------- */
.hero {
	color: #fff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: 520px;
	max-height: 560px;
	display: flex;
	align-items: center;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-image: var(--hero-img);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.04);
	z-index: -2;
	animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
	from { transform: scale(1.04); }
	to   { transform: scale(1.12); }
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(115deg, rgba(2, 32, 92, 0.94) 0%, rgba(2, 32, 92, 0.82) 45%, rgba(19, 73, 125, 0.6) 100%),
		linear-gradient(180deg, rgba(2, 32, 92, 0) 60%, rgba(2, 32, 92, 0.88) 100%);
}
.hero-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 70%);
	opacity: .6;
}
.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.hero-copy {
	max-width: 720px;
}
.hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px; height: 40px;
	border: 2px solid rgba(255,255,255,.4);
	border-radius: 14px;
	display: grid; place-items: start center;
	padding-top: 6px;
	z-index: 1;
}
.hero-scroll span {
	display: block;
	width: 3px; height: 8px;
	background: var(--c-pale);
	border-radius: 2px;
	animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50%      { transform: translateY(10px); opacity: .2; }
}
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 16px 7px 12px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,.85);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(6px);
}
.kicker::before {
	content: '';
	width: 6px; height: 6px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(255,255,255,.18);
}
.section .kicker {
	background: rgba(2, 32, 92, .06);
	color: var(--c-blue);
	border-color: rgba(2, 32, 92, .12);
}
.section .kicker::before {
	background: var(--c-blue);
	box-shadow: 0 0 0 3px rgba(19, 73, 125, .18);
}
.hero-title {
	color: #fff;
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	margin-bottom: 18px;
	text-shadow: 0 2px 24px rgba(0,0,0,.25);
	line-height: 1.12;
}
.hero-title span {
	color: #fff;
	display: inline-block;
	position: relative;
	font-style: italic;
	font-weight: 500;
}
.hero-sub {
	font-size: 14px;
	margin-bottom: 30px;
	color: rgba(255,255,255,.82);
	max-width: 580px;
	line-height: 1.65;
}
.hero-cta {
	display: flex; gap: 12px; flex-wrap: wrap;
	margin-bottom: 40px;
}
.hero-cta .btn-primary {
	background: #fff;
	color: var(--c-navy);
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.hero-cta .btn-primary:hover { background: var(--c-pale); color: var(--c-navy); box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); background: rgba(255,255,255,.04); }
.hero-cta .btn-ghost:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.hero-stats {
	display: flex;
	gap: 0;
	list-style: none;
	padding: 18px 0 0;
	margin: 0;
	border-top: 1px solid rgba(255,255,255,.15);
	max-width: 560px;
}
.hero-stats li {
	flex: 1;
	color: rgba(255,255,255,.72);
	font-size: .8rem;
	padding: 0 22px;
	border-left: 1px solid rgba(255,255,255,.12);
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.hero-stats li:first-child { padding-left: 0; border-left: none; }
.hero-stats strong {
	display: block;
	font-size: 1.8rem;
	color: #fff;
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 700;
	line-height: 1;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt  { background: var(--c-bg-alt); }
.section-dark { background: var(--c-navy); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .kicker { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }
.section-dark .kicker::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.18); }

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}
.section-head h2 { margin: 4px 0 0; }
.section-head-center { flex-direction: column; align-items: center; text-align: center; }
.section-link { font-weight: 600; color: var(--c-blue); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Category cards (image-first) ---------- */
.section-categories { position: relative; }
.section-lead {
	max-width: 620px;
	margin: 10px auto 0;
	color: var(--c-muted);
	font-size: 1rem;
	text-align: center;
}
.cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.cat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 285px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: #fff;
	padding: 22px;
	isolation: isolate;
	transition: transform var(--trans), box-shadow var(--trans);
	box-shadow: 0 6px 18px rgba(2, 32, 92, .08);
}
.cat-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: inherit;
	pointer-events: none;
	z-index: 3;
}
.cat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 50px rgba(2, 32, 92, .28);
	color: #fff;
}
.cat-card-bg {
	position: absolute;
	inset: 0;
	background-image: var(--cat-img);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--c-navy);
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
	z-index: 0;
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); }
.cat-card-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(2, 32, 92, 0) 35%, rgba(2, 32, 92, .35) 65%, rgba(2, 32, 92, .78) 100%);
	transition: background var(--trans);
}
.cat-card:hover .cat-card-shade {
	background: linear-gradient(180deg, rgba(2, 32, 92, .05) 25%, rgba(2, 32, 92, .5) 60%, rgba(2, 32, 92, .88) 100%);
}
.cat-card-index {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	padding: 4px 12px;
	background: rgba(2, 32, 92, .5);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	letter-spacing: .5px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
}
.cat-card-body {
	position: relative;
	z-index: 2;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cat-card h3 {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.5rem;
	margin: 0 0 10px;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 2px 16px rgba(0,0,0,.35);
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.25);
}
.cat-card-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: rgba(255,255,255,.85);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	transition: color var(--trans);
}
.cat-card:hover .cat-card-cta { color: #fff; }
.cat-card-arrow {
	width: 28px; height: 28px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	flex-shrink: 0;
	transition: all var(--trans);
}
.cat-card:hover .cat-card-arrow {
	background: #fff;
	border-color: #fff;
	color: var(--c-navy);
}

@media (max-width: 1024px) {
	.cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
	.cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.cat-card { padding: 18px; height: 240px; }
	.cat-card h3 { font-size: 1.2rem; }
}
@media (max-width: 420px) {
	.cat-grid { grid-template-columns: 1fr; }
	.cat-card { height: 200px; }
}

/* ---------- Product card ---------- */
.product-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--c-line);
	overflow: hidden;
	transition: all var(--trans);
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(2, 32, 92, .12);
	border-color: rgba(2, 32, 92, .14);
}

/* Media wrapper (holds image + overlays) */
.product-media-wrap {
	position: relative;
	padding: 10px;
}
.product-media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--c-bg-alt);
	display: block;
	overflow: hidden;
	border-radius: 12px;
}
.product-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* padding: 8px; */
	transition: transform .5s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-placeholder {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	color: var(--c-muted);
	opacity: .35;
}
.product-placeholder-lg { aspect-ratio: 1 / 1; }
.product-placeholder-lg svg { width: 80px; height: 80px; }

/* Category chip on image */
.product-chip {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 5px 10px;
	background: rgba(255,255,255,.95);
	color: var(--c-navy);
	border-radius: 6px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	max-width: calc(100% - 60px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Favorite icon (subtle, no fill) */
.fav-btn {
	position: absolute;
	top: 20px; right: 20px;
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(2, 32, 92, .12);
	background: rgba(255,255,255,.92);
	color: var(--c-navy);
	display: grid; place-items: center;
	cursor: pointer;
	transition: all var(--trans);
	z-index: 2;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.fav-btn:hover { background: #fff; color: #c44; border-color: #c44; transform: scale(1.05); }
.fav-btn.is-active { background: #fff; color: #c44; border-color: #c44; }
.fav-btn.is-active svg { fill: currentColor; }

/* Body */
.product-body {
	padding: 6px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.product-title {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
	/* clamp to 2 lines */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}
.product-title a { color: var(--c-navy); }
.product-title-ar {
	font-size: .88rem;
	color: var(--c-muted);
	font-weight: 400;
}
.product-title a:hover { color: var(--c-blue); }

.product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
}
.product-itemno {
	font-size: .72rem;
	color: var(--c-muted);
	letter-spacing: .5px;
	font-weight: 500;
}

/* Stock pill */
.stock-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .3px;
	padding: 3px 9px;
	border-radius: 999px;
	border: 1px solid transparent;
}
.stock-pill .stock-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 3px rgba(currentColor, .18);
}
.stock-in_stock     { color: #137a4b; background: #e8f7ef; border-color: rgba(19, 122, 75, .18); }
.stock-low_stock    { color: #8a6410; background: #fef6e0; border-color: rgba(138, 100, 16, .2); }
.stock-out_of_stock { color: #9b2f2f; background: #fde8e8; border-color: rgba(155, 47, 47, .2); }
.stock-pre_order    { color: var(--c-blue); background: #e7f0f8; border-color: rgba(19, 73, 125, .2); }
.stock-discontinued { color: var(--c-muted); background: var(--c-bg-alt); border-color: var(--c-line); }

/* Foot (price + actions) */
.product-foot {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--c-line);
}
.product-price { display: flex; flex-direction: column; gap: 0; line-height: 1.1; }
.product-price-val {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--c-navy);
}
.product-price-note {
	font-size: .66rem;
	color: var(--c-muted);
	text-transform: uppercase;
	letter-spacing: .8px;
	margin-top: 2px;
}

.product-actions {
	display: flex;
	align-items: stretch;
	gap: 8px;
	width: 100%;
}
.btn-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 1;
	padding: 9px 10px;
	border-radius: 10px;
	background: var(--c-navy);
	color: #fff;
	border: none;
	font-family: inherit;
	font-weight: 600;
	font-size: .82rem;
	cursor: pointer;
	transition: all var(--trans);
}
.btn-cart:hover { background: var(--c-blue); transform: translateY(-1px); }
.btn-buy-now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 1;
	padding: 9px 10px;
	border-radius: 10px;
	background: transparent;
	color: var(--c-navy);
	border: 2px solid var(--c-navy);
	font-family: inherit;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .4px;
	white-space: nowrap;
	cursor: pointer;
	transition: all var(--trans);
}
.btn-buy-now:hover { background: var(--c-navy); color: #fff; transform: translateY(-1px); }
.btn-wa {
	display: grid;
	place-items: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	transition: all var(--trans);
	flex-shrink: 0;
}
.btn-wa:hover { transform: translateY(-1px) scale(1.05); color: #fff; }
.btn-wa .wa-icon { width: 18px; height: 18px; }
.btn-buy-now .wa-icon { width: 16px; height: 16px; }

/* ===== Featured product card — vertical showcase ===== */
.featured-grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1100px) {
	.featured-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card--featured {
	flex-direction: column;
	border: 1px solid var(--c-line);
	border-top: 3px solid var(--c-blue);
	border-radius: 16px;
	box-shadow: 0 2px 14px rgba(2, 32, 92, .07);
	overflow: hidden;
	background: #fff;
}
.product-card--featured:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(2, 32, 92, .13);
	border-color: rgba(19, 73, 125, .35);
	border-top-color: var(--c-blue);
}

/* Full-bleed image — no padding, clean edges */
.product-card--featured .product-media-wrap {
	padding: 0;
	width: 100%;
}
.product-card--featured .product-media {
	border-radius: 0;
	aspect-ratio: 4 / 3;
	height: auto;
	background: var(--c-bg-alt);
}
.product-card--featured .product-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
	transition: transform .45s ease;
}
.product-card--featured:hover .product-media img { transform: scale(1.04); }

/* "★ Featured" ribbon badge */
.product-card--featured .product-media-wrap::before {
	content: '★ Featured';
	position: absolute;
	top: 14px;
	left: 0;
	z-index: 3;
	background: var(--c-blue);
	color: #fff;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .7px;
	text-transform: uppercase;
	padding: 5px 14px 5px 12px;
	clip-path: polygon(0 0, 100% 0, 91% 50%, 100% 100%, 0 100%);
	line-height: 1.2;
}

/* Category chip */
.product-card--featured .product-chip {
	bottom: 12px;
	left: 12px;
	background: rgba(19, 73, 125, .82);
	color: #fff;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* Body */
.product-card--featured .product-body {
	padding: 16px 20px 20px;
	gap: 12px;
}

.product-card--featured .product-title {
	font-size: 1rem;
	font-weight: 700;
	min-height: 0;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.product-card--featured .product-price-val {
	font-size: 1.25rem;
	color: var(--c-navy);
}

/* Side-by-side buttons */
.product-card--featured .product-actions { flex-direction: row; gap: 8px; }
.product-card--featured .btn-cart {
	background: var(--c-blue);
	font-size: .84rem;
}
.product-card--featured .btn-cart:hover { background: var(--c-navy); }
.product-card--featured .btn-buy-now {
	font-size: .84rem;
	border-color: var(--c-blue);
	color: var(--c-blue);
}
.product-card--featured .btn-buy-now:hover { background: var(--c-blue); color: #fff; }

/* ---------- About section ---------- */
/* ---------- Home: About section ---------- */
.ha-section {
	background: var(--c-bg-alt);
}
.ha-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 64px;
	align-items: start;
}
.ha-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--c-navy);
	margin: 12px 0 0;
	line-height: 1.2;
}
.ha-lead {
	color: var(--c-muted);
	font-size: 1.02rem;
	line-height: 1.7;
	margin: 18px 0 0;
	max-width: 640px;
}
.ha-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin: 36px 0 40px;
}
.ha-pillar {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.ha-pillar-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-navy);
	color: #fff;
	border-radius: 12px;
}
.ha-pillar strong {
	display: block;
	font-size: .95rem;
	color: var(--c-navy);
	margin-bottom: 4px;
}
.ha-pillar p {
	margin: 0;
	font-size: .85rem;
	color: var(--c-muted);
	line-height: 1.55;
}
.ha-image {
	align-self: center;
}
.ha-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(2,32,92,.12);
}

/* ---------- Testimonials ---------- */

/* Carousel track — always horizontal scroll */
.testimonial-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 20px;
	padding: 8px 0;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .testimonial {
	flex: 0 0 calc(33.33% - 14px);
	scroll-snap-align: start;
}
@media (max-width: 860px) {
	.testimonial-track .testimonial { flex: 0 0 80vw; }
}
@media (max-width: 540px) {
	.testimonial-track .testimonial { flex: 0 0 88vw; }
}

/* Progress-bar dots (used on dark section) */
.carousel-dots--bar {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 28px;
}
.carousel-dots--bar .carousel-dot {
	flex: 0 0 32px;
	width: 32px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, .2);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .3s ease, flex-basis .3s ease, width .3s ease;
}
.carousel-dots--bar .carousel-dot.is-active {
	flex-basis: 64px;
	width: 64px;
	background: #fff;
}

.testimonial {
	background: linear-gradient(145deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
	border: 1px solid rgba(255,255,255,.12);
	border-top: 3px solid var(--c-gold);
	border-radius: 16px;
	padding: 32px 28px 28px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform .25s ease, background .25s ease;
}
.testimonial:hover {
	transform: translateY(-5px);
	background: linear-gradient(145deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.07) 100%);
}

/* Quote icon */
.testimonial-quote-icon {
	color: #fff;
	opacity: .7;
	line-height: 1;
}

/* Stars */
.testimonial-stars {
	display: flex;
	gap: 3px;
	color: var(--c-gold);
}
.testimonial-stars svg { display: block; }

/* Quote text */
.testimonial blockquote {
	margin: 0;
	padding: 0;
	font-size: .97rem;
	line-height: 1.75;
	color: rgba(255,255,255,.88);
	font-style: italic;
	flex: 1;
}
.testimonial blockquote::before { display: none; }

/* Footer row: avatar + name */
.testimonial figcaption {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 20px;
	margin-top: 4px;
}
.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	border: 2px solid rgba(255,255,255,.4);
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-transform: uppercase;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption strong {
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	display: block;
}

/* ---------- Clients / Brands Marquee ---------- */
.clients-marquee {
	overflow: hidden;
	width: 100%;
	padding: 8px 0;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.clients-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	animation: clients-scroll 40s linear infinite;
}
.clients-marquee:hover .clients-track,
.clients-track:focus-within { animation-play-state: paused; }
.client {
	flex: 0 0 200px;
	margin-right: 16px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 20px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	transition: border-color var(--trans), transform var(--trans);
}
.client a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.client:hover { border-color: var(--c-gold); transform: translateY(-2px); }
.client img {
	display: block;
	max-width: 100%;
	width: auto;
	height: 60px;
	object-fit: contain;
	filter: grayscale(1);
	transition: filter var(--trans);
}
.client:hover img { filter: grayscale(0); }
@keyframes clients-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.clients-track { animation: none; }
}

/* ---------- CTA ---------- */
/* ---------- CTA Section ---------- */
.cta {
	background: var(--c-navy);
	color: #fff;
	padding: 96px 0;
	position: relative;
	overflow: hidden;
}
.cta-bg-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
	pointer-events: none;
}

.cta-split {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 72px;
	align-items: center;
}

/* Left: content */
.cta-content { display: flex; flex-direction: column; gap: 0; }
.cta-label {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	margin-bottom: 12px;
}
.cta h2 {
	color: #fff;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.cta-content > p {
	font-size: 1.05rem;
	color: rgba(255,255,255,.72);
	max-width: 520px;
	margin: 0 0 28px;
	line-height: 1.7;
}

.cta-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 16px 36px;
	border-radius: 14px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
	box-shadow: 0 8px 28px rgba(37,211,102,.3);
	width: fit-content;
}
.cta-wa-btn:hover {
	background: #22c55e;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(37,211,102,.4);
}
.cta-wa-btn .wa-icon { width: 22px; height: 22px; }

.cta-perks {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 36px;
}
.cta-perk {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.cta-perk > svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: rgba(255,255,255,.5);
}
.cta-perk strong {
	display: block;
	font-size: .88rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 2px;
}
.cta-perk span {
	font-size: .82rem;
	color: rgba(255,255,255,.55);
	line-height: 1.5;
}

/* Right: chat preview */
.cta-preview {
	display: flex;
	justify-content: center;
}
.cta-chat {
	width: 100%;
	max-width: 380px;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.06);
}
.cta-chat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	background: #075E54;
	color: #fff;
}
.cta-chat-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
}
.cta-chat-header strong {
	display: block;
	font-size: .92rem;
}
.cta-chat-header span {
	font-size: .75rem;
	color: rgba(255,255,255,.7);
}
.cta-chat-body {
	padding: 20px 18px;
	background: #ECE5DD;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 280px;
}
.cta-msg {
	max-width: 85%;
	padding: 10px 14px 6px;
	border-radius: 12px;
	font-size: .82rem;
	line-height: 1.5;
	position: relative;
}
.cta-msg p { margin: 0; }
.cta-msg time {
	display: block;
	text-align: right;
	font-size: .65rem;
	color: rgba(0,0,0,.4);
	margin-top: 4px;
}
.cta-msg--in {
	background: #fff;
	color: #303030;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}
.cta-msg--out {
	background: #DCF8C6;
	color: #303030;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}

@media (max-width: 960px) {
	.cta-split { grid-template-columns: 1fr; gap: 48px; }
	.cta-preview { justify-content: center; }
	.cta-chat { max-width: 360px; }
}
@media (max-width: 540px) {
	.cta { padding: 64px 0; }
	.cta-chat { max-width: 100%; }
}

/* ---------- Page banner (About / Contact hero) ---------- */
.page-banner {
	position: relative;
	background-color: var(--c-navy);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.page-banner:not(.has-image) {
	background-image:
		radial-gradient(ellipse at 100% 0%, rgba(255,255,255,.10) 0%, transparent 50%),
		radial-gradient(ellipse at 0% 100%, rgba(19,73,125,.6) 0%, transparent 55%),
		linear-gradient(135deg, #02205C 0%, #0a2d6e 45%, #13497D 100%);
}
/* blueprint grid pattern */
.page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 56px 56px;
	background-position: center;
	mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
	pointer-events: none;
	z-index: 0;
}
/* decorative concentric rings (right side) */
.page-banner::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -180px;
	transform: translateY(-50%);
	width: 520px;
	height: 520px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.08);
	box-shadow:
		inset 0 0 0 1px transparent,
		0 0 0 60px rgba(255,255,255,.04),
		0 0 0 120px rgba(255,255,255,.025),
		0 0 0 180px rgba(255,255,255,.015);
	pointer-events: none;
	z-index: 0;
}
.page-banner-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}
.page-banner.has-image .page-banner-overlay {
	background: linear-gradient(135deg, rgba(2,32,92,.88) 0%, rgba(2,32,92,.7) 55%, rgba(19,73,125,.6) 100%);
}
/* Contact banner: image shows on the right, dark navy on the left where copy sits */
.page-banner--contact .page-banner-overlay {
	background:
		linear-gradient(90deg, rgba(2,32,92,.92) 0%, rgba(2,32,92,.82) 40%, rgba(2,32,92,.45) 70%, rgba(2,32,92,.1) 100%);
}
.page-banner--contact::after { opacity: .35; }
@media (max-width: 720px) {
	.page-banner--contact .page-banner-overlay {
		background: linear-gradient(180deg, rgba(2,32,92,.85) 0%, rgba(2,32,92,.7) 100%);
	}
}
.page-banner .page-banner-inner {
	position: relative;
	z-index: 2;
	padding-top: 88px;
	padding-bottom: 96px;
	padding-left: 16px;
	padding-right: 16px;
	max-width: 1600px;
}
.page-banner-inner--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
	gap: 64px;
	align-items: center;
}
.page-banner-crumbs {
	display: flex;
	align-items: center;
	font-size: .85rem;
	flex-wrap: wrap;
	margin-bottom: 28px;
	color: rgba(255,255,255,.75);
}
.page-banner-crumbs a { color: rgba(255,255,255,.85); }
.page-banner-crumbs a:hover { color: #fff; }
.page-banner-crumbs span:not([aria-hidden]) { color: #fff; font-weight: 500; }
.page-banner-crumbs .sep { margin: 0 10px; opacity: .45; }
.page-banner-kicker {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,.1);
	color: #fff;
	border-color: rgba(255,255,255,.25);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.page-banner-kicker::before {
	background: #fff;
	box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}
.page-banner-title {
	font-size: clamp(2.2rem, 4.8vw, 3.6rem);
	margin: 22px 0 0;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.015em;
	font-weight: 800;
	display: block;
}
.page-banner-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 22px;
	background: #fff;
	border-radius: 2px;
	opacity: .85;
}
.page-banner-desc {
	max-width: 720px;
	color: rgba(255,255,255,.82);
	font-size: 1.1rem;
	line-height: 1.65;
	margin: 22px 0 0;
}
.page-banner .page-banner-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.page-banner .page-banner-stats li {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	padding: 24px 22px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.page-banner .page-banner-stats li:hover {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.3);
	transform: translateY(-2px);
}
.page-banner .page-banner-stats strong {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}
.page-banner .page-banner-stats span {
	color: rgba(255,255,255,.78);
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 700;
}
@media (max-width: 960px) {
	.page-banner-inner--split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
@media (max-width: 640px) {
	.page-banner .page-banner-inner { padding-top: 56px; padding-bottom: 64px; }
	.page-banner::after { width: 320px; height: 320px; right: -140px; }
	.page-banner .page-banner-stats { gap: 14px; }
	.page-banner .page-banner-stats li { padding: 18px 16px; }
	.page-banner .page-banner-stats strong { font-size: 1.9rem; }
}

/* ---------- Page hero ---------- */
.page-hero {
	background: var(--c-bg-alt);
	border-bottom: 1px solid var(--c-line);
	padding: 14px 0;
}
.page-header {
	padding: 48px 0 24px;
	border-bottom: 1px solid var(--c-line);
	margin-bottom: 48px;
}
.page-title {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	margin-bottom: 12px;
	color: var(--c-navy);
}
.page-desc {
	max-width: 720px;
	color: var(--c-muted);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 32px;
}
.breadcrumbs {
	font-size: .85rem;
	color: rgba(255,255,255,.7);
	/* margin-bottom: 16px; */
}
.breadcrumbs a { color: var(--c-pale); }

/* ---------- Products listing layout ---------- */
.products-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
	align-items: start;
}
.sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
.side-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 22px;
}
.side-card h3 {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--c-navy);
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-line);
}
.side-cta { background: var(--grad); color: #fff; border: none; }
.side-cta h3 { color: #fff; border-color: rgba(255,255,255,.2); }
.side-cta p { color: rgba(255,255,255,.85); font-size: .9rem; }
.side-cta .btn { width: 100%; justify-content: center; }
.cat-tree { list-style: none; padding: 0; margin: 0; }
.cat-tree > li { margin-bottom: 6px; }
.cat-tree > li > a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--c-ink);
	font-weight: 600;
	font-size: .92rem;
}
.cat-tree > li > a:hover { background: var(--c-bg-alt); }
.cat-tree ul {
	list-style: none;
	padding: 0 0 0 14px;
	margin: 4px 0 8px;
	border-left: 2px solid var(--c-line);
	display: none;
}
.cat-tree li.is-open ul { display: block; }
.cat-tree ul a {
	display: block;
	padding: 6px 12px;
	font-size: .87rem;
	color: var(--c-muted);
	border-radius: 6px;
}
.cat-tree ul a:hover { color: var(--c-blue); background: var(--c-bg-alt); }
.cat-tree ul li.active a { color: var(--c-blue); font-weight: 600; }

.toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.toolbar-search {
	display: flex;
	gap: 8px;
	flex: 1;
	max-width: 420px;
}
.toolbar-search input[type=search] {
	flex: 1;
	padding: 10px 16px;
	border: 1.5px solid var(--c-line);
	border-radius: 999px;
	font-size: .9rem;
	font-family: inherit;
	outline: none;
}
.toolbar-search input[type=search]:focus { border-color: var(--c-blue); }
.toolbar-count { color: var(--c-muted); font-size: .9rem; }

.empty {
	text-align: center;
	padding: 60px 20px;
	background: var(--c-bg-alt);
	border-radius: var(--radius-lg);
}

/* ---------- Single product ---------- */

/* 90 vw container for the single product page */
.sp-container {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 16px;
}

.sp-breadcrumb-bar {
	padding: 20px 0 12px;
}
.sp-breadcrumb-bar .breadcrumbs { display: flex; align-items: center; font-size: .85rem; flex-wrap: wrap; }
.sp-breadcrumb-bar .breadcrumbs a { color: var(--c-blue); }
.sp-breadcrumb-bar .breadcrumbs span:not([aria-hidden]) { color: var(--c-ink); font-weight: 500; }
.sp-breadcrumb-bar .breadcrumbs .sep { margin: 0 10px; color: var(--c-muted); opacity: 0.5; font-size: 0.8rem; }

/* Outer wrap: sidebar + main */
.sp-wrap {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 36px;
	align-items: start;
	padding-top: 16px;
	padding-bottom: 48px;
}

/* Sidebar — desktop: sticky + scrollable */
.sp-sidebar {
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--c-line) transparent;
}
.sp-sidebar::-webkit-scrollbar { width: 4px; }
.sp-sidebar::-webkit-scrollbar-track { background: transparent; }
.sp-sidebar::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 4px; }

/* Sidebar header (close button row — hidden on desktop) */
.sp-sidebar-header { display: none; }
.sp-sidebar-body { display: contents; }

/* Mobile filter toggle button — hidden on desktop */
.ap-sidebar-toggle { display: none; }

/* Mobile sidebar backdrop */
.sidebar-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(2,32,92,.5);
	z-index: 149;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}
body.sidebar-open .sidebar-backdrop { opacity: 1; pointer-events: auto; }
.sp-side-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.sp-side-title {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--c-muted);
	background-color: rgba(0,0,0, 0.03);
	padding: 16px 20px 12px;
	border-bottom: 1px solid var(--c-line);
	margin: 0;
}
.sp-cat-list { list-style: none; margin: 0; padding: 8px 0; }
.sp-cat-link {
	display: block;
	padding: 9px 20px;
	font-size: .9rem;
	color: var(--c-ink);
	font-weight: 500;
	transition: background var(--trans), color var(--trans);
}
.sp-cat-link:hover { background: var(--c-bg-alt); color: var(--c-blue); }
.sp-cat-link.is-active { color: var(--c-blue); background: #eef2fb; font-weight: 700; border-left: 3px solid var(--c-blue); }

/* Main column */
.sp-main { display: flex; flex-direction: column; gap: 32px; }

/* Top row: image | info */
.sp-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

/* Gallery */
.sp-gallery {
	position: relative;
	background: var(--c-bg-alt);
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--c-line);
}
.sp-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sp-fav {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--c-line);
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	transition: all var(--trans);
	z-index: 2;
}
.sp-fav:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.sp-fav svg { transition: stroke var(--trans); }
.sp-fav:hover svg { stroke: #fff; }
.sp-fav.is-active { background: #fee2e2; border-color: #ef4444; }
.sp-fav.is-active svg { stroke: #ef4444; fill: #ef4444; }

/* Info panel */
.sp-info { display: flex; flex-direction: column; gap: 20px; }
.sp-brand {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--c-gold);
	margin: 0;
}
.sp-title {
	font-size: clamp(1.4rem, 2.5vw, 1.2rem);
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 700;
	color: var(--c-navy);
	margin: 0;
	line-height: 1.35;
}
.sp-title-ar {
	display: block;
	font-size: clamp(.95rem, 1.5vw, 1.2rem);
	font-family: 'Inter', sans-serif;
	color: var(--c-muted);
	font-weight: 400;
	margin-top: 4px;
	direction: rtl;
}
.sp-meta-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
}
.sp-sku { font-size: .88rem; color: var(--c-muted); }
.sp-sku strong { color: var(--c-ink); }

/* Prices */
.sp-prices {
	display: flex;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	overflow: hidden;
}
.sp-price-row {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 14px 20px;
}
.sp-price-row + .sp-price-row {
	border-left: 1px solid var(--c-line);
}
.sp-price-val {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--c-navy);
	line-height: 1;
}
.sp-price-val--exc { font-size: 1.3rem; color: var(--c-muted); }
.sp-price-note {
	font-size: .72rem;
	color: var(--c-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .6px;
}
.sp-no-price {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: .92rem;
	color: #92400e;
}

/* Quantity */
.sp-qty-row { display: flex; align-items: center; gap: 16px; }
.sp-qty-label { font-size: .88rem; font-weight: 600; color: var(--c-ink); }
.sp-qty {
	display: flex;
	align-items: center;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	overflow: hidden;
}
.sp-qty-btn {
	width: 36px;
	height: 36px;
	background: var(--c-bg-alt);
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--c-navy);
	cursor: pointer;
	transition: background var(--trans);
	line-height: 1;
}
.sp-qty-btn:hover { background: var(--c-line); }
.sp-qty-input {
	width: 48px;
	text-align: center;
	border: none;
	border-left: 1px solid var(--c-line);
	border-right: 1px solid var(--c-line);
	font-size: .95rem;
	font-weight: 600;
	color: var(--c-navy);
	padding: 0;
	height: 36px;
	-moz-appearance: textfield;
}
.sp-qty-input::-webkit-outer-spin-button,
.sp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Action buttons */
.sp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 10px;
	font-size: .92rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--trans);
	flex: 1;
	min-width: 140px;
	white-space: nowrap;
}
.sp-btn--cart {
	background: var(--c-navy);
	color: #fff;
	border-color: var(--c-navy);
}
.sp-btn--cart:hover { background: var(--c-blue); border-color: var(--c-blue); transform: translateY(-2px); }
.sp-btn--buy {
	background: transparent;
	color: var(--c-navy);
	border-color: var(--c-navy);
}
.sp-btn--buy:hover { background: var(--c-navy); color: #fff; transform: translateY(-2px); }
.sp-btn--enquire {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}
.sp-btn--enquire:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); }
.sp-btn--email {
	background: transparent;
	color: var(--c-navy);
	border-color: var(--c-navy);
}
.sp-btn--email:hover { background: var(--c-navy); color: #fff; transform: translateY(-2px); }

/* Trust badges */
.sp-trust {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding: 14px 0 0;
	border-top: 1px solid var(--c-line);
	font-size: .85rem;
	color: var(--c-muted);
}

/* Description */
.sp-description {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 32px 36px;
}
.sp-desc-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--c-navy);
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--c-navy);
	display: inline-block;
}
.sp-desc-body { font-size: 1rem; color: var(--c-ink); line-height: 1.7; }
.sp-desc-body p { margin: 0 0 1em; }
.sp-desc-body h2, .sp-desc-body h3 { margin-top: 1.4em; color: var(--c-navy); }
.sp-desc-body ul, .sp-desc-body ol { padding-left: 1.4em; }

/* Legacy selectors kept for product listing page */
.product-image, .product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
	display: inline-block;
	padding: 5px 12px;
	background: var(--c-bg-alt);
	color: var(--c-blue);
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 600;
}


/* ---------- Card (general) ---------- */
.card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--trans);
	display: flex;
	flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-media { display: block; aspect-ratio: 16 / 10; background: var(--c-bg-alt); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-title { font-family: 'Inter', sans-serif; font-size: 1.1rem; margin: 0; }
.card-title a { color: var(--c-navy); }
.card-excerpt { color: var(--c-muted); font-size: .92rem; flex: 1; }

/* ---------- Features (about page) ---------- */
.feature {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: all var(--trans);
}
.feature:hover { transform: translateY(-4px); border-color: var(--c-gold); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--c-muted); margin: 0; }

/* ============================================================
   Archive / Products listing page
   ============================================================ */
.ap-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 36px;
	align-items: start;
	padding-top: 16px;
	padding-bottom: 56px;
}
.sp-cat-item { border-bottom: 1px solid var(--c-line); }
.sp-cat-item:last-child { border-bottom: none; }
.sp-cat-row { display: flex; align-items: center; }
.sp-cat-row .sp-cat-link { flex: 1; }
.sp-cat-toggle {
	display: grid;
	place-items: center;
	width: 32px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--c-muted);
	flex-shrink: 0;
	transition: color var(--trans);
}
.sp-cat-toggle:hover { color: var(--c-blue); }
.sp-cat-arrow { transition: transform var(--trans); }
.sp-cat-item.is-open > .sp-cat-row .sp-cat-arrow { transform: rotate(180deg); }
.sp-cat-children {
	list-style: none;
	margin: 0;
	padding: 4px 0 8px 20px;
	display: none;
}
.sp-cat-item.is-open .sp-cat-children { display: block; }
.sp-cat-child-link {
	display: block;
	padding: 6px 20px;
	font-size: .85rem;
	color: var(--c-muted);
	transition: color var(--trans);
}
.sp-cat-child-link:hover,
.sp-cat-child-link.is-active { color: var(--c-blue); font-weight: 600; }

.sp-side-cta {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: rgba(255,255,255,.85);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.sp-cta-icon { font-size: 2rem; }
.sp-side-cta h4 { color: #fff; margin: 0; font-size: 1rem; }
.sp-side-cta p { margin: 0; font-size: .88rem; }
.sp-side-cta .sp-btn { margin-top: 6px; }

.ap-main { display: flex; flex-direction: column; gap: 24px; }
.ap-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--c-line);
}
.ap-toolbar-left { display: flex; flex-direction: column; gap: 4px; }
.ap-page-title { font-size: 1.5rem; font-weight: 700; margin: 0; color: var(--c-navy); }
.ap-page-desc { margin: 0; font-size: .92rem; color: var(--c-muted); }
.ap-toolbar-right { display: flex; align-items: center; gap: 14px; }
.ap-search {
	display: flex;
	align-items: center;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.ap-search input {
	border: none;
	padding: 9px 14px;
	font-size: .9rem;
	outline: none;
	width: 220px;
	font-family: inherit;
}
.ap-search button {
	padding: 9px 18px;
	background: var(--c-navy);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: .88rem;
	cursor: pointer;
	font-family: inherit;
	transition: background var(--trans);
}
.ap-search button:hover { background: var(--c-blue); }
.ap-count { font-size: .88rem; color: var(--c-muted); white-space: nowrap; }
.ap-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 60px 20px;
	text-align: center;
	border: 1px dashed var(--c-line);
	border-radius: var(--radius-lg);
}
.ap-empty svg { color: var(--c-muted); opacity: .5; }
.ap-empty h3 { margin: 0; }
.ap-empty p { margin: 0; color: var(--c-muted); }
.ap-empty .sp-btn { width: auto; flex: none; }

/* ============================================================
   About page
   ============================================================ */
.pg-stats-row {
	display: flex;
	gap: 40px;
	list-style: none;
	padding: 32px 0 0;
	margin: 32px 0 0;
	border-top: 1px solid var(--c-line);
	flex-wrap: wrap;
}
.pg-stats-row li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pg-stats-row strong {
	font-size: 2.2rem;
	color: var(--c-blue);
	line-height: 1;
	font-weight: 800;
}
.pg-stats-row span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--c-muted);
	font-weight: 700;
}

/* ---------- About: Story section ---------- */
.ab-story {
	padding: 80px 0;
}
.ab-story-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
}
.ab-story-text h2 {
	margin: 14px 0 0;
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	color: var(--c-navy);
	line-height: 1.2;
}
.ab-story-text .prose {
	color: var(--c-muted);
	line-height: 1.85;
	margin-top: 24px;
	font-size: 1rem;
}
.ab-story-text .prose p {
	margin: 0 0 18px;
}
.ab-story-text .prose p:last-child {
	margin-bottom: 0;
}
.ab-story-visual { min-width: 0; }
.ab-story-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	box-shadow: 0 16px 48px rgba(2,32,92,.12);
}
@media (max-width: 900px) {
	.ab-story-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}


/* ---------- About: Why choose us ---------- */
.ab-why {
	background: var(--c-navy);
	color: #fff;
	padding: 88px 0;
	position: relative;
	overflow: hidden;
}
.ab-why::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
	pointer-events: none;
}
.ab-why-head {
	text-align: center;
	margin-bottom: 56px;
	position: relative;
}
.ab-why-head h2 {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin: 16px 0 14px;
}
.ab-why-head > p {
	color: rgba(255,255,255,.6);
	max-width: 560px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.65;
}
.ab-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	position: relative;
}
.ab-why-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 18px;
	padding: 32px 28px;
	transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.ab-why-card:hover {
	transform: translateY(-4px);
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.2);
}
.ab-why-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.08);
	border-radius: 14px;
	color: #fff;
	margin-bottom: 20px;
}
.ab-why-card h3 {
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 8px;
}
.ab-why-card p {
	color: rgba(255,255,255,.55);
	font-size: .88rem;
	margin: 0;
	line-height: 1.6;
}

/* ---------- About: CTA band ---------- */
.ab-cta {
	background: var(--c-bg-alt);
	padding: 72px 0;
}
.ab-cta-inner {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.ab-cta-inner h2 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	color: var(--c-navy);
	margin: 0 0 14px;
}
.ab-cta-inner > p {
	color: var(--c-muted);
	margin: 0 0 32px;
	font-size: 1rem;
	line-height: 1.65;
}
.ab-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.ab-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: .95rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}
.ab-cta-btn--primary {
	background: var(--c-navy);
	color: #fff;
}
.ab-cta-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(2,32,92,.2);
	color: #fff;
}
.ab-cta-btn--wa {
	background: #25D366;
	color: #fff;
	box-shadow: 0 6px 20px rgba(37,211,102,.25);
}
.ab-cta-btn--wa:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(37,211,102,.35);
	color: #fff;
}
.ab-cta-btn--wa .wa-icon { width: 20px; height: 20px; }

/* ============================================================
   Contact page
   ============================================================ */
.cp-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: start;
	padding-top: 48px;
	padding-bottom: 64px;
}
.cp-intro { margin-bottom: 28px; color: var(--c-muted); line-height: 1.7; }
.cp-tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.cp-tile {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 20px;
	transition: all var(--trans);
}
.cp-tile:hover { border-color: var(--c-blue); box-shadow: var(--shadow); }
.cp-tile-icon {
	width: 44px; height: 44px;
	display: grid; place-items: center;
	background: var(--c-bg-alt);
	border-radius: 10px;
	color: var(--c-blue);
	flex-shrink: 0;
}
.cp-tile strong { display: block; color: var(--c-navy); font-size: .9rem; margin-bottom: 4px; }
.cp-tile p { margin: 0; font-size: .88rem; color: var(--c-muted); }
.cp-tile a { color: var(--c-blue); }

.cp-cta-col { display: flex; flex-direction: column; gap: 20px; }
.cp-cta-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cp-cta-wa { border-top: 4px solid #25d366; }
.cp-cta-email { border-top: 4px solid var(--c-blue); }
.cp-cta-card-icon { color: var(--c-muted); }
.cp-cta-wa .cp-cta-card-icon { color: #25d366; }
.cp-cta-email .cp-cta-card-icon { color: var(--c-blue); }
.cp-cta-card h3 { margin: 0; font-size: 1.05rem; color: var(--c-navy); }
.cp-cta-card p { margin: 0; font-size: .9rem; color: var(--c-muted); line-height: 1.5; }
.cp-cta-card .sp-btn { margin-top: 4px; flex: none; width: 100%; }

/* ---------- Contact page (old selectors kept for safety) ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-tiles { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-tiles li { display: flex; gap: 14px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 18px; }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; background: var(--c-bg-alt); border-radius: 12px; font-size: 1.3rem; flex-shrink: 0; }
.contact-tiles strong { display: block; color: var(--c-navy); margin-bottom: 2px; }
.contact-tiles p { margin: 0; font-size: .9rem; color: var(--c-muted); }

/* ---------- Footer ---------- */
/* ---------- Footer ---------- */
.site-footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.75);
	padding: 0;
}

/* Top band */
.ft-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 64px;
	padding-bottom: 40px;
	flex-wrap: wrap;
}
.ft-brand {
	max-width: 480px;
}
.ft-logo { margin-bottom: 14px; display: block; }
.ft-logo img { max-height: 70px; width: auto; filter: brightness(0) invert(1); }
.ft-logo-text {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 14px;
	font-family: 'Inter', system-ui, sans-serif;
}
.ft-brand p {
	margin: 0;
	font-size: .92rem;
	color: rgba(255,255,255,.5);
	line-height: 1.6;
}
.ft-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	padding: 14px 30px;
	border-radius: 12px;
	border: none;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
	box-shadow: 0 6px 24px rgba(37,211,102,.25);
	flex-shrink: 0;
}
.ft-wa-btn:hover {
	background: #22c55e;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(37,211,102,.35);
}
.ft-wa-btn .wa-icon { width: 20px; height: 20px; }

.ft-divider {
	border: none;
	height: 1px;
	background: rgba(255,255,255,.08);
	margin: 0;
}

/* Grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.3fr;
	gap: 48px;
	padding-top: 48px;
	padding-bottom: 56px;
}
.footer-title {
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}
.footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: rgba(255,255,255,.25);
	border-radius: 1px;
}
.footer-links, .contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}
.footer-links a {
	color: rgba(255,255,255,.5);
	font-size: .9rem;
	transition: color .2s ease, padding-left .2s ease;
}
.footer-links a:hover {
	color: #fff;
	padding-left: 4px;
}
.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .88rem;
	color: rgba(255,255,255,.5);
	line-height: 1.5;
}
.contact-list li svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: rgba(255,255,255,.35);
}
.contact-list a {
	color: rgba(255,255,255,.5);
}
.contact-list a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,.5); font-size: .92rem; }

/* Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.06);
	padding: 20px 0;
	background: rgba(0,0,0,.3);
}
.ft-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-bottom p {
	margin: 0;
	font-size: .82rem;
	color: rgba(255,255,255,.35);
}

/* ---------- Drawers (cart / favorites) ---------- */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(2, 32, 92, .55);
	backdrop-filter: blur(4px);
	display: flex;
	justify-content: flex-end;
	animation: fade .2s ease;
}
.drawer[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.drawer-panel {
	width: 100%; max-width: 420px;
	background: #fff;
	display: flex;
	flex-direction: column;
	animation: slide .3s ease;
	box-shadow: -20px 0 60px rgba(0,0,0,.2);
}
@keyframes slide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 28px;
	border-bottom: 1px solid var(--c-line);
	background: #fff;
}
.drawer-head h3 {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--c-navy);
	letter-spacing: -0.02em;
}
.drawer-close {
	background: var(--c-bg-alt);
	border: none;
	width: 36px; height: 36px;
	border-radius: 50%;
	font-size: 1.4rem;
	color: var(--c-navy);
	cursor: pointer;
	display: grid; place-items: center;
}
.drawer-close:hover { background: var(--c-navy); color: #fff; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.drawer-foot {
	border-top: 1px solid var(--c-line);
	padding: 18px 24px;
}
.drawer-foot .btn { width: 100%; justify-content: center; }

.drawer-item {
	display: flex;
	gap: 18px;
	padding: 20px 0;
	border-bottom: 1px solid var(--c-line);
	transition: opacity 0.3s ease;
}
.drawer-item:last-child { border-bottom: none; }
.drawer-item-img {
	width: 80px; height: 80px;
	background: var(--c-bg-alt);
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	border: 1px solid var(--c-line);
	display: grid;
	place-items: center;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.drawer-item-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.drawer-item-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}
.drawer-item-title {
	font-weight: 600;
	color: var(--c-navy);
	font-size: 0.95rem;
	line-height: 1.4;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.drawer-item-title:hover { color: var(--c-blue); }

.drawer-remove-btn {
	background: none;
	border: none;
	width: 32px; height: 32px;
	display: grid; place-items: center;
	border-radius: 8px;
	color: var(--c-muted);
	cursor: pointer;
	transition: all var(--trans);
	flex-shrink: 0;
}
.drawer-remove-btn:hover { background: #fee2e2; color: #ef4444; }

.drawer-item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.drawer-qty-stepper {
	display: inline-flex;
	align-items: center;
	background: var(--c-bg-alt);
	padding: 4px;
	border-radius: 10px;
	gap: 4px;
}
.drawer-qty-stepper button {
	width: 28px; height: 28px;
	border-radius: 6px;
	border: none;
	background: #fff;
	color: var(--c-navy);
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	transition: all var(--trans);
}
.drawer-qty-stepper button:hover { background: var(--c-navy); color: #fff; }
.drawer-qty-stepper .qty-val {
	font-size: 0.9rem;
	font-weight: 700;
	min-width: 30px;
	text-align: center;
	color: var(--c-navy);
}
.drawer-item-meta {
	font-size: 0.75rem;
	color: var(--c-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.drawer-empty {
	text-align: center;
	padding: 60px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.drawer-empty-icon {
	width: 80px; height: 80px;
	background: var(--c-bg-alt);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--c-muted);
	margin-bottom: 8px;
}
.drawer-empty p {
	color: var(--c-muted);
	font-size: 1rem;
	margin: 0;
}
.drawer-empty .btn { margin-top: 8px; }

/* ---------- Floating WhatsApp button ---------- */
.fab {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 60px; height: 60px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
	z-index: 90;
	transition: all var(--trans);
	animation: pulse 2.5s ease-in-out infinite;
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab .wa-icon { width: 30px; height: 30px; }
@keyframes pulse {
	0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4); }
	50%      { box-shadow: 0 10px 30px rgba(37, 211, 102, .5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- Toast ---------- */
.toast {
	position: fixed;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--c-navy);
	color: #fff;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 500;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
	z-index: 250;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Pagination ---------- */
.pagination, .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 50px;
	flex-wrap: wrap;
}
.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--c-line);
	color: var(--c-navy);
	font-weight: 600;
	text-decoration: none;
	transition: all var(--trans);
}
.page-numbers:hover { background: var(--c-bg-alt); }
.page-numbers.current {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
}

/* ============================================================
   Mobile Nav — full-screen overlay
   ============================================================ */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: var(--c-navy);
	color: #fff;
	overflow-y: auto;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	animation: mobileNavIn .28s cubic-bezier(.2, .8, .2, 1);
}
.mobile-nav[hidden] { display: none; }
@keyframes mobileNavIn {
	from { transform: translateX(100%); opacity: 0; }
	to   { transform: translateX(0);    opacity: 1; }
}
body.menu-open { overflow: hidden; }

.mobile-nav-inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0 24px 40px;
}

/* Head */
.mobile-nav-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	flex-shrink: 0;
}
.mobile-nav-logo {
	height: 48px;
	width: auto;
	filter: brightness(0) invert(1);
}
.mobile-nav-close {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background var(--trans);
	flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255, 255, 255, .2); }

/* Body */
.mobile-nav-body { flex: 1; padding: 8px 0 24px; }
.mobile-menu { list-style: none; margin: 0; padding: 0; }
.mobile-menu-item {
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu-link {
	display: block;
	padding: 20px 0;
	color: rgba(255, 255, 255, .88);
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: -.01em;
	transition: color var(--trans);
}
.mobile-menu-link:hover,
.mobile-menu-link.is-active { color: var(--c-pale); }

/* Products accordion row */
.mobile-menu-row {
	display: flex;
	align-items: center;
}
.mobile-menu-row .mobile-menu-link { flex: 1; }
.mobile-menu-toggle {
	background: none;
	border: none;
	color: rgba(255, 255, 255, .5);
	padding: 12px 4px;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: color var(--trans);
	flex-shrink: 0;
}
.mobile-menu-toggle:hover { color: #fff; }
.mobile-menu-arrow {
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.mobile-menu-item--accordion.is-open .mobile-menu-arrow {
	transform: rotate(180deg);
}

/* Category children list */
.mobile-menu-children {
	list-style: none;
	margin: 0;
	padding: 0 0 14px 0;
	display: none;
}
.mobile-menu-item--accordion.is-open .mobile-menu-children {
	display: block;
	animation: accordionOpen .22s ease;
}
@keyframes accordionOpen {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu-child {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	color: rgba(255, 255, 255, .62);
	font-size: .98rem;
	font-weight: 500;
	border-radius: 8px;
	transition: background var(--trans), color var(--trans);
}
.mobile-menu-child:hover {
	background: rgba(255, 255, 255, .07);
	color: var(--c-pale);
}
.mobile-menu-child svg { flex-shrink: 0; opacity: .5; }
.mobile-menu-child--all {
	color: rgba(255, 255, 255, .85);
	font-weight: 600;
	margin-bottom: 4px;
}
.mobile-menu-child--all svg { opacity: .8; }

/* Footer */
.mobile-nav-foot {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}
.mobile-nav-foot .btn { justify-content: center; }
.btn-ghost-light {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, .25);
	color: rgba(255, 255, 255, .8);
	border-radius: var(--radius);
	padding: 11px 20px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: .9rem;
	font-weight: 600;
	text-align: center;
	transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.btn-ghost-light:hover {
	border-color: rgba(255, 255, 255, .5);
	color: #fff;
	background: rgba(255, 255, 255, .06);
}

/* ============================================================
   Mobile Carousel
   ============================================================ */
.carousel-wrap { position: relative; }
.carousel-dots { display: none; }
/* Always-on carousels (testimonials, data-carousel-all) show dots on all screens */
.testimonial-track ~ .carousel-dots { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 28px; }

@media (max-width: 860px) {
	[data-carousel] {
		display: flex !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 14px;
		padding-bottom: 6px;
	}
	[data-carousel]::-webkit-scrollbar { display: none; }

	[data-carousel] > .product-card {
		flex: 0 0 72vw;
		max-width: 300px;
		scroll-snap-align: start;
		width: 72vw;
	}

	/* Featured card: vertical inside carousel */
	[data-carousel] .product-card--featured {
		flex-direction: column;
		border-top: 3px solid var(--c-blue);
		border-left: 1px solid var(--c-line);
	}
	[data-carousel] .product-card--featured .product-media-wrap { width: 100%; }
	[data-carousel] .product-card--featured .product-media {
		aspect-ratio: 1 / 1;
		height: auto;
	}
	[data-carousel] .product-card--featured .product-media img { object-fit: contain; }
	[data-carousel] .product-card--featured .product-actions { flex-direction: row; }

	/* Dots */
	.carousel-dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin-top: 18px;
	}
	.carousel-dot {
		width: 8px; height: 8px;
		border-radius: 50%;
		background: var(--c-line);
		border: none;
		padding: 0;
		cursor: pointer;
		transition: all .3s ease;
		flex-shrink: 0;
	}
	.carousel-dot.is-active {
		background: var(--c-navy);
		width: 22px;
		border-radius: 4px;
	}
}

/* ---------- Browse by Category (sidebar layout) ---------- */
.section-cat-browse { background: var(--c-bg-alt); }

.cat-browse-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 36px;
	align-items: start;
}

/* Sidebar */
.cat-browse-sidebar {
	position: sticky;
	top: 100px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.cat-browse-sidebar-head {
    padding: 12px 18px 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-muted);
    border-bottom: 1px solid var(--c-line);
    background: rgba(0,0,0, 0.05);
}

.cat-browse-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cat-browse-item { border-bottom: 1px solid var(--c-line); }
.cat-browse-item:last-child { border-bottom: none; }
.cat-browse-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 18px;
	background: none;
	border: none;
	text-align: left;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: .9rem;
	font-weight: 500;
	color: var(--c-ink);
	cursor: pointer;
	transition: background var(--trans), color var(--trans);
	gap: 8px;
}
.cat-browse-btn:hover {
	background: var(--c-bg-alt);
	color: var(--c-blue);
}
.cat-browse-btn.is-active {
	background: var(--c-navy);
	color: #fff;
	font-weight: 600;
}
.cat-browse-arrow { display: none; }

/* Panels */
.cat-browse-panel { display: none; }
.cat-browse-panel.is-active { display: block; }

.cat-browse-panel-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
}

.cat-browse-empty {
	color: var(--c-muted);
	padding: 40px 0;
	text-align: center;
	font-size: .95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.grid-4 { grid-template-columns: repeat(3, 1fr); }
	.ft-top { flex-direction: column; align-items: flex-start; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.products-grid { grid-template-columns: 240px 1fr; gap: 28px; }
}

@media (max-width: 860px) {
	.sp-container { width: 100%; padding-left: 16px; padding-right: 16px; }
	.hero { padding: 60px 0; min-height: 480px; max-height: none; }
	.hero-stats { gap: 0; }
	.hero-stats li { padding: 0 16px; }
	.hero-stats strong { font-size: 1.5rem; }
	.hero-scroll { display: none; }
	.announce-ship { display: none; }
	.logo-img { height: 44px; }
	.section { padding: 60px 0; }
	.grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
	.ha-layout { grid-template-columns: 1fr; gap: 40px; }
	.ha-pillars { grid-template-columns: 1fr; }
	.product-single { grid-template-columns: 1fr; gap: 32px; }
	.products-grid { grid-template-columns: 1fr; }
	.sidebar { position: static; }
	.sp-wrap { grid-template-columns: 1fr; }
	.cat-browse-layout { grid-template-columns: 1fr; }
	.cat-browse-sidebar { position: static; display: flex; overflow-x: auto; border-radius: var(--radius); }
	.cat-browse-list { display: flex; flex-direction: row; padding: 6px; gap: 6px; white-space: nowrap; }
	.cat-browse-item { border-bottom: none; flex-shrink: 0; }
	.cat-browse-btn { padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--c-line); background: #fff; }
	.cat-browse-btn.is-active { background: var(--c-navy); border-color: var(--c-navy); }
	.cat-browse-arrow { display: none; }

	/* Sidebar — mobile left drawer */
	.ap-sidebar-toggle {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		padding: 7px 14px;
		font-size: .85rem;
		font-weight: 600;
		color: var(--c-navy);
		background: #fff;
		border: 1px solid var(--c-line);
		border-radius: var(--radius);
		cursor: pointer;
		transition: border-color var(--trans), background var(--trans);
	}
	.ap-sidebar-toggle:hover { border-color: var(--c-navy); background: var(--c-bg-alt); }

	.sidebar-backdrop { display: block; }

	.sp-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 300px;
		max-width: 85vw;
		max-height: none;
		z-index: 150;
		transform: translateX(-100%);
		transition: transform .3s cubic-bezier(.4,0,.2,1);
		background: var(--c-bg-alt);
		box-shadow: 4px 0 32px rgba(0,0,0,.18);
		overflow-y: auto;
		scrollbar-width: thin;
	}
	body.sidebar-open .sp-sidebar { transform: translateX(0); }

	.sp-sidebar-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 18px;
		background: #fff;
		border-bottom: 1px solid var(--c-line);
		font-weight: 700;
		font-size: .85rem;
		text-transform: uppercase;
		letter-spacing: .8px;
		color: var(--c-muted);
		position: sticky;
		top: 0;
		z-index: 1;
	}
	.sp-sidebar-close {
		display: grid;
		place-items: center;
		width: 32px;
		height: 32px;
		background: none;
		border: none;
		cursor: pointer;
		color: var(--c-muted);
		border-radius: 6px;
		transition: background var(--trans), color var(--trans);
	}
	.sp-sidebar-close:hover { background: var(--c-bg-alt); color: var(--c-navy); }

	.sp-sidebar-body { display: flex; flex-direction: column; gap: 0; padding: 16px; }
	.sp-sidebar-body .sp-side-card { border-radius: var(--radius); }
	.sp-sidebar-body .sp-side-cta { margin-top: 16px; border-radius: var(--radius); }

	.sp-top { grid-template-columns: 1fr; gap: 24px; }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-tiles { grid-template-columns: 1fr; }
	.ap-layout { grid-template-columns: 1fr; }
	.ab-why-grid { grid-template-columns: 1fr 1fr; }
	.pg-stats { grid-template-columns: 1fr 1fr; }
	.cp-layout { grid-template-columns: 1fr; }
	.cp-tiles { grid-template-columns: 1fr; }
	.pg-hero-inner { flex-direction: column; align-items: flex-start; }
	.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--c-line); box-shadow: var(--shadow); padding: 16px; }
	.site-nav::before, .site-nav::after { display: none; }
	.site-nav.is-open { display: block; }
	.action-cluster { gap: 6px; }
	.menu { flex-direction: column; gap: 0; padding: 0; }
	.menu > li > a::before, .menu > li > a::after { display: none; }
	.menu a { text-align: left; }
	.menu .sub-menu { position: static; box-shadow: none; padding: 0 0 0 14px; display: block; }
	.burger { display: grid; }
	.hero-stats { gap: 20px; flex-wrap: wrap; }

}

@media (max-width: 540px) {
	.container,
	.sp-container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	/* clients handled by carousel on mobile — no grid override needed */
	.product-actions { flex-direction: column; }
	.announce-meta { display: none; }
	.ab-why-grid { grid-template-columns: 1fr; }
	.ab-cta-btns { flex-direction: column; align-items: stretch; }
	.ab-cta-btn { justify-content: center; }
	.cp-tiles { grid-template-columns: 1fr; }
	.pg-stats { grid-template-columns: 1fr; }
	.fab { width: 54px; height: 54px; bottom: 16px; right: 16px; }

	/* ---- Mobile product card: 2-column vertical grid ---- */
	.product-card .product-body { padding: 8px 10px 12px; gap: 6px; }
	.product-card .product-title { font-size: .82rem; }
	.product-card .product-itemno { font-size: .66rem; }
	.product-card .stock-pill { font-size: .63rem; padding: 2px 6px; }
	.product-card .product-price-val { font-size: .95rem; }
	.product-card .product-actions { flex-direction: column; gap: 5px; align-items: stretch; }
	.product-card .btn-cart,
	.product-card .btn-buy-now {
		font-size: .76rem;
		padding: 9px 8px;
		min-height: 36px;
		box-sizing: border-box;
	}
	.cat-card-cta {
		font-size: 8px;
	}
	.product-media img {
		padding: 0;
	}
}
