/* ─── Closet Accessories Widget ─────────────────────────────────────────── */

.hbc-ca-wrap {
	padding: 24px 1% 34px;
	background: #ffffff;
}

.hbc-ca-header {
	max-width: 900px;
	margin: 0 auto 26px;
	text-align: center;
}

.hbc-ca-title {
	margin: 0 0 16px;
	padding: 0;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	color: #000000;
}

.hbc-ca-desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	color: #444444;
}

.hbc-ca-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.hbc-ca-card {
	position: relative;
	min-width: 0;
	padding-bottom: 44px;
}

.hbc-ca-image {
	height: 300px;
	overflow: hidden;
	background: #f4f4f4;
}

.hbc-ca-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.hbc-ca-card:hover .hbc-ca-image img {
	transform: scale(1.04);
}

.hbc-ca-card-title {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	padding: 16px 18px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
}

.hbc-ca-btn-wrap {
	margin-top: 30px;
	text-align: center;
}

.hbc-ca-btn-link {
	display: inline-block;
	text-decoration: none;
}

.hbc-ca-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background: #f4b43e;
	color: #111111;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.hbc-ca-btn:hover,
.hbc-ca-btn-link:hover .hbc-ca-btn {
	opacity: 0.88;
	transform: translateY(-2px);
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-ca-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hbc-ca-image {
		height: 280px;
	}

	.hbc-ca-title {
		font-size: 28px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-ca-wrap {
		padding: 28px 18px 30px;
	}

	.hbc-ca-header {
		margin-bottom: 24px;
	}

	.hbc-ca-title {
		font-size: 24px;
	}

	.hbc-ca-desc {
		font-size: 14px;
	}

	.hbc-ca-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.hbc-ca-image {
		height: 260px;
	}

	.hbc-ca-card-title {
		left: 14px;
		right: 14px;
		min-height: 74px;
		font-size: 16px;
	}

	.hbc-ca-btn {
		width: 100%;
		max-width: 260px;
	}
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hbc-ca-title {
		font-size: 22px;
	}

	.hbc-ca-image {
		height: 230px;
	}
}
