/*
Theme Name: Boom Warehouse
Theme URI: https://boomwarehouse.com
Author: Boom Warehouse
Author URI: https://boomwarehouse.com
Description: Custom WooCommerce theme for Boom Warehouse — warehouse-industrial aesthetic for refurbished electronics retail.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
License URI: https://boomwarehouse.com
Text Domain: boom-warehouse
Tags: woocommerce, e-commerce, mobile-first, custom-theme

Boom Warehouse — Bold. Gritty. Real deals.
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --bw-navy: #1B3A5C;
  --bw-navy-dark: #132942;
  --bw-navy-light: #2A5580;
  --bw-orange: #E8792B;
  --bw-orange-dark: #D06520;
  --bw-orange-light: #F29B5A;
  --bw-charcoal: #2D2D2D;
  --bw-charcoal-light: #4A4A4A;
  --bw-offwhite: #F5F5F0;
  --bw-cream: #FAF9F6;
  --bw-border: #D4D0C8;
  --bw-text: #2D2D2D;
  --bw-text-muted: #6B6B6B;
  --bw-success: #2D8B4E;
  --bw-warning: #D4890A;
  --bw-danger: #C0392B;
  --bw-info: #2980B9;

  --bw-badge-new: #2D8B4E;
  --bw-badge-refurbished: #2980B9;
  --bw-badge-openbox: #D4890A;

  --bw-font-display: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  --bw-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bw-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --bw-radius-sm: 6px;
  --bw-radius-md: 8px;
  --bw-radius-lg: 12px;
  --bw-radius-pill: 999px;

  --bw-shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --bw-shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --bw-shadow-lg: 0 4px 16px rgba(0,0,0,0.1);
  --bw-shadow-product: 0 1px 4px rgba(0,0,0,0.06);

  --bw-container: 1200px;
  --bw-gap: 1rem;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--bw-font-body);
  color: var(--bw-text);
  background-color: #F8F8F8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--bw-navy);
  text-decoration: none;
  transition: color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bw-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--bw-navy);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.bw-container {
  width: 100%;
  max-width: var(--bw-container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .bw-container { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .bw-container { padding-inline: 2rem; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.bw-header {
  background: var(--bw-navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bw-header__top-bar {
  background: var(--bw-navy-dark);
  padding: 0.35rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bw-header__top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bw-header__top-bar a {
  color: rgba(255,255,255,0.8);
}

.bw-header__top-bar a:hover {
  color: var(--bw-orange);
}

.bw-header__main {
  padding: 0.75rem 0;
}

.bw-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bw-logo {
  font-family: var(--bw-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bw-logo span {
  color: var(--bw-orange);
}

/* Search */
.bw-search {
  flex: 1;
  max-width: 500px;
  display: none;
}

@media (min-width: 768px) {
  .bw-search { display: block; }
}

.bw-search__form {
  display: flex;
  border-radius: var(--bw-radius-md);
  overflow: hidden;
  background: #fff;
}

.bw-search__input {
  flex: 1;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--bw-charcoal);
  outline: none;
}

