/**
 * Theme Custom CSS - Variables & Overrides
 * @package sc_mdeical
 */

:root {
	--sc-primary-color: #FF5A3C;
	--sc-secondary-color: #071C1F;
	--sc-heading-font: 'Cairo', sans-serif;
	--sc-body-font: 'Cairo', sans-serif;
	/* Override Vicodin framework font variables */
	--ltn__heading-font: 'Cairo', sans-serif;
	--ltn__body-font: 'Cairo', sans-serif;
}

/* ── Global Cairo Font Override ───────────────────────────── */
body,
h1, h2, h3, h4, h5, h6,
p, a, li, span, label,
input, textarea, select,
button, .btn {
	font-family: 'Cairo', sans-serif;
}

/* ── Floating Toast Notification ──────────────────────────── */
.sc-toast-container {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}
[dir="rtl"] .sc-toast-container {
	right: auto;
	left: 30px;
}
.sc-toast {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	min-width: 320px;
	max-width: 420px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
	animation: scToastSlideIn 0.5s cubic-bezier(0.21, 1.02, 0.73, 1);
	position: relative;
	overflow: hidden;
	pointer-events: auto;
}
.sc-toast.sc-toast-out {
	animation: scToastSlideOut 0.4s ease-in forwards;
}
.sc-toast .sc-toast-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}
.sc-toast .sc-toast-text {
	flex: 1;
}
.sc-toast .sc-toast-close {
	background: none;
	border: none;
	color: inherit;
	opacity: 0.5;
	cursor: pointer;
	font-size: 16px;
	padding: 0;
	line-height: 1;
	flex-shrink: 0;
	transition: opacity 0.2s;
}
.sc-toast .sc-toast-close:hover {
	opacity: 1;
}
.sc-toast.success {
	background: #fff;
	color: #1a7431;
	border-inline-start: 5px solid #28a745;
}
.sc-toast.success .sc-toast-icon {
	background: #d4edda;
	color: #28a745;
}
.sc-toast.error {
	background: #fff;
	color: #8b1a2b;
	border-inline-start: 5px solid #dc3545;
}
.sc-toast.error .sc-toast-icon {
	background: #f8d7da;
	color: #dc3545;
}
.sc-toast::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: currentColor;
	opacity: 0.15;
	animation: scToastTimer 5s linear forwards;
}

/* ── Toast Animations ─────────────────────────────────────── */
@keyframes scToastSlideIn {
	from { opacity: 0; transform: translateX(100px); }
	to   { opacity: 1; transform: translateX(0); }
}
[dir="rtl"] .sc-toast {
	animation-name: scToastSlideInRtl;
}
@keyframes scToastSlideInRtl {
	from { opacity: 0; transform: translateX(-100px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes scToastSlideOut {
	from { opacity: 1; transform: translateX(0); }
	to   { opacity: 0; transform: translateX(100px); }
}
@keyframes scToastTimer {
	from { width: 100%; }
	to   { width: 0%; }
}

@media (max-width: 575px) {
	.sc-toast-container {
		top: 15px;
		right: 15px;
		left: 15px;
	}
	[dir="rtl"] .sc-toast-container {
		right: 15px;
		left: 15px;
	}
	.sc-toast {
		min-width: auto;
		max-width: none;
		font-size: 14px;
		padding: 14px 18px;
	}
}

/* ── AJAX Live Search Dropdown ─────────────────────────────── */
.sc-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	display: none;
	max-height: 400px;
	overflow-y: auto;
}
.sc-search-loading {
	padding: 20px;
	text-align: center;
	color: #999;
	font-size: 18px;
}
.sc-search-no-results {
	padding: 20px;
	text-align: center;
	color: #777;
	font-size: 14px;
}
.sc-search-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sc-search-item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 15px;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}
.sc-search-item a:hover {
	background: #f8f8f8;
}
.sc-search-item:last-child a {
	border-bottom: none;
}
.sc-search-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}
.sc-search-item-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.sc-search-item-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--sc-secondary-color);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sc-search-item-price {
	font-size: 13px;
	color: var(--sc-primary-color);
	font-weight: 700;
}
.sc-search-item-price del {
	color: #999;
	font-weight: 400;
	margin-inline-end: 5px;
}
.sc-search-view-all {
	display: block;
	padding: 12px 15px;
	text-align: center;
	background: #f8f8f8;
	color: var(--sc-primary-color);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	border-radius: 0 0 8px 8px;
	transition: background 0.2s;
}
.sc-search-view-all:hover {
	background: #f0f0f0;
	color: var(--sc-secondary-color);
}

/* ── Mobile Search Dropdown Fix ───────────────────────────── */
.header-search-1-form {
	position: relative;
}
.header-search-1-form .sc-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	max-height: 350px;
	overflow-y: auto;
}

/* ── Language Flag Icon ──────────────────────────────────── */
.sc-lang-flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}
/* Desktop: remove icomoon arrow, show flag */
.sc-lang-menu .dropdown-toggle::before {
	display: none !important;
}
.sc-lang-menu .dropdown-toggle::after {
	display: none !important;
}
.sc-lang-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
}
.sc-lang-option {
	display: flex;
	align-items: center;
	gap: 8px;
}
/* Dropdown items flag */
.sc-lang-menu ul ul .sc-lang-flag {
	width: 22px;
	height: 16px;
}

