/* =========================================================================
   Brightwell theme styles
   Sections:
   01 Tokens and base
   02 Utilities, buttons, grids
   03 Header
   04 Hero slider
   05 Brands
   06 Category grid
   07 Promo band and banners
   08 Carousels
   09 Product card
   10 Shop layout and sidebar
   11 Single product and tabs
   12 Footer
   13 Blog and pages
   14 Responsive
   ========================================================================= */

/* ---------- 01 Tokens and base ---------- */

:root {
	--bw-accent: #fed700;
	--bw-accent-hover: #eac600;
	--bw-dark: #333e48;
	--bw-body: #7c7c7c;
	--bw-bg: #ffffff;
	--bw-bg-light: #f4f4f4;
	--bw-border: #dddddd;
	--bw-red: #e02b27;
	--bw-link: #4d6a7f;
	--bw-radius: 14px;
	--bw-radius-sm: 8px;
	--bw-font: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--bw-font);
	font-size: 14px;
	line-height: 1.6;
	color: var(--bw-body);
	background: var(--bw-bg);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--bw-dark);
	line-height: 1.25;
	margin: 0 0 0.6em;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--bw-link);
	text-decoration: none;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--bw-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.2em;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--bw-dark);
	color: #fff;
	padding: 10px 16px;
	z-index: 10000;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
	clip: auto;
	width: auto;
	height: auto;
}

/* ---------- 02 Utilities, buttons, grids ---------- */

.bw-container {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 20px;
}

.bw-section {
	margin: 40px 0;
}

.bw-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 2px solid var(--bw-bg-light);
	padding-bottom: 10px;
	margin-bottom: 22px;
}

.bw-section-title {
	font-size: 20px;
	margin: 0;
}

.bw-section-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--bw-body);
	font-size: 13px;
}

.bw-section-link:hover {
	color: var(--bw-dark);
}

.bw-btn,
a.bw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--bw-accent);
	color: var(--bw-dark);
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	padding: 12px 24px;
	border: 0;
	border-radius: 20px;
	cursor: pointer;
	text-align: center;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.bw-btn:hover,
a.bw-btn:hover {
	background: var(--bw-accent-hover);
	color: var(--bw-dark);
}

.bw-btn-lg {
	padding: 15px 34px;
	font-size: 14px;
}

.bw-btn-ghost,
a.bw-btn-ghost {
	background: var(--bw-bg-light);
	color: var(--bw-dark);
}

.bw-btn-ghost:hover,
a.bw-btn-ghost:hover {
	background: var(--bw-accent);
}

.bw-grid {
	display: grid;
	gap: 20px;
}

.bw-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bw-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 22px;
}

.bw-menu a {
	color: inherit;
}

/* ---------- 03 Header ---------- */

.bw-topbar {
	background: var(--bw-bg);
	border-bottom: 1px solid var(--bw-bg-light);
	font-size: 12px;
}

.bw-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
}

.bw-topbar-welcome {
	margin: 0;
	color: var(--bw-body);
}

.bw-topbar-menu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bw-body);
	padding: 8px 0;
}

.bw-topbar-menu a:hover {
	color: var(--bw-dark);
}

.bw-header-main {
	background: var(--bw-bg);
	padding: 22px 0;
}

.bw-header-main-inner {
	display: flex;
	align-items: center;
	gap: 30px;
}

.bw-mobile-toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--bw-dark);
	cursor: pointer;
	padding: 6px;
}

.bw-mobile-toggle .bw-toggle-close {
	display: none;
}

body.bw-menu-open .bw-mobile-toggle .bw-toggle-open {
	display: none;
}

body.bw-menu-open .bw-mobile-toggle .bw-toggle-close {
	display: inline-flex;
}

.bw-logo-text {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--bw-dark);
	text-transform: lowercase;
	line-height: 1;
}

.bw-logo-text:hover {
	color: var(--bw-dark);
}

.bw-logo-dot {
	color: var(--bw-accent);
}

.bw-header-search {
	flex: 1 1 auto;
	max-width: 720px;
}

.bw-search-form {
	display: flex;
	align-items: stretch;
	border: 2px solid var(--bw-accent);
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
}

.bw-search-input {
	flex: 1 1 auto;
	border: 0;
	padding: 10px 18px;
	outline: none;
	color: var(--bw-dark);
	min-width: 0;
}

.bw-search-cat-wrap {
	display: flex;
	align-items: center;
	border-left: 1px solid var(--bw-border);
}

.bw-search-cat {
	border: 0;
	background: transparent;
	color: var(--bw-body);
	padding: 0 12px;
	max-width: 170px;
	outline: none;
	cursor: pointer;
}

.bw-search-submit {
	border: 0;
	background: var(--bw-accent);
	color: var(--bw-dark);
	padding: 0 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: background 0.15s ease;
}

.bw-search-submit:hover {
	background: var(--bw-accent-hover);
}

.bw-header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bw-header-action {
	color: var(--bw-dark);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.bw-header-action:hover {
	color: var(--bw-body);
}

.bw-cart-icon {
	position: relative;
	display: inline-flex;
}

.bw-cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background: var(--bw-accent);
	color: var(--bw-dark);
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.bw-cart-total {
	font-weight: 700;
	font-size: 13px;
}

.bw-header-nav {
	background: var(--bw-bg);
	border-top: 1px solid var(--bw-bg-light);
	border-bottom: 1px solid var(--bw-bg-light);
}

.bw-header-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 48px;
}

