/* Homepage (Syarah-inspired) — scoped to .sy-theme / .sy-* */

.sy-theme .top {
	display: none !important;
}

.sy-theme .navbar-area {
	border-bottom: 1px solid #eef0f4;
	background: #fff;
}

.sy-theme .main-nav {
	background: #fff;
}

.sy-theme {
	--sy-blue: #0b1f4a;
	--sy-blue-soft: #1a3a6b;
	--sy-orange: #ff5722;
	--sy-green: #1f9d55;
	--sy-bg: #f5f7fb;
	--sy-border: #e6e9f0;
	--sy-muted: #6b7280;
	background: #fff;
}

.sy-theme .sy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.sy-theme .sy-btn--primary {
	background: var(--sy-orange);
	color: #fff;
	border-color: var(--sy-orange);
}

.sy-theme .sy-btn--primary:hover {
	background: #e64a19;
	color: #fff;
	border-color: #e64a19;
}

.sy-theme .sy-btn--outline {
	background: #fff;
	color: var(--sy-blue);
	border-color: var(--sy-blue);
}

.sy-theme .sy-btn--outline:hover {
	background: var(--sy-blue);
	color: #fff;
}

.sy-theme .sy-link {
	display: inline-block;
	margin-top: 20px;
	color: var(--sy-blue-soft);
	font-weight: 600;
	text-decoration: none;
}

.sy-theme .sy-link:hover {
	color: var(--sy-orange);
}

/* Hero */
.sy-theme .sy-hero {
	position: relative;
	min-height: 420px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	padding: 80px 0 120px;
}

.sy-theme .sy-hero__overlay {
	position: absolute;
	inset: 0;
	background: #0b1f4a;
	opacity: 0.45;
}

.sy-theme .sy-hero__inner {
	position: relative;
	z-index: 1;
}

.sy-theme .sy-hero__content {
	max-width: 640px;
}

.sy-theme .sy-hero__title {
	display: inline-block;
	margin: 0 0 12px;
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.45;
	border-radius: 12px;
}

.sy-theme .sy-hero__text {
	margin: 0 0 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Overlapping widget */
.sy-theme .sy-widget-wrap {
	position: relative;
	z-index: 2;
	margin-top: -70px;
	padding-bottom: 20px;
}

.sy-theme .sy-widget {
	background: #fff;
	border: 1px solid var(--sy-border);
	border-radius: 18px;
	padding: 24px 24px 16px;
	box-shadow: 0 8px 28px rgba(11, 31, 74, 0.08);
}

.sy-theme .sy-search {
	position: relative;
	margin-bottom: 20px;
}

.sy-theme .sy-search__input {
	width: 100%;
	height: 52px;
	border: 1px solid #d7dbe5;
	border-radius: 12px;
	padding: 0 18px 0 52px;
	font-size: 16px;
	color: var(--sy-blue);
	background: #fff;
}

.sy-theme .sy-search__input:focus {
	outline: none;
	border-color: var(--sy-blue-soft);
}

.sy-theme .sy-search__btn {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--sy-muted);
	font-size: 18px;
	cursor: pointer;
}

/* Category cards */
.sy-theme .sy-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.sy-theme .sy-cat {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.2s ease, background 0.2s ease;
	min-height: 84px;
}

.sy-theme .sy-cat:hover {
	border-color: #c5cce0;
	background: #fafbff;
	text-decoration: none;
}

.sy-theme .sy-cat__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	color: #fff;
}