.bw-search__btn {
  background: var(--bw-orange);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.bw-search__btn:hover {
  background: var(--bw-orange-dark);
}

/* Header actions */
.bw-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bw-header__actions a {
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bw-header__actions a:hover {
  color: var(--bw-orange);
}

.bw-cart-count {
  background: var(--bw-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.bw-menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .bw-menu-toggle { display: none; }
}

/* Navigation */
.bw-nav {
  background: var(--bw-navy-light);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.bw-nav__list {
  list-style: none;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bw-nav__list::-webkit-scrollbar { display: none; }

.bw-nav__list a {
  color: rgba(255,255,255,0.9);
  font-family: var(--bw-font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 1rem;
  display: block;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
}

.bw-nav__list a:hover,
.bw-nav__list .current-menu-item a {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--bw-orange);
}

/* Mobile nav */
.bw-mobile-nav {
  display: none;
  background: var(--bw-navy);
  padding: 1rem;
}

.bw-mobile-nav.is-open {
  display: block;
}

.bw-mobile-nav .bw-search {
  display: block;
  max-width: 100%;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bw-mobile-nav { display: none !important; }
}

/* ==========================================================================
   HERO / HOMEPAGE
   ========================================================================== */
.bw-hero {
  background: linear-gradient(135deg, var(--bw-navy) 0%, var(--bw-navy-dark) 100%);
  padding: 3rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/noise.png') repeat;
  opacity: 0.04;
  pointer-events: none;
}

.bw-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bw-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.bw-hero h1 span {
  color: var(--bw-orange);
}

.bw-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.bw-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--bw-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--bw-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
}

.bw-btn--primary {
  background: var(--bw-orange);
  color: #fff;
  border-color: var(--bw-orange);
}

.bw-btn--primary:hover {
  background: var(--bw-orange-dark);
  border-color: var(--bw-orange-dark);
  color: #fff;
}

.bw-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.bw-btn--secondary:hover {
  background: #fff;
  color: var(--bw-navy);
}

.bw-btn--navy {
  background: var(--bw-navy);
  color: #fff;
  border-color: var(--bw-navy);
}

.bw-btn--navy:hover {
  background: var(--bw-navy-dark);
  border-color: var(--bw-navy-dark);
  color: #fff;
}

.bw-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.bw-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.bw-btn--block {
  width: 100%;
}

/* Add to Cart button (generic, used in WC) */
.bw-btn--cart {
  background: var(--bw-orange);
  color: #fff;
  border: none;
  font-family: var(--bw-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: var(--bw-radius-md);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.bw-btn--cart:hover {
  background: var(--bw-orange-dark);
}

/* ==========================================================================
   BADGES (generic component)
   ========================================================================== */
.bw-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--bw-radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.bw-badge--new {
  background: var(--bw-badge-new);
  color: #fff;
}

.bw-badge--refurbished {
  background: var(--bw-badge-refurbished);
  color: #fff;
}

.bw-badge--open-box {
  background: var(--bw-badge-openbox);
  color: #fff;
}

.bw-badge--sale {
  background: var(--bw-danger);
  color: #fff;
}

/* ==========================================================================
   STOCK INDICATORS (generic component)
   ========================================================================== */
.bw-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.bw-stock::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bw-stock--in::before { background: var(--bw-success); }
.bw-stock--low::before { background: var(--bw-warning); }
.bw-stock--out::before { background: var(--bw-danger); }

.bw-stock--in { color: var(--bw-success); }
.bw-stock--low { color: var(--bw-warning); }
.bw-stock--out { color: var(--bw-danger); }

/* ==========================================================================
   LOCATION DISPLAY
   ========================================================================== */
.bw-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--bw-text-muted);
}

.bw-location__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bw-location--available {
  color: var(--bw-success);
  font-weight: 600;
}

/* ==========================================================================
   CATEGORY TILES (HOMEPAGE)
   ========================================================================== */
.bw-categories {
  padding: 2.5rem 0;
}

.bw-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .bw-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bw-categories__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.bw-category-tile {
  background: #fff;
  border-radius: var(--bw-radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: block;
}

.bw-category-tile:hover {
  box-shadow: var(--bw-shadow-md);
  border-color: rgba(0,0,0,0.1);
}

.bw-category-tile__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bw-category-tile__name {
  font-family: var(--bw-font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--bw-navy);
}

/* ==========================================================================
   VALUE PROPS / USP BAR
   ========================================================================== */
.bw-usp-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.85rem 0;
}

.bw-usp-bar__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bw-charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bw-usp-bar__list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.bw-section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bw-section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.bw-section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--bw-orange);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bw-footer {
  background: var(--bw-charcoal);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.bw-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .bw-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.bw-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bw-footer__about {
  font-size: 0.85rem;
  line-height: 1.6;
}

.bw-footer__links {
  list-style: none;
}

.bw-footer__links li {
  margin-bottom: 0.4rem;
}

.bw-footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.bw-footer__links a:hover {
  color: var(--bw-orange);
}

.bw-footer__location {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bw-footer__location strong {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

.bw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.bw-text-center { text-align: center; }
.bw-text-left { text-align: left; }
.bw-text-right { text-align: right; }
.bw-mt-1 { margin-top: 0.5rem; }
.bw-mt-2 { margin-top: 1rem; }
.bw-mt-3 { margin-top: 1.5rem; }
.bw-mb-1 { margin-bottom: 0.5rem; }
.bw-mb-2 { margin-bottom: 1rem; }
.bw-mb-3 { margin-bottom: 1.5rem; }

/* ==========================================================================
   BACK MARKET REDESIGN — bm- prefixed classes (2026-03-21)
   ========================================================================== */

/* Theme Color */
<meta name="theme-color" content="#D7FF5F">

/* --- Back Market Color Variables --- */
:root {
  --bm-lime: #D7FF5F;
  --bm-lime-dark: #C4E84A;
  --bm-white: #FFFFFF;
  --bm-black: #000000;
  --bm-light-grey: #F5F7F9;
  --bm-silver: #E8ECEF;
  --bm-text-primary: #000000;
  --bm-text-secondary: #555555;
  --bm-text-inverse: #FFFFFF;
  --bm-flash-deal: #1A1A1A;
  --bm-footer-bg: #1A1A1A;
  --bm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Trust Bar (utility top bar) --- */
.bm-trust-bar {
  background: var(--bm-flash-deal);
  color: var(--bm-text-inverse);
  font-size: 12px;
  font-family: var(--bm-font);
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.bm-trust-bar a {
  color: var(--bm-lime);
  text-decoration: none;
}
.bm-trust-bar a:hover {
  text-decoration: underline;
}

/* --- Main Header --- */
.bm-header {
  background: var(--bm-white);
  border-bottom: 1px solid var(--bm-silver);
  position: sticky;
  top: 0;
  z-index: 999;
}
.bm-header__main {
  padding: 12px 0;
}
.bm-header__main-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.bm-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.bm-logo__text {
  font-family: var(--bm-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--bm-black);
  letter-spacing: -0.02em;
  text-transform: none;
}
.bm-logo__text span {
  color: #000;
  background: #D7FF5F;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
}

/* Search Bar */
.bm-search {
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
}
.bm-search__form {
  display: flex;
  background: var(--bm-light-grey);
  border: 2px solid transparent;
  border-radius: 9999px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.bm-search__form:focus-within {
  border-color: var(--bm-black);
}
.bm-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14px;
  font-family: var(--bm-font);
  outline: none;
  color: var(--bm-text-primary);
}
.bm-search__input::placeholder {
  color: var(--bm-text-secondary);
}
.bm-search__btn {
  background: transparent;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  color: var(--bm-text-secondary);
  transition: color 0.2s;
}
.bm-search__btn:hover {
  color: var(--bm-black);
}

/* Header Actions */
.bm-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.bm-header__actions a {
  color: var(--bm-text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bm-font);
  transition: color 0.2s;
}
.bm-header__actions a:hover {
  color: var(--bm-text-secondary);
}

/* Cart count badge */
.bm-cart-count {
  background: var(--bm-black);
  color: var(--bm-white);
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--bm-font);
}

/* Menu toggle (mobile) */
.bm-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bm-black);
  padding: 8px;
}

/* --- Category Navigation Bar --- */
.bm-nav {
  background: var(--bm-white);
  border-bottom: 1px solid var(--bm-silver);
}
.bm-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  overflow-x: auto;
}
.bm-nav__list::-webkit-scrollbar { display: none; }
.bm-nav__list li {
  flex-shrink: 0;
}
.bm-nav__list a {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bm-font);
  color: var(--bm-text-primary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, font-weight 0.2s;
}
.bm-nav__list a:hover,
.bm-nav__list a:focus {
  font-weight: 600;
  border-bottom-color: var(--bm-black);
}
.bm-nav__list .current-menu-item a {
  font-weight: 700;
  border-bottom-color: var(--bm-black);
}

/* Category Bar (below nav) */
.bm-category-bar {
  background: var(--bm-white);
  border-bottom: 1px solid var(--bm-silver);
  padding: 10px 0;
}
.bm-category-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.bm-category-bar__label {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--bm-font);
  color: var(--bm-text-secondary);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bm-category-bar__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.bm-category-bar__links a {
  font-size: 13px;
  font-family: var(--bm-font);
  color: var(--bm-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.bm-category-bar__links a:hover {
  color: var(--bm-black);
}

/* --- Hero Section (Back Market style — white bg) --- */
.bm-hero {
  background: var(--bm-white);
  padding: 64px 24px;
  text-align: center;
}
.bm-hero__content {
  max-width: 800px;
  margin: 0 auto;
}
.bm-hero h1 {
  font-family: var(--bm-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--bm-black);
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bm-hero__sub {
  font-size: 18px;
  color: var(--bm-text-secondary);
  font-family: var(--bm-font);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Trust Badges Row */
.bm-trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.bm-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bm-text-primary);
}
.bm-trust-badge svg {
  width: 36px;
  height: 36px;
  color: var(--bm-black);
}
.bm-trust-badge span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--bm-font);
  color: var(--bm-text-secondary);
  text-align: center;
}

/* --- Buttons (Back Market style) --- */
.bm-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--bm-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, transform 0.1s;
  line-height: 1;
}
.bm-btn--primary {
  background: var(--bm-lime);
  color: var(--bm-black);
  border-color: var(--bm-lime);
}
.bm-btn--primary:hover {
  background: var(--bm-lime-dark);
  border-color: var(--bm-lime-dark);
  color: var(--bm-black);
}
.bm-btn--secondary {
  background: transparent;
  color: var(--bm-black);
  border-color: var(--bm-black);
}
.bm-btn--secondary:hover {
  background: var(--bm-black);
  color: var(--bm-white);
}
.bm-btn--dark {
  background: var(--bm-black);
  color: var(--bm-white);
}
.bm-btn--dark:hover {
  background: #333;
  color: var(--bm-white);
}
.bm-btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* --- Category Tiles (lime green squares) --- */
.bm-categories {
  background: var(--bm-light-grey);
  padding: 48px 24px;
}
.bm-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.bm-category-tile {
  background: var(--bm-lime);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 140px;
  justify-content: center;
}
.bm-category-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-decoration: none;
}
.bm-category-tile__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm-category-tile__icon svg {
  width: 48px;
  height: 48px;
  color: var(--bm-black);
}
.bm-category-tile__name {
  font-family: var(--bm-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--bm-black);
  text-transform: none;
}

/* --- Product Cards (Back Market style) --- */
.bm-product-card {
  background: var(--bm-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.bm-product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.bm-product-card__image {
  position: relative;
  display: block;
  background: var(--bm-light-grey);
  aspect-ratio: 1;
  overflow: hidden;
}
.bm-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s;
}
.bm-product-card:hover .bm-product-card__image img {
  transform: scale(1.03);
}
.bm-product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bm-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--bm-font);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bm-badge--excellent { background: #00C853; color: #fff; }
.bm-badge--good { background: #FFB300; color: #000; }
.bm-badge--fair { background: #999; color: #fff; }
.bm-badge--new { background: #00C853; color: #fff; }
.bm-badge--refurbished { background: #2980B9; color: #fff; }
.bm-badge--openbox { background: #FFB300; color: #000; }
.bm-badge--sale {
  background: var(--bm-lime);
  color: var(--bm-black);
}

.bm-product-card__body {
  padding: 14px 16px 16px;
}
.bm-product-card__title {
  font-family: var(--bm-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--bm-text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none;
  line-height: 1.4;
}
.bm-product-card__title a {
  color: inherit;
  text-decoration: none;
}
.bm-product-card__title a:hover {
  text-decoration: underline;
}

/* Price */
.bm-price {
  margin-bottom: 6px;
}
.bm-price__current {
  font-family: var(--bm-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--bm-text-primary);
}
.bm-price__current sup {
  font-size: 14px;
  vertical-align: super;
}
.bm-price__msrp {
  font-family: var(--bm-font);
  font-size: 13px;
  color: var(--bm-text-secondary);
  text-decoration: line-through;
  margin-left: 6px;
}

/* Star Rating */
.bm-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.bm-rating__stars {
  color: #FFD600;
  font-size: 14px;
  letter-spacing: 1px;
}
.bm-rating__count {
  font-size: 12px;
  color: var(--bm-text-secondary);
  font-family: var(--bm-font);
}

/* Stock indicator */
.bm-stock {
  font-size: 12px;
  font-family: var(--bm-font);
  margin-bottom: 10px;
}
.bm-stock--in { color: #00C853; }
.bm-stock--low { color: #FFB300; }
.bm-stock--out { color: #C0392B; }

/* Add to cart button */
.bm-product-card__addtocart {
  width: 100%;
  background: var(--bm-light-grey);
  color: var(--bm-text-primary);
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-family: var(--bm-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.bm-product-card__addtocart:hover {
  background: var(--bm-silver);
}

/* Acima financing pill */
.bm-acima-pill {
  display: inline-block;
  background: var(--bm-lime);
  color: var(--bm-black);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--bm-font);
  padding: 4px 10px;
  border-radius: 9999px;
  margin-top: 8px;
  text-decoration: none;
}

/* --- Products Grid --- */
.bm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.bm-section-heading {
  text-align: center;
  margin-bottom: 32px;
}
.bm-section-heading h2 {
  font-family: var(--bm-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--bm-text-primary);
  text-transform: none;
  letter-spacing: -0.01em;
}

/* --- Newsletter Block (lime) --- */
.bm-newsletter {
  background: var(--bm-lime);
  padding: 64px 24px;
  text-align: center;
}
.bm-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}
.bm-newsletter h2 {
  font-family: var(--bm-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--bm-black);
  text-transform: none;
  margin-bottom: 24px;
}
.bm-newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.bm-newsletter__input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border: none;
  border-radius: 9999px;
  font-family: var(--bm-font);
  font-size: 14px;
  outline: none;
}
.bm-newsletter__input:focus {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
}
.bm-newsletter__btn {
  background: var(--bm-black);
  color: var(--bm-white);
  border: none;
  border-radius: 9999px;
  padding: 14px 28px;
  font-family: var(--bm-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.bm-newsletter__btn:hover {
  background: #333;
}

/* --- Footer --- */
.bm-footer {
  background: var(--bm-footer-bg);
  color: var(--bm-text-inverse);
  padding: 64px 24px 32px;
  font-family: var(--bm-font);
}
.bm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.bm-footer__col h4 {
  font-family: var(--bm-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bm-text-inverse);
  margin-bottom: 16px;
}
.bm-footer__col p {
  font-size: 13px;
  color: var(--bm-silver);
  line-height: 1.6;
}
.bm-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bm-footer__col ul li {
  margin-bottom: 10px;
}
.bm-footer__col ul li a {
  color: var(--bm-silver);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.bm-footer__col ul li a:hover {
  color: var(--bm-white);
}
.bm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bm-footer__copy {
  font-size: 12px;
  color: var(--bm-silver);
}
.bm-footer__legal {
  display: flex;
  gap: 20px;
}
.bm-footer__legal a {
  font-size: 12px;
  color: var(--bm-silver);
  text-decoration: none;
}
.bm-footer__legal a:hover {
  color: var(--bm-white);
}

/* --- Acima Banner --- */
.bm-acima-banner {
  background: var(--bm-black);
  color: var(--bm-text-inverse);
  padding: 48px 24px;
  text-align: center;
}
.bm-acima-banner h2 {
  font-family: var(--bm-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--bm-text-inverse);
  text-transform: none;
  margin-bottom: 12px;
}
.bm-acima-banner p {
  font-size: 16px;
  color: var(--bm-silver);
  font-family: var(--bm-font);
  margin-bottom: 24px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .bm-products-grid { grid-template-columns: repeat(3, 1fr); }
  .bm-categories__grid { grid-template-columns: repeat(3, 1fr); }
  .bm-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .bm-hero h1 { font-size: 28px; }
  .bm-trust-badges { gap: 24px; }
  .bm-header__actions span { display: none; }
  .bm-nav__list { padding: 0 16px; }
  .bm-nav__list a { padding: 12px 14px; }
  .bm-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .bm-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .bm-products-grid { grid-template-columns: 1fr; }
  .bm-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .bm-trust-badges { flex-direction: column; align-items: center; }
}

/* --- Container --- */
.bm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Footer columns (from footer.php) --- */
.bm-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-footer__logo {
  text-decoration: none;
}
.bm-footer__tagline {
  font-size: 13px;
  color: var(--bm-silver);
  line-height: 1.6;
  font-family: var(--bm-font);
  margin: 0;
}
.bm-footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.bm-footer__badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bm-silver);
  font-family: var(--bm-font);
}
.bm-footer__badge-item::before {
  content: '✓';
  color: var(--bm-lime);
  font-weight: 700;
}
.bm-footer__links-col h4 {
  font-family: var(--bm-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bm-white);
  margin-bottom: 16px;
}
.bm-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bm-footer__links li {
  margin-bottom: 10px;
}
.bm-footer__links li a {
  color: var(--bm-silver);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--bm-font);
  transition: color 0.2s;
}
.bm-footer__links li a:hover {
  color: var(--bm-white);
}

/* --- Hero CTA Buttons --- */
.bm-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* --- Products section --- */
.bm-featured {
  padding: 48px 0;
  background: var(--bm-white);
}
.bm-featured--alt {
  background: var(--bm-light-grey);
}
.bm-featured .bm-container {
  max-width: 1200px;
}
.bm-text-center {
  text-align: center;
}
.bm-mt-3 {
  margin-top: 24px;
}
.bm-mt-3 .bm-btn {
  display: inline-block;
}

/* --- Acima CTA in product card --- */
.bm-product-card__acima {
  margin-top: 8px;
}

/* --- WooCommerce default button overrides --- */
.woocommerce a.button,
.woocommerce button.button {
  font-family: var(--bm-font);
  border-radius: 6px;
  font-weight: 600;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--bm-lime);
  color: var(--bm-black);
  border-color: var(--bm-lime);
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--bm-lime-dark);
  border-color: var(--bm-lime-dark);
}

/* ==========================================================================
   CATEGORY PHOTO TILES — Real product images (2026-03-21)
   ========================================================================== */

/* Grid: 3 columns on desktop, 2 on tablet, 1 on mobile */
.bm-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each tile: photo + lime overlay + text */
.bm-category-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bm-category-tile:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  text-decoration: none;
}

/* Product photo fills the tile */
.bm-category-tile__image {
  position: absolute;
  inset: 0;
}
.bm-category-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bm-category-tile:hover .bm-category-tile__image img {
  transform: scale(1.06);
}

/* Lime overlay on hover (darkens slightly so text pops) */
.bm-category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.05) 100%
  );
  transition: background 0.25s ease;
}
.bm-category-tile:hover .bm-category-tile__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.10) 100%
  );
}

/* Text content at bottom of tile */
.bm-category-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 24px;
  z-index: 2;
}

/* Category name — white bold */
.bm-category-tile__name {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* Sub-label — lime accent pill */
.bm-category-tile__sub {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 500;
  color: #D7FF5F;
  background: rgba(0,0,0,0.45);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(215,255,95,0.4);
}

/* Remove old icon-only tile styles for this version */
.bm-category-tile__icon {
  display: none;
}

/* ==========================================================================
   NAVIGATION DIVIDERS — Visual segmentation
   ========================================================================== */

/* Primary nav with separator dots between items */
.bm-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  overflow-x: auto;
  align-items: center;
}
.bm-nav__list::-webkit-scrollbar { display: none; }
.bm-nav__list li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.bm-nav__list li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: #E8ECEF;
  margin: 0 0;
}
.bm-nav__list a {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bm-font, 'Inter', sans-serif);
  color: #2D2D2D;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, font-weight 0.2s;
}
.bm-nav__list a:hover,
.bm-nav__list a:focus {
  font-weight: 600;
  color: #000;
}
.bm-nav__list .current-menu-item a {
  font-weight: 700;
  color: #000;
}