/* ── Mobile Sidebar Language Switcher ────────────────────── */
.ltn__utilize-lang-switcher {
	padding: 15px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ltn__utilize-lang-switcher ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
}
.ltn__utilize-lang-switcher ul li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: #ddd;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}
.ltn__utilize-lang-switcher ul li a:hover,
.ltn__utilize-lang-switcher ul li.active a {
	background: var(--sc-primary-color);
	color: #fff;
}

/* ── Full-Screen Mobile Search Overlay ────────────────────── */
.sc-mobile-search-trigger {
	cursor: pointer;
	font-size: 20px;
	color: var(--sc-secondary-color);
	transition: color 0.2s;
}
.sc-mobile-search-trigger:hover {
	color: var(--sc-primary-color);
}
.sc-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.sc-search-overlay.active {
	opacity: 1;
	visibility: visible;
}
.sc-search-overlay-inner {
	width: 100%;
	max-width: 600px;
	margin-top: 60px;
	padding: 0 20px;
	transform: translateY(-30px);
	transition: transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
}
.sc-search-overlay.active .sc-search-overlay-inner {
	transform: translateY(0);
}
.sc-search-overlay-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
[dir="rtl"] .sc-search-overlay-close {
	right: auto;
	left: 20px;
}
.sc-search-overlay-close:hover {
	background: rgba(255, 255, 255, 0.3);
}
.sc-search-overlay-title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
}
.sc-search-overlay-input-wrap {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	padding: 0 20px;
}
.sc-search-overlay-input-wrap > i {
	font-size: 20px;
	color: #999;
	flex-shrink: 0;
}
.sc-search-overlay-input-wrap input[name="s"] {
	border: none;
	outline: none;
	background: transparent;
	width: 100%;
	padding: 16px 14px;
	font-size: 16px;
	font-family: 'Cairo', sans-serif;
	color: var(--sc-secondary-color);
}
.sc-search-overlay-input-wrap input[name="s"]::placeholder {
	color: #aaa;
}
.sc-search-overlay-results {
	margin-top: 12px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	max-height: calc(100vh - 250px);
	overflow-y: auto;
	display: none;
}
.sc-search-overlay-results .sc-search-loading {
	padding: 30px;
	text-align: center;
	color: #999;
	font-size: 20px;
}
.sc-search-overlay-results .sc-search-no-results {
	padding: 30px;
	text-align: center;
	color: #777;
	font-size: 15px;
}
.sc-search-overlay-results .sc-search-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sc-search-overlay-results .sc-search-item a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}
.sc-search-overlay-results .sc-search-item a:hover {
	background: #f8f8f8;
}
.sc-search-overlay-results .sc-search-item:last-child a {
	border-bottom: none;
}
.sc-search-overlay-results .sc-search-item img {
	width: 55px;
	height: 55px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}
.sc-search-overlay-results .sc-search-item-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--sc-secondary-color);
}
.sc-search-overlay-results .sc-search-item-price {
	font-size: 13px;
	color: var(--sc-primary-color);
	font-weight: 700;
}
.sc-search-overlay-results .sc-search-view-all {
	display: block;
	padding: 14px 18px;
	text-align: center;
	background: #f8f8f8;
	color: var(--sc-primary-color);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border-radius: 0 0 12px 12px;
	transition: background 0.2s;
}
.sc-search-overlay-results .sc-search-view-all:hover {
	background: #f0f0f0;
	color: var(--sc-secondary-color);
}

/* ── About Page: Feature Icon Images ─────────────────────── */
.ltn__feature-item-6 .ltn__feature-icon img {
	width: 65px;
	height: 65px;
	object-fit: contain;
}

/* ── Vision & Mission Cards ──────────────────────────────── */
.sc-vision-mission-area {
	padding-top: 0;
}
.sc-vm-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	border-top: 4px solid transparent;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}
.sc-vm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.sc-vm-vision {
	border-top-color: var(--sc-primary-color);
}
.sc-vm-mission {
	border-top-color: var(--ltn__secondary-color, #0A9A73);
}
.sc-vm-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}
.sc-vm-vision .sc-vm-icon {
	background: rgba(255, 90, 60, 0.1);
	color: var(--sc-primary-color);
}
.sc-vm-mission .sc-vm-icon {
	background: rgba(10, 154, 115, 0.1);
	color: var(--ltn__secondary-color, #0A9A73);
}
.sc-vm-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin-bottom: 15px;
}
.sc-vm-text {
	color: #5c727d;
	font-size: 15px;
	line-height: 1.8;
}
.sc-vm-text p:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.sc-vm-card {
		margin-bottom: 20px;
		padding: 30px 20px;
	}
}

/* ── Honeypot Field (hidden) ───────────────────────────────── */
.sc-hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════
   PHASE 10 – MODERN UI REDESIGN
   ══════════════════════════════════════════════════════════════ */

/* ── Blog Posts Grid ─────────────────────────────────────────── */
.sc-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-top: 10px;
}
@media (max-width: 991px) {
	.sc-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (max-width: 575px) {
	.sc-posts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ── Blog Post Card ──────────────────────────────────────────── */
.sc-post-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}
.sc-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.sc-post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	position: relative;
}
.sc-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.sc-post-card:hover .sc-post-card__image img {
	transform: scale(1.06);
}

/* Card Body */
.sc-post-card__body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Category Pill */
.sc-post-card__cat {
	display: inline-block;
	align-self: flex-start;
	background: rgba(255, 90, 60, 0.1);
	color: var(--sc-primary-color);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 12px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.sc-post-card__cat:hover {
	background: var(--sc-primary-color);
	color: #fff;
}

/* Meta Info */
.sc-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #8a9bae;
}
.sc-post-card__meta i {
	margin-inline-end: 4px;
	font-size: 12px;
}

