/* ====================================================================
   Shop List Page — tubatu-style layout (structural replica)
   ==================================================================== */
.sl-wrap {
	max-width: 1220px;
	margin: 0 auto;
	padding: 16px 10px 40px;
	color: #333;
	font-size: 14px;
}

/* Breadcrumb */
.sl-crumb {
	font-size: 12px;
	color: #888;
	margin-bottom: 12px;
}
.sl-crumb a { color: #888; text-decoration: none; }
.sl-crumb a:hover { color: #0679D4; }
.sl-crumb .sep { margin: 0 6px; color: #ccc; }

/* Two-column layout: 960 + 20 gap + 240 */
.sl-layout {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.sl-main { width: 960px; flex-shrink: 0; }
.sl-aside { width: 240px; flex-shrink: 0; }

/* ====================================================================
   Filter block
   ==================================================================== */
.sl-filter {
	background: #fff;
	border: 1px solid #eaeaea;
	margin-bottom: 12px;
}
.sl-filter__row {
	display: flex;
	align-items: flex-start;
	min-height: 41px;
	padding: 10px 18px;
	border-bottom: 1px dashed #eee;
	line-height: 21px;
}
.sl-filter__row:last-child { border-bottom: none; }
.sl-filter__label {
	width: 80px;
	flex-shrink: 0;
	color: #666;
	font-size: 13px;
	padding-top: 2px;
}
.sl-filter__items {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
}
.sl-filter__items a {
	display: inline-block;
	padding: 3px 12px;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	border-radius: 2px;
	transition: all .15s;
}
.sl-filter__items a:hover { color: #FF5A00; }
.sl-filter__items a.is-active {
	background: #FF5A00;
	color: #fff;
}

/* ====================================================================
   Sort bar
   ==================================================================== */
.sl-sortbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #eaeaea;
	padding: 0 18px;
	height: 44px;
	margin-bottom: 12px;
}
.sl-sortbar__tabs { display: flex; gap: 0; }
.sl-sortbar__tabs a {
	display: inline-block;
	padding: 0 18px;
	line-height: 44px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	border-right: 1px solid #eee;
	transition: color .15s;
}
.sl-sortbar__tabs a:first-child { padding-left: 0; }
.sl-sortbar__tabs a:last-child { border-right: none; }
.sl-sortbar__tabs a:hover { color: #FF5A00; }
.sl-sortbar__tabs a.is-active { color: #FF5A00; font-weight: 600; }
.sl-sortbar__total { font-size: 13px; color: #888; }
.sl-sortbar__total em { color: #FF5A00; font-style: normal; font-weight: 600; margin: 0 3px; }

/* ====================================================================
   Shop card — 960 x ~358
   ==================================================================== */
.sl-list { background: #fff; border: 1px solid #eaeaea; }
.sl-item {
	display: flex;
	padding: 30px 20px 30px 20px;
	border-bottom: 1px dashed #eaeaea;
	gap: 14px;
}
.sl-item:last-child { border-bottom: none; }
.sl-item__logo {
	width: 84px;
	height: 84px;
	flex-shrink: 0;
	display: block;
}
.sl-item__logo img {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	border: 1px solid #eaeaea;
	object-fit: cover;
	background: #fff;
}
.sl-item__body { flex: 1; min-width: 0; }

.sl-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.sl-item__name {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	text-decoration: none;
	line-height: 26px;
	max-width: 600px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sl-item__name:hover { color: #FF5A00; }
.sl-item__cta {
	display: inline-block;
	width: 120px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: #FF5A00;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	border-radius: 2px;
	transition: background .15s;
	flex-shrink: 0;
}
.sl-item__cta:hover { background: #e65200; color: #fff; }

.sl-item__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 13px;
	color: #888;
}
.sl-item__meta .stars { color: #FFA215; letter-spacing: 1px; }
.sl-item__meta .stars i { font-size: 13px; }
.sl-item__meta .score { color: #FF5A00; font-weight: 600; }
.sl-item__meta .cnt { color: #888; }
.sl-item__meta .cnt.no-review { font-style: italic; }
.sl-item__meta .sep { color: #ddd; }
.sl-item__meta .cases em { color: #FF5A00; font-style: normal; font-weight: 600; }

.sl-item__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}
.sl-item__tags .tag {
	display: inline-block;
	padding: 0 8px;
	height: 23px;
	line-height: 21px;
	font-size: 12px;
	color: #666;
	border: 1px solid rgba(102,102,102,.3);
	border-radius: 1px;
}
.sl-item__tags .tag--rank {
	background: #FFF0EC;
	color: #FF5921;
	border-color: #FFE0D8;
	font-weight: 500;
}

.sl-item__activity {
	margin-bottom: 12px;
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}
.sl-item__activity p {
	margin: 0 0 4px 0;
	padding-left: 22px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sl-item__activity p:last-child { margin-bottom: 0; }
.sl-item__activity .ico {
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 16px; height: 16px;
	background: #FFF0EC;
	border-radius: 50%;
	display: inline-block;
}
.sl-item__activity .ico-loc::before {
	content: "\F3E5";
	font-family: "bootstrap-icons";
	color: #FF5A00;
	font-size: 10px;
	position: absolute;
	left: 3px; top: 2px;
	background: none;
}
.sl-item__activity .ico-info::before {
	content: "\F431";
	font-family: "bootstrap-icons";
	color: #FF5A00;
	font-size: 10px;
	position: absolute;
	left: 3px; top: 2px;
	background: none;
}

.sl-item__cases {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.sl-item__case {
	display: block;
	width: 200px;
	height: 140px;
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
	flex-shrink: 0;
}
.sl-item__case img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.sl-item__case:hover img { transform: scale(1.05); }

/* Pagination */
.sl-pages {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding: 20px 0;
}

/* Empty state */
.sl-empty {
	background: #fff;
	border: 1px solid #eaeaea;
	padding: 80px 20px;
	text-align: center;
	color: #888;
}

/* ====================================================================
   Right sidebar widgets (240 wide)
   ==================================================================== */
.sl-aside__card {
	background: #fff;
	border: 1px solid #eaeaea;
	margin-bottom: 12px;
}
.sl-aside__title {
	padding: 0 15px;
	line-height: 42px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid #eaeaea;
}

/* Quote widget */
.sl-quote__head {
	padding: 18px 15px 12px;
	background: linear-gradient(135deg, #FF7A33, #FF5A00);
	color: #fff;
}
.sl-quote__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.sl-quote__sub { font-size: 12px; opacity: .9; }
.sl-quote__body { padding: 14px 15px 16px; }
.sl-quote__field { margin-bottom: 10px; }
.sl-quote__field label {
	display: block;
	font-size: 12px;
	color: #666;
	margin-bottom: 4px;
}
.sl-quote__field input {
	width: 100%;
	height: 34px;
	padding: 0 10px;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	font-size: 13px;
	box-sizing: border-box;
}
.sl-quote__field input:focus {
	outline: none;
	border-color: #FF5A00;
}
.sl-quote__btn {
	width: 100%;
	height: 40px;
	background: #FF5A00;
	color: #fff;
	border: none;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
.sl-quote__btn:hover { background: #e65200; }
.sl-quote__note {
	margin-top: 8px;
	font-size: 11px;
	color: #999;
	text-align: center;
}

/* Recommended shops */
.sl-rec__list { list-style: none; padding: 10px 15px; margin: 0; }
.sl-rec__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	font-size: 13px;
	border-bottom: 1px dashed #f0f0f0;
}
.sl-rec__list li:last-child { border-bottom: none; }
.sl-rec__list a {
	color: #333;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}
.sl-rec__list a:hover { color: #FF5A00; }
.sl-rec__list .rank {
	width: 18px; height: 18px;
	line-height: 18px;
	text-align: center;
	background: #ccc;
	color: #fff;
	font-size: 11px;
	flex-shrink: 0;
	border-radius: 2px;
}
.sl-rec__list .rank--1 { background: #FF5A00; }
.sl-rec__list .rank--2 { background: #FF8A4C; }
.sl-rec__list .rank--3 { background: #FFB088; }

/* Service assurance */
.sl-service__list { list-style: none; padding: 12px 15px; margin: 0; }
.sl-service__list li {
	padding: 6px 0 6px 24px;
	font-size: 13px;
	color: #555;
	position: relative;
}
.sl-service__list .ico-check::before {
	content: "\F26E";
	font-family: "bootstrap-icons";
	color: #FF5A00;
	font-size: 14px;
	position: absolute;
	left: 0; top: 6px;
}

/* Ad slot */
.sl-ad { border: none; }
.sl-ad a { display: block; }
.sl-ad__inner {
	background: linear-gradient(135deg, #2C4A6E, #0679D4);
	color: #fff;
	text-align: center;
	padding: 60px 16px;
	height: 240px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sl-ad__big { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.sl-ad__sub { font-size: 13px; opacity: .85; }
