:root {
	--bl-bg: #ffffff;
	--bl-surface: #ffffff;
	--bl-border: #e5e2da;
	--bl-text: #232323;
	--bl-muted: #5f5f5f;
	--bl-accent: #f1641e;
	--bl-accent-dark: #c94e12;
	--bl-shadow: 0 8px 22px rgba(26, 26, 26, 0.08);
	--bl-radius-sm: 10px;
	--bl-radius-md: 14px;
	--bl-radius-lg: 18px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Qwincey", "Inter", "Segoe UI", Arial, sans-serif;
	color: var(--bl-text);
	background: var(--bl-bg);
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	object-fit: contain;
	object-position: center;
}

/* 防止 iOS Safari 聚焦输入框时自动放大页面：input/select/textarea 字号需 >= 16px */
input,
select,
textarea {
	font-size: 16px;
	max-width: 100%;
}

@supports (-webkit-touch-callout: none) {
	input[type="text"],
	input[type="search"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="password"],
	input[type="number"],
	input[type="date"],
	input[type="datetime-local"],
	input[type="month"],
	input[type="time"],
	input[type="week"],
	select,
	textarea {
		font-size: 16px;
	}
}

.bl-etsy-container {
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
}

.bl-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: #fff;
	border-bottom: 1px solid var(--bl-border);
}

.bl-header-top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
}

.bl-mobile-menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	border-radius: 999px;
	cursor: pointer;
	color: #222;
	padding: 0;
}

.bl-mobile-menu-toggle:hover {
	background: rgba(0, 0, 0, 0.05);
}

.bl-mobile-menu-close {
	display: none;
}

.bl-mobile-menu-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 99;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.bl-mobile-menu-backdrop.is-open {
	display: block;
	opacity: 1;
}

body.bl-mobile-menu-open {
	overflow: hidden;
}

.bl-header-logo-cats {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bl-site-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bl-site-brand img {
	height: 38px;
	width: auto;
}

.bl-site-logo-svg {
	color: #F1641E;
}

.bl-site-brand__text {
	font-family: "Qwincey", "Times New Roman", serif;
	font-size: 28px;
	font-weight: 400;
	color: #F1641E;
	letter-spacing: -0.5px;
}

.bl-categories-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: none;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 999px;
}

.bl-categories-btn:hover {
	background: rgba(0,0,0,0.05);
}

.bl-header-search {
	width: 80%;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.bl-search-form {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.bl-search-results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	z-index: 60;
	max-height: 70vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.bl-search-results[hidden] {
	display: none;
}

.bl-search-results__loading,
.bl-search-results__empty {
	padding: 18px 18px;
	color: #595959;
	font-size: 14px;
	text-align: center;
}

.bl-search-results__loading[hidden],
.bl-search-results__empty[hidden] {
	display: none;
}

.bl-search-results__list {
	list-style: none;
	margin: 0;
	padding: 6px;
}

.bl-search-results__list:empty {
	display: none;
}

.bl-search-result-item {
	margin: 0;
	padding: 0;
}

.bl-search-result-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 10px;
	color: inherit;
	text-decoration: none;
	transition: background 0.15s ease;
}

.bl-search-result-link:hover,
.bl-search-result-link:focus {
	background: #f5f5f5;
}

.bl-search-result-img {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 8px;
	object-fit: cover;
	background: #f5f5f5;
	display: block;
}

.bl-search-result-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bl-search-result-title {
	font-size: 14px;
	color: #222;
	font-weight: 500;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.bl-search-result-price {
	font-size: 13px;
	color: #595959;
	font-weight: 600;
}

.bl-search-result-price .woocommerce-Price-amount {
	color: #222;
}

.bl-search-result-price del {
	color: #999;
	font-weight: 400;
	margin-right: 6px;
}

.bl-search-results__view-all {
	display: block;
	padding: 12px 16px;
	border-top: 1px solid #ececec;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	text-align: center;
	text-decoration: none;
	background: #fafafa;
	transition: background 0.15s ease;
}

.bl-search-results__view-all:hover {
	background: #f0f0f0;
}

.bl-search-results__view-all[hidden] {
	display: none;
}

.bl-search-field {
	width: 100%;
	height: 48px;
	border: 2px solid #222;
	border-radius: 999px;
	padding: 0 92px 0 20px;
	font-size: 16px;
	background: #f4f4f4;
	transition: background 0.2s;
	outline: none;
}

.bl-search-field:focus {
	background: #fff;
}

.bl-search-field::-webkit-search-cancel-button,
.bl-search-field::-webkit-search-decoration,
.bl-search-field::-webkit-search-results-button,
.bl-search-field::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.bl-search-clear {
	position: absolute;
	right: 52px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	color: #595959;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.bl-search-clear[hidden] {
	display: none;
}

.bl-search-clear:hover,
.bl-search-clear:focus-visible {
	background: rgba(0, 0, 0, 0.18);
	color: #222;
	outline: none;
}

.bl-search-clear svg {
	width: 14px;
	height: 14px;
	display: block;
}

.bl-search-btn {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #F1641E;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.bl-search-btn:hover {
	background: #D95617;
}

.bl-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bl-action-link {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	padding: 8px 12px;
	border-radius: 999px;
}

.bl-action-link:hover {
	background: rgba(0,0,0,0.05);
}

.bl-action-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #222;
}

.bl-action-icon:hover {
	background: rgba(0,0,0,0.05);
}

.bl-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #F1641E;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-sizing: border-box;
	pointer-events: none;
}

