.hse-color-swatches {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 14px 0;
	flex-wrap: wrap;
}
.hse-color-swatches-label {
	font-weight: 600;
	font-size: 13.5px;
	color: #16305c;
	margin-right: 4px;
}
.hse-color-swatch {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #e2e6ee;
	cursor: pointer;
	padding: 0;
	transition: box-shadow .15s, border-color .15s;
}
.hse-color-swatch.is-active,
.hse-color-swatch:hover {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f2a71b;
	border-color: #e2e6ee;
}

.hse-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.hse-badge-new { background: rgba(31,75,143,.12); color: #1f4b8f; }
.hse-badge-bestseller { background: rgba(242,167,27,.15); color: #d97e0e; }
.hse-badge-sale { background: rgba(214,69,69,.12); color: #d64545; }

.hse-stock-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}
.hse-stock-in { background: rgba(31,157,85,.12); color: #1f9d55; }
.hse-stock-low { background: rgba(242,167,27,.15); color: #d97e0e; }
.hse-stock-out { background: rgba(214,69,69,.12); color: #d64545; }

/* Hero slider (assets/js/hse-hero-slider.js pairs with this) */
.hse-hero-slider { position: relative; overflow: hidden; }
.hse-hero-slides { position: relative; }
.hse-hero-slide {
	display: none;
	background-size: cover;
	background-position: center;
	min-height: 420px;
	align-items: center;
	position: relative;
}
.hse-hero-slide.is-active { display: flex; }
.hse-hero-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11,28,56,.75) 0%, rgba(11,28,56,.35) 60%, rgba(11,28,56,0) 100%);
}
.hse-hero-slide-content {
	position: relative;
	z-index: 1;
	max-width: 560px;
	padding: 40px 48px;
	color: #fff;
}
.hse-hero-eyebrow {
	display: inline-block;
	background: #f2a71b;
	color: #221200;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.hse-hero-slide-content h2 { font-size: 34px; margin: 0 0 12px; color: #fff; }
.hse-hero-slide-content p { font-size: 15px; margin: 0 0 20px; }
.hse-hero-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}
.hse-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,.5);
	border: none;
	cursor: pointer;
	padding: 0;
}
.hse-hero-dot.is-active { background: #f2a71b; }

/* Toast notifications (assets/js/frontend-cart-ajax.js) */
.hse-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #16305c;
	color: #fff;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(22,48,92,.25);
	z-index: 9999;
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
}
.hse-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.hse-toast-error { background: #d64545; }

/* ═══════════════════ SHOP ARCHIVE (templates/woocommerce/archive-product.php) ═══════════════════ */
.hse-breadcrumb { font-size: 13px; color: #6b7686; padding: 18px 0; }
.hse-breadcrumb a { color: #1f4b8f; }
.hse-breadcrumb .hse-sep { margin: 0 6px; }

.hse-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; padding-bottom: 70px; }
@media (max-width: 900px) { .hse-shop-layout { grid-template-columns: 1fr; } }

.hse-shop-sidebar { position: sticky; top: 90px; background: #fff; border: 1px solid #e2e6ee; border-radius: 12px; padding: 22px; }
.hse-filter-block { border-bottom: 1px solid #e2e6ee; padding-bottom: 18px; margin-bottom: 18px; }
.hse-filter-block:last-child { border-bottom: none; }
.hse-filter-block h4 { font-size: 14px; margin-bottom: 12px; color: #16305c; }
.hse-filter-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; padding: 6px 0; color: #333; cursor: pointer; }
.hse-filter-option input { accent-color: #f2a71b; }
.hse-price-range { width: 100%; accent-color: #f2a71b; }
.hse-filter-actions { display: flex; gap: 10px; margin-top: 6px; }
.hse-filter-actions .button { flex: 1; padding: 10px; font-size: 13px; text-align: center; }

.hse-filter-toggle-btn { display: none; }
.hse-filter-drawer-header { display: none; }
.hse-filter-drawer-overlay { display: none; }

@media (max-width: 900px) {
	.hse-filter-toggle-btn {
		display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center;
		background: #fff; border: 1px solid #e2e6ee; border-radius: 8px; padding: 12px;
		font-weight: 700; font-size: 14px; color: #16305c; margin-bottom: 16px; cursor: pointer;
	}
	.hse-shop-layout { padding-bottom: 40px; }
	.hse-shop-sidebar {
		position: fixed; top: 0; left: -100%; height: 100vh; width: 85vw; max-width: 320px; z-index: 600;
		border-radius: 0; overflow-y: auto; transition: left .3s ease; box-shadow: 8px 0 30px rgba(0,0,0,0.2);
	}
	.hse-shop-sidebar.is-open { left: 0; }
	.hse-filter-drawer-header {
		display: flex; justify-content: space-between; align-items: center; margin: -22px -22px 18px; padding: 18px 22px;
		border-bottom: 1px solid #e2e6ee; position: sticky; top: 0; background: #fff; z-index: 2;
	}
	.hse-filter-close-btn { background: #f5f7fb; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 15px; color: #333; cursor: pointer; }
	.hse-filter-drawer-overlay {
		position: fixed; inset: 0; background: rgba(11,28,56,.5); z-index: 590;
		opacity: 0; visibility: hidden; transition: opacity .25s ease;
	}
	.hse-filter-drawer-overlay.is-open { display: block; opacity: 1; visibility: visible; }
}

.hse-shop-main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.hse-results-count { color: #6b7686; font-size: 14px; }
.hse-sort-select { border: 1px solid #e2e6ee; border-radius: 8px; padding: 9px 14px; font-size: 13.5px; background: #fff; }

.hse-empty-state { text-align: center; padding: 70px 20px; color: #6b7686; }
.hse-empty-state .hse-empty-icon { font-size: 50px; margin-bottom: 16px; }

.hse-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.hse-pagination .hse-page-number,
.hse-pagination span.page-numbers { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
	border-radius: 8px; border: 1px solid #e2e6ee; font-size: 14px; color: #333; transition: all .15s ease; }
.hse-pagination a.hse-page-number:hover { border-color: #f2a71b; color: #d97e0e; }
.hse-pagination .current { background: #f2a71b; border-color: #f2a71b; color: #221200; font-weight: 700; }

/* ═══════════════════ PRODUCT PAGE ADDITIONS (size selector, specs, trust badges) ═══════════════════ */
.hse-option-group { margin-bottom: 20px; }
.hse-option-group .hse-group-label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; color: #16305c; }
.hse-size-select { border: 1px solid #e2e6ee; border-radius: 8px; padding: 10px 14px; font-size: 14px; background: #fff; min-width: 200px; }

.hse-trust-badges-row { display: flex; gap: 18px; margin: 20px 0; flex-wrap: wrap; }
.hse-trust-badges-row span { font-size: 12.5px; color: #6b7686; }

.hse-spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; border: 1px solid #e2e6ee; }
.hse-spec-table td { padding: 10px 12px; border: 1px solid #e2e6ee; font-size: 14px; }
.hse-spec-table td:first-child { color: #6b7686; width: 160px; }
.hse-spec-table td:last-child { color: #333; font-weight: 600; }

/* ═══════════════════ CART PAGE ADDITIONS (AJAX qty stepper, free-shipping banner) ═══════════════════ */
.hse-qty-stepper { display: inline-flex; align-items: center; border: 1px solid #e2e6ee; border-radius: 999px; overflow: hidden; }
.hse-qty-stepper input.qty { width: 46px; text-align: center; border: none; font-size: 15px; font-weight: 600; -moz-appearance: textfield; }
.hse-qty-stepper input.qty::-webkit-inner-spin-button,
.hse-qty-stepper input.qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.hse-qty-minus, .hse-qty-plus { width: 36px; height: 40px; border: none; background: #f5f7fb; font-size: 18px; cursor: pointer; color: #16305c; }
.hse-qty-minus:hover, .hse-qty-plus:hover { background: #eceff5; }

.hse-free-shipping-banner {
	background: rgba(242,167,27,.12); color: #d97e0e; border: 1px solid rgba(242,167,27,.35);
	border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 13.5px; font-weight: 600;
}
.hse-free-shipping-banner.hse-free-shipping-unlocked { background: rgba(31,157,85,.12); color: #1f9d55; border-color: rgba(31,157,85,.35); }
