:root {
	--bnt-orange: #f6821f;
	--bnt-orange-hover: #e0741a;
	--bnt-dark: #1a1a1a;
	--bnt-gray: #555;
	--bnt-light: #f5f5f5;
	--bnt-white: #fff;
	--bnt-border: #e8e8e8;
	--bnt-radius: 12px;
	--bnt-shadow: 0 2px 16px rgba(0,0,0,0.06);
	--bnt-shadow-hover: 0 12px 32px rgba(0,0,0,0.12);
}

.bnt-archive-search-wrap {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bnt-white);
	border-bottom: 1px solid var(--bnt-border);
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	padding: 12px 0;
}
.bnt-archive-search-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bnt-search-input-wrap {
	position: relative;
}
.bnt-search-input-wrap input {
	width: 100%;
	padding: 12px 44px 12px 16px;
	border: 2px solid var(--bnt-border);
	border-radius: 10px;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s;
}
.bnt-search-input-wrap input:focus {
	border-color: var(--bnt-orange);
}
.bnt-search-input-wrap .bnt-search-icon {
	position: absolute;
	right: 14px;
	top: 21px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #999;
	pointer-events: none;
}
.bnt-search-input-wrap .bnt-search-clear {
	position: absolute;
	right: 14px;
	top: 21px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #999;
	cursor: pointer;
	display: none;
	background: none;
	border: none;
	padding: 4px;
}

