/* KBS Bestsellers — matched to original design tokens */

.kbs-bs-section {
	width: 100%;
	box-sizing: border-box;
	background: hsl(40 33% 97%);
	padding: 48px 0;
}
@media (min-width: 768px) { .kbs-bs-section { padding: 64px 0; } }

.kbs-bs-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.kbs-bs-head { text-align: center; margin-bottom: 48px; }
.kbs-bs-badge {
	display: inline-block;
	background: hsl(345 65% 35%);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 9999px;
	margin-bottom: 16px;
}
.kbs-bs-heading {
	font-family: Georgia, "Playfair Display", "Times New Roman", serif;
	font-size: 30px;
	font-weight: 700;
	color: hsl(20 25% 15%);
	margin: 0 0 16px;
	line-height: 1.2;
}
@media (min-width: 640px) { .kbs-bs-heading { font-size: 36px; } }
.kbs-bs-subheading { font-size: 16px; color: hsl(20 15% 45%); margin: 0; }

/* 3-col layout: bangles 2/3, categories 1/3 */
.kbs-bs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 1024px) {
	.kbs-bs-grid { grid-template-columns: 2fr 1fr; }
}

.kbs-bs-coltitle {
	font-size: 20px;
	font-weight: 600;
	color: hsl(20 25% 15%);
	margin: 0 0 16px;
}

/* Top Bangles card grid */
.kbs-bs-bangles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
@media (min-width: 768px) {
	.kbs-bs-bangles-grid { grid-template-columns: repeat(3, 1fr); }
}

.kbs-bs-card {
	display: block;
	background: hsl(40 40% 98%);
	border: 1px solid hsl(40 25% 88%);
	border-radius: 14px;
	overflow: hidden;
	padding: 16px;
	box-sizing: border-box;
	text-decoration: none;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kbs-bs-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 35px -10px rgba(0,0,0,0.18);
}
.kbs-bs-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid hsl(40 25% 90%);
	background: #fff;
	margin-bottom: 12px;
}
.kbs-bs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kbs-bs-pname {
	font-size: 15px;
	font-weight: 600;
	color: hsl(20 25% 15%);
	margin: 0 0 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.kbs-bs-units {
	font-size: 13px;
	color: hsl(20 15% 45%);
	margin: 0;
}

/* Top Categories list */
.kbs-bs-cats-list { display: flex; flex-direction: column; gap: 12px; }
.kbs-bs-catrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: hsl(40 40% 98%);
	border: 1px solid hsl(40 25% 88%);
	border-radius: 14px;
	padding: 18px 20px;
	box-sizing: border-box;
	text-decoration: none;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kbs-bs-catrow:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 30px -10px rgba(0,0,0,0.18);
}
.kbs-bs-catname {
	font-size: 16px;
	font-weight: 700;
	color: hsl(20 25% 15%);
	margin: 0 0 6px;
}
.kbs-bs-rank {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 26px;
	padding: 0 10px;
	border-radius: 9999px;
	background: hsl(40 45% 90%);
	color: hsl(20 25% 25%);
	font-size: 13px;
	font-weight: 700;
}

.kbs-bs-empty {
	color: hsl(20 15% 45%);
	font-size: 14px;
	text-align: center;
	padding: 24px 0;
}

/* Mobile */
@media (max-width: 600px) {
	.kbs-bs-pname { font-size: 14px; }
	.kbs-bs-card { padding: 12px; }
	.kbs-bs-catrow { padding: 14px; }
}