.bl-cart-count[hidden] {
	display: none;
}

/* ===== Cart drawer (right side) ===== */
.bl-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 92%;
	max-width: 420px;
	background: #fff;
	z-index: 105;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -2px 0 16px rgba(0, 0, 0, 0.15);
	overscroll-behavior: contain;
}

.bl-cart-drawer[hidden] {
	display: none;
}

.bl-cart-drawer.is-open {
	transform: translateX(0);
}

.bl-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #ececec;
	flex-shrink: 0;
}

.bl-cart-drawer__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #222;
	font-family: inherit;
}

.bl-cart-drawer__close {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.bl-cart-drawer__close:hover {
	background: rgba(0, 0, 0, 0.05);
}

.bl-cart-drawer__content {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 16px 20px 20px;
}

/* WooCommerce mini cart override */
.bl-cart-drawer__content .woocommerce-mini-cart {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.bl-cart-drawer__content .woocommerce-mini-cart .mini_cart_item {
	position: relative;
	padding: 12px 30px 12px 0;
	border-bottom: 1px solid #f0f0f0;
	min-height: 60px;
	line-height: 1.4;
}

.bl-cart-drawer__content .woocommerce-mini-cart .mini_cart_item::after {
	content: "";
	display: table;
	clear: both;
}

.bl-cart-drawer__content .woocommerce-mini-cart .mini_cart_item > a:not(.remove),
.bl-cart-drawer__content .woocommerce-mini-cart .mini_cart_item > a.woocommerce-mini-cart-item__link {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	text-decoration: none;
	line-height: 1.35;
}

.bl-cart-drawer__content .woocommerce-mini-cart .mini_cart_item img {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
	background: #f5f5f5;
	margin: 0 12px 0 0;
	display: block;
}

.bl-cart-drawer__content .woocommerce-mini-cart .quantity {
	display: block;
	margin-left: 72px;
	margin-top: 6px;
	font-size: 13px;
	color: #595959;
	clear: none;
}

.bl-cart-drawer__content .woocommerce-mini-cart .quantity .amount {
	color: #222;
	font-weight: 600;
}

.bl-cart-drawer__content .woocommerce-mini-cart .variation {
	margin: 4px 0 0 72px;
	padding: 0;
	font-size: 12px;
	color: #595959;
	list-style: none;
}

.bl-cart-drawer__content .woocommerce-mini-cart .variation dt,
.bl-cart-drawer__content .woocommerce-mini-cart .variation dd {
	display: inline;
	margin: 0;
}

.bl-cart-drawer__content .woocommerce-mini-cart .variation dt {
	font-weight: 500;
	margin-right: 4px;
}

.bl-cart-drawer__content .woocommerce-mini-cart .variation dd::after {
	content: "";
	display: block;
}

.bl-cart-drawer__content .woocommerce-mini-cart .remove {
	position: absolute;
	top: 14px;
	right: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	color: #595959;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.bl-cart-drawer__content .woocommerce-mini-cart .remove:hover {
	background: #dc2626;
	color: #fff;
}

.bl-cart-drawer__content .woocommerce-mini-cart__total,
.bl-cart-drawer__content .woocommerce-mini-cart__total.total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 700;
	color: #222;
	border-top: 0;
	padding: 14px 0;
	margin: 0;
}

.bl-cart-drawer__content .woocommerce-mini-cart__total strong {
	font-weight: 700;
}

.bl-cart-drawer__content .woocommerce-mini-cart__buttons.buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.bl-cart-drawer__content .woocommerce-mini-cart__buttons .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	padding: 0 18px;
	transition: background 0.2s, color 0.2s;
	border: 1px solid #222;
	background: #fff;
	color: #222;
	float: none;
	margin: 0;
}