.bw-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.bw-primary-menu > li {
	position: relative;
}

.bw-primary-menu > li > a {
	display: inline-block;
	padding: 12px 0;
	font-weight: 600;
	color: var(--bw-dark);
	font-size: 13px;
}

.bw-primary-menu > li > a:hover {
	color: var(--bw-body);
}

.bw-primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius-sm);
	box-shadow: 0 12px 30px rgba(51, 62, 72, 0.12);
	padding: 8px 0;
	margin: 0;
	list-style: none;
	z-index: 300;
}

.bw-primary-menu > li:hover > .sub-menu,
.bw-primary-menu > li:focus-within > .sub-menu {
	display: block;
}

.bw-primary-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
	color: var(--bw-body);
	font-size: 13px;
}

.bw-primary-menu .sub-menu a:hover {
	color: var(--bw-dark);
	background: var(--bw-bg-light);
}

.bw-secondary-menu a {
	font-size: 13px;
	color: var(--bw-body);
	padding: 12px 0;
	display: inline-block;
}

.bw-nav-note {
	margin: 0;
	font-weight: 700;
	color: var(--bw-dark);
	font-size: 13px;
	white-space: nowrap;
}

/* ---------- 04 Hero slider ---------- */

.bw-hero {
	position: relative;
	overflow: hidden;
	background: var(--bw-bg-light);
}

.bw-hero-slide {
	display: none;
	min-height: 420px;
}

.bw-hero-slide.is-active {
	display: block;
	animation: bw-fade 0.5s ease;
}