/* Post Title */
.sc-post-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
	color: var(--sc-secondary-color);
}
.sc-post-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.sc-post-card__title a:hover {
	color: var(--sc-primary-color);
}

/* Excerpt */
.sc-post-card__excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 16px;
	flex: 1;
}

/* Read More Link */
.sc-post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--sc-primary-color);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s;
}
.sc-post-card__link:hover {
	gap: 12px;
	color: var(--sc-primary-color);
}
.sc-post-card__link i {
	font-size: 12px;
	transition: transform 0.3s;
}
[dir="rtl"] .sc-post-card__link i {
	transform: scaleX(-1);
}

/* ── Modern Pagination ───────────────────────────────────────── */
.navigation.pagination {
	margin-top: 50px;
}
.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 6px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--sc-secondary-color);
	background: #fff;
	border: 1.5px solid #e5e8eb;
	text-decoration: none;
	transition: all 0.25s ease;
}
.navigation.pagination .page-numbers:hover {
	border-color: var(--sc-primary-color);
	color: var(--sc-primary-color);
	background: rgba(255, 90, 60, 0.05);
}
.navigation.pagination .page-numbers.current {
	background: var(--sc-primary-color);
	color: #fff;
	border-color: var(--sc-primary-color);
}
.navigation.pagination .page-numbers.dots {
	border: none;
	background: none;
	color: #999;
	pointer-events: none;
}
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
	font-size: 13px;
}

/* ── Single Post ─────────────────────────────────────────────── */
.sc-single-post {
	background: #fff;
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
}

/* Featured Image */
.sc-single-post__image {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.sc-single-post__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Meta */
.sc-single-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 16px;
	padding: 0 20px;
}
.sc-single-post__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #8a9bae;
}
.sc-single-post__meta-item i {
	font-size: 13px;
	color: var(--sc-primary-color);
}
.sc-single-post__meta-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.sc-single-post__meta-item a:hover {
	color: var(--sc-primary-color);
}

/* Title */
.sc-single-post__title {
	font-size: 30px;
	font-weight: 800;
	color: var(--sc-secondary-color);
	text-align: center;
	line-height: 1.4;
	margin-bottom: 35px;
	padding: 0 20px;
}

/* Content */
.sc-single-post__content {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.85;
	color: #444;
}
.sc-single-post__content p {
	margin-bottom: 1.4em;
}
.sc-single-post__content h2,
.sc-single-post__content h3,
.sc-single-post__content h4 {
	color: var(--sc-secondary-color);
	margin-top: 1.8em;
	margin-bottom: 0.7em;
	font-weight: 700;
}
.sc-single-post__content img {
	border-radius: 12px;
	margin: 1em 0;
}
.sc-single-post__content blockquote {
	border-inline-start: 4px solid var(--sc-primary-color);
	background: #f8f9fa;
	padding: 20px 24px;
	border-radius: 0 10px 10px 0;
	margin: 1.5em 0;
	font-style: italic;
	color: #555;
}
[dir="rtl"] .sc-single-post__content blockquote {
	border-radius: 10px 0 0 10px;
}

/* Tags */
.sc-single-post__tags {
	max-width: 780px;
	margin: 30px auto 0;
	padding: 24px 20px 0;
	border-top: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.sc-single-post__tags > i {
	color: #8a9bae;
	font-size: 14px;
	margin-inline-end: 4px;
}
.sc-tag-pill {
	display: inline-block;
	padding: 5px 16px;
	background: #f5f7f9;
	color: #555;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.sc-tag-pill:hover {
	background: var(--sc-primary-color);
	color: #fff;
}

/* Author Box */
.sc-single-post__author-box {
	max-width: 780px;
	margin: 35px auto 0;
	padding: 28px;
	background: #f8f9fa;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.sc-single-post__author-avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.sc-single-post__author-label {
	font-size: 12px;
	color: #8a9bae;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.sc-single-post__author-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin: 2px 0 6px;
}
.sc-single-post__author-bio {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 575px) {
	.sc-single-post__author-box {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}
	.sc-single-post__title {
		font-size: 24px;
	}
}

/* ── Post Navigation (Single Post) ───────────────────────────── */
.post-navigation {
	margin-top: 40px;
	margin-bottom: 40px;
}
.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px 24px;
	transition: background 0.2s, box-shadow 0.2s;
}
.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.post-navigation .nav-next {
	text-align: end;
}
.post-navigation a {
	text-decoration: none;
	color: inherit;
}
.sc-post-nav__label {
	display: block;
	font-size: 13px;
	color: #8a9bae;
	font-weight: 600;
	margin-bottom: 6px;
}
.sc-post-nav__label i {
	font-size: 11px;
}
.sc-post-nav__title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	line-height: 1.5;
	transition: color 0.2s;
}
.post-navigation a:hover .sc-post-nav__title {
	color: var(--sc-primary-color);
}
@media (max-width: 575px) {
	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}
}

/* ── Blog Area Spacing Override ───────────────────────────────── */
.ltn__blog-area .sc-posts-grid {
	margin-bottom: 0;
}
.ltn__blog-area .sc-posts-grid .sc-post-card {
	margin-bottom: 0;
}

/* ── Shared Components ───────────────────────────────────────── */

/* Section Title */
.sc-section-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--sc-secondary-color);
	line-height: 1.3;
	margin-bottom: 20px;
	position: relative;
}