.bl-cart-drawer__content .woocommerce-mini-cart__buttons .button:hover {
	background: #f5f5f5;
}

.bl-cart-drawer__content .woocommerce-mini-cart__buttons .button.checkout {
	background: #222;
	color: #fff;
	border-color: #222;
}

.bl-cart-drawer__content .woocommerce-mini-cart__buttons .button.checkout:hover {
	background: #000;
}

.bl-cart-drawer__content .woocommerce-mini-cart__empty-message {
	font-size: 14px;
	color: #595959;
	text-align: center;
	padding: 40px 0;
	margin: 0;
}

.bl-header-bottom {
	padding: 0 0 10px;
}

.bl-secondary-nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.bl-categories-btn--secondary {
	padding: 6px 12px;
}

.bl-secondary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bl-secondary-menu__home,
.bl-secondary-menu__track {
	display: none;
}

.bl-secondary-menu li a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	padding: 8px 16px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}

.bl-secondary-menu li a:hover {
	background: rgba(0,0,0,0.05);
	color: #000;
}

.bl-main-content {
	padding-bottom: 36px;
}

.bl-main-content.bl-etsy-container {
	background: #fafafa;
	margin-top: 24px;
	margin-bottom: 24px;
	border-radius: 18px;
}

.bl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	border: 1px solid transparent;
	transition: all 0.2s ease;
	cursor: pointer;
}

.bl-btn--primary {
	background: var(--bl-accent);
	color: #fff;
}

.bl-btn--primary:hover {
	background: var(--bl-accent-dark);
}

.bl-btn--outline {
	background: #fff;
	border-color: #2d2d2d;
	color: #2d2d2d;
}

.bl-btn--outline:hover {
	background: #2d2d2d;
	color: #fff;
}

.bl-btn--ghost {
	background: #fff;
	border-color: var(--bl-border);
	color: #2d2d2d;
}

.bl-btn--ghost:hover {
	border-color: #2d2d2d;
}