.sy-theme .sy-cat__icon--used { background: #e53935; }
.sy-theme .sy-cat__icon--new { background: #1e88e5; }
.sy-theme .sy-cat__icon--sell { background: #3949ab; }
.sy-theme .sy-cat__icon--finance { background: #00897b; }

.sy-theme .sy-cat__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.sy-theme .sy-cat__body strong {
	color: var(--sy-blue);
	font-size: 15px;
	font-weight: 700;
}

.sy-theme .sy-cat__body small {
	color: var(--sy-muted);
	font-size: 12px;
}

/* Brands strip */
.sy-theme .sy-brands {
	border-top: 1px solid var(--sy-border);
	padding-top: 18px;
}

.sy-theme .sy-brands__heading {
	margin: 0 0 16px;
	color: var(--sy-blue);
	font-size: 18px;
	font-weight: 700;
	text-align: right;
}

.sy-theme .sy-brands__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 8px;
}

.sy-theme .sy-brand {
	flex: 1 1 90px;
	max-width: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--sy-muted);
	font-size: 12px;
}

.sy-theme .sy-brand img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.sy-theme .sy-brand:hover {
	color: var(--sy-blue);
	text-decoration: none;
}

.sy-theme .sy-brands__all {
	display: block;
	text-align: center;
	margin-top: 18px;
	padding-top: 12px;
	color: var(--sy-blue-soft);
	font-weight: 600;
	text-decoration: none;
}

.sy-theme .sy-brands__all:hover {
	color: var(--sy-orange);
}

.sy-theme .sy-brands__all i {
	margin-right: 6px;
	font-size: 12px;
}

/* Sections */
.sy-theme .sy-section {
	padding: 48px 0;
}

.sy-theme .sy-section__title {
	margin: 0 0 8px;
	text-align: center;
	color: var(--sy-blue);
	font-size: 26px;
	font-weight: 800;
}

.sy-theme .sy-section__sub {
	margin: 0 0 28px;
	text-align: center;
	color: var(--sy-muted);
	font-size: 15px;
}

.sy-theme .sy-section__cta {
	margin-top: 28px;
	text-align: center;
}

/* Listing cards */
.sy-theme .sy-listings {
	background: #fff;
}

.sy-theme .sy-listings__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 24px;
}

.sy-theme .sy-card {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s ease;
}

.sy-theme .sy-card:hover {
	border-color: #c9d0e0;
}

.sy-theme .sy-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f0f2f7;
	overflow: hidden;
}

.sy-theme .sy-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sy-theme .sy-card__wish {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--sy-blue);
	text-decoration: none;
}

.sy-theme .sy-card__wish:hover {
	color: var(--sy-orange);
}

.sy-theme .sy-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #2e7d32;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 6px;
}

.sy-theme .sy-card__body {
	padding: 14px;
}

.sy-theme .sy-card__title {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.sy-theme .sy-card__title a {
	color: #111827;
	text-decoration: none;
}

.sy-theme .sy-card__title a:hover {
	color: var(--sy-blue);
}

.sy-theme .sy-card__price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--sy-border);
}

.sy-theme .sy-card__price-label {
	font-size: 12px;
	color: var(--sy-muted);
}

.sy-theme .sy-card__price strong {
	color: var(--sy-green);
	font-size: 18px;
	font-weight: 800;
}

.sy-theme .sy-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-size: 12px;
	color: var(--sy-muted);
}

.sy-theme .sy-card__meta i {
	color: var(--sy-orange);
	margin-left: 3px;
}

/* Why */
.sy-theme .sy-why {
	background: var(--sy-bg);
}

.sy-theme .sy-why__box {
	background: #eef3fb;
	border-radius: 18px;
	padding: 36px 24px;
	text-align: center;
}

.sy-theme .sy-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 28px;
}

.sy-theme .sy-why__item {
	background: var(--sy-blue);
	color: #fff;
	border-radius: 14px;
	padding: 22px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-height: 160px;
}

.sy-theme .sy-why__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.sy-theme .sy-why__item strong {
	font-size: 15px;
	font-weight: 700;
}

.sy-theme .sy-why__item small {
	font-size: 12px;
	opacity: 0.85;
	line-height: 1.5;
}

/* How */
.sy-theme .sy-how {
	background: #fafbfc;
}

.sy-theme .sy-how__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 32px;
}

.sy-theme .sy-how__step {
	text-align: center;
	padding: 8px;
}

.sy-theme .sy-how__num {
	display: block;
	color: var(--sy-blue);
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 10px;
}

.sy-theme .sy-how__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #e8eef8;
	color: var(--sy-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}

.sy-theme .sy-how__step strong {
	display: block;
	color: var(--sy-blue);
	font-size: 16px;
	margin-bottom: 8px;
}

.sy-theme .sy-how__step p {
	margin: 0;
	color: var(--sy-muted);
	font-size: 13px;
	line-height: 1.6;
}

/* Cities */
.sy-theme .sy-cities__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.sy-theme .sy-city {
	display: block;
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.2s ease;
}

.sy-theme .sy-city:hover {
	border-color: #c9d0e0;
	text-decoration: none;
}

.sy-theme .sy-city__photo {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eef0f4;
}

