:root {
  --bm-bg: #f5f7fb;
  --bm-surface: #ffffff;
  --bm-text: #172033;
  --bm-muted: #667085;
  --bm-line: #e5e9f0;
  --bm-brand: #c7352d;
  --bm-brand-dark: #94231e;
  --bm-dark: #111827;
  --bm-radius: 16px;
  --bm-shadow: 0 12px 34px rgba(18, 29, 52, .09);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bm-bg) !important;
  color: var(--bm-text) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }

/* Header */
.masthead { margin-bottom: 0 !important; }
.fightclub-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 24, 39, .97) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  backdrop-filter: blur(14px);
}
.fightclub-navbar,
.fightclub-navbar-inner { background: transparent !important; }
.fightclub-navbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.fightclub-navbar-inner::before {
  display: none;
}
.fightclub-navbar-inner::after {
  display: none;
}
.bm-header-logo { display: block; flex: 0 0 198px; line-height: 0; }
.bm-header-logo picture { display: block; }
.bm-header-logo img { display: block; width: 198px; height: auto; max-width: none; }
.fightclub-nav-collapse { margin-left: auto; }
.fightclub-nav { display: flex; align-items: center; gap: 3px; }
.fightclub-nav > li > a {
  color: rgba(255,255,255,.82) !important;
  border: 0 !important;
  padding: 29px 11px !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: .035em;
}
.fightclub-nav > li > a:hover,
.fightclub-nav > li.current-menu-item > a { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.fightclub-navbar-search { color: #fff !important; }

/* Layout and typography */
.fightclub-container-fluid.max.width { width: min(1180px, calc(100% - 40px)) !important; }
.fightclub-container-fluid.max.width.offset { margin-top: 0 !important; padding-top: 40px; }
.fightclub-main.full { width: 100% !important; }
.entry-wrap { border: 0 !important; box-shadow: none !important; }
article.page > .entry-wrap { background: transparent !important; padding: 0 !important; }
article.page > .entry-wrap > .entry-header { display: none; }
.entry-content h1, .entry-content h2, .entry-content h3,
.woocommerce h1, .woocommerce h2, .woocommerce h3 {
  color: var(--bm-text) !important;
  font-family: inherit !important;
  font-weight: 800 !important;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.entry-content h2 { margin: 52px 0 24px; font-size: clamp(26px, 3vw, 38px) !important; }
.entry-content p { color: #3f4b5f; }
.fightclub-content-band.vc { padding-top: 38px !important; padding-bottom: 38px !important; }

/* Promotional cards */
.home .fightclub-content-band[style*="margin-top:-6em"] { margin-top: 0 !important; }
.home .fightclub-column.one-third { padding: 10px !important; }
.home .fightclub-column.one-third > .fightclub-column-inner {
  min-height: 370px !important;
  padding: 34px 28px !important;
  border-radius: var(--bm-radius);
  overflow: hidden;
  background-position: center !important;
  box-shadow: var(--bm-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
}
.home .fightclub-column.one-third > .fightclub-column-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 12%, rgba(255,255,255,.92) 84%);
}
.fightclub-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border: 0 !important;
  border-radius: 9px !important;
  background: var(--bm-brand) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-weight: 750 !important;
  letter-spacing: .02em;
  padding: 13px 20px !important;
  box-shadow: 0 7px 18px rgba(199, 53, 45, .2);
}
.fightclub-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--bm-brand-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(199, 53, 45, .28);
}

/* Product grid: replaces old absolute Isotope positioning */
.woocommerce ul.products,
.woocommerce ul.products.isotope {
  height: auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  overflow: visible !important;
  margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  opacity: 1 !important;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bm-surface);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(18, 29, 52, .06);
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--bm-shadow);
  border-color: #d9dee8;
}
.woocommerce ul.products li.product .entry-product { display: flex; flex-direction: column; height: 100%; }
.woocommerce ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 !important;
  padding: 18px;
  background: #fff;
}
.woocommerce ul.products li.product .entry-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px !important;
  background: #fff !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.8em;
  margin: 0 0 8px !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
.product_category_title { color: var(--bm-muted) !important; font-size: 12px !important; }
.product-footer { margin-top: auto; }
.product-price-wrapper { padding: 12px 0 0 !important; }
.woocommerce ul.products li.product .price {
  display: block;
  margin-bottom: 12px !important;
  color: var(--bm-brand) !important;
  font-size: 19px !important;
  font-weight: 850 !important;
}
.woocommerce ul.products li.product .button { display: block !important; text-align: center; }
.woocommerce span.onsale {
  min-width: auto !important;
  min-height: auto !important;
  padding: 7px 11px !important;
  border-radius: 8px !important;
  background: var(--bm-brand) !important;
  line-height: 1 !important;
}