.bl-home-hero,
.bl-etsy-hero {
	margin-top: 0;
	background: var(--bl-hero-image, radial-gradient(circle at 78% 35%, #b99264 0, #89653f 18%, #3d2d24 44%, #f1ece2 68%));
	background-position: calc(100% + 90px) center;
	background-repeat: no-repeat;
	border-bottom: 1px solid var(--bl-border);
	position: relative;
	overflow: hidden;
}

.bl-home-hero::before,
.bl-etsy-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #F3EFE6 24%, rgba(243, 239, 230, 0.86) 36%, rgba(243, 239, 230, 0.22) 48%, rgba(243, 239, 230, 0) 58%);
	pointer-events: none;
}

.bl-home-hero__overlay,
.bl-etsy-hero__overlay {
	padding: 88px 0;
	height: 500px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.bl-home-hero__text h1,
.bl-etsy-hero h1 {
	font-family: "Qwincey", "Times New Roman", serif;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.1;
	margin: 0 0 14px;
	max-width: 50%;
	min-width: 300px;
}

.bl-home-hero__text p,
.bl-etsy-hero p {
	font-family: "Qwincey", "Times New Roman", serif;
	font-size: clamp(20px, 2.5vw, 32px);
	line-height: 1.2;
	max-width: 42%;
	min-width: 300px;
	margin: 0;
}

.bl-home-hero__actions {
	margin-top: 26px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Home hero swiper replaces old text overlay */
.bl-home-hero {
	background: none;
	border-bottom: 0;
}

.bl-home-hero::before {
	content: none;
}

.bl-home-hero__overlay {
	padding: 0;
	height: auto;
	display: block;
}

.bl-home-hero-swiper {
	width: 100%;
}

.bl-home-hero-slide {
	display: block;
}

.bl-home-hero-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.bl-home-hero-pagination {
	position: absolute;
	left: 50% !important;
	bottom: 12px !important;
	transform: translateX(-50%);
	z-index: 2;
}

.bl-home-hero-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.72);
	opacity: 1;
}

.bl-home-hero-pagination .swiper-pagination-bullet-active {
	background: #fff;
}

/* Show desktop hero by default, hide mobile hero */
.bl-home-hero--mobile {
	display: none;
}

.bl-home-hero--mobile .bl-home-hero-slide img {
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.bl-shop-meta {
	background: var(--bl-surface);
	border: 1px solid var(--bl-border);
	border-radius: var(--bl-radius-lg);
	box-shadow: var(--bl-shadow);
	margin: -34px auto 0;
	padding: 18px;
	display: grid;
	grid-template-columns: 1.4fr 1fr auto;
	align-items: center;
	gap: 18px;
	position: relative;
	z-index: 2;
}

.bl-shop-meta__identity {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bl-shop-meta__avatar {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #f6f2e9;
	border: 1px solid var(--bl-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 28px;
	overflow: hidden;
}

.bl-shop-meta__avatar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.bl-shop-meta__text h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.1;
	font-family: "Qwincey", "Times New Roman", serif;
}

.bl-shop-meta__text p {
	margin: 2px 0;
	color: var(--bl-muted);
}

.bl-shop-meta__rating {
	color: #c18f00;
	font-weight: 700;
}

.bl-shop-meta__numbers {
	display: flex;
	gap: 18px;
	justify-content: center;
}

.bl-shop-meta__numbers div {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6px 8px;
}

.bl-shop-meta__numbers strong {
	font-size: 18px;
}

.bl-shop-meta__numbers span {
	color: var(--bl-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.bl-shop-meta__actions {
	display: flex;
	gap: 10px;
}

.bl-shop-tabs {
	margin-top: 18px;
	display: flex;
	gap: 22px;
	border-bottom: 1px solid var(--bl-border);
}

.bl-shop-tabs a {
	padding: 12px 2px;
	font-size: 15px;
	color: #4a4a4a;
	border-bottom: 2px solid transparent;
}

.bl-shop-tabs a.is-active,
.bl-shop-tabs a:hover {
	color: #222;
	border-color: #222;
}

.bl-shop-search {
	padding: 18px 0 10px;
}

.bl-shop-search .woocommerce-product-search {
	position: relative;
}

.bl-shop-search .search-field {
	width: 100%;
	height: 48px;
	border-radius: 999px;
	border: 1px solid var(--bl-border);
	padding: 0 136px 0 16px;
	background: #fff;
	font-size: 15px;
}

.bl-shop-search button {
	position: absolute;
	right: 6px;
	top: 6px;
	height: 36px;
	border: none;
	border-radius: 999px;
	padding: 0 18px;
	background: var(--bl-accent);
	color: #fff;
	font-weight: 600;
}

/* Home promos: two-column gallery */
.bl-home-promos {
	margin-top: 56px;
}

.bl-home-promos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.bl-home-promo-card {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e9e2d7;
	background: #fff;
	box-shadow: 0 8px 20px rgba(18, 18, 18, 0.08);
}

.bl-home-promo-card img {
	display: block;
	width: 100%;
	height: clamp(180px, 26vw, 290px);
	object-fit: cover;
	object-position: center;
}

/* 新增：全宽横幅板块 */
.bl-full-banner {
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}

.bl-full-banner-swiper {
	width: 100%;
}

.bl-full-banner-slide {
	display: block;
}

.bl-full-banner-slide img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 1;
	min-height: 180px;
	object-fit: contain;
	object-position: center;
}

.bl-full-banner-pagination {
	position: absolute;
	left: 50% !important;
	bottom: 12px !important;
	transform: translateX(-50%);
	z-index: 2;
}

.bl-full-banner-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.72);
	opacity: 1;
}

.bl-full-banner-pagination .swiper-pagination-bullet-active {
	background: #fff;
}

.bl-home-advantages {
	padding-block: 24px 0;
}

.bl-home-featured-props {
	padding-block: 24px;
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

.s-value-props__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 12px;
}

.s-value-props__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: left;
	gap: 18px;
	padding: 24px 24px;
	background: #ffffff;
}

.s-value-props__icon {
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	filter: invert(31%) sepia(6%) saturate(2771%) hue-rotate(62deg) brightness(98%) contrast(82%);
}

.s-value-props__title {
	margin: 0;
	text-wrap: balance;
	font-family: var(--font-typeface-display, "Qwincey", "Times New Roman", serif);
	font-size: var(--text-size, 1.35rem);
	line-height: 1.3;
	color: #2b2b2b;
	font-weight: 500;
}

.s-value-props--text-default .s-value-props__title {
	font-size: var(--text-size, 1.25rem);
}

.s-value-props--text-large .s-value-props__title {
	font-size: var(--text-size, 1.5rem);
}

.s-value-props--border-show .s-value-props__list {
	border-top: 0;
	border-bottom: 0;
}

.s-value-props--border-hide .s-value-props__list {
	border-top: 0;
	border-bottom: 0;
}

/* 新增：分类/系列展示板块 */
.bl-home-collections {
	margin-top: 50px;
}

.bl-slider-container {
	position: relative;
	padding: 10px 0;
	margin: -10px 0;
}

.bl-collections-swiper {
	overflow: hidden;
}

.bl-swiper-prev,
.bl-swiper-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #222;
	transition: opacity 0.2s;
}