@keyframes bw-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.bw-hero-theme-a { background: linear-gradient(120deg, #f7f7f7 0%, #ececec 55%, #e2e6e9 100%); }
.bw-hero-theme-b { background: linear-gradient(120deg, #f4f6f8 0%, #e8edf1 55%, #dfe6ec 100%); }
.bw-hero-theme-c { background: linear-gradient(120deg, #f8f6f1 0%, #efece3 55%, #e8e3d5 100%); }

.bw-hero-inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 420px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.bw-hero-text {
	position: relative;
	z-index: 2;
	max-width: 520px;
}

.bw-hero-line1 {
	font-size: 30px;
	font-weight: 300;
	color: var(--bw-dark);
	letter-spacing: 2px;
	margin: 0;
	line-height: 1.15;
}

.bw-hero-line2 {
	font-size: 46px;
	font-weight: 800;
	color: var(--bw-dark);
	letter-spacing: 1px;
	margin: 0 0 14px;
	line-height: 1.1;
}

.bw-hero-kicker {
	font-size: 13px;
	font-weight: 700;
	color: var(--bw-dark);
	letter-spacing: 1px;
	margin: 0;
}

.bw-hero-amount {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0 0 24px;
}

.bw-hero-price {
	font-size: 58px;
	font-weight: 800;
	color: var(--bw-dark);
	line-height: 1;
}

.bw-hero-suffix {
	font-size: 16px;
	font-weight: 700;
	color: var(--bw-dark);
}

.bw-hero-art {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	pointer-events: none;
}

.bw-hero-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(254, 215, 0, 0.18);
}

.bw-hero-circle-1 { width: 300px; height: 300px; right: 12%; top: 12%; }
.bw-hero-circle-2 { width: 160px; height: 160px; right: 34%; bottom: 10%; background: rgba(51, 62, 72, 0.08); }
.bw-hero-circle-3 { width: 90px; height: 90px; right: 6%; bottom: 24%; background: rgba(51, 62, 72, 0.05); }

.bw-hero-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 18px;
	display: flex;
	gap: 8px;
	z-index: 5;
}

.bw-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(51, 62, 72, 0.25);
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, transform 0.15s ease;
}

.bw-hero-dot.is-active {
	background: var(--bw-accent);
	transform: scale(1.2);
}

/* ---------- 05 Brands ---------- */

.bw-brands-strip {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	padding: 18px 26px;
	margin-top: 30px;
	box-shadow: 0 6px 18px rgba(51, 62, 72, 0.05);
}

.bw-brands-label {
	font-weight: 700;
	color: var(--bw-dark);
	white-space: nowrap;
}

.bw-brands-row {
	display: flex;
	align-items: center;
	gap: 26px;
	flex: 1 1 auto;
	overflow: hidden;
}

.bw-brand-logo {
	width: 120px;
	height: 34px;
	opacity: 0.8;
	transition: opacity 0.15s ease;
}

.bw-brand-item:hover .bw-brand-logo,
.bw-brand-slide:hover .bw-brand-logo {
	opacity: 1;
}

.bw-brands-more {
	font-weight: 700;
	white-space: nowrap;
	color: var(--bw-dark);
}

.bw-brands-carousel .bw-carousel-track {
	align-items: center;
}

.bw-brand-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius-sm);
}

/* ---------- 06 Category grid ---------- */

.bw-category-cell {
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	overflow: hidden;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.bw-category-cell:hover {
	box-shadow: 0 10px 24px rgba(51, 62, 72, 0.1);
	transform: translateY(-2px);
}

.bw-category-img {
	display: block;
	background: var(--bw-bg-light);
}

.bw-category-img img,
.bw-category-img .bw-ph-img {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
	display: block;
}

.bw-category-body {
	position: relative;
	padding: 18px 20px 20px;
}

.bw-category-arrow {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--bw-bg-light);
	color: var(--bw-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}

.bw-category-arrow:hover {
	background: var(--bw-accent);
}

.bw-category-name {
	font-size: 15px;
	margin: 0 40px 8px 0;
}

.bw-category-name a {
	color: var(--bw-dark);
}

.bw-category-sublist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bw-category-sublist li {
	line-height: 1.9;
}

.bw-category-sublist a {
	color: var(--bw-body);
	font-size: 13px;
}

.bw-category-sublist a:hover {
	color: var(--bw-dark);
}

.bw-category-ellipsis {
	font-weight: 700;
	letter-spacing: 2px;
}

/* ---------- 07 Promo band and banners ---------- */

.bw-promo-band {
	background:
		radial-gradient(circle at 85% 20%, rgba(254, 215, 0, 0.25), transparent 40%),
		linear-gradient(115deg, #333e48 0%, #3d4a56 55%, #46545f 100%);
	padding: 44px 0;
	margin: 40px 0;
}

.bw-promo-band-inner {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
}

.bw-promo-band-line1 {
	color: #fff;
	font-size: 26px;
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
	line-height: 1.2;
}

.bw-promo-band-line2 {
	color: #fff;
	font-size: 38px;
	font-weight: 800;
	letter-spacing: 2px;
	margin: 0 0 14px;
	line-height: 1.15;
}

.bw-promo-band-save {
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0 0 22px;
}

.bw-promo-band-percent {
	display: block;
	color: var(--bw-accent);
	font-size: 30px;
	font-weight: 800;
}

.bw-promo-band-carousel {
	min-width: 0;
}

.bw-promo-band .bw-card {
	border: 0;
}

.bw-promo-banners-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.bw-promo-banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-height: 180px;
	border-radius: var(--bw-radius);
	padding: 30px 34px;
	position: relative;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bw-promo-banner:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(51, 62, 72, 0.12);
}

.bw-promo-banner-a {
	background:
		radial-gradient(circle at 90% 10%, rgba(254, 215, 0, 0.5), transparent 45%),
		linear-gradient(115deg, #f4f4f4, #e8ebee);
}

.bw-promo-banner-b {
	background:
		radial-gradient(circle at 90% 90%, rgba(51, 62, 72, 0.14), transparent 45%),
		linear-gradient(115deg, #fdf6d8, #f8ecb8);
}

.bw-promo-banner-kicker {
	color: var(--bw-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.bw-promo-banner-title {
	color: var(--bw-dark);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.bw-promo-banner-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bw-dark);
	font-weight: 700;
	font-size: 13px;
	margin-top: 8px;
}

/* ---------- 08 Carousels ---------- */

.bw-carousel {
	position: relative;
}

.bw-carousel-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 2px 12px;
	scrollbar-width: thin;
	scrollbar-color: var(--bw-border) transparent;
}

.bw-carousel-item {
	flex: 0 0 calc((100% - 6 * 16px) / 7);
	min-width: 190px;
	scroll-snap-align: start;
	display: flex;
}

.bw-carousel-wide .bw-carousel-item {
	flex-basis: calc((100% - 4 * 16px) / 5);
	min-width: 210px;
}

.bw-carousel-brands .bw-carousel-item {
	flex-basis: calc((100% - 5 * 16px) / 6);
	min-width: 160px;
}

.bw-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--bw-border);
	background: #fff;
	color: var(--bw-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(51, 62, 72, 0.12);
	transition: background 0.15s ease, opacity 0.15s ease;
}

.bw-carousel-btn:hover {
	background: var(--bw-accent);
	border-color: var(--bw-accent);
}

.bw-carousel-prev { left: -14px; }
.bw-carousel-next { right: -14px; }

.bw-carousel-btn[disabled] {
	opacity: 0.35;
	cursor: default;
}

.bw-carousel-btn[disabled]:hover {
	background: #fff;
	border-color: var(--bw-border);
}

/* ---------- 09 Product card ---------- */

.bw-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.15s ease;
}

.bw-card:hover {
	box-shadow: 0 10px 26px rgba(51, 62, 72, 0.12);
}

.bw-card-media {
	position: relative;
	background: #fff;
}

.bw-card-img-link {
	display: block;
	padding: 14px;
}

.bw-card-img,
.bw-card-img-link img,
.bw-card-img-link .bw-ph-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
}

.bw-badge-sale {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	background: var(--bw-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 12px;
}

.bw-card-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateX(6px);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.bw-card:hover .bw-card-actions,
.bw-card:focus-within .bw-card-actions {
	opacity: 1;
	transform: translateX(0);
}

.bw-action-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bw-body);
	font-size: 12px;
}

.bw-card-actions .bw-action-link {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--bw-bg-light);
	justify-content: center;
	gap: 0;
}

.bw-card-actions .bw-action-link:hover {
	background: var(--bw-accent);
	color: var(--bw-dark);
}

.bw-card-body {
	padding: 4px 16px 10px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bw-card-cats,
.bw-card-cats a,
.bw-card-cats span {
	font-size: 11px;
	color: #9aa5ad;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.bw-card-cats a:hover {
	color: var(--bw-dark);
}

.bw-card-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.bw-card-title a {
	color: var(--bw-dark);
}

.bw-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.bw-stars {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 1;
	color: #dcdcdc;
	white-space: nowrap;
}

.bw-stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: var(--bw-accent);
	white-space: nowrap;
}

.bw-stars-count {
	font-size: 11px;
	color: #9aa5ad;
}

.bw-card-desc {
	font-size: 12px;
	color: var(--bw-body);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bw-card-sku {
	font-size: 11px;
	color: #9aa5ad;
}

.bw-card-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 10px;
	padding: 10px 16px 16px;
	margin-top: auto;
	min-width: 0;
}