/* Category bar separators */
.bm-category-bar__links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}
.bm-category-bar__links a {
  font-size: 13px;
  font-family: var(--bm-font, 'Inter', sans-serif);
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 14px;
  border-right: 1px solid #E8ECEF;
}
.bm-category-bar__links a:last-child {
  border-right: none;
}
.bm-category-bar__links a:first-child {
  padding-left: 0;
}
.bm-category-bar__links a:hover {
  color: #000;
}

/* ==========================================================================
   ADD MORE LIME ACCENT — Sections that need it
   ========================================================================== */

/* Featured section: lime heading accent */
.bm-section-heading h2 {
  position: relative;
  display: inline-block;
}
.bm-section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #D7FF5F;
  border-radius: 2px;
}

/* Alternating section background for rhythm */
.bm-featured {
  padding: 56px 0;
  background: #fff;
}
.bm-featured--alt {
  background: #F5F7F9;
}

/* Lime accent bar between sections */
.bm-lime-divider {
  height: 4px;
  background: linear-gradient(90deg, #D7FF5F 0%, #b8e847 100%);
  width: 100%;
}

/* Footer: more lime in the brand column */
.bm-footer__brand-logo {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.bm-footer__brand-logo span {
  background: #D7FF5F;
  color: #000;
  padding: 1px 5px;
  border-radius: 3px;
}

/* Newsletter section: more lime */
.bm-newsletter {
  background: #D7FF5F;
  padding: 72px 24px;
  text-align: center;
}
.bm-newsletter h2 {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-transform: none;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bm-newsletter p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  font-family: var(--bm-font, 'Inter', sans-serif);
  margin-bottom: 28px;
}

/* "Best Seller" / "Deal" badges — more prominent */
.bm-badge--deal {
  background: #D7FF5F;
  color: #000;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .bm-categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bm-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bm-nav__list a { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .bm-categories__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO — Full-width lifestyle background (2026-03-21)
   ========================================================================== */

.bm-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}

/* Background image */
.bm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bm-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bm-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.10) 100%
  );
}