.bl-swiper-prev::after,
.bl-swiper-next::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.bl-swiper-prev::after {
	transform: rotate(-135deg);
	margin-left: 4px;
}

.bl-swiper-next::after {
	transform: rotate(45deg);
	margin-right: 4px;
}

.bl-swiper-prev { left: -22px; }
.bl-swiper-next { right: -22px; }

.bl-swiper-prev.swiper-button-disabled,
.bl-swiper-next.swiper-button-disabled {
	opacity: 0;
	pointer-events: none;
}

.bl-collection-card {
	display: block;
	border-radius: var(--bl-radius-md);
	overflow: hidden;
	position: relative;
	background: #fff;
	border: 1px solid var(--bl-border);
	transition: box-shadow 0.2s ease;
	height: auto;
}

.bl-collection-card:hover {
	box-shadow: var(--bl-shadow);
}

.bl-collection-img {
	width: 100%;
	aspect-ratio: 4 / 4;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.bl-collection-card:hover .bl-collection-img {
	transform: scale(1.05);
}

.bl-collection-title {
	padding: 16px 12px;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	color: #222;
	background: #fff;
	position: relative;
	z-index: 2;
}

.bl-home-featured {
	padding: 48px 0 10px;
}

.bl-etsy-products-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bl-etsy-product-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bl-etsy-product-image-wrap {
	position: relative;
	border-radius: var(--clg-shape-sem-border-radius-small, 8px);
	overflow: hidden;
	aspect-ratio: 1;
	background: #f4f4f4;
}

.bl-etsy-product-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 1;
	border-radius: var(--clg-shape-sem-border-radius-small, 8px);
	max-width: 100%;
}

.bl-etsy-add-to-cart-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	z-index: 2;
	padding: 0;
	opacity: 0;
	color: #222;
	text-decoration: none;
}

.bl-etsy-product-card:hover .bl-etsy-add-to-cart-btn {
	opacity: 1;
}

.bl-etsy-add-to-cart-btn:hover {
	background: #222;
	color: #fff;
}

.bl-etsy-add-to-cart-btn:focus-visible {
	opacity: 1;
	outline: 2px solid #222;
	outline-offset: 2px;
}

.bl-etsy-add-to-cart-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.bl-etsy-add-to-cart-btn.is-loading {
	pointer-events: none;
}

@media (hover: none), (pointer: coarse) {
	.bl-etsy-add-to-cart-btn {
		opacity: 1;
	}
}

.bl-etsy-product-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bl-etsy-product-title {
	font-size: 13px;
	line-height: 1.4;
	font-weight: 400;
	color: #222;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bl-etsy-product-title a {
	color: inherit;
	text-decoration: none;
}

.bl-etsy-product-title a:hover {
	text-decoration: underline;
}

.bl-etsy-product-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.bl-etsy-stars {
	display: flex;
	align-items: center;
}

.bl-etsy-stars svg {
	width: 14px;
	height: 14px;
}

.bl-star-filled {
	fill: #222;
}

.bl-star-half {
	fill: #222;
}

.bl-star-empty {
	fill: transparent;
	stroke: #222;
	stroke-width: 2px;
}

.bl-etsy-rating-count {
	font-size: 12px;
	color: #595959;
}

.bl-etsy-product-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--clg-color-pal-green-650,#0f743b) !important;
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-top: 2px;
	flex-wrap: wrap;
}