/* Primary Button */
.sc-btn {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: 'Cairo', sans-serif;
}
.sc-btn--primary {
	background: var(--sc-primary-color);
	color: #fff;
}
.sc-btn--primary:hover {
	background: var(--sc-secondary-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 90, 60, 0.3);
}

/* Form Controls */
.sc-form-group {
	margin-bottom: 20px;
}
.sc-form-control {
	width: 100%;
	padding: 13px 18px;
	border: 1.5px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	font-family: 'Cairo', sans-serif;
	color: var(--sc-secondary-color);
	background: #fff;
	transition: border-color 0.25s, box-shadow 0.25s;
	outline: none;
}
.sc-form-control:focus {
	border-color: var(--sc-primary-color);
	box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.1);
}
.sc-form-control::placeholder {
	color: #aaa;
}
textarea.sc-form-control {
	resize: vertical;
	min-height: 120px;
}

/* ── About Page ──────────────────────────────────────────────── */

/* About Image */
.sc-about-img {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.sc-about-img img {
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 991px) {
	.sc-about-img {
		margin-bottom: 40px;
	}
}

/* About Info */
.sc-about-info {
	padding-inline-start: 20px;
}
.sc-about-text {
	font-size: 16px;
	line-height: 1.8;
	color: #5c727d;
}
.sc-about-text p:last-child {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.sc-about-info {
		padding-inline-start: 0;
	}
}

/* Features Grid */
.sc-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 991px) {
	.sc-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.sc-features-grid {
		grid-template-columns: 1fr;
	}
}

/* Feature Card */
.sc-feature-card {
	background: #fff;
	border-radius: 14px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.sc-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.sc-feature-card__icon {
	margin-bottom: 18px;
}
.sc-feature-card__icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.sc-feature-card__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin-bottom: 8px;
}
.sc-feature-card__text {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Counter Area */
.sc-counter-area {
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 80px 0;
}
.sc-counter-area::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(7, 28, 31, 0.85);
}
.sc-counter-area .container {
	position: relative;
	z-index: 1;
}
.sc-counter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
@media (max-width: 767px) {
	.sc-counter-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
.sc-counter-item {
	text-align: center;
	color: #fff;
}
.sc-counter-item__icon {
	margin-bottom: 15px;
}
.sc-counter-item__icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.sc-counter-item__number {
	font-size: 42px;
	font-weight: 800;
	color: var(--sc-primary-color);
	margin-bottom: 8px;
}
.sc-counter-item__number .counterUp-icon {
	font-size: 28px;
}
.sc-counter-item__label {
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* Team Area */
.sc-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
@media (max-width: 767px) {
	.sc-team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 480px) {
	.sc-team-grid {
		grid-template-columns: 1fr;
	}
}
.sc-team-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
}
.sc-team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.sc-team-card__image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.sc-team-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.sc-team-card:hover .sc-team-card__image img {
	transform: scale(1.05);
}
.sc-team-card__info {
	padding: 20px 16px 4px;
}
.sc-team-card__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin-bottom: 4px;
}
.sc-team-card__role {
	font-size: 14px;
	color: var(--sc-primary-color);
	font-weight: 600;
}
.sc-team-card__social {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 14px 16px 20px;
}
.sc-team-card__social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f5f7f9;
	color: #666;
	font-size: 14px;
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
}
.sc-team-card__social a:hover {
	background: var(--sc-primary-color);
	color: #fff;
}

/* ── Contact Page ────────────────────────────────────────────── */

/* Contact Cards */
.sc-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 767px) {
	.sc-contact-cards {
		grid-template-columns: 1fr;
	}
}
.sc-contact-card {
	background: #fff;
	border-radius: 14px;
	padding: 35px 28px;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.sc-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.sc-contact-card__icon {
	margin-bottom: 18px;
}
.sc-contact-card__icon img {
	width: 55px;
	height: 55px;
	object-fit: contain;
}
.sc-contact-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin-bottom: 10px;
}
.sc-contact-card__text {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

/* Contact Form Wrap */
.sc-contact-form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.sc-contact-form-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	text-align: center;
	margin-bottom: 30px;
}
@media (max-width: 575px) {
	.sc-contact-form-wrap {
		padding: 28px 20px;
	}
}

/* Map */
.sc-map-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 60px;
}
.sc-map-wrap iframe {
	display: block;
	width: 100%;
	min-height: 400px;
}


/* ==========================================================================
   AUTH PAGES (Login / Register / Forgot Password)
   ========================================================================== */

/* Auth Area */
.sc-auth-area {
	background: #f5f7f9;
	min-height: 70vh;
}

/* Auth Tabs */
.sc-auth-tabs {
	display: flex;
	gap: 0;
	background: #fff;
	border-radius: 14px 14px 0 0;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	margin-bottom: -1px;
	position: relative;
	z-index: 2;
}
.sc-auth-tab {
	flex: 1;
	padding: 16px 24px;
	border: none;
	background: #f8f9fa;
	font-size: 15px;
	font-weight: 700;
	color: #999;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Cairo', sans-serif;
}
.sc-auth-tab:hover {
	color: #666;
	background: #f0f0f0;
}
.sc-auth-tab.active {
	color: var(--sc-primary-color);
	background: #fff;
	box-shadow: inset 0 -3px 0 var(--sc-primary-color);
}
.sc-auth-tab i {
	font-size: 14px;
}