/* Content on top of image */
.bm-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 720px;
}

/* Top badge pill */
.bm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(215,255,95,0.4);
  color: #D7FF5F;
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* H1: white on dark */
.bm-hero h1 {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 20px;
}
.bm-hero__highlight {
  color: #D7FF5F;
}

/* Subtitle */
.bm-hero__subtitle {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA buttons */
.bm-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.bm-btn--outline-light {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.bm-btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Trust row */
.bm-hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.bm-hero__trust span {
  font-family: var(--bm-font, 'Inter', sans-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

@media (max-width: 768px) {
  .bm-hero { min-height: 440px; }
  .bm-hero__content { padding: 60px 20px; }
  .bm-hero__ctas { flex-direction: column; }
  .bm-hero__trust { gap: 12px; }
  .bm-hero h1 { font-size: 2rem; }
}

/* Hide mobile nav on desktop - only show on mobile */
.bm-mobile-nav {
  display: none !important;
}
@media (max-width: 768px) {
  .bm-mobile-nav.is-open {
    display: block !important;
  }
}


/* ===== HIDE REDUNDANT CATEGORY BAR ===== */
/* The homepage already has a Shop by Category section */
.bm-category-bar {
    display: none !important;
}

/* ===== LOGO SIZE CONTROL ===== */
.bm-logo img,
.bm-logo .custom-logo,
.custom-logo-link img,
.custom-logo-link .custom-logo {
    height: 90px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain;
}
.bm-logo {
    display: flex;
    align-items: center;
}

/* Logo Image Override */
.bm-logo--img {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 0;
    line-height: 0;
}
.bm-logo--img img {
    height: 100px !important;
    width: auto !important;
    max-width: 350px !important;
    display: block !important;
}

/* White header for white logo */
.bm-header {
    background: #ffffff !important;
    border-bottom: 2px solid #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}
.bm-header__main {
    background: #ffffff !important;
    padding: 0.5rem 0 !important;
    min-height: 110px !important;
}
/* Nav text dark for white background */
.bm-nav > ul > li > a {
    color: #1a1a2e !important;
}
.bm-nav > ul > li > a:hover {
    color: #e63946 !important;
}
/* Keep trust bar dark */
.bm-trust-bar {
    background: #1a1a2e !important;
    color: #ffffff !important;
}
/* Logo image sizing - BIGGER */
.bm-logo--img {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}
.bm-logo--img img {
    height: 130px !important;
    width: auto !important;
    max-width: 420px !important;
    min-width: 200px !important;
    display: block !important;
}

/* Nav text dark for white background */
.bm-nav > ul > li > a {
    color: #1a1a2e !important;
}
.bm-nav > ul > li > a:hover {
    color: #e63946 !important;
}
/* Keep trust bar dark */
.bm-trust-bar {
    background: #1a1a2e !important;
    color: #ffffff !important;
}
/* Logo image sizing */
.bm-logo--img img {
    height: 90px !important;
    width: auto !important;
    max-width: 320px !important;
    display: block !important;
}

/* Keep nav text dark for white background */
.bm-nav a {
    color: #1a1a2e !important;
}
.bm-nav a:hover {
    color: #e63946 !important;
}
/* Trust bar stays dark */
.bm-trust-bar {
    background: #1a1a2e !important;
    color: #ffffff !important;
}

/* Wide logo header fix */
.bm-logo img,
.bm-logo a img {
  height: 115px !important;
  width: auto !important;
  max-width: 380px !important;
}
.bm-hero__boom-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  display: block;
  line-height: 1;
}


/* ═══════════════════════════════════════════════
   HEADER REBUILD — utility links + wide logo
═══════════════════════════════════════════════ */
.bm-trust-bar {
  background: var(--bw-navy, #0a1628);
  color: #cdd6f4;
  font-size: 0.78rem;
  text-align: center;
  padding: 6px 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bm-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bm-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}
.bm-logo {
  flex-shrink: 0;
  text-decoration: none;
}
.bm-logo img {
  height: 80px !important;
  width: auto !important;
  max-width: 300px !important;
  display: block !important;
}
.bm-header__search {
  flex: 1;
  max-width: 500px;
}
.bm-header__search form {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
}
.bm-header__search input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
}
.bm-header__search button {
  background: var(--bw-navy, #0a1628);
  border: none;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
}
.bm-header__utility {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.bm-util-link {
  font-size: 0.82rem;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}
.bm-util-link:hover { color: var(--bw-navy, #0a1628); }
.bm-util-link--acima {
  background: #e8f0fe;
  color: #1a56db;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.bm-icon-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.bm-icon-link:hover { color: var(--bw-navy, #0a1628); }
.bm-cart-count {
  background: #e53e3e;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Main nav */
.bm-nav {
  background: var(--bw-navy, #0a1628);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bm-nav .bm-container {
  padding: 0 20px;
}
.bm-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: wrap;
}
.bm-nav__list li a {
  display: block;
  padding: 11px 14px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.bm-nav__list li a:hover,
.bm-nav__list li.current-menu-item > a {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
/* SALE highlight */
.bm-nav__list li a[href*="/sale"] {
  color: #ff6b6b;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE SECTIONS
═══════════════════════════════════════════════ */
.bm-section {
  padding: 48px 0;
}
.bm-section:nth-child(even) {
  background: #f8f9fa;
}
.bm-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e53e3e;
  display: inline-block;
}
.bm-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bm-section__header .bm-section__title {
  margin-bottom: 0;
}
.bm-view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none;
  white-space: nowrap;
}
.bm-view-all:hover { text-decoration: underline; }

/* 3×3 Category Grid */
.bm-cat-grid--3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bm-cat-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.bm-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.bm-cat-card__img-wrap {
  height: 160px;
  overflow: hidden;
}
.bm-cat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bm-cat-card:hover .bm-cat-card__img-wrap img {
  transform: scale(1.05);
}
.bm-cat-card__info {
  padding: 14px 16px;
}
.bm-cat-card__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.bm-cat-card__desc {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

/* 4-column product grid */
.bm-product-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bm-product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.bm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.bm-product-card__img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f5f5f5;
}
.bm-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bm-product-card:hover .bm-product-card__img {
  transform: scale(1.04);
}
.bm-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.bm-product-card__badge--sale {
  background: #e53e3e;
  color: #fff;
}
.bm-product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bm-product-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.bm-product-card__title a {
  color: #1a1a2e;
  text-decoration: none;
}
.bm-product-card__title a:hover { color: #1a56db; }
.bm-product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #e53e3e;
}
.bm-product-card__price del {
  color: #999;
  font-size: 0.82rem;
  font-weight: 400;
}
.bm-btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: 6px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .bm-product-grid--4col { grid-template-columns: repeat(3, 1fr); }
  .bm-cat-grid--3x3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bm-header__inner { flex-wrap: wrap; gap: 10px; }
  .bm-header__utility { gap: 8px; }
  .bm-util-link { display: none; }
  .bm-product-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .bm-cat-grid--3x3 { grid-template-columns: repeat(2, 1fr); }
  .bm-logo img { height: 60px !important; }
}
@media (max-width: 480px) {
  .bm-product-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .bm-cat-grid--3x3 { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════
   BOOM WAREHOUSE — REDESIGN v2.0
   ═══════════════════════════════════════════════════════ */

/* ── NAV BAR ─────────────────────────────────────────── */
.bm-nav {
  background: #1a1f2e !important;
  border-bottom: 2px solid #e63329 !important;
  padding: 0 !important;
}
.bm-nav ul { display:flex; flex-wrap:wrap; list-style:none; margin:0; padding:0; justify-content:center; }
.bm-nav ul li a {
  display: block;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}
.bm-nav ul li a:hover,
.bm-nav ul li.current-menu-item > a,
.bm-nav ul li.current_page_item > a {
  color: #f5c518 !important;
  border-bottom-color: #f5c518 !important;
  transform: translateY(-1px);
  background: rgba(245,197,24,0.08) !important;
}
/* SALE item in red */
.bm-nav ul li a[href*="sale"] { color: #ff4444 !important; }
.bm-nav ul li a[href*="sale"]:hover { color: #ff6666 !important; border-bottom-color: #ff4444 !important; }

/* ── HERO ─────────────────────────────────────────────── */
.bm-hero { position:relative; min-height:520px; display:flex; align-items:center; overflow:hidden; }
.bm-hero__bg { position:absolute; inset:0; z-index:0; }
.bm-hero__bg-img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.bm-hero__overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,14,26,0.82) 0%,rgba(10,14,26,0.55) 100%); z-index:1; }
.bm-hero__content { position:relative; z-index:2; max-width:680px; margin:0 auto; text-align:center; padding:60px 24px; }
.bm-hero__badge { display:inline-flex; align-items:center; gap:6px; background:rgba(245,197,24,0.15); border:1px solid #f5c518; color:#f5c518; font-size:0.82rem; font-weight:700; padding:6px 16px; border-radius:50px; margin-bottom:20px; letter-spacing:0.05em; }
.bm-hero__logo-img { max-height:140px; max-width:480px; width:auto; filter:drop-shadow(0 2px 12px rgba(0,0,0,0.6)); margin-bottom:12px; }
.bm-hero__tagline { color:#ffffff; font-size:1.6rem; font-weight:700; margin:1.5rem 0 12px; line-height:1.3; text-shadow:0 2px 8px rgba(0,0,0,0.5); }
.bm-hero__sub { color:rgba(255,255,255,0.82); font-size:0.95rem; margin:0 0 28px; line-height:1.6; }
.bm-hero__buttons { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:24px; }
.bm-hero__trust { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; color:rgba(255,255,255,0.7); font-size:0.8rem; }
.bm-hero__trust span::before { content:''; }

/* ── BUTTONS ─────────────────────────────────────────── */
.bm-btn { display:inline-block; padding:12px 28px; border-radius:6px; font-weight:700; font-size:0.9rem; text-decoration:none; transition:all 0.2s ease; cursor:pointer; }
.bm-btn--primary { background:#e63329; color:#fff; border:2px solid #e63329; }
.bm-btn--primary:hover { background:#c42820; border-color:#c42820; transform:translateY(-1px); }
.bm-btn--outline { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.7); }
.bm-btn--outline:hover { background:rgba(255,255,255,0.1); border-color:#fff; transform:translateY(-1px); }
.bm-btn--lg { padding:14px 36px; font-size:1rem; }
/* View All button on white background */
.bm-section__footer .bm-btn--outline { color:#1a1f2e; border-color:#1a1f2e; }
.bm-section__footer .bm-btn--outline:hover { background:#1a1f2e; color:#fff; }

/* ── SECTION COMMON ──────────────────────────────────── */
.bm-section { padding: 60px 0; }
.bm-section:nth-child(even) { background: #f8f9fb; }
.bm-container { max-width:1280px; margin:0 auto; padding:0 24px; }
.bm-section__title { font-size:1.6rem; font-weight:800; color:#1a1f2e; margin:0 0 32px; text-align:center; text-transform:uppercase; letter-spacing:0.04em; position:relative; }
.bm-section__title::after { content:''; display:block; width:60px; height:3px; background:#e63329; margin:10px auto 0; border-radius:2px; }
.bm-section__footer { text-align:center; margin-top:36px; }

/* ── CATEGORY CARDS 3x3 ──────────────────────────────── */
.bm-cat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.bm-cat-card {
  position: relative;
  display: block;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bm-cat-card:hover { transform:scale(1.03); box-shadow:0 12px 32px rgba(0,0,0,0.25); }
.bm-cat-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.bm-cat-card:hover .bm-cat-card__bg { transform: scale(1.08); }
.bm-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.3) 60%, transparent 100%);
}
.bm-cat-card__text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  text-align: center;
}
.bm-cat-card__name {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  line-height: 1.2;
}
.bm-cat-card__sub {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 400;
}

/* ── PRODUCT GRID 4x2 ────────────────────────────────── */
.bm-product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.bm-product-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8eaed;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.bm-product-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
.bm-product-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: #e63329; color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; z-index:1;
}
.bm-product-card__img-wrap { aspect-ratio:1; overflow:hidden; background:#f5f5f5; }
.bm-product-card__img-wrap img { width:100%; height:100%; object-fit:contain; padding:12px; transition:transform 0.3s ease; }
.bm-product-card:hover .bm-product-card__img-wrap img { transform:scale(1.05); }
.bm-product-card__info { padding:14px; flex:1; display:flex; flex-direction:column; gap:8px; }
.bm-product-card__title { font-size:0.82rem; font-weight:600; color:#1a1f2e; line-height:1.4; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.bm-product-card__price { font-size:1rem; font-weight:800; color:#e63329; margin-top:auto; }
.bm-product-card__price del { color:#999; font-weight:400; font-size:0.82rem; margin-right:4px; }

/* ── FOOTER LOGO ─────────────────────────────────────── */
.bm-footer .bm-logo,
.bm-footer__logo,
.bm-footer a.bm-logo {
  font-size: 0; /* hide text */
  display: block;
  width: 200px;
  height: 70px;
  /* Logo handled via HTML img tag in footer.php */
}
/* Remove duplicate logo - handled via HTML img tag */
.bm-footer__brand::before {
  display: none !important;
  content: none !important;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .bm-cat-grid { grid-template-columns: repeat(2,1fr); }
  .bm-product-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .bm-cat-grid { grid-template-columns: repeat(2,1fr); }
  .bm-product-grid { grid-template-columns: repeat(2,1fr); }
  .bm-cat-card { height: 150px; }
  .bm-hero__tagline { font-size: 1.2rem; }
}


/* ── NAV FIX: ensure all nav items are visible ── */
nav.bm-nav,
.bm-nav,
div.bm-nav { background: #1a1f2e !important; }

.bm-nav > ul > li > a,
.bm-nav ul li a,
nav.bm-nav ul li a {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 14px 14px !important;
  text-decoration: none !important;
  display: block !important;
  transition: all 0.2s ease !important;
  border-bottom: 3px solid transparent !important;
  background: transparent !important;
}
.bm-nav ul li a:hover {
  color: #f5c518 !important;
  border-bottom-color: #f5c518 !important;
  background: rgba(245,197,24,0.08) !important;
}
.bm-nav ul li.current-menu-item > a,
.bm-nav ul li.current_page_item > a {
  color: #f5c518 !important;
  border-bottom-color: #f5c518 !important;
}
.bm-nav ul li a[href*="/product-category/sale"] { color: #ff6b6b !important; }
.bm-nav ul li a[href*="/product-category/sale"]:hover { color: #ff4444 !important; }

/* ── HERO: fix background image ── */
.bm-hero {
  background: #0a0e1a;
  min-height: 520px;
}



/* ===== BOOM WAREHOUSE CORRECTIONS v4 ===== */

/* ---- NAV BAR ---- */
.bm-nav {
    background: #1a1a2e !important;
    padding: 0 !important;
    width: 100% !important;
}
.bm-nav > ul,
.bm-nav ul.menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}
.bm-nav ul li {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 1 !important;
}
.bm-nav ul li a {
    color: #d8d8e8 !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    padding: 0.65rem 0.5rem !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.2s, background 0.2s !important;
    background: transparent !important;
    border-bottom: 2px solid transparent !important;
    white-space: nowrap !important;
}
.bm-nav ul li a:hover,
.bm-nav ul li.current-menu-item > a {
    color: #ffffff !important;
    background: rgba(255,255,255,0.07) !important;
    border-bottom-color: #e63946 !important;
}
.bm-nav ul li a[href*="product-category/sale"] {
    color: #ff9a9a !important;
}
.bm-nav ul li a[href*="handyman"] {
    color: #f0c040 !important;
}

/* ---- HERO BOOM SVG EYES ---- */
.bm-hero__boom-title { display: none !important; }
.bm-boom-animated { display: none !important; }

.bm-boom-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin: 0 0 2.5rem 0 !important;
    gap: 0.05em !important;
}
.bm-boom-b,
.bm-boom-m {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(4.5rem, 12vw, 9rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-shadow: 3px 5px 20px rgba(0,0,0,0.9) !important;
    line-height: 1 !important;
    display: inline-block !important;
    letter-spacing: -0.02em !important;
}
.bm-boom-eye-wrap {
    display: inline-block !important;
    width: clamp(4rem, 10vw, 8rem) !important;
    height: clamp(4rem, 10vw, 8rem) !important;
    position: relative !important;
    filter: drop-shadow(2px 4px 12px rgba(0,0,0,0.7)) !important;
}
.bm-eye-svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}
/* Eye 1: pupils look left then right (the whole eye SVG shifts slightly) */
.bm-eye-1 {
    animation: eyeShift1 4s ease-in-out infinite !important;
}
/* Eye 2: pupils look right then left (opposite sync) */
.bm-eye-2 {
    animation: eyeShift2 4s ease-in-out infinite !important;
}
@keyframes eyeShift1 {
    0%   { transform: translateX(0px); }
    20%  { transform: translateX(-8px); }
    50%  { transform: translateX(8px); }
    80%  { transform: translateX(-5px); }
    100% { transform: translateX(0px); }
}
@keyframes eyeShift2 {
    0%   { transform: translateX(0px); }
    20%  { transform: translateX(8px); }
    50%  { transform: translateX(-8px); }
    80%  { transform: translateX(5px); }
    100% { transform: translateX(0px); }
}
/* Red smile below both eyes */
.bm-boom-smile-wrap {
    position: absolute !important;
    bottom: -28% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 36% !important;
}
.bm-smile-svg {
    width: 100% !important;
    display: block !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)) !important;
}

/* ---- PRODUCT SECTIONS ---- */
.bm-section-wrapper {
    padding: 2rem 1.5rem !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    border-top: 1px solid #f0f0f0 !important;
}
.bm-section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 1.2rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 3px solid #e63946 !important;
}
.bm-section-title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #1a1a2e !important;
    margin: 0 !important;
}
.bm-view-all-btn {
    color: #e63946 !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: 2px solid #e63946 !important;
    padding: 0.35rem 0.9rem !important;
    border-radius: 4px !important;
    transition: all 0.2s !important;
    background: transparent !important;
}
.bm-view-all-btn:hover {
    background: #e63946 !important;
    color: #fff !important;
}
.bm-prod-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
}
.bm-prod-card {
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    text-decoration: none !important;
    display: block !important;
    color: inherit !important;
}
.bm-prod-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}
.bm-prod-card img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    display: block !important;
}
.bm-prod-card__body { padding: 0.75rem !important; }
.bm-prod-card__badge {
    display: inline-block !important;
    background: #e63946 !important;
    color: #fff !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    padding: 0.15rem 0.4rem !important;
    border-radius: 3px !important;
    margin-bottom: 0.35rem !important;
}
.bm-prod-card__name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    margin: 0 0 0.35rem 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.bm-prod-card__price {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #e63946 !important;
    margin: 0 !important;
}
.bm-prod-card__price del {
    color: #999 !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    margin-right: 0.25rem !important;
}

/* Category grid */
.bm-category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
}
.bm-category-card {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    aspect-ratio: 4/3 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: block !important;
}
.bm-category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s !important;
    display: block !important;
}
.bm-category-card:hover img { transform: scale(1.08) !important; }
.bm-category-card__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 1.2rem !important;
}
.bm-category-card__title {
    color: #fff !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 0.2rem 0 !important;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8) !important;
}
.bm-category-card__sub {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .bm-nav ul li a { font-size: 0.6rem !important; padding: 0.55rem 0.35rem !important; }
    .bm-category-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .bm-prod-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .bm-boom-b, .bm-boom-m { font-size: 3.5rem !important; }
    .bm-boom-eye-wrap { width: 3rem !important; height: 3rem !important; }
}

/* ===== FINAL LOGO SIZE OVERRIDE ===== */
.bm-logo img,
.bm-logo a img,
.bm-logo--img img,
.custom-logo-link img,
header .bm-logo img {
    height: 120px !important;
    width: auto !important;
    max-width: 400px !important;
    min-width: 180px !important;
    display: block !important;
}
.bm-header__main {
    min-height: 130px !important;
    padding: 0.4rem 0 !important;
}

/* ===== REMOVE DUPLICATE FOOTER LOGO (::before) ===== */
.bm-footer__brand::before,
.bm-footer__brand:before {
    display: none !important;
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* ===== SMILE & SPACING FIX ===== */
.bm-boom-wrap {
    margin-bottom: 2.5rem !important;
    padding-bottom: 0.5rem !important;
}
.bm-boom-smile-wrap {
    bottom: -30% !important;
    width: 36% !important;
}
.bm-hero__tagline {
    margin-top: 1.2rem !important;
}

/* ===================================================
   DROPDOWN NAVIGATION MENUS
   =================================================== */

/* Make nav items position:relative for dropdown anchoring */
.bm-nav__list > li {
    position: relative !important;
}

/* Hide dropdown arrow indicator on parent items */
.bm-nav__list > li.menu-item-has-children > a::after {
    content: ' ▾' !important;
    font-size: 0.65em !important;
    opacity: 0.75 !important;
    vertical-align: middle !important;
}

/* The dropdown submenu panel */
.bm-nav__list > li > ul.sub-menu {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;
    background: #1a1f2e !important;
    border-top: 3px solid #e63946 !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35) !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    z-index: 9999 !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    pointer-events: none !important;
}

/* Show dropdown on hover */
.bm-nav__list > li:hover > ul.sub-menu,
.bm-nav__list > li:focus-within > ul.sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Dropdown items */
.bm-nav__list > li > ul.sub-menu > li {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.bm-nav__list > li > ul.sub-menu > li > a {
    display: block !important;
    padding: 9px 18px !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease !important;
    border-left: 3px solid transparent !important;
    letter-spacing: 0.01em !important;
}

.bm-nav__list > li > ul.sub-menu > li > a:hover {
    background: rgba(230,57,70,0.12) !important;
    color: #ffffff !important;
    padding-left: 22px !important;
    border-left-color: #e63946 !important;
}

/* Divider between submenu groups (optional visual separator) */
.bm-nav__list > li > ul.sub-menu > li:not(:last-child) > a {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* Ensure the nav bar itself doesn't clip the dropdown */
.bm-nav {
    overflow: visible !important;
    position: relative !important;
    z-index: 100 !important;
}
.bm-nav .bm-container {
    overflow: visible !important;
}
.bm-nav__list {
    overflow: visible !important;
}

/* Mobile: hide dropdowns on small screens (keep nav clean) */
@media (max-width: 900px) {
    .bm-nav__list > li > ul.sub-menu {
        display: none !important;
    }
    .bm-nav__list > li.menu-item-has-children > a::after {
        display: none !important;
    }
}


/* ===================================================
   CATEGORY / ARCHIVE PAGE — 5-COLUMN GRID
   =================================================== */

/* ── Main Archive Wrapper ── */
.bw-archive {
    padding-top: 0.5rem !important;
}

/* ── Category Header ── */
.bw-cat-header {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    padding: 1.2rem 0 0.8rem !important;
    border-bottom: 2px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}
.bw-cat-header__title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #1a1f2e !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}
.bw-cat-header__title span {
    color: #e63946 !important;
}
.bw-cat-header__desc {
    font-size: 0.85rem !important;
    color: #666 !important;
    margin: 0.3rem 0 0 !important;
}
.bw-cat-header__count {
    font-size: 0.82rem !important;
    color: #888 !important;
    white-space: nowrap !important;
}
.bw-cat-header__count .woocommerce-result-count {
    margin: 0 !important;
    font-size: 0.82rem !important;
    color: #888 !important;
}

/* ── Filter Bar ── */
.bw-filter-bar {
    background: #f8f9fb !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    margin: 0.8rem 0 1.2rem !important;
}
.bw-filter-bar__form {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.6rem 1rem !important;
}
.bw-filter-bar__group {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    flex-wrap: wrap !important;
}
.bw-filter-bar__label {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #444 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
}
.bw-filter-bar__conditions {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Condition Pills */
.bw-filter-pill {
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border: 1.5px solid #ddd !important;
    color: #555 !important;
    background: #fff !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    white-space: nowrap !important;
}
.bw-filter-pill:hover {
    border-color: #e63946 !important;
    color: #e63946 !important;
    background: #fff5f5 !important;
}
.bw-filter-pill--active {
    background: #e63946 !important;
    border-color: #e63946 !important;
    color: #fff !important;
}
.bw-filter-pill--active:hover {
    background: #c62d38 !important;
    border-color: #c62d38 !important;
    color: #fff !important;
}

/* Filter Selects */
.bw-filter-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 10px center !important;
    background-size: 8px !important;
    border: 1.5px solid #ddd !important;
    border-radius: 6px !important;
    padding: 5px 28px 5px 10px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #444 !important;
    cursor: pointer !important;
    transition: border-color 0.15s ease !important;
    min-width: 130px !important;
}
.bw-filter-select:hover,
.bw-filter-select:focus {
    border-color: #e63946 !important;
    outline: none !important;
}

/* Clear Filters */
.bw-filter-clear {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #e63946 !important;
    text-decoration: none !important;
    padding: 4px 10px !important;
    border: 1.5px solid #e63946 !important;
    border-radius: 20px !important;
    transition: all 0.15s ease !important;
    white-space: nowrap !important;
}
.bw-filter-clear:hover {
    background: #e63946 !important;
    color: #fff !important;
}

/* ── 5-Column Product Grid ── */
.bw-product-grid.bw-product-grid--5col {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Product Card ── */
.bm-product-card--grid {
    background: #fff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}
.bm-product-card--grid:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}
.bm-product-card__link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* Image */
.bm-product-card__img-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
}
.bm-product-card__img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}
.bm-product-card--grid:hover .bm-product-card__img-wrap img {
    transform: scale(1.04) !important;
}

/* Badges */
.bm-product-card__badge {
    position: absolute !important;
    top: 8px !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    padding: 3px 7px !important;
    border-radius: 4px !important;
    z-index: 2 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}
.bm-product-card__badge--sale {
    left: 8px !important;
    background: #e63946 !important;
    color: #fff !important;
}
.bm-product-card__badge--condition {
    right: 8px !important;
    background: rgba(0,0,0,0.65) !important;
    color: #fff !important;
}

/* Card Info */
.bm-product-card__info {
    padding: 10px 10px 6px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
.bm-product-card__name {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #1a1f2e !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.bm-product-card__pricing {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
}
.bm-product-card__price-sale {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #e63946 !important;
}
.bm-product-card__price-reg {
    font-size: 0.75rem !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

/* Condition Badge */
.bm-product-card__condition {
    display: inline-block !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 2px 7px !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    width: fit-content !important;
}
.bm-condition--refurbished { background: #e8f5e9 !important; color: #2e7d32 !important; }
.bm-condition--open-box    { background: #e3f2fd !important; color: #1565c0 !important; }
.bm-condition--as-is       { background: #fff3e0 !important; color: #e65100 !important; }
.bm-condition--for-parts   { background: #fce4ec !important; color: #c62828 !important; }
.bm-condition--new         { background: #e8f5e9 !important; color: #1b5e20 !important; }

/* Acima */
.bm-product-card__acima {
    font-size: 0.65rem !important;
    color: #666 !important;
    margin-top: 2px !important;
}
.bm-product-card__acima strong {
    color: #1a1f2e !important;
}

/* Add to Cart / View Button */
.bm-product-card__actions {
    padding: 0 10px 10px !important;
}
.bm-product-card__actions .button,
.bm-product-card__actions .add_to_cart_button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: #1a1f2e !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 7px 10px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}
.bm-product-card__actions .button:hover,
.bm-product-card__actions .add_to_cart_button:hover {
    background: #e63946 !important;
}
.bm-product-card__view-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: transparent !important;
    color: #1a1f2e !important;
    border: 1.5px solid #1a1f2e !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    box-sizing: border-box !important;
}
.bm-product-card__view-btn:hover {
    background: #1a1f2e !important;
    color: #fff !important;
}

/* ── Pagination ── */
.bw-pagination {
    margin: 2rem 0 1rem !important;
    display: flex !important;
    justify-content: center !important;
}
.bw-pagination .woocommerce-pagination {
    display: flex !important;
    justify-content: center !important;
}
.bw-pagination .page-numbers {
    display: inline-flex !important;
    gap: 4px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}
.bw-pagination .page-numbers li a,
.bw-pagination .page-numbers li span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 6px !important;
    border: 1.5px solid #ddd !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #444 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
}
.bw-pagination .page-numbers li a:hover {
    border-color: #e63946 !important;
    color: #e63946 !important;
}
.bw-pagination .page-numbers li span.current {
    background: #e63946 !important;
    border-color: #e63946 !important;
    color: #fff !important;
}

/* ── No Products ── */
.bw-no-products {
    text-align: center !important;
    padding: 4rem 2rem !important;
    grid-column: 1 / -1 !important;
}
.bw-no-products__icon {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}
.bw-no-products h2 {
    font-size: 1.4rem !important;
    color: #1a1f2e !important;
    margin-bottom: 0.5rem !important;
}
.bw-no-products p {
    color: #888 !important;
    margin-bottom: 1.5rem !important;
}

/* ── Remove old sidebar layout ── */
.bw-shop-layout {
    display: block !important;
}
.bw-sidebar {
    display: none !important;
}
.bw-shop-content {
    width: 100% !important;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .bw-product-grid.bw-product-grid--5col {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (max-width: 900px) {
    .bw-product-grid.bw-product-grid--5col {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    .bw-filter-bar__conditions {
        width: 100% !important;
    }
}
@media (max-width: 600px) {
    .bw-product-grid.bw-product-grid--5col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .bw-cat-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}


/* ===================================================
   GRID FIX — Override WooCommerce float layout
   =================================================== */

/* Reset WC float layout inside our 5-col grid */
.bw-product-grid.bw-product-grid--5col li.product,
ul.bw-product-grid.bw-product-grid--5col li.product {
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Also fix the ul.products clearfix */
ul.bw-product-grid.bw-product-grid--5col::before,
ul.bw-product-grid.bw-product-grid--5col::after {
    display: none !important;
}

/* Fix the image inside the card */
.bm-product-card--grid .bm-product-card__img-wrap img,
.bm-product-card--grid .woocommerce-loop-product__link img,
.bm-product-card--grid img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Fix WC adding its own link wrapper */
.bm-product-card--grid .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* Fix WC price HTML */
.bm-product-card--grid .price {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
}
.bm-product-card--grid .price ins {
    text-decoration: none !important;
    color: #e63946 !important;
    font-weight: 800 !important;
}
.bm-product-card--grid .price del {
    color: #999 !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
}
.bm-product-card--grid .price del .woocommerce-Price-amount {
    color: #999 !important;
}

/* Ensure the grid itself is not affected by WC clearfix */
ul.products.bw-product-grid--5col {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
}

/* Responsive overrides */
@media (max-width: 1200px) {
    ul.products.bw-product-grid--5col {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (max-width: 900px) {
    ul.products.bw-product-grid--5col {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
}
@media (max-width: 600px) {
    ul.products.bw-product-grid--5col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}