.bnt-filter-row {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	align-items: center;
	position: relative;
	scroll-behavior: smooth;
}
.bnt-filter-row::-webkit-scrollbar { display: none; }
.bnt-scroll-arrow {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background: #fff;
	border: 1px solid var(--bnt-border, #e0e0e0);
	border-radius: 50%;
	cursor: pointer;
	z-index: 5;
	font-size: 14px;
	line-height: 1;
	color: var(--bnt-dark, #1a1a1a);
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	align-items: center;
	justify-content: center;
}
.bnt-scroll-arrow:hover { background: var(--bnt-orange, #f6821f); color: #fff; border-color: var(--bnt-orange, #f6821f); }
.bnt-scroll-arrow--left { left: 0; }
.bnt-scroll-arrow--right { right: 0; }
.bnt-scroll-arrow.visible { display: flex; }
@media (max-width: 849px) { .bnt-scroll-arrow { display: none !important; } }

.bnt-filter-pill {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: var(--bnt-light);
	border: 1px solid var(--bnt-border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: var(--bnt-dark);
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s;
	cursor: pointer;
}
.bnt-filter-pill:hover,
.bnt-filter-pill.active {
	background: var(--bnt-orange);
	color: #fff;
	border-color: var(--bnt-orange);
}
.bnt-filter-pill .bnt-pill-count {
	background: rgba(0,0,0,0.08);
	color: inherit;
	font-size: 11px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 10px;
}
.bnt-filter-pill:hover .bnt-pill-count,
.bnt-filter-pill.active .bnt-pill-count {
	background: rgba(255,255,255,0.25);
}

.bnt-sort-select {
	flex-shrink: 0;
	padding: 7px 12px;
	border: 1px solid var(--bnt-border);
	border-radius: 20px;
	font-size: 13px;
	background: var(--bnt-white);
	cursor: pointer;
	outline: none;
}

.bnt-stock-toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	font-size: 13px;
	color: var(--bnt-dark);
	cursor: pointer;
	white-space: nowrap;
}
.bnt-stock-toggle input { accent-color: var(--bnt-orange); }

.bnt-results-count {
	font-size: 13px;
	color: var(--bnt-gray);
	padding: 10px 0 0;
	max-width: 1240px;
	margin: 0 auto;
}

.bnt-archive-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px !important;
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 20px 40px;
}

.bnt-archive-grid .product,
.bnt-archive-grid .product-small {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
}

.bnt-archive-grid .bnt-card {
	background: var(--bnt-white);
	border-radius: var(--bnt-radius);
	overflow: hidden;
	box-shadow: var(--bnt-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.bnt-archive-grid .bnt-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--bnt-shadow-hover);
}

.bnt-card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bnt-card-img {
	position: relative;
	aspect-ratio: 1;
	background: var(--bnt-light);
	overflow: hidden;
}
.bnt-card-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	padding: 16px;
	transition: transform 0.3s ease;
}
.bnt-card:hover .bnt-card-img img {
	transform: scale(1.08);
}

.bnt-card-img .onsale,
.bnt-card-img .badge,
.bnt-card-img .badge-container {
	position: absolute !important;
	top: 8px !important;
	left: 8px !important;
	right: auto !important;
	bottom: auto !important;
	margin: 0 !important;
	transform: none !important;
	z-index: 2;
}
.bnt-card-img .onsale {
	background: var(--bnt-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}
.bnt-card-img .badge-inner {
	background: var(--bnt-orange) !important;
	color: #fff !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	line-height: 1.4 !important;
	font-size: 11px !important;
	padding: 3px 10px !important;
	border-radius: 4px !important;
	position: static !important;
}
.bnt-card-img .badge-inner::before,
.bnt-card-img .badge-inner::after { display: none !important; }

.bnt-card > .badge-container {
	display: none !important;
}

.bnt-card-img .out-of-stock-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.65);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.bnt-card.out-of-stock .bnt-card-img img {
	opacity: 0.4 !important;
	filter: grayscale(100%);
}

.bnt-card.out-of-stock .bnt-card-price {
	color: #999 !important;
	text-decoration: line-through;
}

.bnt-card.out-of-stock .bnt-card-actions .bnt-card-btn a,
.bnt-card.out-of-stock .bnt-card-actions .bnt-card-btn button {
	background: #ccc !important;
	color: #666 !important;
	cursor: not-allowed;
	pointer-events: none;
	font-size: 11px !important;
}

.bnt-card.out-of-stock > a.button,
.bnt-card.out-of-stock > .button,
.bnt-card.out-of-stock > a.add_to_cart_button {
	display: none !important;
}

.bnt-card-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.bnt-card-title {
	font-size: 14px;
	font-weight: 500;
	color: var(--bnt-dark);
	margin: 0 0 10px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bnt-card-price {
	font-size: 18px;
	font-weight: 700;
	color: var(--bnt-orange);
	margin-top: auto;
}
.bnt-card-price del { color: #aaa; font-size: 14px; font-weight: 400; margin-right: 6px; }
.bnt-card-price ins { text-decoration: none; }

.bnt-card-actions {
	padding: 0 16px 16px;
	display: flex;
	gap: 8px;
}
.bnt-card-actions .bnt-card-btn { flex: 1; }
.bnt-card-actions .bnt-card-btn a,
.bnt-card-actions .bnt-card-btn button {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--bnt-dark);
	color: #fff !important;
	border: none;
	border-radius: 8px;
	padding: 11px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.2s;
	text-decoration: none;
}
.bnt-card-actions .bnt-card-btn a:hover,
.bnt-card-actions .bnt-card-btn button:hover { background: var(--bnt-orange); }

.bnt-quick-view {
	width: 44px;
	flex-shrink: 0;
	background: var(--bnt-light);
	border: 1px solid var(--bnt-border);
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bnt-quick-view:hover { background: var(--bnt-orange); border-color: var(--bnt-orange); }
.bnt-quick-view.bnt-qv-full {
	flex: 1;
	font-size: 13px;
	gap: 6px;
}
.bnt-quick-view.bnt-qv-full::after { content: ' View'; font-size: 12px; font-weight: 600; text-transform: uppercase; }

.bnt-trust {
	max-width: 1240px;
	margin: 20px auto 0;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.bnt-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bnt-light);
	border-radius: 10px;
	padding: 14px 16px;
}
.bnt-trust-icon { font-size: 22px; flex-shrink: 0; color: var(--bnt-orange); display: flex; align-items: center; }
.bnt-trust-icon svg { stroke: var(--bnt-orange); }
.bnt-trust-text { font-size: 13px; font-weight: 600; color: var(--bnt-dark); line-height: 1.3; }

.bnt-skeleton-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px;
}
.bnt-skeleton-card {
	border-radius: var(--bnt-radius);
	overflow: hidden;
	background: var(--bnt-white);
	box-shadow: var(--bnt-shadow);
}
.bnt-skeleton-img {
	aspect-ratio: 1;
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: bntShimmer 1.5s infinite;
}
.bnt-skeleton-text {
	padding: 16px;
}
.bnt-skeleton-line {
	height: 14px;
	border-radius: 4px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: bntShimmer 1.5s infinite;
	margin-bottom: 10px;
}
.bnt-skeleton-line:last-child { width: 50%; margin-bottom: 0; }
@keyframes bntShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.bnt-archive-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--bnt-gray);
	font-size: 16px;
	grid-column: 1 / -1;
}