.bl-etsy-product-price > .amount {
	color: var(--clg-color-pal-green-650,#0f743b) !important;
}

.bl-etsy-product-price del,
.bl-etsy-product-price del .amount {
	font-size: 12px;
	color: #595959 !important;
	font-weight: 400;
	text-decoration: line-through;
	order: 2;
}

.bl-etsy-product-price ins,
.bl-etsy-product-price ins .amount {
	text-decoration: none;
	order: 1;
	color: var(--clg-color-pal-green-650,#0f743b) !important;
}

.bl-etsy-product-price .bl-discount-percent {
	font-size: 12px;
	color: var(--clg-color-pal-green-650,#0f743b) !important;
	font-weight: 400;
	order: 3;
}

.bl-etsy-product-badge {
	margin-top: 2px;
}

.bl-etsy-free-shipping {
	background: #d4e9d7;
	color: #256a31;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 12px;
	display: inline-block;
}


.bl-featured-view-more {
	margin: 80px auto 60px;
	display: block;
	padding: 10px 20px;
	border: 1px solid #222;
	background: #fff;
	color: #222;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.bl-featured-view-more:hover {
	background: #222;
	color: #fff;
}


.bl-home-section__heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	gap: 8px;
}

.bl-home-section__heading h2 {
	margin: 0;
	font-size: 30px;
	font-family: "Qwincey", "Times New Roman", serif;
}

.bl-home-section__heading a {
	font-size: 14px;
	color: var(--bl-muted);
}

/* Shop Page Layout */
.bl-shop-page-layout {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}



.bl-shop-sidebar {
	flex: 0 0 240px;
	position: sticky;
	top: 20px;
}

.bl-shop-categories-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	border-right: 1px solid #e1e3df;
}

.bl-shop-categories-list li {
	margin: 0;
}

.bl-shop-categories-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px 10px 0;
	color: #222;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s;
}

.bl-shop-categories-list li a:hover {
	background: rgba(0,0,0,0.03);
}

.bl-shop-categories-list li.is-active a {
	font-weight: 700;
}

.bl-shop-categories-list li a .count {
	color: #595959;
	font-size: 13px;
	font-weight: 400;
}

.bl-contact-owner-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: calc(100% - 16px);
	padding: 10px;
	border: 1px solid #222;
	background: #fff;
	color: #222;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.bl-contact-owner-btn:hover {
	background: #222;
	color: #fff;
}

.bl-shop-main {
	flex: 1;
	min-width: 0;
}

.bl-shop-products-wrap {
	position: relative;
	min-height: 200px;
	transition: opacity 0.2s ease;
}

.bl-shop-products-wrap.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.bl-shop-products-wrap.is-loading::after {
	content: "";
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 28px;
	border: 3px solid rgba(0, 0, 0, 0.12);
	border-top-color: #222;
	border-radius: 50%;
	animation: bl-spin 0.7s linear infinite;
	pointer-events: none;
}

.bl-shop-main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 16px;
}

.bl-shop-title {
	font-size: 24px;
	margin: 0;
	font-weight: 500;
}

.bl-shop-sorting {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bl-shop-sorting .woocommerce-ordering {
	margin: 0;
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
}

.bl-shop-sorting .woocommerce-ordering::before {
	content: "Sort by: ";
	margin-right: 4px;
	font-weight: 400;
	font-size: 14px;
	color: #222;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.bl-shop-page-layout {
		flex-direction: column;
	}
	.bl-shop-sidebar {
		flex: none;
		width: 100%;
		position: static;
		margin-bottom: 0px;
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}
	.bl-shop-categories-list {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		padding: 4px 16px 12px;
		margin: 0 0 8px;
		border-right: none;
		border-bottom: 1px solid #e1e3df;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
		scroll-padding-left: 16px;
	}

	.bl-shop-categories-list::-webkit-scrollbar {
		display: none;
	}

	.bl-shop-categories-list li {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.bl-shop-categories-list li a {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 8px 14px;
		border-radius: 999px;
		background: #f4f4f4;
		font-size: 13px;
		font-weight: 500;
		color: #222;
		white-space: nowrap;
		border: 1px solid transparent;
		transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	}

	.bl-shop-categories-list li a:hover {
		background: #ebebeb;
	}

	.bl-shop-categories-list li.is-active a {
		background: #222;
		color: #fff;
		font-weight: 600;
		border-color: #222;
	}

	.bl-shop-categories-list li a .count {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.08);
		color: #595959;
		font-size: 11px;
		font-weight: 600;
		line-height: 1;
	}

	.bl-shop-categories-list li.is-active a .count {
		background: rgba(255, 255, 255, 0.2);
		color: #fff;
	}

	.bl-contact-owner-btn {
		width: 100%;
	}
}

.bl-post-card {
	background: #fff;
	border: 1px solid var(--bl-border);
	border-radius: var(--bl-radius-md);
	padding: 20px;
	margin: 20px 0;
}

.bl-footer-marquee {
	border-top: 1px solid var(--bl-border);
	border-bottom: 1px solid var(--bl-border);
	overflow: hidden;
	padding: 10px 0;
	background: #fff;
}

