/* ==========================================================================
   Blankets sub-category page
   Matches Lisa's "blankets page" mockup (Monday.com comment #14).
   ========================================================================== */
/* The Collections + Filter-by-color band is NOT styled here. It is the shared
 * component in inc/poppsee-category-filters.php, styled by
 * css/poppsee-category-filters.css, and it is the same band on every category
 * page. This file once carried its own copy of that band -- selectors only,
 * because the markup was never rendered -- so the page shipped a stylesheet
 * for a filter bar no shopper could see. Do not re-add a per-page copy. */

/* Reset / base */
.bk-redesign { font-family: Quicksand, sans-serif; color: #333; }
.bk-redesign * { box-sizing: border-box; }
.bk-redesign img { display: block; max-width: 100%; }
.bk-section { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- 1. Title bar ---------- */
.bk-titlebar {
	background: #f8f8f8;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 26px 20px;
}
.bk-titlebar h1 {
	font-family: Quicksand, sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 1;
	color: #2e2a26;
	margin: 0;
	letter-spacing: .01em;
}
.bk-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 12px;
}
.bk-dots span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: block;
}
.bk-dot-1 { background: #ff66c4; }
.bk-dot-2 { background: #ff914d; }
.bk-dot-3 { background: #03989e; }
.bk-dot-4 { background: #ff5757; }

/* ---------- 2. Hero ---------- */
.bk-hero-wrap { margin-top: 30px; }
.bk-hero {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	min-height: 380px;
}
.bk-hero-photo {
	flex: 0 0 55%;
	max-width: 55%;
}
.bk-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bk-hero-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 48px 44px;
	background: #f6f1ec;
	text-align: center;
}
.bk-hero-text h2 {
	font-family: Quicksand, sans-serif;
	font-weight: 500;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.28;
	color: #2e2a26;
	margin: 0 0 18px;
}
.bk-hero-text p {
	font-family: Quicksand, sans-serif;
	font-weight: 400;
	font-size: clamp(13px, 1.2vw, 16px);
	line-height: 1.65;
	color: #5a5550;
	margin: 0;
}

/* ---------- 3. Collections ---------- */
.bk-collections {
	margin-top: 58px;
	margin-bottom: 70px;
}

/* Product grid */
.bk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.bk-product {
	display: block;
	text-decoration: none;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .25s, transform .2s;
}
.bk-product:hover {
	box-shadow: 0 6px 24px rgba(60, 50, 40, .12);
	transform: translateY(-3px);
}
.bk-product-img {
	background: #f9f6f3;
	aspect-ratio: 1;
	overflow: hidden;
}
.bk-product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .25s;
}
.bk-product:hover .bk-product-img img { opacity: .92; }

.bk-product-price {
	display: inline-block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(255, 255, 255, .92);
	color: #2e2a26;
	font-family: Quicksand, sans-serif;
	font-weight: 600;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(60, 50, 40, .1);
}

/* Empty state */
.bk-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
}
.bk-empty p {
	font-family: Quicksand, sans-serif;
	font-size: 18px;
	color: #8a817a;
}

/* ---------- Responsive — tablet (768px) ---------- */
@media (max-width: 768px) {
	.bk-titlebar h1 { font-size: 27px; }
	.bk-hero-wrap { margin-top: 22px; }
	.bk-hero {
		flex-direction: column;
		min-height: auto;
	}
	.bk-hero-photo {
		flex: none;
		max-width: 100%;
	}
	.bk-hero-photo img {
		aspect-ratio: 1.6;
	}
	.bk-hero-text {
		padding: 32px 24px;
	}
	.bk-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
}

/* ---------- Responsive — mobile (480px) ---------- */
@media (max-width: 480px) {
	.bk-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
	.bk-hero-text h2 { font-size: 22px; }
	.bk-collections { margin-top: 36px; margin-bottom: 50px; }
}