.sy-theme .sy-city__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sy-theme .sy-city__text {
	padding: 12px 14px;
	text-align: center;
}

.sy-theme .sy-city__text strong {
	display: block;
	color: var(--sy-blue);
	font-size: 16px;
	margin-bottom: 4px;
}

.sy-theme .sy-city__text small {
	color: var(--sy-muted);
	font-size: 13px;
}

/* Responsive */
@media (max-width: 1199px) {
	.sy-theme .sy-listings__grid,
	.sy-theme .sy-cities__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991px) {
	.sy-theme .sy-cats,
	.sy-theme .sy-why__grid,
	.sy-theme .sy-how__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sy-theme .sy-listings__grid,
	.sy-theme .sy-cities__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sy-theme .sy-hero {
		min-height: 360px;
		padding: 60px 0 100px;
	}

	.sy-theme .sy-hero__title {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.sy-theme .sy-widget-wrap {
		margin-top: -40px;
	}

	.sy-theme .sy-widget {
		padding: 16px 14px 12px;
		border-radius: 14px;
	}

	.sy-theme .sy-cats {
		grid-template-columns: 1fr;
	}

	.sy-theme .sy-listings__grid,
	.sy-theme .sy-cities__grid,
	.sy-theme .sy-why__grid,
	.sy-theme .sy-how__grid {
		grid-template-columns: 1fr;
	}

	.sy-theme .sy-hero {
		min-height: 300px;
		padding: 48px 0 80px;
	}

	.sy-theme .sy-hero__title {
		font-size: 18px;
		padding: 8px 12px;
	}

	.sy-theme .sy-section__title {
		font-size: 22px;
	}

	.sy-theme .sy-brands__row {
		justify-content: center;
	}
}

/* LTR tweak for search icon position */
html[dir="ltr"] .sy-theme .sy-search__input,
body.ltr .sy-theme .sy-search__input {
	padding: 0 52px 0 18px;
}

html[dir="ltr"] .sy-theme .sy-search__btn,
body.ltr .sy-theme .sy-search__btn {
	left: auto;
	right: 8px;
}

/* =========================================================
   Global theme — all pages (header, banner, content, cards)
   ========================================================= */

.sy-theme {
	font-family: "Jost", "Tajawal", "Segoe UI", sans-serif;
	color: #1f2937;
}

.sy-theme .navbar-area,
.sy-theme .navbar-area.is-sticky {
	background: #fff !important;
	border-bottom: 1px solid var(--sy-border);
	box-shadow: none;
}

.sy-theme .main-nav nav .navbar-nav .nav-item a {
	color: var(--sy-blue) !important;
	font-weight: 600;
}

.sy-theme .main-nav nav .navbar-nav .nav-item a:hover,
.sy-theme .main-nav nav .navbar-nav .nav-item a.active,
.sy-theme .main-nav nav .navbar-nav .nav-item:hover a {
	color: var(--sy-orange) !important;
}

.sy-theme .main-nav .navbar-brand img,
.sy-theme .mobile-nav img {
	max-height: 52px;
	width: auto;
	object-fit: contain;
}

.sy-theme.mean-container .logo img,
.sy-theme .mean-container .logo img {
	max-height: 48px;
	width: auto;
	object-fit: contain;
}

/* Mobile hamburger — orange like homepage */
.sy-theme.mean-container .mean-bar,
.sy-theme .mean-container .mean-bar {
	background: #fff !important;
	border-bottom: 1px solid var(--sy-border);
	height: 64px;
}

.sy-theme.mean-container a.meanmenu-reveal,
.sy-theme .mean-container a.meanmenu-reveal {
	color: var(--sy-orange) !important;
	top: 8px;
}

.sy-theme.mean-container a.meanmenu-reveal span,
.sy-theme .mean-container a.meanmenu-reveal span {
	background: var(--sy-orange) !important;
}

.sy-theme.mean-container .mean-nav,
.sy-theme .mean-container .mean-nav {
	background: #fff;
	border-top: 1px solid var(--sy-border);
}

.sy-theme.mean-container .mean-nav ul li a,
.sy-theme .mean-container .mean-nav ul li a {
	color: var(--sy-blue) !important;
	border-color: var(--sy-border) !important;
	font-weight: 600;
}

.sy-theme.mean-container .mean-nav ul li a:hover,
.sy-theme.mean-container .mean-nav ul li a.active,
.sy-theme .mean-container .mean-nav ul li a:hover,
.sy-theme .mean-container .mean-nav ul li a.active {
	color: var(--sy-orange) !important;
	background: #fafbff;
}

/* Page banner */
.sy-theme .page-banner {
	background-color: var(--sy-blue) !important;
	padding-top: 48px;
	padding-bottom: 56px;
	overflow: hidden;
}

.sy-theme .page-banner .page-banner-bg {
	background: var(--sy-blue);
	opacity: 0.55;
}

.sy-theme .page-banner h1 {
	font-size: 30px;
	font-weight: 800;
	padding-top: 12px;
	letter-spacing: 0;
}

.sy-theme .page-banner .breadcrumb-item,
.sy-theme .page-banner .breadcrumb-item a,
.sy-theme .page-banner .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 500;
	font-size: 14px;
}