.bl-footer-marquee__bar {
	background: #fff;
	padding: 0;
}

.bl-footer-marquee__track {
	display: flex;
	align-items: center;
	gap: 0;
	width: max-content;
	min-width: max-content;
	white-space: nowrap;
	animation: bl-footer-marquee-scroll 22s linear infinite;
}

.bl-footer-marquee__item {
	display: inline-flex;
	align-items: center;
	color: #000;
	padding-right: 26px;
}

.bl-footer-marquee__item .bi {
	font-size: 0.85rem;
	line-height: 1;
	margin-right: 6px;
}

.bl-footer-marquee__text {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.bl-footer-marquee__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.25);
	margin-left: 14px;
}

@keyframes bl-footer-marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Footer */
.bl-site-footer {
	padding: 0 0 12px;
	border-top: 0;
	background: #2d2f33;
	color: #d6d7db;
}

.bl-footer-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bl-footer-newsletter__copy h2 {
	margin: 0 0 4px;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	font-weight: 700;
	color: #fff;
}

.bl-footer-newsletter__copy p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
}

.bl-footer-newsletter__form {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bl-footer-newsletter__form input {
	flex: 1;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	padding: 0 14px;
	outline: none;
	font-size: 13px;
}

.bl-footer-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.bl-footer-newsletter__form button {
	height: 40px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.bl-footer-main {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding: 32px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bl-footer-brand h3 {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1;
	color: #fff;
	font-family: "Qwincey", "Times New Roman", serif;
	text-transform: uppercase;
}

.bl-footer-brand > p {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.7;
	max-width: 40ch;
}

.bl-footer-brand-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 9px;
}

.bl-footer-brand-points li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.74);
}

.bl-footer-brand-points i {
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
}

.bl-footer-nav h4,
.bl-footer-contact h4 {
	margin: 0 0 14px;
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: #fff;
}

.bl-footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bl-footer-nav li {
	margin-bottom: 10px;
}

.bl-footer-nav a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bl-footer-nav a:hover {
	color: #fff;
}

.bl-footer-contact p {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.bl-footer-contact p i {
	margin-right: 7px;
	color: rgba(255, 255, 255, 0.52);
}

.bl-footer-contact__company {
	margin-top: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
}

.bl-footer-payments-wrap {
	margin-top: 14px;
}

.bl-footer-payments-wrap > p {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 8px;
}

.bl-footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bl-footer-payments li {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 5px 8px;
	border-radius: 5px;
	background: #fff;
	color: #1d1f22;
}

.bl-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58);
}

.bl-footer-bottom p {
	margin: 0;
}

.bl-footer-bottom__links {
	display: inline-flex;
	gap: 14px;
}

.bl-footer-bottom__links a {
	color: rgba(255, 255, 255, 0.58);
	text-decoration: none;
}

.bl-footer-bottom__links a:hover {
	color: #fff;
}