/* Auth Panels */
.sc-auth-panels {
	position: relative;
}
.sc-auth-panel {
	display: none;
}
.sc-auth-panel.active {
	display: block;
}

/* Auth Card */
.sc-auth-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 36px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}
.sc-auth-tabs + .sc-auth-panels .sc-auth-card {
	border-radius: 0 0 16px 16px;
}
.sc-auth-card__header {
	text-align: center;
	margin-bottom: 32px;
}
.sc-auth-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 90, 60, 0.1);
	color: var(--sc-primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
}
.sc-auth-card__icon--accent {
	background: rgba(10, 154, 115, 0.1);
	color: var(--ltn__secondary-color);
}
.sc-auth-card__icon--success {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
}
.sc-auth-card__icon--warning {
	background: rgba(255, 193, 7, 0.12);
	color: #e6a800;
}
.sc-auth-card__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--sc-secondary-color);
	margin: 0 0 8px;
}
.sc-auth-card__subtitle {
	font-size: 14px;
	color: #888;
	margin: 0;
}

/* Form Group */
.sc-auth-card .sc-form-group {
	margin-bottom: 18px;
}

/* Input with Icon */
.sc-input-icon {
	position: relative;
}
.sc-input-icon > i {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	color: #aaa;
	font-size: 15px;
	z-index: 1;
	pointer-events: none;
	transition: color 0.3s;
}
[dir="rtl"] .sc-input-icon > i {
	left: auto;
	right: 16px;
}
.sc-input-icon .sc-form-control {
	padding-left: 44px;
}
[dir="rtl"] .sc-input-icon .sc-form-control {
	padding-left: 16px;
	padding-right: 44px;
}
.sc-input-icon:focus-within > i {
	color: var(--sc-primary-color);
}

/* Auth Form Control */
.sc-auth-card .sc-form-control {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #e0e0e0;
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	font-family: 'Cairo', sans-serif;
	transition: border-color 0.3s, box-shadow 0.3s;
	color: var(--sc-secondary-color);
}
.sc-auth-card .sc-form-control:focus {
	border-color: var(--sc-primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.1);
}
.sc-auth-card .sc-form-control::placeholder {
	color: #bbb;
}

/* Auth Options (Remember me + Forgot) */
.sc-auth-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	font-size: 14px;
}
.sc-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #666;
}
.sc-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	accent-color: var(--sc-primary-color);
	cursor: pointer;
}
.sc-auth-forgot {
	color: var(--sc-primary-color);
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.3s;
}
.sc-auth-forgot:hover {
	opacity: 0.8;
	color: var(--sc-primary-color);
}

/* Buttons */
.sc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 30px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Cairo', sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	line-height: 1.5;
}
.sc-btn--primary {
	background: var(--sc-primary-color);
	color: #fff;
}
.sc-btn--primary:hover {
	background: var(--sc-secondary-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.sc-btn--block {
	display: flex;
	width: 100%;
}
.sc-btn i {
	font-size: 14px;
}

/* OTP Section */
.sc-otp-section {
	margin-bottom: 18px;
}
.sc-otp-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: rgba(255, 90, 60, 0.06);
	border: 1px solid rgba(255, 90, 60, 0.15);
	border-radius: 10px;
	color: var(--sc-primary-color);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}
.sc-otp-notice--success {
	background: rgba(10, 154, 115, 0.06);
	border-color: rgba(10, 154, 115, 0.15);
	color: var(--ltn__secondary-color);
}
.sc-otp-notice i {
	font-size: 16px;
	flex-shrink: 0;
}
.sc-otp-input {
	text-align: center;
	font-size: 20px !important;
	font-weight: 700;
	letter-spacing: 6px;
}
.sc-otp-actions {
	text-align: center;
	margin-bottom: 16px;
}
.sc-otp-resend {
	background: none;
	border: none;
	color: var(--sc-primary-color);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Cairo', sans-serif;
	padding: 6px 10px;
	transition: opacity 0.3s;
}
.sc-otp-resend:disabled {
	color: #aaa;
	cursor: not-allowed;
}
.sc-otp-resend:not(:disabled):hover {
	opacity: 0.8;
}
.sc-otp-timer {
	font-weight: 800;
}

/* Reset Steps */
.sc-reset-step {
	display: none;
}
.sc-reset-step.active {
	display: block;
}

/* OTP Send Button */
.sc-otp-send-btn {
	margin-bottom: 0;
}

/* Auth Footer */
.sc-auth-footer {
	text-align: center;
	margin-top: 24px;
}
.sc-auth-footer a {
	color: #888;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s;
}
.sc-auth-footer a:hover {
	color: var(--sc-primary-color);
}

/* Privacy Text */
.sc-privacy-text {
	font-size: 12px;
	color: #999;
	margin-bottom: 20px;
	line-height: 1.7;
}
.sc-privacy-text a {
	color: var(--sc-primary-color);
}

/* Password Strength Meter */
.sc-auth-card .woocommerce-password-strength {
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	margin-top: -8px;
	margin-bottom: 16px;
	font-family: 'Cairo', sans-serif;
}
.sc-auth-card .woocommerce-password-strength.short {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}
.sc-auth-card .woocommerce-password-strength.bad {
	background: rgba(255, 152, 0, 0.1);
	color: #e68a00;
}
.sc-auth-card .woocommerce-password-strength.good {
	background: rgba(0, 150, 136, 0.1);
	color: #009688;
}
.sc-auth-card .woocommerce-password-strength.strong {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
}
.sc-auth-card .woocommerce-password-hint {
	font-size: 12px;
	color: #999;
	margin-bottom: 14px;
	display: block;
}

/* WooCommerce Notices / Alerts */
.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	font-family: 'Cairo', sans-serif;
}
.woocommerce-error,
ul.woocommerce-error {
	background: rgba(220, 53, 69, 0.08);
	border: 1.5px solid rgba(220, 53, 69, 0.25);
	border-radius: 12px;
	padding: 14px 20px;
	margin-bottom: 20px;
	color: #dc3545;
	font-size: 14px;
	font-weight: 600;
	list-style: none;
}
.woocommerce-error li {
	list-style: none;
}
.woocommerce-error li::before {
	content: "\f057";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-inline-end: 8px;
}
.woocommerce-message {
	background: rgba(40, 167, 69, 0.08);
	border: 1.5px solid rgba(40, 167, 69, 0.25);
	border-radius: 12px;
	padding: 14px 20px;
	margin-bottom: 20px;
	color: #28a745;
	font-size: 14px;
	font-weight: 600;
}
.woocommerce-message::before {
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-inline-end: 8px;
}
.woocommerce-info {
	background: rgba(13, 110, 253, 0.08);
	border: 1.5px solid rgba(13, 110, 253, 0.25);
	border-radius: 12px;
	padding: 14px 20px;
	margin-bottom: 20px;
	color: #0d6efd;
	font-size: 14px;
	font-weight: 600;
}
.woocommerce-info::before {
	content: "\f05a";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-inline-end: 8px;
}