@media only screen and (max-width: 991px) {
	.sy-theme .page-banner {
		padding-top: 40px !important;
		padding-bottom: 48px;
	}

	.sy-theme .page-banner h1 {
		font-size: 24px;
	}
}

/* Content sheet overlapping banner */
.sy-theme .page-content {
	position: relative;
	z-index: 2;
	margin-top: -28px;
	padding-top: 28px;
	padding-bottom: 48px;
	background: #fff;
	border-radius: 24px 24px 0 0;
}

.sy-theme .page-content.pt_0 {
	padding-top: 28px !important;
}

.sy-theme .contact-page-map {
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 24px;
}

/* Filters */
.sy-theme .listing-filter {
	border: 1px solid var(--sy-border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.sy-theme .listing-filter .lf-heading {
	background: #fff;
	color: var(--sy-blue);
	font-weight: 800;
	border-bottom: 2px solid var(--sy-orange);
	padding: 14px 16px;
}

.sy-theme .listing-filter .lf-widget {
	padding: 14px 16px;
	border-bottom: 1px solid var(--sy-border);
}

.sy-theme .listing-filter .lf-widget h2 {
	color: var(--sy-blue);
	font-size: 15px;
	font-weight: 700;
}

.sy-theme .listing-filter .form-control,
.sy-theme .listing-filter select.form-control,
.sy-theme .form-control,
.sy-theme .reg-login-form input,
.sy-theme .reg-login-form select,
.sy-theme .reg-login-form textarea,
.sy-theme .contact-form input,
.sy-theme .contact-form textarea,
.sy-theme .contact-form select {
	border: 1px solid #d7dbe5;
	border-radius: 10px;
	height: auto;
	min-height: 44px;
	padding: 10px 14px;
	font-size: 15px;
	color: var(--sy-blue);
}

.sy-theme textarea.form-control,
.sy-theme .contact-form textarea,
.sy-theme .reg-login-form textarea {
	min-height: 120px;
}

.sy-theme .listing-filter .form-control:focus,
.sy-theme .form-control:focus {
	border-color: var(--sy-blue-soft);
	box-shadow: none;
}

.sy-theme .filter-button,
.sy-theme .contact-form .btn,
.sy-theme .reg-login-form button,
.sy-theme .pricing .btn,
.sy-theme .comment button {
	border-radius: 10px !important;
	font-weight: 700;
	padding: 10px 20px;
	border: 0;
}

/* Listing cards sitewide */
.sy-theme .listing .listing-item {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	box-shadow: none;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s ease;
}

.sy-theme .listing .listing-item:hover {
	border-color: #c9d0e0;
}

.sy-theme .listing .listing-item .photo,
.sy-theme .listing .listing-item .photo img {
	border-radius: 0;
}

.sy-theme .listing .listing-item .photo .wishlist i {
	background: rgba(255, 255, 255, 0.92);
	color: var(--sy-blue);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
}

.sy-theme .listing .listing-item .photo .brand a {
	border-radius: 6px;
	font-weight: 600;
}

.sy-theme .listing .listing-item .photo .featured-text {
	border-radius: 0 0 8px 0;
}

.sy-theme .listing .listing-item .text {
	padding: 14px;
}

.sy-theme .listing .listing-item .text h3 a {
	color: #111827;
	font-weight: 700;
}

.sy-theme .listing .listing-item .text .type-price .price {
	color: var(--sy-green);
	font-weight: 800;
}

.sy-theme .listing .listing-item .text .type-price .type .inner-new,
.sy-theme .listing .listing-item .text .type-price .type .inner-used {
	border-radius: 999px;
	font-weight: 600;
}

.sy-theme .listing .heading h2 {
	color: var(--sy-blue);
	font-weight: 800;
}

.sy-theme .popular-city .heading h2,
.sy-theme .faq .heading h2,
.sy-theme .pricing .heading h2 {
	color: var(--sy-blue);
	font-weight: 800;
}

.sy-theme .popular-city .popular-city-item {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: none;
}

/* Contact / about cards */
.sy-theme .contact-item {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	padding: 20px;
	background: #fff;
}

.sy-theme .contact-icon i {
	color: var(--sy-orange);
}

.sy-theme .faq .panel-default {
	border: 1px solid var(--sy-border);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 10px;
}

.sy-theme .pricing .card,
.sy-theme .pricing .pricing-item {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: none;
}

.sy-theme .reg-login-form {
	border: 1px solid var(--sy-border);
	border-radius: 16px;
	padding: 28px 24px;
	background: #fff;
}

.sy-theme .blog-item {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	padding-bottom: 16px;
}

.sy-theme .sidebar .widget {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	padding: 16px;
	background: #fff;
}

.sy-theme .listing-sidebar .ls-widget {
	border: 1px solid var(--sy-border);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}

.sy-theme .pagination .page-link {
	border-radius: 8px !important;
	margin: 0 3px;
	border-color: var(--sy-border);
	color: var(--sy-blue);
}

.sy-theme .pagination .page-item.active .page-link {
	background: var(--sy-orange);
	border-color: var(--sy-orange);
}

/* Footer */
.sy-theme .footer-area {
	background: var(--sy-blue);
	padding-top: 48px;
	margin-top: 0;
}

.sy-theme .footer-item h2 {
	color: #fff !important;
	font-weight: 700;
	font-size: 17px;
}

.sy-theme .footer-item ul li,
.sy-theme .footer-item ul li a {
	color: rgba(255, 255, 255, 0.82);
}

.sy-theme .footer-item ul li a:hover {
	color: var(--sy-orange) !important;
}

.sy-theme .footer-social-link ul li a {
	border-radius: 8px;
}

.sy-theme .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.7);
}