/* Product, cart and checkout */
.single-product .product,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  padding: clamp(20px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  box-shadow: var(--bm-shadow);
}
.single-product div.product { display: flow-root; }
.woocommerce div.product div.images img { border-radius: 12px; }
.woocommerce div.product p.price { color: var(--bm-brand) !important; font-size: 28px !important; font-weight: 850; }
.woocommerce table.shop_table { border-color: var(--bm-line) !important; border-radius: 12px !important; overflow: hidden; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form select {
  min-height: 46px;
  border: 1px solid #d5dae4 !important;
  border-radius: 9px !important;
  background: #fff;
  padding: 10px 12px;
}

/* Footer */
.fightclub-footer {
  margin-top: 72px;
  padding: 62px 0 30px !important;
  background: var(--bm-dark) !important;
  color: #c7ced9 !important;
}
.fightclub-footer .widget_wrap { background: transparent !important; }
.fightclub-footer .fightclub-row-fluid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px; }
.fightclub-footer .fightclub-span3 { width: auto !important; margin: 0 !important; float: none !important; }
.fightclub-footer .h-widget { color: #fff !important; font-size: 16px !important; }
.fightclub-footer a { color: #e7eaf0 !important; }
.fightclub-footer a:hover { color: #fff !important; }
.fightclub-footer img { border-radius: 10px; }

.bm-footer { padding: 54px 0 0 !important; }
.bm-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.bm-footer h2 { margin: 0 0 16px; color: #fff !important; font-size: 15px !important; letter-spacing: .02em; text-transform: none; }
.bm-footer ul { margin: 0; padding: 0; list-style: none; }
.bm-footer li { margin: 0 0 9px; }
.bm-footer p { max-width: 340px; margin: 14px 0 16px; line-height: 1.7; color: #abb5c5; }
.bm-footer-logo { color: #fff !important; font-size: 22px; font-weight: 800; letter-spacing: .075em; }
.bm-footer-email { color: #fff !important; font-weight: 650; }
.bm-footer-bottom { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1); }
.bm-footer-bottom > div { display: flex; justify-content: space-between; gap: 18px; padding-top: 20px; padding-bottom: 20px; color: #8f9aac; font-size: 13px; }

@media (max-width: 1024px) {
  .woocommerce ul.products, .woocommerce ul.products.isotope { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .fightclub-navbar-inner { min-height: 70px; }
  .fightclub-nav > li > a { padding: 25px 8px !important; font-size: 11px !important; }
  .fightclub-footer .fightclub-row-fluid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bm-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 768px) {
  .fightclub-navbar-inner { min-height: 78px !important; }
  .fightclub-nav-collapse {
    display: flex !important;
    align-items: center;
    width: auto !important;
    height: auto !important;
    min-height: 78px;
    overflow: visible !important;
  }
  .fightclub-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: auto !important;
    height: auto !important;
  }
  .fightclub-nav > li { float: none !important; white-space: nowrap; }
  .fightclub-nav > li > a { padding: 29px 8px !important; font-size: 10.5px !important; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .fightclub-container-fluid.max.width { width: min(100% - 28px, 1180px) !important; }
  .fightclub-container-fluid.max.width.offset { padding-top: 18px; }
  .fightclub-navbar-wrap { position: sticky; }
  .fightclub-navbar-inner {
    min-height: 68px;
    padding: 0 !important;
    gap: 8px;
  }
  .bm-header-logo { flex-basis: 172px; }
  .bm-header-logo img { width: 172px; }
  .fightclub-btn-navbar {
    position: static !important;
    margin: 0 0 0 auto !important;
    width: 44px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center;
    border-radius: 9px !important;
    background: var(--bm-brand) !important;
  }
  .fightclub-nav-collapse {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #151d2b;
    box-shadow: 0 18px 30px rgba(0,0,0,.22);
  }
  .fightclub-nav { display: block; padding: 10px 14px 16px !important; }
  .fightclub-nav > li > a { padding: 13px 12px !important; border-radius: 7px; font-size: 13px !important; }
  .home .fightclub-content-band[style*="padding-top: 80px"] { display: none; }
  .home .fightclub-column.one-third { width: 100% !important; padding: 8px 0 !important; }
  .home .fightclub-column.one-third > .fightclub-column-inner { min-height: 320px !important; padding: 26px 22px !important; }
  .fightclub-content-band.vc { padding-top: 24px !important; padding-bottom: 24px !important; }
  .entry-content h2 { margin-top: 38px; font-size: 26px !important; }
  .woocommerce ul.products, .woocommerce ul.products.isotope { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .woocommerce ul.products li.product .entry-wrap { padding: 14px !important; }
  .woocommerce ul.products li.product img { padding: 10px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 4.6em; font-size: 14px !important; }
  .woocommerce ul.products li.product .price { font-size: 17px !important; }
  .woocommerce ul.products li.product .button { padding: 11px 8px !important; font-size: 12px !important; }
  .single-product .product, .woocommerce-cart .entry-content, .woocommerce-checkout .entry-content { padding: 18px; }
  .single-product .product_title { font-size: clamp(30px, 10vw, 42px) !important; overflow-wrap: anywhere; }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 0 26px !important;
  }
  .woocommerce div.product div.images img { width: 100% !important; max-height: 420px; object-fit: contain; }
  .woocommerce div.product div.summary { padding-top: 4px; }
  .woocommerce div.product p.price { text-align: left; }
  .single-product .related,
  .single-product .upsells { clear: both; width: 100%; }
  .fightclub-footer { margin-top: 48px; padding-top: 42px !important; }
  .fightclub-footer .fightclub-row-fluid { grid-template-columns: 1fr; gap: 20px; }
  .fightclub-footer .widget_text img { max-width: 220px; }
  .bm-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bm-footer-bottom { margin-top: 32px; }
  .bm-footer-bottom > div { flex-direction: column; gap: 5px; }
}

@media (max-width: 340px) {
  .woocommerce ul.products, .woocommerce ul.products.isotope { grid-template-columns: 1fr; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