/* Auth Responsive */
@media (max-width: 575px) {
	.sc-auth-card {
		padding: 28px 20px;
	}
	.sc-auth-tab {
		padding: 14px 16px;
		font-size: 13px;
	}
	.sc-auth-card__icon {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}
	.sc-auth-card__title {
		font-size: 20px;
	}
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY MENU – Product Preview Hover Panel (Full-width overlay)
   ══════════════════════════════════════════════════════════════ */

/* Category count badge */
.sc-cat-count {
	font-size: 12px;
	color: #999;
	font-weight: 400;
	margin-inline-start: 2px;
}

/* The hover panel – covers the entire slider area */
.sc-cat-products-panel {
	position: absolute;
	left: 100%;
	top: 0;
	width: calc(300% + 20px);
	min-height: 100%;
	background: #fff;
	border-radius: 0 14px 14px 0;
	box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	z-index: 200;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
[dir="rtl"] .sc-cat-products-panel {
	left: auto;
	right: 100%;
	border-radius: 14px 0 0 14px;
	box-shadow: -4px 4px 30px rgba(0, 0, 0, 0.15);
	transform: translateX(-10px);
}

/* Show on hover */
.sc-cat-has-products:hover > .sc-cat-products-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Panel Header */
.sc-cat-products-panel__header {
	padding: 20px 28px 16px;
	border-bottom: 1px solid #f0f0f0;
}
.sc-cat-products-panel__header span {
	font-size: 18px;
	font-weight: 800;
	color: var(--sc-secondary-color);
}

/* Product List – horizontal grid of 3 */
.sc-cat-products-panel__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	flex: 1;
}

/* Product Item – card style in grid */
.sc-cat-products-panel__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 24px 16px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
	border-inline-end: 1px solid #f0f0f0;
}
.sc-cat-products-panel__item:last-child {
	border-inline-end: none;
}
.sc-cat-products-panel__item:hover {
	background: #f8f9fa;
}

/* Product Thumbnail – larger */
.sc-cat-products-panel__item img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 12px;
	flex-shrink: 0;
	background: #f5f7f9;
	border: 1px solid #eee;
}

/* Product Info */
.sc-cat-products-panel__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	width: 100%;
}
.sc-cat-products-panel__name {
	font-size: 13px;
	font-weight: 600;
	color: var(--sc-secondary-color);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
	transition: color 0.2s;
}
.sc-cat-products-panel__item:hover .sc-cat-products-panel__name {
	color: var(--sc-primary-color);
}
.sc-cat-products-panel__price {
	font-size: 14px;
	color: var(--sc-primary-color);
	font-weight: 700;
}
.sc-cat-products-panel__price del {
	color: #999;
	font-weight: 400;
	margin-inline-end: 5px;
	font-size: 12px;
}