.bw-card-price {
	font-size: 15px;
	font-weight: 700;
	color: var(--bw-dark);
	min-width: 0;
}

.bw-card-price del {
	color: #9aa5ad;
	font-weight: 400;
	font-size: 12px;
	margin-right: 6px;
}

.bw-card-price ins {
	color: var(--bw-red);
	text-decoration: none;
}

.bw-btn-cart,
a.bw-btn-cart {
	background: var(--bw-bg-light);
	color: var(--bw-dark);
	padding: 9px 14px;
	font-size: 12px;
	margin-left: auto;
	max-width: 100%;
}

.bw-btn-cart:hover,
a.bw-btn-cart:hover {
	background: var(--bw-accent);
}

.bw-card .added_to_cart {
	font-size: 12px;
	font-weight: 700;
	color: var(--bw-dark);
	padding: 4px 8px;
}

/* ---------- 10 Shop layout and sidebar ---------- */

.bw-main {
	padding-top: 24px;
	padding-bottom: 40px;
}

.bw-breadcrumb {
	font-size: 12px;
	color: #9aa5ad;
	margin-bottom: 18px;
}

.bw-breadcrumb a {
	color: var(--bw-body);
}

.bw-breadcrumb-sep {
	margin: 0 8px;
	color: var(--bw-border);
}

.bw-shop-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.bw-shop-sidebar .bw-widget {
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	padding: 20px;
	margin-bottom: 20px;
}

.bw-widget-title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--bw-bg-light);
}

.bw-widget-empty {
	font-size: 13px;
	color: #9aa5ad;
	margin: 0;
}

.bw-cat-list,
.bw-cat-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bw-cat-list ul {
	padding-left: 14px;
}

.bw-cat-list li {
	line-height: 2;
	font-size: 13px;
}

.bw-cat-list a {
	color: var(--bw-body);
}

.bw-cat-list a:hover {
	color: var(--bw-dark);
}

.bw-sidebar-promo {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background:
		radial-gradient(circle at 85% 15%, rgba(254, 215, 0, 0.5), transparent 50%),
		linear-gradient(135deg, #f4f4f4, #eceff1);
	border-radius: var(--bw-radius-sm);
	padding: 26px 20px;
}

.bw-sidebar-promo-kicker {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--bw-body);
	font-weight: 700;
}

.bw-sidebar-promo-title {
	color: var(--bw-dark);
	font-weight: 800;
	font-size: 18px;
}

.bw-sidebar-promo-cta {
	color: var(--bw-dark);
	font-weight: 700;
	font-size: 12px;
	margin-top: 6px;
	text-decoration: underline;
}

.bw-mini-products {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bw-mini-product {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--bw-bg-light);
}

.bw-mini-product:last-child {
	border-bottom: 0;
}

.bw-mini-thumb {
	flex: 0 0 56px;
}

.bw-mini-thumb img,
.bw-mini-thumb .bw-ph-img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: var(--bw-radius-sm);
	background: var(--bw-bg-light);
}

.bw-mini-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--bw-dark);
	line-height: 1.35;
}

.bw-mini-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--bw-dark);
}

.bw-mini-price del {
	color: #9aa5ad;
	font-weight: 400;
	margin-right: 4px;
}

.bw-mini-price ins {
	color: var(--bw-red);
	text-decoration: none;
}

/* Control bar */

.bw-shop-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	background: var(--bw-bg-light);
	border-radius: var(--bw-radius-sm);
	padding: 10px 16px;
	margin-bottom: 24px;
}

.bw-shop-controls .woocommerce-result-count {
	margin: 0;
	font-size: 13px;
}

.bw-shop-controls-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.bw-shop-controls select,
.bw-shop-controls .orderby {
	border: 1px solid var(--bw-border);
	border-radius: var(--bw-radius-sm);
	background: #fff;
	color: var(--bw-dark);
	padding: 7px 10px;
	font-size: 13px;
	cursor: pointer;
}

.bw-shop-controls form.woocommerce-ordering,
.bw-per-page-form {
	margin: 0;
}

.bw-view-switch {
	display: inline-flex;
	gap: 6px;
}

.bw-view-btn {
	width: 34px;
	height: 34px;
	border-radius: var(--bw-radius-sm);
	border: 1px solid var(--bw-border);
	background: #fff;
	color: var(--bw-body);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.bw-view-btn.is-active,
.bw-view-btn:hover {
	background: var(--bw-accent);
	border-color: var(--bw-accent);
	color: var(--bw-dark);
}

/* Product loop grid: override WooCommerce defaults */

.bw-woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.bw-woocommerce ul.products::before,
.bw-woocommerce ul.products::after {
	display: none;
}

/* Single product context (related, upsells, more products): four columns */

.bw-woo-full ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bw-woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
}

/* List view */

.bw-woocommerce ul.products.bw-view-mode-list {
	grid-template-columns: 1fr;
}

.bw-woocommerce ul.products.bw-view-mode-list .bw-card {
	flex-direction: row;
	align-items: center;
}

.bw-woocommerce ul.products.bw-view-mode-list .bw-card-media {
	flex: 0 0 220px;
}

.bw-woocommerce ul.products.bw-view-mode-list .bw-card-body {
	padding: 16px;
}

.bw-woocommerce ul.products.bw-view-mode-list .bw-card-foot {
	flex-direction: column;
	align-items: flex-end;
	padding: 16px;
	gap: 12px;
}