@media (max-width: 1199px) {
	.bl-header-top {
		grid-template-columns: auto 1fr auto;
	}

	.bl-secondary-nav {
		display: none;
	}

	.bl-shop-meta {
		grid-template-columns: 1fr;
	}

	.bl-shop-meta__numbers,
	.bl-shop-meta__actions {
		justify-content: flex-start;
	}

	.bl-footer-main {
		grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
		gap: 28px;
	}

	.bl-footer-newsletter__copy h2 {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.bl-header-top {
		grid-template-columns: auto 1fr auto;
		grid-template-rows: auto auto;
		gap: 8px 8px;
		padding: 10px 0;
	}

	.bl-mobile-menu-toggle {
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
	}

	.bl-header-logo-cats {
		grid-column: 2;
		grid-row: 1;
		justify-content: center;
	}

	.bl-site-brand {
		justify-content: center;
	}

	.bl-site-brand img {
		height: 32px;
	}

	.bl-site-brand__text {
		font-size: 22px;
	}

	.bl-header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		max-width: 100%;
		margin: 0;
	}

	.bl-search-field {
		height: 42px;
		font-size: 14px;
		padding: 0 78px 0 16px;
	}

	.bl-search-btn {
		width: 34px;
		height: 34px;
	}

	.bl-search-btn svg {
		width: 16px;
		height: 16px;
	}

	.bl-search-clear {
		right: 44px;
		width: 22px;
		height: 22px;
	}

	.bl-search-clear svg {
		width: 12px;
		height: 12px;
	}

	.bl-header-actions {
		grid-column: 3;
		grid-row: 1;
		justify-content: flex-end;
		gap: 0;
	}

	.bl-header-actions .bl-action-link,
	.bl-header-actions .bl-action-icon[aria-label="Favorites"],
	.bl-header-actions .bl-header-track-link,
	.bl-header-actions a[aria-label*="Favorites" i] {
		display: none;
	}

	.bl-header-bottom {
		padding: 0;
	}

	.bl-secondary-nav {
		display: block !important;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 84%;
		max-width: 320px;
		background: #fff;
		z-index: 100;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
		margin: 0 !important;
	}

	.bl-secondary-nav.is-open {
		transform: translateX(0);
	}

	.bl-mobile-menu-close {
		display: inline-flex;
		position: absolute;
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		border: none;
		background: transparent;
		border-radius: 999px;
		cursor: pointer;
		color: #222;
		padding: 0;
		z-index: 2;
	}

	.bl-mobile-menu-close:hover {
		background: rgba(0, 0, 0, 0.05);
	}

	.bl-secondary-nav-inner {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 60px 12px 16px;
		gap: 4px;
	}

	.bl-secondary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		width: 100%;
	}

	.bl-secondary-menu li {
		width: 100%;
	}

	.bl-secondary-menu__home,
	.bl-secondary-menu__track {
		display: list-item;
	}

	.bl-secondary-menu li a {
		padding: 12px 16px;
		font-size: 16px;
		border-radius: 10px;
	}

	.bl-home-hero__overlay,
	.bl-etsy-hero__overlay {
		padding: 56px 0;
		height: 500px;
	}

	.bl-home-hero__overlay {
		padding: 0;
		height: auto;
	}

	.bl-home-hero,
	.bl-etsy-hero {
		background-position: calc(100% + 40px) center;
	}

	.bl-home-hero__text h1,
	.bl-etsy-hero h1 {
		max-width: 100%;
	}

	.bl-home-hero__text p,
	.bl-etsy-hero p {
		font-size: clamp(20px, 6vw, 28px);
		max-width: 100%;
	}

	.s-value-props__container {
		width: 100%;
		padding: 0 12px;
	}

	.s-value-props__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.s-value-props__item {
		flex-direction: column;
		gap: 10px;
		padding: 18px 10px;
		text-align: center;
		border-right: 0;
		border-bottom: 0;
	}

	.s-value-props__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.s-value-props__icon {
		width: 52px;
		height: 52px;
		flex: 0 0 52px;
	}

	.s-value-props__title,
	.s-value-props--text-default .s-value-props__title,
	.s-value-props--text-large .s-value-props__title {
		font-size: 17px;
		line-height: 1.3;
		font-weight: 500;
	}

	.bl-etsy-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bl-home-promos {
		margin-top: 36px;
	}

	.bl-slider-container {
		overflow-x: clip;
	}

	.bl-swiper-prev,
	.bl-swiper-next {
		display: none !important;
	}

	.bl-home-hero-slide img {
		height: auto;
		aspect-ratio: 4 / 1;
	}

	.bl-home-hero--desktop {
		display: none;
	}

	.bl-home-hero--mobile {
		display: block;
	}

	.bl-home-hero--mobile .bl-home-hero-slide img {
		aspect-ratio: 9 / 16;
		object-fit: cover;
	}

	.bl-home-promos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.bl-home-promo-card {
		border-radius: 12px;
		box-shadow: 0 6px 14px rgba(18, 18, 18, 0.06);
	}

	.bl-full-banner {
		margin-top: 40px;
	}

	.bl-full-banner-slide img {
		min-height: 120px;
	}

	.bl-footer-marquee__track {
		animation-duration: 26s;
	}

	.bl-footer-marquee__item {
		padding-right: 20px;
	}

	.bl-footer-marquee__text {
		font-size: 0.68rem;
		letter-spacing: 0.05em;
	}

	.bl-footer-newsletter {
		grid-template-columns: 1fr;
		padding: 18px 0;
	}

	.bl-footer-newsletter__copy h2 {
		font-size: 21px;
	}

	.bl-footer-newsletter__form {
		flex-wrap: wrap;
	}

	.bl-footer-newsletter__form input {
		min-width: 100%;
	}

	.bl-footer-newsletter__form button {
		width: 100%;
	}

	.bl-footer-main {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 26px 0;
	}

	.bl-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.bl-shop-tabs {
		overflow-x: auto;
		white-space: nowrap;
	}

	.bl-shop-meta__numbers {
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bl-footer-marquee__track {
		animation: none;
	}
}