/* View All Link – styled bottom bar */
.sc-cat-products-panel__view-all {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	background: linear-gradient(135deg, #071C1F 0%, var(--ltn__secondary-color) 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s, opacity 0.3s;
}
.sc-cat-products-panel__view-all:hover {
	color: #fff;
	gap: 14px;
	opacity: 0.9;
}
.sc-cat-products-panel__view-all i {
	font-size: 13px;
	transition: transform 0.3s;
}

/* Arrow indicator on category items that have products */
.sc-cat-has-products > a::after {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 10px;
	float: right;
	color: #ccc;
	margin-top: 3px;
	transition: color 0.2s;
}
[dir="rtl"] .sc-cat-has-products > a::after {
	content: "\f053";
	float: left;
}
.sc-cat-has-products:hover > a::after {
	color: var(--sc-primary-color);
}

/* Hide panel on mobile */
@media (max-width: 991px) {
	.sc-cat-products-panel {
		display: none;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.sc-cat-products-panel {
		width: calc(300% + 10px);
	}
	.sc-cat-products-panel__item img {
		width: 80px;
		height: 80px;
	}
}

/* ══════════════════════════════════════════════════════════════
   SWIPER SLIDER – Custom Styling
   ══════════════════════════════════════════════════════════════ */

/* ── Navigation Arrows ──────────────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	color: var(--sc-secondary-color);
	transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--sc-primary-color);
	color: #fff;
	box-shadow: 0 4px 15px rgba(255, 90, 60, 0.3);
}
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 16px;
	font-weight: 700;
}

/* ── Pagination Dots ────────────────────────────────────────── */
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	transition: all 0.3s;
}
.swiper-pagination-bullet-active {
	background: var(--sc-primary-color);
	width: 28px;
	border-radius: 6px;
}

/* ── Hero Slider ────────────────────────────────────────────── */
.sc-hero-slider {
	border-radius: 12px;
	overflow: hidden;
}
.sc-hero-slider .swiper-slide {
	overflow: hidden;
}
.sc-hero-slider .ltn__slide-item {
	min-height: 450px;
	display: flex;
	align-items: center;
}
/* Fix: Vicodin hides slide text expecting .slick-current; Swiper uses .swiper-slide-active */
.swiper-slide-active .ltn__slide-animation > *,
.ltn__slide-animation-active .ltn__slide-animation > * {
	opacity: 1 !important;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.sc-hero-slider .swiper-pagination {
	bottom: 20px;
}
.sc-hero-slider .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
}
.sc-hero-slider .swiper-pagination-bullet-active {
	background: #fff;
}
@media (max-width: 991px) {
	.sc-hero-slider .ltn__slide-item {
		min-height: 350px;
	}
}
@media (max-width: 575px) {
	.sc-hero-slider .ltn__slide-item {
		min-height: 280px;
	}
	.sc-hero-slider .slide-title {
		font-size: 22px !important;
	}
}

/* ── Overflow fix for slider sections ──────────────────────── */
.ltn__product-area,
.ltn__product-tab-area,
.ltn__testimonial-area,
.ltn__brand-logo-area,
.ltn__blog-area {
	overflow-x: clip;
}

/* ── Mobile-Only Sliders (Features, Banners, Blog) ────────── */
/* When Swiper is disabled (desktop), slides act as a grid row */
.sc-features-mobile-slider.swiper:not(.swiper-initialized) .swiper-wrapper,
.sc-banners-mobile-slider.swiper:not(.swiper-initialized) .swiper-wrapper,
.sc-blog-mobile-slider.swiper:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.sc-features-mobile-slider.swiper:not(.swiper-initialized) .swiper-slide {
	width: 25%;
	flex: 0 0 25%;
}
.sc-banners-mobile-slider.swiper:not(.swiper-initialized) .swiper-slide {
	width: 33.3333%;
	flex: 0 0 33.3333%;
	padding: 0 15px;
	box-sizing: border-box;
}
.sc-banners-mobile-slider.swiper:not(.swiper-initialized) .swiper-wrapper {
	margin: 0 -15px;
}
.sc-blog-mobile-slider.swiper:not(.swiper-initialized) .swiper-slide {
	width: 33.3333%;
	flex: 0 0 33.3333%;
	padding: 0 15px;
	box-sizing: border-box;
}
.sc-blog-mobile-slider.swiper:not(.swiper-initialized) .swiper-wrapper {
	margin: 0 -15px;
}
/* Hide pagination dots on desktop */
.sc-features-mobile-slider.swiper:not(.swiper-initialized) .swiper-pagination,
.sc-banners-mobile-slider.swiper:not(.swiper-initialized) .swiper-pagination,
.sc-blog-mobile-slider.swiper:not(.swiper-initialized) .swiper-pagination {
	display: none;
}
/* Mobile: full-width slides with pagination */
@media (max-width: 767px) {
	.sc-features-mobile-slider .swiper-slide,
	.sc-banners-mobile-slider .swiper-slide,
	.sc-blog-mobile-slider .swiper-slide {
		height: auto;
	}
	.sc-features-mobile-slider,
	.sc-banners-mobile-slider,
	.sc-blog-mobile-slider {
		padding-bottom: 40px;
	}
}

/* ── Product Slider ─────────────────────────────────────────── */
.sc-product-slider,
.sc-product-tab-slider {
	padding: 10px 5px 40px;
}
.sc-product-slider .swiper-button-next,
.sc-product-slider .swiper-button-prev,
.sc-product-tab-slider .swiper-button-next,
.sc-product-tab-slider .swiper-button-prev {
	top: 40%;
}
.sc-product-slider .swiper-button-prev,
.sc-product-tab-slider .swiper-button-prev {
	left: 5px;
}
.sc-product-slider .swiper-button-next,
.sc-product-tab-slider .swiper-button-next {
	right: 5px;
}
[dir="rtl"] .sc-product-slider .swiper-button-prev,
[dir="rtl"] .sc-product-tab-slider .swiper-button-prev {
	left: auto;
	right: 5px;
}
[dir="rtl"] .sc-product-slider .swiper-button-next,
[dir="rtl"] .sc-product-tab-slider .swiper-button-next {
	right: auto;
	left: 5px;
}
@media (max-width: 991px) {
	.sc-product-slider .swiper-button-next,
	.sc-product-slider .swiper-button-prev,
	.sc-product-tab-slider .swiper-button-next,
	.sc-product-tab-slider .swiper-button-prev {
		display: none;
	}
}

/* ── Testimonial Slider ─────────────────────────────────────── */
.sc-testimonial-slider {
	padding-bottom: 50px;
}
.sc-testimonial-slider .swiper-slide {
	height: auto;
}
.sc-testimonial-slider .ltn__testimonial-item {
	background: #fff;
	border-radius: 14px;
	padding: 30px 28px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}
.sc-testimonial-slider .swiper-slide-active .ltn__testimonial-item {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.sc-testimonial-slider .ltn__testimoni-info {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.sc-testimonial-slider .ltn__testimoni-name-designation h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin: 0 0 4px;
}
.sc-testimonial-slider .ltn__testimoni-name-designation h6 {
	font-size: 13px;
	font-weight: 600;
	color: var(--ltn__secondary-color);
	margin: 0;
}
.sc-testimonial-slider .ltn__testimoni-rating {
	margin-bottom: 12px;
}
.sc-testimonial-slider .product-ratting ul {
	display: flex;
	gap: 3px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.sc-testimonial-slider .product-ratting ul li a {
	color: #ffc107;
	font-size: 14px;
}
.sc-testimonial-slider .ltn__testimoni-info-inner p {
	font-size: 14px;
	line-height: 1.75;
	color: #666;
	margin: 0;
}
.sc-testimonial-slider .swiper-pagination {
	bottom: 0;
}
.sc-testimonial-slider .swiper-button-next,
.sc-testimonial-slider .swiper-button-prev {
	top: 45%;
}
@media (max-width: 991px) {
	.sc-testimonial-slider .swiper-button-next,
	.sc-testimonial-slider .swiper-button-prev {
		display: none;
	}
}

/* ── Brand Logos Slider ─────────────────────────────────────── */
.sc-brand-slider .ltn__brand-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	padding: 10px;
}
.sc-brand-slider .ltn__brand-logo-item img {
	max-height: 60px;
	max-width: 140px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: filter 0.3s, opacity 0.3s;
}
.sc-brand-slider .ltn__brand-logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   SECTION DESIGN IMPROVEMENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Section Titles ─────────────────────────────────────────── */
.section-title-area .section-title {
	color: var(--sc-secondary-color);
	font-weight: 800;
	position: relative;
}
.section-title-area.text-center .section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--sc-primary-color);
	margin: 15px auto 0;
	border-radius: 2px;
}