/* Pagination */

.bw-woocommerce nav.woocommerce-pagination {
	text-align: center;
}

.bw-woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 6px;
	border: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bw-woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	float: none;
	overflow: visible;
}

.bw-woocommerce nav.woocommerce-pagination ul li a,
.bw-woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--bw-border);
	background: #fff;
	color: var(--bw-dark);
	font-weight: 600;
	padding: 0 8px;
}

.bw-woocommerce nav.woocommerce-pagination ul li span.current,
.bw-woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--bw-accent);
	border-color: var(--bw-accent);
	color: var(--bw-dark);
}

/* WooCommerce notices */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--bw-accent);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--bw-dark);
}

/* Generic Woo buttons follow theme style */

.bw-woocommerce .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
	background: var(--bw-accent);
	color: var(--bw-dark);
	border-radius: 20px;
	font-weight: 700;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
	background: var(--bw-accent-hover);
	color: var(--bw-dark);
}

/* ---------- 11 Single product and tabs ---------- */

.bw-woo-full div.product div.summary {
	color: var(--bw-body);
}

.bw-single-cats,
.bw-single-cats a {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #9aa5ad;
}

.bw-single-cats {
	margin-bottom: 8px;
}

.bw-single-cats a:hover {
	color: var(--bw-dark);
}

.bw-woo-full div.product .product_title {
	font-size: 26px;
	margin-bottom: 10px;
}

.bw-single-actions {
	display: flex;
	gap: 20px;
	padding: 12px 0;
	margin: 12px 0;
	border-top: 1px solid var(--bw-bg-light);
	border-bottom: 1px solid var(--bw-bg-light);
}

.bw-single-actions .bw-action-link {
	font-size: 13px;
	color: var(--bw-body);
}

.bw-single-actions .bw-action-link:hover {
	color: var(--bw-dark);
}

.bw-woo-full div.product p.price,
.bw-woo-full div.product span.price {
	color: var(--bw-dark);
	font-size: 26px;
	font-weight: 800;
}

.bw-woo-full div.product p.price ins,
.bw-woo-full div.product span.price ins {
	color: var(--bw-red);
	text-decoration: none;
}

.bw-woo-full div.product p.price del,
.bw-woo-full div.product span.price del {
	color: #9aa5ad;
	font-size: 18px;
	font-weight: 400;
}

.bw-woo-full div.product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 20px 0;
}

.bw-woo-full div.product form.cart div.quantity .qty {
	width: 70px;
	padding: 10px;
	border: 1px solid var(--bw-border);
	border-radius: var(--bw-radius-sm);
}

.bw-woo-full div.product form.cart .button {
	padding: 13px 30px;
}

.bw-woo-full div.product .woocommerce-product-details__short-description ul {
	padding-left: 1.1em;
}

/* Tabs */

.bw-woo-full .woocommerce-tabs {
	margin-top: 40px;
}

.bw-woo-full .woocommerce-tabs ul.tabs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 -1px;
	padding: 0;
	border: 0;
	background: none;
}

.bw-woo-full .woocommerce-tabs ul.tabs::before,
.bw-woo-full .woocommerce-tabs ul.tabs::after {
	display: none;
}

.bw-woo-full .woocommerce-tabs ul.tabs li {
	border: 1px solid var(--bw-bg-light);
	border-bottom: 0;
	border-radius: var(--bw-radius-sm) var(--bw-radius-sm) 0 0;
	background: var(--bw-bg-light);
	margin: 0;
	padding: 0;
}

.bw-woo-full .woocommerce-tabs ul.tabs li::before,
.bw-woo-full .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.bw-woo-full .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 12px 22px;
	font-weight: 700;
	color: var(--bw-body);
	font-size: 13px;
}

.bw-woo-full .woocommerce-tabs ul.tabs li.active {
	background: #fff;
	border-color: var(--bw-border);
}

.bw-woo-full .woocommerce-tabs ul.tabs li.active a {
	color: var(--bw-dark);
}

.bw-woo-full .woocommerce-tabs .panel {
	border: 1px solid var(--bw-border);
	border-radius: 0 var(--bw-radius-sm) var(--bw-radius-sm) var(--bw-radius-sm);
	padding: 26px;
	margin: 0 0 30px;
}

/* Frequently bought together */

.bw-fbt-title {
	font-size: 16px;
}

.bw-fbt-items {
	display: flex;
	align-items: stretch;
	gap: 14px;
	flex-wrap: wrap;
	margin: 18px 0;
}

.bw-fbt-plus {
	align-self: center;
	font-size: 22px;
	font-weight: 700;
	color: #9aa5ad;
}

.bw-fbt-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	width: 180px;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius-sm);
	padding: 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bw-fbt-item:hover {
	border-color: var(--bw-accent);
}

.bw-fbt-item.is-unchecked {
	opacity: 0.5;
}

.bw-fbt-thumb img,
.bw-fbt-thumb .bw-ph-img {
	width: 110px;
	height: 110px;
	object-fit: contain;
}

.bw-fbt-name {
	font-size: 12px;
	color: var(--bw-body);
	line-height: 1.4;
}

.bw-fbt-name strong {
	color: var(--bw-dark);
}

.bw-fbt-price {
	font-weight: 700;
	color: var(--bw-dark);
	font-size: 13px;
}

.bw-fbt-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	border-top: 1px solid var(--bw-bg-light);
	padding-top: 18px;
}