.sy-theme .scroll-top {
	border-radius: 10px;
	width: 42px;
	height: 42px;
	line-height: 42px;
}

/* Customer panel */
.sy-theme .customer-area,
.sy-theme .user-sidebar,
.sy-theme .dashboard-item {
	border-radius: 14px;
}

.sy-theme .user-sidebar {
	border: 1px solid var(--sy-border);
	overflow: hidden;
	background: #fff;
}

.sy-theme table.table {
	border: 1px solid var(--sy-border);
	border-radius: 12px;
	overflow: hidden;
}

.sy-theme .btn-primary,
.sy-theme .btn-success {
	border-radius: 10px;
	font-weight: 600;
}

@media (max-width: 575px) {
	.sy-theme .page-content {
		margin-top: -20px;
		border-radius: 18px 18px 0 0;
		padding-top: 20px;
	}
}

/* Listing detail / agent banners */
.sy-theme .listing-single-banner,
.sy-theme .agent-banner {
	position: relative;
	padding-top: 60px;
	padding-bottom: 70px;
}

.sy-theme .listing-single-banner .bg,
.sy-theme .agent-banner .bg {
	background: var(--sy-blue);
	opacity: 0.55;
}

.sy-theme .listing-single-banner h1,
.sy-theme .agent-banner h1 {
	font-weight: 800;
}

.sy-theme .listing-single-banner .price {
	color: #fff;
	font-weight: 700;
}

.sy-theme .listing-page,
.sy-theme .listing-page .container {
	position: relative;
	z-index: 2;
}

.sy-theme .dashboard-box {
	border-radius: 14px;
	border: 1px solid var(--sy-border);
	overflow: hidden;
}

.sy-theme .user-sidebar a,
.sy-theme .user-sidebar li a {
	border-radius: 8px;
}

.sy-theme .user-sidebar a:hover,
.sy-theme .user-sidebar li a.active,
.sy-theme .user-sidebar .active a {
	background: #f5f7fb;
	color: var(--sy-orange) !important;
}