.bnt-back-top {
	position: fixed;
	bottom: 140px;
	right: 16px;
	width: 44px;
	height: 44px;
	background: var(--bnt-orange);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 90;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s, transform 0.3s;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.bnt-back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top { display: none !important; }

.bnt-qv-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	justify-content: center;
	align-items: flex-end;
}
.bnt-qv-overlay.open { display: flex; }
.bnt-qv-modal {
	background: var(--bnt-white);
	width: 100%;
	max-width: 500px;
	max-height: 85vh;
	border-radius: 20px 20px 0 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	animation: bntSlideUp 0.3s ease;
}
@keyframes bntSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.bnt-qv-close {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: var(--bnt-white);
	border-bottom: 1px solid var(--bnt-border);
}
.bnt-qv-close span { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.bnt-qv-close button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--bnt-light);
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bnt-qv-body { padding: 20px; }
.bnt-qv-img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--bnt-light); border-radius: 12px; padding: 20px; }
.bnt-qv-title { font-size: 20px; font-weight: 700; color: var(--bnt-dark); margin: 16px 0 8px; }
.bnt-qv-price { font-size: 24px; font-weight: 700; color: var(--bnt-orange); margin-bottom: 12px; display: block; }
.bnt-qv-price del { color: #aaa; font-size: 16px; font-weight: 400; margin-right: 8px; }
.bnt-qv-price ins { text-decoration: none; }
.bnt-qv-desc { font-size: 14px; color: var(--bnt-gray); line-height: 1.6; margin-bottom: 20px; max-height: 100px; overflow-y: auto; }
.bnt-qv-btns { display: flex; flex-direction: column; gap: 10px; }
.bnt-qv-btns a {
	display: block;
	text-align: center;
	padding: 14px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}
.bnt-qv-add { background: var(--bnt-orange); color: #fff !important; border: none; }
.bnt-qv-view { background: var(--bnt-white); color: var(--bnt-dark) !important; border: 2px solid var(--bnt-border); }
.bnt-qv-loading { text-align: center; padding: 60px 20px; font-size: 14px; color: var(--bnt-gray); }

@media (min-width: 769px) {
	.bnt-qv-modal { max-height: 90vh; border-radius: 20px; max-width: 480px; align-self: center; }
}
@media (max-width: 1024px) {
	.bnt-archive-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
	.bnt-skeleton-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.bnt-trust { grid-template-columns: repeat(2, 1fr); }
}
.products-category-icons,
.julu.products-category-icons {
	display: none !important;
}

/* ===== Subcategory cards in archive grid ===== */
.bnt-archive-grid .product-category {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
}
.bnt-archive-grid .product-category .col-inner {
	background: var(--bnt-white);
	border-radius: var(--bnt-radius);
	overflow: hidden;
	box-shadow: var(--bnt-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	height: 100%;
}
.bnt-archive-grid .product-category:hover .col-inner {
	transform: translateY(-6px);
	box-shadow: var(--bnt-shadow-hover);
}
.bnt-archive-grid .product-category .box {
	overflow: visible;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.bnt-archive-grid .product-category .box-image {
	aspect-ratio: 1;
	background: var(--bnt-light);
	overflow: hidden;
}
.bnt-archive-grid .product-category .box-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	padding: 16px;
	transition: transform 0.3s ease;
}
.bnt-archive-grid .product-category:hover .box-image img {
	transform: scale(1.08);
}
.bnt-archive-grid .product-category .box-text {
	position: static !important;
	background: transparent !important;
	padding: 16px !important;
}
.bnt-archive-grid .product-category .box-text h5 {
	font-size: 14px;
	font-weight: 500;
	color: var(--bnt-dark);
	margin: 0;
	line-height: 1.4;
}
.bnt-archive-grid .product-category .box-text .count {
	color: var(--bnt-gray);
	margin: 4px 0 0;
}

.slider .bnt-card,
.row .bnt-card,
.flickity-slider .bnt-card {
	background: var(--bnt-white, #fff);
	border-radius: var(--bnt-radius, 12px);
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
	height: auto !important;
	margin-bottom: 10px;
}

.slider .bnt-card .bnt-card-actions,
.row .bnt-card .bnt-card-actions {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	padding: 0 12px 12px;
	gap: 6px;
}

.slider .bnt-card .bnt-card-btn a,
.row .bnt-card .bnt-card-btn a {
	display: block !important;
	visibility: visible !important;
	background: #1a1a1a;
	color: #fff !important;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
	width: 100%;
}

.slider .bnt-card .bnt-card-btn a:hover,
.row .bnt-card .bnt-card-btn a:hover {
	background: #f6821f;
}

.slider .bnt-card .col-inner,
.row .bnt-card .col-inner {
	padding: 0 !important;
}

.slider .bnt-card .bnt-card-img {
	aspect-ratio: 1;
	background: #f5f5f5;
	overflow: hidden;
}

.slider .bnt-card .bnt-card-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	padding: 12px;
}

.slider .bnt-card .bnt-card-body {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.slider .bnt-card .bnt-card-title {
	font-size: 13px;
	font-weight: 500;
	color: #1a1a1a;
	margin: 0 0 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.slider .bnt-card .bnt-card-price {
	font-size: 16px;
	font-weight: 700;
	color: #f6821f;
	margin-top: auto;
}

.slider .flickity-viewport:focus,
.slider .flickity-slider:focus,
.slider:focus,
.row-slider:focus,
.slider .bnt-card:focus,
.flickity-enabled:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.row-slider,
.slider {
	outline: none !important;
	border: none !important;
}

.slider .bnt-card .bnt-quick-view {
	display: none !important;
}

.slider .bnt-card .bnt-card-btn {
	flex: 1;
}

.tp-slr p a {
	display: inline-block !important;
	background: transparent !important;
	color: #1a1a1a !important;
	border: 2px solid #1a1a1a !important;
	border-radius: 8px !important;
	padding: 8px 20px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	text-decoration: none !important;
	transition: all 0.2s !important;
}

.tp-slr p a:hover {
	background: #f6821f !important;
	color: #fff !important;
	border-color: #f6821f !important;
}

.button.is-outline,
a.button.is-outline {
	background: transparent !important;
	color: #1a1a1a !important;
	border: 2px solid #1a1a1a !important;
	border-radius: 8px !important;
	padding: 10px 24px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: all 0.2s !important;
}

.button.is-outline:hover,
a.button.is-outline:hover {
	background: #f6821f !important;
	color: #fff !important;
	border-color: #f6821f !important;
}

.button.primary,
a.button.primary,
.button.alt,
a.button.alt {
	background: #f6821f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 10px 24px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: all 0.2s !important;
}

.button.primary:hover,
a.button.primary:hover,
.button.alt:hover,
a.button.alt:hover {
	background: #e0741a !important;
}

.bnt-card-actions .bnt-card-btn .product_type_variable,
.bnt-card-actions .bnt-card-btn .product_type_grouped {
	display: none;
}

.bnt-card > a.button,
.bnt-card > .button.add_to_cart_button,
.bnt-card > a.add_to_cart_button {
	display: none !important;
}

.bnt-card-actions:has(.product_type_variable) .bnt-quick-view,
.bnt-card-actions:has(.product_type_grouped) .bnt-quick-view {
	flex: 1;
}

.bnt-archive-grid .bnt-card .bnt-card-actions .bnt-card-btn a.add_to_cart_button,
.bnt-archive-grid .bnt-card .bnt-card-actions .bnt-card-btn a.button {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.bnt-archive-grid .bnt-card .bnt-card-actions .bnt-card-btn a.product_type_variable {
	display: none !important;
}

.page-category-layout-full-width .row-main,
.archive .row-main {
	max-width: 100% !important;
	padding: 0 20px !important;
}

.archive .shop-container {
	max-width: 100% !important;
}

.archive .category-page-row > .col {
	max-width: 100% !important;
	flex-basis: 100% !important;
}

@media (max-width: 640px) {
	.bnt-archive-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; padding: 12px 12px 30px !important; }
	.bnt-skeleton-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 12px; }
	.bnt-card-body { padding: 12px; }
	.bnt-card-title { font-size: 13px; }
	.bnt-card-price { font-size: 16px; }
	.bnt-card-actions { padding: 0 12px 12px; gap: 6px; }
	.bnt-card-actions .bnt-card-btn a,
	.bnt-card-actions .bnt-card-btn button { padding: 9px; font-size: 11px; }
	.bnt-quick-view { width: 38px; font-size: 15px; }
	.bnt-trust { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
	.bnt-trust-item { padding: 10px 12px; gap: 8px; }
	.bnt-trust-text { font-size: 11px; }
	.bnt-archive-search-inner { padding: 0 12px; }
}

/* Footer redesign */
.footer-wrapper {
	background: #111 !important;
}

.footer-wrapper .widget-title,
.footer-wrapper h3.widget-title {
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	color: #fff !important;
	margin-bottom: 20px !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid #f6821f !important;
	display: inline-block !important;
}

.footer-wrapper .widget ul li {
	margin-bottom: 8px !important;
}

.footer-wrapper .widget ul li a {
	color: #999 !important;
	text-decoration: none !important;
	font-size: 14px !important;
	transition: all 0.2s !important;
	display: inline-block !important;
}

.footer-wrapper .widget ul li a:hover {
	color: #f6821f !important;
	padding-left: 4px !important;
}

.footer-wrapper .icon-box-text p,
.footer-wrapper .icon-box-text span,
.footer-wrapper .icon-box-text a {
	color: #bbb !important;
	font-size: 14px !important;
	transition: color 0.2s !important;
}

.footer-wrapper .icon-box-text a:hover {
	color: #f6821f !important;
}

.footer-wrapper .icon-box .icon {
	color: #f6821f !important;
}

.footer-wrapper .ftr-newsletter p {
	color: #999 !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
}

.footer-wrapper .ftr-newsletter input[type="email"] {
	background: #1a1a1a !important;
	border: 1px solid #333 !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	color: #fff !important;
	font-size: 14px !important;
	width: 100% !important;
	transition: border-color 0.2s !important;
}

.footer-wrapper .ftr-newsletter input[type="email"]:focus {
	border-color: #f6821f !important;
	outline: none !important;
}

.footer-wrapper .ftr-newsletter input[type="email"]::placeholder {
	color: #666 !important;
}

.footer-wrapper .ftr-newsletter button[type="submit"] {
	background: #f6821f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 12px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	cursor: pointer !important;
	width: 100% !important;
	transition: background 0.2s !important;
}

.footer-wrapper .ftr-newsletter button[type="submit"]:hover {
	background: #e0741a !important;
}

.footer-wrapper .ftr-newsletter span a {
	color: #f6821f !important;
}

.footer-wrapper .row:last-child {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.footer-wrapper {
	padding-bottom: 20px !important;
}

.absolute-footer {
	background: #0a0a0a !important;
	border-top: 1px solid #222 !important;
	padding: 12px 0 !important;
	margin-top: 0 !important;
}

.absolute-footer .container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.absolute-footer .copyright-footer,
.absolute-footer p {
	color: #666 !important;
	font-size: 13px !important;
}

.absolute-footer .copyright-footer a {
	color: #888 !important;
	text-decoration: none !important;
}

.absolute-footer .copyright-footer a:hover {
	color: #f6821f !important;
}

.absolute-footer .row {
	text-align: center !important;
	justify-content: center !important;
}

.absolute-footer .copyright-footer {
	text-align: center !important;
	width: 100% !important;
}

.absolute-footer .payment-icons img {
	opacity: 0.8;
	transition: opacity 0.2s;
	border-radius: 4px;
}

.absolute-footer .payment-icons img:hover {
	opacity: 1;
}

.footer-wrapper .row {
	max-width: 1240px !important;
	margin: 0 auto !important;
}

.footer-wrapper .col-inner {
	padding: 10px !important;
}

@media (max-width: 640px) {
	.footer-wrapper .widget-title,
	.footer-wrapper h3.widget-title {
		font-size: 14px !important;
		margin-bottom: 14px !important;
	}
	.footer-wrapper .widget ul li a {
		font-size: 13px !important;
	}
}

.header-top {
	background: #1a1a1a !important;
	border-bottom: 1px solid #333 !important;
	font-size: 12px !important;
	letter-spacing: 0.5px !important;
}

.header-top .nav-top-link {
	color: #ccc !important;
	font-size: 12px !important;
	transition: color 0.2s !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.header-top .nav-top-link:hover {
	color: #f6821f !important;
}

.header-top .cart-item .nav-top-link {
	color: #fff !important;
	font-weight: 600 !important;
}

.header-top .header-button .button {
	background: #f6821f !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 6px 16px !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
}

.header-top .header-button .button:hover {
	background: #e0741a !important;
}

.bnt-card-rating {
	display: flex;
	align-items: center;
	gap: 1px;
	margin-bottom: 6px;
}
.bnt-star {
	font-size: 14px;
	color: #ddd;
	line-height: 1;
}
.bnt-star.filled {
	color: var(--bnt-orange);
}
.bnt-rating-count {
	font-size: 12px;
	color: var(--bnt-gray);
	margin-left: 4px;
}
.bnt-low-stock-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: var(--bnt-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.bnt-video-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	z-index: 2;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.bnt-card:hover .bnt-video-badge {
	opacity: 1;
}

.bnt-load-more-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 20px 40px;
	text-align: center;
}
.bnt-load-more-btn {
	display: inline-block;
	background: var(--bnt-dark);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.bnt-load-more-btn:hover {
	background: var(--bnt-orange);
}
.bnt-load-more-count {
	font-weight: 400;
	opacity: 0.7;
}
.bnt-all-loaded {
	font-size: 14px;
	color: var(--bnt-gray);
	padding: 10px;
}
.bnt-fade-in {
	animation: bntFadeIn 0.4s ease;
}
@keyframes bntFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.bnt-recently-viewed {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 40px;
}
.bnt-rv-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--bnt-dark);
	margin: 0 0 16px;
}
.bnt-rv-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.bnt-rv-scroll::-webkit-scrollbar { display: none; }
.bnt-rv-card {
	flex: 0 0 220px;
	background: var(--bnt-white);
	border-radius: var(--bnt-radius);
	overflow: hidden;
	box-shadow: var(--bnt-shadow);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}
.bnt-rv-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bnt-shadow-hover);
}
.bnt-rv-img {
	aspect-ratio: 1;
	background: var(--bnt-light);
	overflow: hidden;
}
.bnt-rv-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
}
.bnt-rv-body {
	padding: 12px;
}
.bnt-rv-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--bnt-dark);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 6px;
}
.bnt-rv-price {
	font-size: 15px;
	font-weight: 700;
	color: var(--bnt-orange);
}
@media (max-width: 640px) {
	.bnt-rv-card { flex: 0 0 160px; }
	.bnt-rv-name { font-size: 12px; }
	.bnt-rv-price { font-size: 13px; }
}

.bnt-filter-toggle {
	flex-shrink: 0;
	padding: 7px 14px;
	border: 1px solid var(--bnt-border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	background: var(--bnt-white);
	cursor: pointer;
	transition: all 0.2s;
}
.bnt-filter-toggle:hover,
.bnt-filter-toggle.active {
	background: var(--bnt-dark);
	color: #fff;
	border-color: var(--bnt-dark);
}
.bnt-filter-toggle.has-filters {
	background: var(--bnt-orange);
	color: #fff;
	border-color: var(--bnt-orange);
}
.bnt-filter-panel {
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px 20px;
	border-top: 1px solid var(--bnt-border);
}
.bnt-fp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.bnt-fp-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bnt-dark);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.bnt-fp-check {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--bnt-dark);
	padding: 3px 0;
	cursor: pointer;
}
.bnt-fp-check input {
	accent-color: var(--bnt-orange);
}
.bnt-fp-count {
	color: var(--bnt-gray);
	font-size: 11px;
}
.bnt-fp-price {
	display: flex;
	align-items: center;
	gap: 8px;
}
.bnt-fp-price input {
	width: 100px;
	padding: 6px 10px;
	border: 1px solid var(--bnt-border);
	border-radius: 6px;
	font-size: 13px;
}
.bnt-fp-price span {
	color: var(--bnt-gray);
}
.bnt-fp-actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--bnt-border);
}
.bnt-fp-apply {
	background: var(--bnt-dark);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.bnt-fp-apply:hover {
	background: var(--bnt-orange);
}
.bnt-fp-clear {
	background: transparent;
	color: var(--bnt-gray);
	border: 1px solid var(--bnt-border);
	border-radius: 8px;
	padding: 10px 24px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
}
.bnt-fp-clear:hover {
	border-color: var(--bnt-dark);
	color: var(--bnt-dark);
}
@media (max-width: 640px) {
	.bnt-filter-panel {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		top: auto;
		z-index: 200;
		background: var(--bnt-white);
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
		max-height: 85vh;
		overflow-y: auto;
		transform: translateY(100%);
		transition: transform 0.3s ease;
		padding: 20px;
	}
	.bnt-filter-panel[style*="display: none"] {
		transform: translateY(100%);
	}
	.bnt-filter-panel:not([style*="display: none"]) {
		transform: translateY(0);
	}
	.bnt-fp-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.bnt-fp-price input {
		width: 80px;
	}
}
.bnt-filter-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	z-index: 199;
}
.bnt-filter-overlay.open {
	display: block;
}

