/* ===== Product Card ===== */
ul.products {
	display: flex !important;
	flex-direction: column;
	gap: 16px;
}
ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
}
.tnd-sl-card {
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tnd-sl-media {
	position: relative;
	background: #fafafa;
}
.tnd-sl-media img {
	width: 100%;
	height: auto;
	display: block;
}
.tnd-sl-rating-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #fff;
	border-radius: 20px;
	padding: 3px 10px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	z-index: 2;
}
.tnd-sl-wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	z-index: 2;
}
.tnd-sl-powered {
	position: absolute;
	top: 46px;
	left: 10px;
	background: #e6f7f5;
	color: #0a8f82;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.4px;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 2;
}
.tnd-sl-ar-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #14143c;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	text-decoration: none;
	z-index: 2;
}
.tnd-sl-body {
	padding: 14px 14px 12px;
}
.tnd-sl-name {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #1c1c3a;
	text-decoration: none;
	margin-bottom: 8px;
}
.tnd-sl-frame-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f6f6f9;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: 12px;
	color: #555;
	margin-bottom: 10px;
	flex-wrap: wrap;
	gap: 6px;
}
.tnd-sl-measure-btn {
	background: #0a8f6f;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
}
.tnd-sl-price-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 4px;
}
.tnd-sl-price {
	font-size: 17px;
	font-weight: 700;
	color: #1c1c3a;
}
.tnd-sl-lens-badge {
	font-size: 11px;
	color: #0a8f6f;
	font-weight: 600;
}
.tnd-sl-old-price {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}
.tnd-sl-discount {
	font-size: 12px;
	color: #d1461f;
	font-weight: 600;
}
.tnd-sl-coupon {
	font-size: 12px;
	color: #1c3aa9;
	margin-bottom: 10px;
}
.tnd-sl-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #f0f0f0;
	padding-top: 10px;
}
.tnd-sl-view-similar {
	font-size: 12px;
	font-weight: 600;
	color: #1c1c3a;
	text-decoration: none;
}
.tnd-sl-wa-btn {
	background: #25D366;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	text-decoration: none;
}

/* ===== Sticky bottom bar ===== */
.tnd-sl-stickybar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	z-index: 9998;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.tnd-sl-sb-btn {
	flex: 1;
	background: none;
	border: none;
	padding: 12px 6px;
	font-size: 13px;
	font-weight: 600;
	color: #1c1c3a;
	cursor: pointer;
}

/* ===== Slide-up sheets ===== */
.tnd-sl-sheet {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	background: #fff;
	border-radius: 14px 14px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
	transform: translateY(100%);
	transition: transform 0.25s ease;
	z-index: 9999;
	max-height: 70vh;
	overflow-y: auto;
}
.tnd-sl-sheet.tnd-sl-sheet-open {
	transform: translateY(0);
}
.tnd-sl-sheet-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	font-weight: 700;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}
.tnd-sl-sheet-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

/* ===== Grid (tile) view toggle ===== */
ul.products.tnd-sl-grid-view {
	flex-direction: row;
	flex-wrap: wrap;
}
ul.products.tnd-sl-grid-view li.product {
	width: calc(50% - 8px) !important;
}
ul.products.tnd-sl-grid-view .tnd-sl-name {
	font-size: 13px;
}
ul.products.tnd-sl-grid-view .tnd-sl-frame-row,
ul.products.tnd-sl-grid-view .tnd-sl-footer {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