.bw-fbt-total-wrap {
	font-size: 14px;
	color: var(--bw-body);
	display: flex;
	align-items: center;
	gap: 8px;
}

.bw-fbt-total {
	color: var(--bw-red);
	font-size: 20px;
}

.bw-fbt-note {
	margin: 10px 0 0;
	font-size: 13px;
	color: var(--bw-red);
}

.bw-fbt-note:empty {
	display: none;
}

.bw-fbt-add.is-busy {
	opacity: 0.6;
	pointer-events: none;
}

/* Reviews */

.bw-woo-full #reviews #comments ol.commentlist {
	list-style: none;
	padding: 0;
}

.bw-woo-full #reviews #comments ol.commentlist li img.avatar {
	border-radius: 50%;
	background: var(--bw-bg-light);
	border: 0;
	padding: 0;
	width: 48px;
}

.bw-woo-full #reviews #comments ol.commentlist li .comment-text {
	border-color: var(--bw-bg-light);
	border-radius: var(--bw-radius-sm);
	margin-left: 66px;
}

.bw-woo-full .star-rating span::before,
.bw-woo-full .star-rating::before,
.bw-woo-full p.stars a {
	color: var(--bw-accent);
}

/* More products tab grid reuses .bw-grid */

.bw-more-products .bw-grid-item {
	display: flex;
}

/* Related products heading */

.bw-woo-full .related.products > h2,
.bw-woo-full .upsells.products > h2 {
	font-size: 20px;
	border-bottom: 2px solid var(--bw-bg-light);
	padding-bottom: 10px;
	margin-bottom: 22px;
}

/* ---------- 12 Footer ---------- */

.bw-footer {
	margin-top: 50px;
	background: var(--bw-bg);
	border-top: 1px solid var(--bw-bg-light);
	font-size: 13px;
}

.bw-footer-products {
	padding: 36px 0;
}

.bw-footer-products-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.bw-footer-promo-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
	height: 100%;
	min-height: 180px;
	border-radius: var(--bw-radius);
	padding: 26px;
	background:
		radial-gradient(circle at 85% 15%, rgba(254, 215, 0, 0.45), transparent 50%),
		linear-gradient(135deg, #333e48, #46545f);
}

.bw-footer-promo-kicker {
	color: var(--bw-accent);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
}

.bw-footer-promo-title {
	color: #fff;
	font-size: 20px;
	font-weight: 800;
}

.bw-footer-promo-cta {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	font-size: 12px;
	margin-top: 6px;
}

.bw-newsletter {
	background: var(--bw-accent);
	padding: 26px 0;
}

.bw-newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.bw-newsletter-text {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--bw-dark);
}

.bw-newsletter-icon {
	display: inline-flex;
	color: var(--bw-dark);
}