.header-main {
	background: #fff !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
	padding: 10px 0 !important;
}

.header-main .logo img {
	max-height: 50px !important;
}

.header-main .phone-number,
.header-main .header-contact-text {
	font-size: 14px !important;
	color: #333 !important;
	font-weight: 500 !important;
}

.header-main .social-icons a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 50% !important;
	background: #f5f5f5 !important;
	color: #555 !important;
	font-size: 14px !important;
	transition: all 0.2s !important;
	margin: 0 3px !important;
}

.header-main .social-icons a:hover {
	background: #f6821f !important;
	color: #fff !important;
}

.header-main .social-icons a .icon-facebook { color: inherit !important; }
.header-main .social-icons a .icon-instagram { color: inherit !important; }
.header-main .social-icons a .icon-youtube { color: inherit !important; }
.header-main .social-icons a .icon-twitter { color: inherit !important; }

.social-icon .fa-facebook:before,
.social-icon .fa-instagram:before,
.social-icon .fa-youtube-play:before,
.social-icon .fa-twitter:before {
	font-family: "Font Awesome 5 Brands", "FontAwesome" !important;
	font-weight: 400 !important;
}
.social-icon .fa-facebook:before { content: "\f39e" !important; }
.social-icon .fa-instagram:before { content: "\f16d" !important; }
.social-icon .fa-youtube-play:before { content: "\f167" !important; }
.social-icon .fa-twitter:before { content: "\f099" !important; }

.header-bottom {
	border-top: 1px solid #f0f0f0 !important;
	background: #fff !important;
}

.header-search-form .search-field {
	border: 2px solid #eee !important;
	border-radius: 10px !important;
	padding: 12px 48px 12px 18px !important;
	font-size: 15px !important;
	transition: border-color 0.2s !important;
}

.header-search-form .search-field:focus {
	border-color: #f6821f !important;
	outline: none !important;
}

.header-search-form .ux-search-submit {
	background: #f6821f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 10px 10px 0 !important;
	width: 48px !important;
	transition: background 0.2s !important;
}

.header-search-form .ux-search-submit:hover {
	background: #e0741a !important;
}

.top-bar-nav .nav > li > a {
	color: #ccc !important;
	font-size: 12px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	transition: color 0.2s !important;
}

.top-bar-nav .nav > li > a:hover {
	color: #f6821f !important;
}