/* ── Blog Section Cards Improvement ─────────────────────────── */
.ltn__blog-item.ltn__blog-item-3 {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 30px;
}
.ltn__blog-item.ltn__blog-item-3:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-img {
	position: relative;
	overflow: hidden;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-img img {
	transition: transform 0.5s;
}
.ltn__blog-item.ltn__blog-item-3:hover .ltn__blog-img img {
	transform: scale(1.06);
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-date {
	background: var(--sc-primary-color);
	border-radius: 8px;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-brief {
	padding: 22px 24px 24px;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-category a {
	background: rgba(255, 90, 60, 0.1);
	color: var(--sc-primary-color);
	border-radius: 20px;
	padding: 4px 14px;
	font-size: 12px;
	font-weight: 700;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-category a:hover {
	background: var(--sc-primary-color);
	color: #fff;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-title a {
	color: var(--sc-secondary-color);
	transition: color 0.2s;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-title a:hover {
	color: var(--sc-primary-color);
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-btn a {
	color: var(--sc-primary-color);
	font-weight: 700;
}
.ltn__blog-item.ltn__blog-item-3 .ltn__blog-meta .ltn__blog-date i {
	color: var(--sc-primary-color);
}

/* ── Features Section Improvement ───────────────────────────── */
.ltn__feature-item-box-wrap {
	border-radius: 14px !important;
	border: 1.5px solid #e8e8e8 !important;
	overflow: hidden;
}
.ltn__feature-item.ltn__feature-item-8 {
	text-align: center;
	padding: 30px 20px;
	border-bottom: none;
	transition: background 0.3s;
}
.ltn__feature-item.ltn__feature-item-8:hover {
	background: #f8f9fa;
}
.ltn__feature-item.ltn__feature-item-8 .ltn__feature-icon {
	margin-bottom: 14px;
}
.ltn__feature-item.ltn__feature-item-8 .ltn__feature-icon i {
	color: var(--ltn__secondary-color) !important;
	font-size: 36px !important;
}
.ltn__feature-item.ltn__feature-item-8 .ltn__feature-info h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--sc-secondary-color);
	margin-bottom: 6px;
}
.ltn__feature-item.ltn__feature-item-8 .ltn__feature-info p {
	font-size: 13px;
	color: #888;
	margin: 0;
	line-height: 1.6;
}

/* ── About Section Improvement ──────────────────────────────── */
.about-us-img-wrap {
	border-radius: 14px;
	overflow: hidden;
}
.ltn__list-item-1 ul {
	list-style: none;
	padding: 0;
}
.ltn__list-item-1 ul li {
	padding: 6px 0;
	font-size: 15px;
	color: #555;
}
.ltn__list-item-1 ul li .fas.fa-check-circle {
	color: var(--ltn__secondary-color);
	margin-inline-end: 8px;
}

/* ── Countdown / CTA Section Improvement ────────────────────── */
.ltn__call-to-action-area h6.ltn__secondary-color {
	color: var(--ltn__secondary-color) !important;
	font-weight: 700;
	letter-spacing: 1px;
}
.ltn__call-to-action-area .theme-btn-1 {
	border-radius: 10px;
	padding: 14px 36px;
	font-weight: 700;
}

/* ── Banner Cards Improvement ───────────────────────────────── */
.ltn__banner-item {
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.ltn__banner-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