.bw-newsletter-text p {
	margin: 0;
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.bw-newsletter-text strong {
	font-size: 18px;
	font-weight: 800;
}

.bw-newsletter-form {
	position: relative;
	display: flex;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	flex: 0 1 480px;
	min-width: 280px;
}

.bw-newsletter-input {
	flex: 1 1 auto;
	border: 0;
	padding: 13px 20px;
	outline: none;
	color: var(--bw-dark);
	min-width: 0;
}

.bw-newsletter-btn {
	border: 0;
	background: var(--bw-dark);
	color: #fff;
	font-weight: 700;
	padding: 0 28px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.bw-newsletter-btn:hover {
	opacity: 0.9;
}

.bw-newsletter-msg {
	position: absolute;
	left: 20px;
	bottom: -24px;
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--bw-dark);
}

.bw-footer-widgets {
	padding: 40px 0;
	background: var(--bw-bg-light);
}

.bw-footer-widgets-inner {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 40px;
}

.bw-logo-footer {
	font-size: 26px;
	display: inline-block;
	margin-bottom: 16px;
}

.bw-footer-phone {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.bw-footer-phone-icon {
	color: var(--bw-dark);
	display: inline-flex;
}

.bw-footer-phone p {
	margin: 0;
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.bw-footer-phone strong {
	color: var(--bw-dark);
	font-size: 17px;
}

.bw-footer-contact p {
	margin: 0 0 6px;
}

.bw-footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.bw-footer-menu {
	display: block;
}

.bw-footer-menu li {
	line-height: 2.1;
}

.bw-footer-menu a {
	color: var(--bw-body);
}

.bw-footer-menu a:hover {
	color: var(--bw-dark);
}

.bw-copyright {
	background: var(--bw-dark);
	color: #cfd5da;
	padding: 16px 0;
	font-size: 12px;
}

.bw-copyright-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.bw-copyright p {
	margin: 0;
}

.bw-payments {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.bw-payment-icon {
	width: 52px;
	height: 20px;
	display: block;
}

/* Placeholder action feedback pulse */

.bw-pulse {
	animation: bw-pulse 0.4s ease;
}

@keyframes bw-pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.25); }
	100% { transform: scale(1); }
}

/* ---------- 13 Blog and pages ---------- */

.bw-page-header {
	margin-bottom: 26px;
}

.bw-page-title {
	font-size: 26px;
}

.bw-post {
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	padding: 26px;
	margin-bottom: 24px;
}

.bw-post-title {
	font-size: 22px;
}

.bw-post-title a {
	color: var(--bw-dark);
}

.bw-post-meta {
	font-size: 12px;
	color: #9aa5ad;
	display: flex;
	gap: 14px;
	margin-bottom: 14px;
}

.bw-post-thumb {
	margin-bottom: 18px;
}

.bw-post-thumb img {
	border-radius: var(--bw-radius-sm);
}

.bw-post-content :is(h2, h3, h4) {
	margin-top: 1.4em;
}

.bw-no-results {
	background: #fff;
	border: 1px solid var(--bw-bg-light);
	border-radius: var(--bw-radius);
	padding: 40px;
	max-width: 640px;
}

/* ---------- 14 Responsive ---------- */

@media (max-width: 1199px) {

	.bw-topbar-welcome {
		display: none;
	}

	.bw-topbar-inner {
		justify-content: center;
	}

	.bw-mobile-toggle {
		display: inline-flex;
	}

	.bw-header-main-inner {
		flex-wrap: wrap;
		gap: 16px;
	}

	.bw-logo {
		flex: 1 1 auto;
		text-align: center;
	}

	.bw-logo .custom-logo-link,
	.bw-logo .bw-logo-text {
		display: inline-block;
	}

	.bw-header-search {
		order: 5;
		flex: 1 1 100%;
		max-width: none;
	}

	.bw-header-nav {
		display: none;
		border-bottom: 1px solid var(--bw-bg-light);
	}

	body.bw-menu-open .bw-header-nav {
		display: block;
	}

	.bw-header-nav-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-top: 10px;
		padding-bottom: 14px;
	}

	.bw-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.bw-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.bw-topbar .bw-menu,
	.bw-footer .bw-menu {
		flex-direction: row;
	}

	.bw-topbar-menu {
		gap: 4px 18px;
		justify-content: center;
	}

	.bw-primary-menu > li > a,
	.bw-secondary-menu a {
		display: block;
		padding: 10px 0;
		border-bottom: 1px solid var(--bw-bg-light);
	}

	.bw-primary-menu .sub-menu {
		position: static;
		display: block;
		border: 0;
		box-shadow: none;
		padding: 0 0 0 16px;
		min-width: 0;
	}

	.bw-nav-note {
		padding-top: 12px;
	}

	.bw-cart-total {
		display: none;
	}

	.bw-shop-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.bw-shop-sidebar,
	.bw-shop-main {
		min-width: 0;
		max-width: 100%;
	}

	.bw-shop-sidebar {
		overflow-x: hidden;
		overflow-wrap: break-word;
	}

	.bw-shop-sidebar .bw-widget img,
	.bw-shop-sidebar .bw-widget iframe,
	.bw-shop-sidebar .bw-widget input,
	.bw-shop-sidebar .bw-widget select {
		max-width: 100%;
	}

	.bw-woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bw-footer-widgets-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {

	.bw-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bw-promo-band-inner {
		grid-template-columns: 1fr;
	}

	.bw-footer-products-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bw-woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bw-brands-strip {
		flex-wrap: wrap;
	}

	.bw-hero-slide,
	.bw-hero-inner {
		min-height: 340px;
	}

	.bw-hero-line2 {
		font-size: 36px;
	}

	.bw-hero-price {
		font-size: 46px;
	}
}

@media (max-width: 600px) {

	.bw-promo-banners-row {
		grid-template-columns: 1fr;
	}

	.bw-footer-products-inner,
	.bw-footer-links {
		grid-template-columns: 1fr;
	}

	.bw-woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.bw-card-foot {
		flex-direction: column;
		align-items: stretch;
	}

	.bw-btn-cart,
	a.bw-btn-cart {
		width: 100%;
	}

	.bw-search-cat-wrap {
		display: none;
	}

	.bw-newsletter-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.bw-newsletter-form {
		flex: 1 1 auto;
	}

	.bw-woocommerce ul.products.bw-view-mode-list .bw-card {
		flex-direction: column;
	}

	.bw-woocommerce ul.products.bw-view-mode-list .bw-card-media {
		flex-basis: auto;
	}
}

/* ---------- 15 Handheld layout, Electro style density under 768px ---------- */

@media (max-width: 767px) {

	body {
		overflow-x: hidden;
	}

	.bw-container {
		padding: 0 14px;
	}

	.bw-section {
		margin: 26px 0;
	}

	.bw-section-head {
		padding-bottom: 8px;
		margin-bottom: 14px;
	}

	.bw-section-title {
		font-size: 17px;
	}

	.bw-section-link {
		font-size: 12px;
	}

	/* Placeholder images stay small and constrained */

	.bw-ph-img {
		max-height: 180px;
	}

	/* Header: hamburger left, centered logo, icons right, search on its own row */

	.bw-topbar {
		display: none;
	}

	.bw-header-main {
		padding: 8px 0;
	}

	.bw-header-main-inner {
		gap: 8px;
	}

	.bw-mobile-toggle {
		min-width: 42px;
		min-height: 42px;
		align-items: center;
		justify-content: center;
	}

	.bw-header-main .bw-logo-img {
		height: 28px;
	}

	.bw-header-compare,
	.bw-header-wishlist {
		display: none;
	}

	.bw-header-actions {
		gap: 4px;
	}

	.bw-header-action {
		min-width: 42px;
		min-height: 42px;
		justify-content: center;
	}

	.bw-header-search {
		margin-bottom: 4px;
	}

	.bw-search-input {
		padding: 8px 14px;
		font-size: 16px;
	}

	.bw-search-submit {
		padding: 0 16px;
		min-width: 46px;
	}

	.bw-primary-menu > li > a,
	.bw-secondary-menu a {
		padding: 12px 0;
		font-size: 14px;
	}

	/* Hero: compact heights and type */

	.bw-hero-slide,
	.bw-hero-inner {
		min-height: 230px;
	}

	.bw-hero-inner {
		padding-top: 20px;
		padding-bottom: 36px;
	}

	.bw-hero-line1 {
		font-size: 15px;
		letter-spacing: 1px;
	}

	.bw-hero-line2 {
		font-size: 24px;
		letter-spacing: 0.5px;
		margin-bottom: 6px;
	}

	.bw-hero-kicker {
		font-size: 11px;
	}

	.bw-hero-amount {
		margin-bottom: 12px;
	}

	.bw-hero-price {
		font-size: 32px;
	}

	.bw-hero-suffix {
		font-size: 13px;
	}

	.bw-hero .bw-btn-lg {
		padding: 12px 22px;
		font-size: 13px;
	}

	.bw-hero-circle-1 {
		width: 140px;
		height: 140px;
	}

	.bw-hero-circle-2 {
		width: 70px;
		height: 70px;
	}

	.bw-hero-circle-3 {
		display: none;
	}

	.bw-hero-dots {
		bottom: 10px;
	}

	/* Brands strip: one swipeable line */

	.bw-brands-strip {
		flex-wrap: nowrap;
		gap: 14px;
		padding: 12px 14px;
		margin-top: 20px;
	}

	.bw-brands-label,
	.bw-brands-more {
		font-size: 12px;
	}

	.bw-brands-row {
		overflow-x: auto;
		gap: 18px;
		-webkit-overflow-scrolling: touch;
	}

	.bw-brand-logo {
		width: 88px;
		height: 26px;
		flex: 0 0 auto;
	}

	/* Category grid: two compact cards per row, no subcategory lists */

	.bw-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.bw-category-sublist,
	.bw-category-arrow {
		display: none;
	}

	.bw-category-img img,
	.bw-category-img .bw-ph-img {
		aspect-ratio: 4 / 3;
	}

	.bw-category-body {
		padding: 10px 10px 12px;
	}

	.bw-category-name {
		margin: 0;
		font-size: 13px;
		text-align: center;
	}

	/* Promo band and banners */

	.bw-promo-band {
		padding: 22px 0;
		margin: 26px 0;
	}

	.bw-promo-band-inner {
		gap: 16px;
	}

	.bw-promo-band-line1 {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.bw-promo-band-line2 {
		font-size: 24px;
		letter-spacing: 1px;
		margin-bottom: 6px;
	}

	.bw-promo-band-save {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.bw-promo-band-percent {
		font-size: 22px;
	}

	.bw-promo-banner {
		min-height: 120px;
		padding: 18px 20px;
	}

	.bw-promo-banner-title {
		font-size: 18px;
	}

	/* Carousels: two cards per viewport, swipe instead of buttons */

	.bw-carousel-track {
		gap: 10px;
		padding: 2px 2px 8px;
	}

	.bw-carousel-item,
	.bw-carousel-wide .bw-carousel-item {
		flex: 0 0 calc((100% - 10px) / 2);
		min-width: 0;
	}

	.bw-carousel-brands .bw-carousel-item {
		flex: 0 0 calc((100% - 20px) / 3);
		min-width: 0;
	}

	.bw-carousel-btn {
		display: none;
	}

	/* Product cards: tighter, no hover-only actions on touch */

	.bw-card-actions {
		display: none;
	}

	.bw-card-img-link {
		padding: 10px;
	}

	.bw-card-body {
		padding: 2px 10px 8px;
	}

	.bw-card-title {
		font-size: 13px;
	}

	.bw-card-desc,
	.bw-card-sku {
		display: none;
	}

	.bw-card-foot {
		padding: 8px 10px 12px;
	}

	.bw-btn-cart,
	a.bw-btn-cart {
		padding: 12px 14px;
		min-height: 40px;
	}

	.bw-view-btn {
		width: 40px;
		height: 40px;
	}

	.bw-hero-dot {
		width: 12px;
		height: 12px;
	}

	/* Footer and newsletter: compact stacking */

	.bw-footer {
		margin-top: 30px;
	}

	.bw-footer-products {
		padding: 20px 0;
	}

	.bw-footer-products-inner {
		gap: 16px;
	}

	.bw-footer-promo-card {
		min-height: 120px;
		padding: 20px;
	}

	.bw-newsletter {
		padding: 16px 0;
	}

	.bw-newsletter-inner {
		gap: 12px;
	}

	.bw-newsletter-text {
		gap: 10px;
	}

	.bw-newsletter-text strong {
		font-size: 15px;
	}

	.bw-newsletter-icon svg {
		width: 24px;
		height: 24px;
	}

	.bw-newsletter-input {
		padding: 11px 16px;
		font-size: 16px;
	}

	.bw-newsletter-btn {
		padding: 0 20px;
	}

	.bw-footer-widgets {
		padding: 24px 0;
	}

	.bw-footer-widgets-inner {
		gap: 20px;
	}

	.bw-footer-links {
		gap: 14px;
	}

	.bw-copyright-inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 8px;
	}

	/* Shop controls */

	.bw-shop-controls {
		padding: 8px 12px;
		gap: 10px;
	}
}

/* Brand logo images */
.bw-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.bw-logo-img {
	height: 44px;
	width: auto;
	max-width: 100%;
}
.bw-logo-img-footer {
	height: 40px;
	margin-bottom: 16px;
}
@media (max-width: 991px) {
	.bw-logo-img {
		height: 34px;
	}
}
