:root{
  --bm-primary:#16a34a;
  --bm-dark:#111827;
  --bm-text:#1f2937;
  --bm-muted:#6b7280;
  --bm-border:#e5e7eb;
  --bm-bg:#f8fafc;
  --bm-radius:18px;
  --bm-container:1280px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--bm-text);
  background:var(--bm-bg);
}

.container{
  width:100%;
  max-width:var(--bm-container);
  margin:0 auto;
  padding:0 20px;
}

a{
  text-decoration:none;
  color:inherit;
}

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

.bm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:12px 22px;
  font-weight:600;
  border:none;
  cursor:pointer;
}

.bm-btn-primary{
  background:var(--bm-primary);
  color:#fff;
}
/* =========================
   GLOBAL LAYOUT SYSTEM
========================= */

:root{
  --bm-primary:#16a34a;
  --bm-primary-dark:#15803d;

  --bm-bg:#f5f7fb;
  --bm-surface:#ffffff;

  --bm-text:#111827;
  --bm-muted:#6b7280;

  --bm-border:#e5e7eb;

  --bm-radius-sm:12px;
  --bm-radius:18px;
  --bm-radius-lg:24px;

  --bm-shadow:
    0 10px 30px rgba(0,0,0,.05);

  --bm-container:1280px;
}

/* Reset */
*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:var(--bm-bg);
  color:var(--bm-text);

  font-size:15px;
  line-height:1.5;
}

/* Container */
.bm-container{
  width:100%;
  max-width:var(--bm-container);
  margin:0 auto;
  padding:0 20px;
}

/* Links */
a{
  color:inherit;
  text-decoration:none;
}

/* Images */
img{
  max-width:100%;
  display:block;
}

/* Buttons */
button{
  font:inherit;
}

.bm-btn,
.bm-btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  border:none;
  cursor:pointer;

  border-radius:999px;

  padding:13px 22px;

  font-weight:600;

  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.bm-btn-primary{
  background:var(--bm-primary);
  color:#fff;
}

.bm-btn-primary:hover{
  background:var(--bm-primary-dark);
  transform:translateY(-1px);
}

/* Cards */
.bm-card{
  background:var(--bm-surface);
  border-radius:var(--bm-radius);
  box-shadow:var(--bm-shadow);
}

/* Inputs */
input,
select,
textarea{
  width:100%;

  border:1px solid var(--bm-border);

  border-radius:14px;

  padding:13px 14px;

  background:#fff;

  font:inherit;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;

  border-color:var(--bm-primary);

  box-shadow:
    0 0 0 4px rgba(22,163,74,.12);
}

/* Header */
.bm-header{
  position:sticky;
  top:0;
  z-index:100;

  background:#fff;

  border-bottom:1px solid var(--bm-border);
}

.bm-header__inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;

  align-items:center;

  min-height:84px;
}

/* Logo */
.bm-logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.bm-logo__icon{
  width:46px;
  height:46px;

  border-radius:14px;

  background:var(--bm-primary);

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  font-weight:800;
}

.bm-logo__text{
  display:flex;
  flex-direction:column;
}

.bm-logo__name{
  font-size:22px;
  font-weight:800;
}

.bm-logo__tag{
  font-size:11px;
  color:var(--bm-muted);
}

/* Nav */
.bm-nav{
  background:#fff;
  border-bottom:1px solid var(--bm-border);
}

.bm-nav__inner{
  display:flex;
  align-items:center;
  gap:18px;

  min-height:58px;
}

/* Responsive */
@media (max-width: 900px){

  .bm-header__inner{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px 0;
  }

  .bm-nav__phone{
    display:none;
  }
}

@media (max-width: 640px){

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

  .bm-logo__tag{
    display:none;
  }
}
/* =========================
   PRODUCT CARD
========================= */

.bm-product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius);
  overflow:hidden;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bm-product-card:hover{
  transform:translateY(-3px);
  border-color:rgba(22,163,74,.35);
  box-shadow:0 18px 36px rgba(15,23,42,.08);
}

.bm-product-card__img{
  position:relative;
  background:#f8fafc;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.bm-product-card__img a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.bm-product-card__img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.bm-product-card__img-placeholder{
  font-size:13px;
  color:var(--bm-muted);
  text-align:center;
}

.bm-product-card__badge{
  position:absolute;
  left:14px;
  top:14px;
  z-index:2;
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  background:#111827;
  color:#fff;
}

.bm-product-card__badge--red{
  background:#dc2626;
}

.bm-product-card__fav{
  position:absolute;
  right:14px;
  top:14px;
  z-index:3;
  width:38px;
  height:38px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(15,23,42,.12);
  transition:background .18s ease, color .18s ease, transform .18s ease;
}

.bm-product-card__fav:hover{
  background:#fee2e2;
  color:#dc2626;
  transform:scale(1.05);
}

.bm-product-card__body{
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
  padding:16px;
}

.bm-product-card__title{
  min-height:44px;
  font-size:14px;
  line-height:1.35;
  font-weight:700;
  color:var(--bm-text);
}

.bm-product-card__title a:hover{
  color:var(--bm-primary);
}

.bm-product-card__stars{
  display:flex;
  gap:2px;
  color:#f59e0b;
}

.bm-product-card__price-row{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:7px;
}

.bm-product-card__price{
  font-size:19px;
  font-weight:800;
  color:var(--bm-text);
}

.bm-product-card__price-old{
  font-size:13px;
  color:var(--bm-muted);
  text-decoration:line-through;
}

.bm-product-card__sku{
  width:100%;
  color:var(--bm-muted);
}

.bm-product-card__actions{
  display:grid;
  grid-template-columns:1fr 42px;
  gap:10px;
  margin-top:4px;
}

.bm-product-card__actions form{
  margin:0;
}

.bm-add-btn{
  width:100%;
  height:42px;
  border:none;
  border-radius:999px;
  background:var(--bm-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  transition:background .18s ease, transform .18s ease;
}

.bm-add-btn:hover{
  background:var(--bm-primary-dark);
  transform:translateY(-1px);
}

.bm-compare-btn{
  width:42px;
  height:42px;
  border:1px solid var(--bm-border);
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--bm-text);
  transition:border-color .18s ease, color .18s ease, transform .18s ease;
}

.bm-compare-btn:hover{
  border-color:var(--bm-primary);
  color:var(--bm-primary);
  transform:translateY(-1px);
}

/* Product grids, OpenCart compatibility */
.product-thumb,
.product-layout,
.product-grid{
  height:100%;
}

.row .product-thumb{
  margin-bottom:24px;
}

@media (max-width:640px){
  .bm-product-card__body{
    padding:13px;
  }

  .bm-product-card__title{
    font-size:13px;
    min-height:auto;
  }

  .bm-product-card__price{
    font-size:17px;
  }

  .bm-add-btn{
    font-size:12px;
  }
}
/* =========================
   CATEGORY PAGE
========================= */

.bm-section{
  padding:34px 0 54px;
}

.bm-breadcrumb{
  background:#fff;
  border-bottom:1px solid var(--bm-border);
}

.bm-breadcrumb .bm-container{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--bm-muted);
}

.bm-breadcrumb a{
  color:var(--bm-muted);
}

.bm-breadcrumb a:hover{
  color:var(--bm-primary);
}

.bm-breadcrumb span{
  color:var(--bm-text);
  font-weight:600;
}

.bm-category-layout{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.bm-category-side{
  position:sticky;
  top:154px;
}

.bm-category-side > *{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius);
  box-shadow:0 8px 24px rgba(15,23,42,.04);
  overflow:hidden;
}

.bm-category-main{
  min-width:0;
}

.bm-category-head{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius-lg);
  box-shadow:0 8px 24px rgba(15,23,42,.04);
  padding:26px;
  margin-bottom:20px;
}

.bm-category-title{
  margin:0;
  font-size:32px;
  line-height:1.15;
  letter-spacing:-.03em;
  color:var(--bm-text);
}

.bm-category-desc{
  margin-top:12px;
  color:var(--bm-muted);
  max-width:820px;
}

.bm-category-desc p{
  margin:0 0 10px;
}

.bm-category-subs{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius);
  box-shadow:0 8px 24px rgba(15,23,42,.04);
  padding:18px;
  margin-bottom:20px;
}

.bm-category-subs__label{
  font-size:13px;
  font-weight:800;
  color:var(--bm-text);
  margin-bottom:12px;
}

.bm-category-subs__grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bm-category-sub{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  border:1px solid var(--bm-border);
  border-radius:999px;
  padding:8px 14px;
  background:#fff;
  font-size:13px;
  font-weight:700;
  color:var(--bm-text);
}

.bm-category-sub:hover{
  border-color:var(--bm-primary);
  color:var(--bm-primary);
  background:rgba(22,163,74,.06);
}

.bm-category-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius);
  padding:14px 16px;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.bm-category-count{
  font-size:13px;
  color:var(--bm-muted);
  font-weight:700;
}

.bm-category-toolbar__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.bm-toolbar-select{
  width:auto;
  min-width:160px;
  height:40px;
  padding:0 36px 0 13px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

.bm-products-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.bm-products-grid > *{
  min-width:0;
}

.bm-pagination{
  margin-top:28px;
  display:flex;
  justify-content:center;
}

.bm-pagination .pagination{
  display:flex;
  gap:6px;
  margin:0;
  padding:0;
}

.bm-pagination .page-item{
  list-style:none;
}

.bm-pagination .page-link{
  min-width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--bm-border);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--bm-text);
  font-weight:700;
}

.bm-pagination .active .page-link,
.bm-pagination .page-link:hover{
  background:var(--bm-primary);
  border-color:var(--bm-primary);
  color:#fff;
}

.bm-category-empty{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius-lg);
  min-height:320px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:var(--bm-muted);
  text-align:center;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}

/* Basic module cleanup inside category sidebar */
.bm-category-side .list-group{
  margin:0;
  padding:10px;
}

.bm-category-side .list-group-item{
  border:0;
  border-radius:12px;
  margin-bottom:4px;
  font-size:14px;
  font-weight:600;
}

.bm-category-side .list-group-item:hover,
.bm-category-side .list-group-item.active{
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
}

/* Responsive category */
@media (max-width:1180px){
  .bm-products-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .bm-category-layout{
    grid-template-columns:1fr;
  }

  .bm-category-side{
    position:static;
  }

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

  .bm-category-title{
    font-size:26px;
  }

  .bm-category-toolbar{
    align-items:flex-start;
    flex-direction:column;
  }

  .bm-category-toolbar__right{
    width:100%;
  }

  .bm-toolbar-select{
    width:100%;
  }
}

@media (max-width:520px){
  .bm-section{
    padding:22px 0 40px;
  }

  .bm-category-head{
    padding:18px;
  }

  .bm-products-grid{
    gap:14px;
  }
}
/* =========================
   HEADER
========================= */

.bm-header-top{
  background:#f3f4f6;
  border-bottom:1px solid var(--bm-border);
  font-size:13px;
}

.bm-header-top__inner{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.bm-header-main{
  background:#fff;
}

.bm-header-main__inner{
  min-height:92px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
}

.bm-search{
  position:relative;
}

.bm-search form{
  display:flex;
  gap:10px;
}

.bm-search input{
  height:52px;
  border-radius:999px;
  padding:0 22px;
  background:#f8fafc;
}

.bm-search button{
  height:52px;
  padding:0 22px;
  border:none;
  border-radius:999px;
  background:var(--bm-primary);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.bm-header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.bm-header-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--bm-border);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

.bm-cart-btn{
  min-height:52px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--bm-border);
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 18px;
}

/* =========================
   HERO
========================= */

.bm-hero{
  padding:28px 0 0;
}

.bm-hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}

.bm-hero__left,
.bm-hero__right{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:28px;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.bm-hero__left{
  padding:42px;
}

.bm-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  border-radius:999px;
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
  padding:0 14px;
  font-size:12px;
  font-weight:800;
  margin-bottom:20px;
}

.bm-hero__title{
  margin:0;
  font-size:54px;
  line-height:1;
  letter-spacing:-.05em;
}

.bm-hero__title em{
  font-style:normal;
  color:var(--bm-primary);
}

.bm-hero__lede{
  margin:22px 0;
  max-width:720px;
  color:var(--bm-muted);
  font-size:17px;
  line-height:1.7;
}

.bm-hero__ctas{
  display:flex;
  gap:12px;
  margin-bottom:28px;
}

.bm-btn-ghost{
  height:48px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid var(--bm-border);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-weight:700;
}

.bm-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bm-hero__chip{
  border-radius:999px;
  border:1px solid var(--bm-border);
  background:#fff;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
}

.bm-hero__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}

.bm-hero__stat-val{
  font-size:28px;
  font-weight:800;
}

.bm-hero__stat-label{
  font-size:13px;
  color:var(--bm-muted);
}

.bm-hero__right{
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.bm-hero__live{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
}

.bm-hero__live-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#22c55e;
}

.bm-hero__img-wrap{
  flex:1;
  min-height:340px;
  border-radius:24px;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--bm-muted);
}

.bm-hero__price-tag{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.bm-hero__price-old{
  font-size:14px;
  color:var(--bm-muted);
  text-decoration:line-through;
}

.bm-hero__price-new{
  font-size:32px;
  font-weight:800;
}

.bm-hero__price-badge{
  min-width:72px;
  height:42px;
  border-radius:999px;
  background:#dc2626;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

/* =========================
   VALUE CARDS
========================= */

.bm-values{
  padding:24px 0;
}

.bm-values__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.bm-value-card{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:22px;
  padding:24px;
}

.bm-value-card__icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.bm-value-card h3{
  margin:0 0 10px;
  font-size:18px;
}

.bm-value-card p{
  margin:0;
  color:var(--bm-muted);
  font-size:14px;
  line-height:1.7;
}

/* =========================
   SECTION HEAD
========================= */

.bm-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}

.bm-section-head h2{
  margin:0;
  font-size:34px;
  letter-spacing:-.04em;
}

.bm-section-head a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--bm-primary);
  font-weight:700;
}

/* =========================
   CATEGORY TILES
========================= */

.bm-categories{
  padding:20px 0;
}

.bm-categories__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.bm-cat-tile{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:24px;
  padding:26px;
  transition:all .18s ease;
}

.bm-cat-tile:hover{
  transform:translateY(-3px);
  border-color:rgba(22,163,74,.3);
}

.bm-cat-tile__icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.bm-cat-tile__name{
  font-size:18px;
  font-weight:800;
  margin-bottom:6px;
}

.bm-cat-tile__count{
  color:var(--bm-muted);
  font-size:14px;
}

/* =========================
   BRANDS
========================= */

.bm-brands{
  padding:28px 0 50px;
}

.bm-brands__inner{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:28px;
  padding:32px;
}

.bm-brands__chips{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:22px;
}

.bm-brand-chip{
  width:150px;
  height:84px;
  border-radius:18px;
  border:1px solid var(--bm-border);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

.bm-brand-chip img{
  max-width:100px;
  max-height:42px;
  object-fit:contain;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .bm-hero__grid{
    grid-template-columns:1fr;
  }

  .bm-values__grid,
  .bm-categories__grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){

  .bm-header-main__inner{
    grid-template-columns:1fr;
  }

  .bm-hero__left{
    padding:28px;
  }

  .bm-hero__title{
    font-size:38px;
  }

  .bm-hero__stats{
    grid-template-columns:1fr;
  }
}

@media (max-width:520px){

  .bm-values__grid,
  .bm-categories__grid{
    grid-template-columns:1fr;
  }

  .bm-section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .bm-section-head h2{
    font-size:28px;
  }

  .bm-hero__ctas{
    flex-direction:column;
  }
}

/* TEMP FIX: OpenCart menu cleanup */
.bm-nav ul{
  list-style:none;
  margin:0;
  padding:0;
}

.bm-nav > .bm-container > .bm-nav__inner > ul,
.bm-nav .navbar-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
}

.bm-nav li{
  position:relative;
  margin:0;
}

.bm-nav li a{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  font-size:14px;
  font-weight:700;
  color:var(--bm-text);
}

.bm-nav li a:hover{
  color:var(--bm-primary);
}

.bm-nav li ul,
.bm-nav .dropdown-menu{
  display:none !important;
}

.bm-nav__all{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:var(--bm-text);
  color:#fff;
  font-weight:800;
  white-space:nowrap;
}

.bm-nav__phone{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  color:var(--bm-muted);
  font-size:13px;
  font-weight:700;
}

@media (max-width:900px){
  .bm-nav{
    overflow-x:auto;
  }

  .bm-nav__inner{
    min-width:max-content;
  }

  .bm-nav__phone{
    display:none;
  }
}


/* =========================
   MAIN NAV / MEGA MENU
========================= */

.bm-nav__items{
  display:flex;
  align-items:center;
  gap:4px;
  min-width:0;
}

.bm-nav__item{
  position:relative;
  display:flex;
  align-items:center;
  gap:5px;
  min-height:58px;
}

.bm-nav__item > a{
  display:flex;
  align-items:center;
  min-height:40px;
  padding:0 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:var(--bm-text);
  white-space:nowrap;
}

.bm-nav__item > a:hover{
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
}

.bm-nav__item svg{
  color:var(--bm-muted);
  margin-right:4px;
}

.bm-mega{
  position:absolute;
  left:0;
  top:100%;
  z-index:200;

  width:min(760px, calc(100vw - 40px));

  display:none;
  grid-template-columns:repeat(3,1fr) 240px;
  gap:18px;

  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:22px;
  box-shadow:0 24px 60px rgba(15,23,42,.16);

  padding:22px;
}

.bm-nav__item:hover .bm-mega{
  display:grid;
}

.bm-mega__col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.bm-mega__col li{
  margin:0;
}

.bm-mega__col a{
  display:flex;
  align-items:center;
  min-height:34px;
  padding:7px 8px;
  border-radius:10px;
  font-size:13px;
  color:var(--bm-text);
}

.bm-mega__col a:hover{
  background:rgba(22,163,74,.08);
  color:var(--bm-primary);
}

.bm-mega__feature{
  border-radius:18px;
  background:linear-gradient(135deg, rgba(22,163,74,.12), rgba(22,163,74,.04));
  padding:20px;
}

.bm-mega__feature-tag{
  display:inline-flex;
  min-height:26px;
  align-items:center;
  border-radius:999px;
  background:#fff;
  color:var(--bm-primary);
  padding:0 10px;
  font-size:11px;
  font-weight:800;
  margin-bottom:12px;
}

.bm-mega__feature h3{
  margin:0 0 8px;
  font-size:18px;
}

.bm-mega__feature p{
  margin:0 0 14px;
  color:var(--bm-muted);
  font-size:13px;
}

.bm-mega__feature a{
  color:var(--bm-primary);
  font-weight:800;
  font-size:13px;
}

@media (max-width:900px){
  .bm-nav__items{
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-right:12px;
  }

  .bm-nav__item{
    flex:0 0 auto;
  }

  .bm-mega{
    display:none !important;
  }
}


/* =========================
   HEADER COMPACT FIX
========================= */

.bm-promo-strip .bm-container{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.bm-header__inner{
  min-height:96px;
}

.bm-search-wrap form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
}

.bm-search-wrap input{
  height:48px;
}

.bm-search-wrap button{
  height:48px;
  border-radius:999px;
  padding:0 22px;
}

.bm-header__actions{
  align-items:flex-start;
  padding-top:10px;
}

#header-cart{
  position:relative;
}

#header-cart .dropdown-menu,
#header-cart .dropdown-menu.show{
  position:absolute !important;
  right:0;
  top:calc(100% + 10px);
  left:auto !important;
  width:320px;
  max-width:90vw;
  display:none;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(15,23,42,.18);
  padding:14px;
  z-index:500;
}

#header-cart:hover .dropdown-menu,
#header-cart .dropdown-menu.show{
  display:block;
}

.bm-nav__inner{
  min-height:52px;
  overflow:hidden;
}

.bm-nav__items{
  flex:1;
  overflow:hidden;
}

.bm-nav__phone{
  display:none !important;
}

.bm-nav__item:nth-child(n+8){
  display:none;
}

@media (max-width:1100px){
  .bm-header__inner{
    grid-template-columns:1fr;
    min-height:auto;
    padding:18px 0;
  }

  .bm-header__actions{
    padding-top:0;
  }
}


/* =========================
   FIX: HEADER + CATEGORY LAYOUT
========================= */

/* header mai compact */
.bm-header__inner{
  min-height:120px !important;
}

/* meniul are voie să afișeze dropdown */
.bm-nav__inner{
  overflow:visible !important;
}

.bm-nav__items{
  overflow:visible !important;
}

.bm-mega{
  display:none;
}

.bm-nav__item:hover .bm-mega{
  display:grid !important;
}

/* telefonul nu mai intră peste categorii */
.bm-nav__phone{
  display:none !important;
}

/* nu mai ascundem categorii din meniu */
.bm-nav__item:nth-child(n+8){
  display:flex !important;
}

/* cart dropdown să nu mai stea deschis în pagină */
#header-cart .dropdown-menu{
  display:none !important;
}

#header-cart:hover .dropdown-menu{
  display:block !important;
}

/* categorie: sidebar normal, nu coloană îngustă */
.bm-category-layout{
  grid-template-columns:260px minmax(0,1fr) !important;
  gap:28px !important;
}

.bm-category-side{
  width:260px !important;
  min-width:260px !important;
  overflow:visible !important;
}

.bm-category-side .list-group,
.bm-category-side ul{
  width:100% !important;
}

.bm-category-side a,
.bm-category-side .list-group-item{
  white-space:normal !important;
  word-break:normal !important;
}

/* conținutul principal să înceapă corect */
.bm-category-main{
  min-width:0 !important;
}

/* pe ecrane mici ascundem sidebarul ca să nu rupă layout-ul */
@media (max-width:900px){
  .bm-category-layout{
    grid-template-columns:1fr !important;
  }

  .bm-category-side{
    width:100% !important;
    min-width:0 !important;
    position:static !important;
  }
}


/* =========================
   FINAL HEADER COMPACT
========================= */

.bm-promo-strip .bm-container{
  min-height:28px !important;
  font-size:13px !important;
}

.bm-header{
  position:relative !important;
}

.bm-header__inner{
  min-height:74px !important;
  padding:8px 0 !important;
  grid-template-columns:190px minmax(360px, 1fr) auto !important;
  gap:18px !important;
}

.bm-logo__icon{
  width:38px !important;
  height:38px !important;
  border-radius:12px !important;
  font-size:18px !important;
}

.bm-logo__name{
  font-size:18px !important;
}

.bm-logo__tag{
  font-size:10px !important;
}

.bm-search-wrap input{
  height:42px !important;
  font-size:14px !important;
}

.bm-search-wrap button{
  height:42px !important;
  padding:0 18px !important;
}

.bm-header__actions{
  padding-top:0 !important;
  align-items:center !important;
}

.bm-icon-btn{
  width:34px !important;
  height:34px !important;
}

#header-cart .btn,
#header-cart button,
.bm-cart-btn{
  min-height:42px !important;
  height:42px !important;
  padding:0 14px !important;
}

.bm-nav__inner{
  min-height:46px !important;
}

.bm-nav__item{
  min-height:46px !important;
}

.bm-nav__item > a{
  min-height:34px !important;
  font-size:13px !important;
  padding:0 10px !important;
}

.bm-nav__all{
  min-height:34px !important;
  padding:0 14px !important;
  font-size:13px !important;
}

@media (max-width:1100px){
  .bm-header__inner{
    grid-template-columns:1fr !important;
  }
}


/* =========================
   CART HEADER FIX
========================= */

.bm-cart-wrap{
  position:relative;
}

.bm-cart-btn{
  height:42px !important;
  min-height:42px !important;
  border:1px solid var(--bm-border);
  border-radius:999px;
  background:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 14px !important;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.bm-cart-btn__count{
  min-width:20px;
  height:20px;
  border-radius:999px;
  background:var(--bm-primary);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
}

.bm-cart-dropdown{
  display:none !important;
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:340px;
  max-width:90vw;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:18px;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
  padding:14px;
  z-index:999;
}

.bm-cart-wrap:hover .bm-cart-dropdown,
.bm-cart-dropdown.open{
  display:block !important;
}

.bm-cart-item{
  display:grid;
  grid-template-columns:52px 1fr 28px;
  gap:10px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--bm-border);
}

.bm-cart-item__img{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:10px;
  background:#f8fafc;
}

.bm-cart-item__name{
  display:block;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
}

.bm-cart-item__meta{
  font-size:12px;
  color:var(--bm-muted);
  margin-top:3px;
}

.bm-cart-item__remove{
  width:26px;
  height:26px;
  border:1px solid var(--bm-border);
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bm-cart-dropdown__totals{
  padding:10px 0;
}

.bm-cart-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  padding:4px 0;
}

.bm-cart-total-row:last-child{
  font-weight:800;
}

.bm-cart-dropdown__actions{
  display:flex;
  gap:10px;
  margin-top:8px;
}

.bm-cart-dropdown__empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:120px;
  color:var(--bm-muted);
  text-align:center;
}

.bm-cart-dropdown__empty p{
  margin:0;
  font-size:13px;
}


/* =========================
   FINAL HEADER DESIGN
========================= */

.bm-header{
  border-bottom:1px solid #edf1f5;
  background:#fff;
}

.bm-header__inner{
  min-height:68px !important;
  padding:10px 0 !important;

  display:grid;
  grid-template-columns:220px minmax(300px,1fr) auto;
  gap:22px;
  align-items:center;
}

.bm-logo{
  gap:12px;
}

.bm-logo__icon{
  width:42px;
  height:42px;
  border-radius:14px;
}

.bm-logo__name{
  font-size:18px;
  font-weight:800;
}

.bm-logo__tag{
  font-size:11px;
  margin-top:2px;
}

.bm-search-wrap form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
}

.bm-search-wrap input{
  width:100%;
  height:44px;
  border:1px solid #dfe5ec;
  border-radius:999px;
  padding:0 18px;
  font-size:14px;
  outline:none;
  background:#fff;
}

.bm-search-wrap input:focus{
  border-color:#16a34a;
}

.bm-search-wrap button{
  height:44px;
  border:none;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  padding:0 22px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
}

.bm-header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.bm-icon-btn{
  width:38px;
  height:38px;
  border:1px solid #e5e7eb;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
  background:#fff;
}

.bm-nav{
  border-top:1px solid #edf1f5;
  border-bottom:1px solid #edf1f5;
  background:#fff;
}

.bm-nav__inner{
  min-height:52px !important;
  display:flex;
  align-items:center;
  gap:18px;
}

.bm-nav__all{
  height:38px;
  padding:0 18px;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  font-size:13px;
  font-weight:800;
}

.bm-nav__item > a{
  min-height:38px !important;
  font-size:13px !important;
}

@media (max-width:1100px){

  .bm-header__inner{
    grid-template-columns:1fr;
  }

  .bm-nav{
    overflow:auto;
  }

  .bm-nav__inner{
    min-width:max-content;
  }
}


/* =========================
   FINAL POLISH
========================= */

/* mega menu */
.bm-mega{
  min-width:980px !important;
  max-width:1180px !important;

  display:grid !important;
  grid-template-columns:repeat(4,minmax(160px,1fr)) 260px !important;

  gap:28px !important;

  padding:28px !important;

  border-radius:24px !important;
  box-shadow:0 30px 80px rgba(15,23,42,.16) !important;
}

.bm-mega__col ul{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.bm-mega__col a{
  font-size:14px;
  line-height:1.4;
  color:#111827;
}

.bm-mega__feature{
  border-radius:20px;
  padding:24px;
  background:#eef8f0;
}

/* navbar compact */
.bm-nav__inner{
  gap:12px !important;
}

.bm-nav__item > a{
  font-size:13px !important;
  padding:0 8px !important;
}

/* hero */
.bm-hero{
  grid-template-columns:1.2fr .8fr !important;
  gap:22px !important;
}

.bm-hero__content{
  padding:48px !important;
}

.bm-hero__title{
  max-width:720px;
  line-height:1.02 !important;
}

.bm-hero__desc{
  max-width:620px;
}

/* overall spacing */
.bm-section{
  padding:28px 0 !important;
}

/* container */
.bm-container{
  width:min(1380px, calc(100% - 48px)) !important;
}

/* cards */
.bm-card,
.bm-product-card,
.bm-category-card{
  border-radius:24px !important;
}

/* mobile */
@media (max-width:1200px){

  .bm-mega{
    min-width:760px !important;
    grid-template-columns:repeat(3,1fr) !important;
  }

}

@media (max-width:900px){

  .bm-hero{
    grid-template-columns:1fr !important;
  }

}


/* =========================
   FIX MEGA MENU CLOSED BY DEFAULT
========================= */

.bm-mega{
  display:none !important;
}

.bm-nav__item:hover > .bm-mega{
  display:grid !important;
}

@media (max-width:900px){
  .bm-mega{
    display:none !important;
  }
}


/* =========================
   MEGA MENU COMPACT FINAL
========================= */

.bm-mega{
  width:auto !important;
  min-width:560px !important;
  max-width:720px !important;

  grid-template-columns:minmax(220px, 1fr) 220px !important;
  gap:22px !important;

  padding:22px !important;
}

.bm-mega__col:nth-child(n+2){
  display:none !important;
}

.bm-mega__feature{
  min-width:220px !important;
}

.bm-mega__col a{
  min-height:32px !important;
  padding:6px 8px !important;
  font-size:13px !important;
}


/* =========================
   PREMIUM NAV POLISH
========================= */

.bm-nav{
  position:relative;
  z-index:40;
}

.bm-nav__item{
  position:relative;
}

.bm-mega{
  top:calc(100% + 8px) !important;

  border:1px solid rgba(15,23,42,.06) !important;

  border-radius:28px !important;

  box-shadow:
    0 24px 80px rgba(15,23,42,.14),
    0 2px 10px rgba(15,23,42,.05) !important;

  backdrop-filter:blur(10px);
}

.bm-mega__col a{
  border-radius:12px;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.bm-mega__col a:hover{
  background:#f3f7f4;
  color:#16a34a;
  transform:translateX(2px);
}

.bm-nav__item > a{
  border-radius:999px;
  transition:
    background .18s ease,
    color .18s ease;
}

.bm-nav__item:hover > a{
  background:#f3f7f4;
  color:#16a34a;
}

.bm-nav__all{
  box-shadow:0 8px 24px rgba(15,23,42,.14);
}

.bm-hero{
  position:relative;
  z-index:1;
}


/* =========================
   PREMIUM NAV POLISH
========================= */

.bm-nav{
  position:relative;
  z-index:40;
}

.bm-nav__item{
  position:relative;
}

.bm-mega{
  top:calc(100% + 8px) !important;

  border:1px solid rgba(15,23,42,.06) !important;

  border-radius:28px !important;

  box-shadow:
    0 24px 80px rgba(15,23,42,.14),
    0 2px 10px rgba(15,23,42,.05) !important;

  backdrop-filter:blur(10px);
}

.bm-mega__col a{
  border-radius:12px;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.bm-mega__col a:hover{
  background:#f3f7f4;
  color:#16a34a;
  transform:translateX(2px);
}

.bm-nav__item > a{
  border-radius:999px;
  transition:
    background .18s ease,
    color .18s ease;
}

.bm-nav__item:hover > a{
  background:#f3f7f4;
  color:#16a34a;
}

.bm-nav__all{
  box-shadow:0 8px 24px rgba(15,23,42,.14);
}

.bm-hero{
  position:relative;
  z-index:1;
}


/* =========================
   PREMIUM PRODUCT CARD V2
========================= */

.bm-product-card{
  height:100%;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:26px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bm-product-card:hover{
  transform:translateY(-4px);
  border-color:rgba(22,163,74,.35);
  box-shadow:0 24px 60px rgba(15,23,42,.11);
}

.bm-product-card__media{
  position:relative;
  aspect-ratio:1 / .82;
  background:linear-gradient(180deg,#f8fafc,#f1f5f9);
  padding:20px;
}

.bm-product-card__image{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bm-product-card__image img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.bm-product-card__placeholder{
  color:#64748b;
  font-size:13px;
  text-align:center;
}

.bm-product-card__badge{
  position:absolute;
  left:16px;
  top:16px;
  border-radius:999px;
  background:#dc2626;
  color:#fff;
  padding:6px 11px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.bm-product-card__wish{
  position:absolute;
  right:16px;
  top:16px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(15,23,42,.12);
}

.bm-product-card__wish:hover{
  color:#dc2626;
  background:#fff1f2;
}

.bm-product-card__content{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:11px;
  padding:18px;
}

.bm-product-card__name{
  min-height:44px;
  color:#111827;
  font-size:14px;
  line-height:1.35;
  font-weight:800;
}

.bm-product-card__name:hover{
  color:#16a34a;
}

.bm-product-card__rating{
  display:flex;
  gap:2px;
  font-size:13px;
  color:#cbd5e1;
}

.bm-product-card__rating .is-active{
  color:#f59e0b;
}

.bm-product-card__prices{
  margin-top:auto;
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}

.bm-product-card__price{
  font-size:21px;
  font-weight:900;
  color:#111827;
  letter-spacing:-.02em;
}

.bm-product-card__old{
  color:#94a3b8;
  font-size:13px;
  text-decoration:line-through;
}

.bm-product-card__tax{
  color:#64748b;
  font-size:12px;
}

.bm-product-card__actions{
  display:grid;
  grid-template-columns:1fr 42px;
  gap:10px;
  margin-top:4px;
}

.bm-product-card__actions form{
  margin:0;
}

.bm-product-card__cart{
  height:42px;
  width:100%;
  border:0;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
}

.bm-product-card__cart:hover{
  background:#15803d;
}

.bm-product-card__view{
  height:42px;
  border:1px solid #e5e7eb;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#111827;
  background:#fff;
}

.bm-product-card__view:hover{
  border-color:#16a34a;
  color:#16a34a;
}

@media (max-width:640px){
  .bm-product-card__content{
    padding:14px;
  }

  .bm-product-card__name{
    min-height:auto;
    font-size:13px;
  }

  .bm-product-card__price{
    font-size:18px;
  }
}


/* =========================
   FIX CATEGORY SIDEBAR + MEGA HOVER
========================= */

/* sidebar categorie normal */
.bm-category-layout{
  grid-template-columns:260px minmax(0,1fr) !important;
  gap:32px !important;
}

.bm-category-side{
  width:260px !important;
  min-width:260px !important;
  max-width:260px !important;
}

.bm-category-side .list-group,
.bm-category-side ul{
  width:100% !important;
}

.bm-category-side a,
.bm-category-side .list-group-item{
  display:block !important;
  width:100% !important;
  white-space:normal !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
  line-height:1.35 !important;
  padding:12px 16px !important;
}

/* dropdown stabil, fără gap între meniu și mega */
.bm-nav__item{
  padding-bottom:12px !important;
  margin-bottom:-12px !important;
}

.bm-mega{
  top:calc(100% - 2px) !important;
}

/* zonă invizibilă care păstrează hover-ul când cobori mouse-ul */
.bm-nav__item::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:18px;
  background:transparent;
}

/* mega menu peste restul paginii */
.bm-nav{
  z-index:1000 !important;
}

.bm-mega{
  z-index:1001 !important;
}

/* main mai bine aliniat */
.bm-category-main{
  min-width:0 !important;
}

/* pe mobil */
@media (max-width:900px){
  .bm-category-layout{
    grid-template-columns:1fr !important;
  }

  .bm-category-side{
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
  }
}


/* Category full layout after removing old sidebar */
.bm-category-layout{
  display:block !important;
}

.bm-category-main{
  width:100% !important;
  max-width:1100px !important;
  margin:0 auto !important;
}

/* PDP */

.bm-pdp-grid{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:40px;
  align-items:start;
}

.bm-pdp-gallery{
  position:sticky;
  top:120px;
}

.bm-pdp-main-img{
  position:relative;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:28px;
  padding:24px;
  overflow:hidden;
}

.bm-pdp-main-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}

.bm-pdp-thumbs{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}

.bm-pdp-thumb{
  width:74px;
  height:74px;
  border:1px solid var(--bm-border);
  border-radius:16px;
  background:#fff;
  padding:6px;
  cursor:pointer;
}

.bm-pdp-thumb.active{
  border-color:var(--bm-primary);
}

.bm-pdp-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bm-pdp-info{
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:28px;
  padding:34px;
}

.bm-pdp-title{
  font-size:42px;
  line-height:1.1;
  margin:10px 0 18px;
  font-weight:800;
  color:var(--bm-text);
}

.bm-pdp-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.bm-pdp-stock{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  font-weight:700;
  color:#16a34a;
}

.bm-pdp-price{
  display:flex;
  align-items:flex-end;
  gap:14px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.bm-pdp-price-new{
  font-size:44px;
  font-weight:900;
  line-height:1;
}

.bm-pdp-price-old{
  font-size:20px;
  text-decoration:line-through;
  color:var(--bm-muted);
}

.bm-pdp-vat{
  color:var(--bm-muted);
  font-size:14px;
}

.bm-pdp-buy-row{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:30px;
}

.bm-pdp-qty{
  display:flex;
  align-items:center;
  border:1px solid var(--bm-border);
  border-radius:999px;
  overflow:hidden;
  background:#fff;
}

.bm-pdp-qty button{
  width:46px;
  height:46px;
  border:none;
  background:#fff;
  font-size:22px;
  cursor:pointer;
}

.bm-pdp-qty input{
  width:54px;
  border:none;
  text-align:center;
  font-size:16px;
  font-weight:700;
  background:transparent;
}

.bm-pdp-add{
  height:50px;
  padding:0 28px;
}

.bm-pdp-buy-now{
  height:50px;
}

.bm-pdp-tabs{
  margin-top:44px;
}

.bm-pdp-tab-bar{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.bm-pdp-tab{
  height:46px;
  padding:0 20px;
  border:none;
  border-radius:999px;
  background:#eef2f7;
  font-weight:700;
  cursor:pointer;
}

.bm-pdp-tab.active{
  background:var(--bm-primary);
  color:#fff;
}

.bm-pdp-tab-body{
  display:none;
  background:#fff;
  border:1px solid var(--bm-border);
  border-radius:28px;
  padding:34px;
}

.bm-pdp-tab-body.active{
  display:block;
}

.bm-pdp-specs{
  width:100%;
  border-collapse:collapse;
}

.bm-pdp-specs td{
  padding:14px 0;
  border-bottom:1px solid #edf2f7;
}

.bm-pdp-specs td:first-child{
  width:240px;
  color:var(--bm-muted);
}

.bm-pdp-trust{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:30px;
}

.bm-pdp-trust-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  background:#f8fafc;
  border-radius:18px;
}

.bm-pdp-trust-item strong{
  display:block;
  margin-bottom:4px;
}

@media(max-width:1100px){

  .bm-pdp-grid{
    grid-template-columns:1fr;
  }

  .bm-pdp-gallery{
    position:relative;
    top:auto;
  }

  .bm-pdp-title{
    font-size:32px;
  }

  .bm-pdp-buy-row{
    flex-wrap:wrap;
  }

}

/* =========================
   PDP COMPACT POLISH
========================= */

.bm-pdp-grid{
  grid-template-columns:460px minmax(0, 1fr) !important;
  gap:32px !important;
  max-width:1120px;
  margin:0 auto;
}

.bm-pdp-main-img{
  padding:20px !important;
  border-radius:24px !important;
}

.bm-pdp-main-img img{
  max-height:470px;
  object-fit:contain;
}

.bm-pdp-info{
  padding:30px !important;
  border-radius:24px !important;
}

.bm-pdp-title{
  font-size:34px !important;
  line-height:1.15 !important;
  margin-bottom:14px !important;
}

.bm-pdp-meta{
  margin-bottom:16px !important;
  font-size:14px;
  flex-wrap:wrap;
}

.bm-pdp-stock{
  margin-bottom:12px !important;
}

.bm-pdp-price{
  margin-bottom:22px !important;
}

.bm-pdp-price-new{
  font-size:34px !important;
}

.bm-pdp-buy-row{
  display:grid !important;
  grid-template-columns:120px 1fr;
  gap:12px !important;
  align-items:center;
  margin-top:22px !important;
}

.bm-pdp-qty{
  height:46px;
}

.bm-pdp-add{
  height:46px !important;
  width:100%;
  justify-content:center;
}

.bm-pdp-buy-now{
  grid-column:2;
  height:42px !important;
  justify-content:center;
  font-size:13px;
  color:#111827;
  background:#fff;
}

.bm-pdp-trust{
  margin-top:22px !important;
  gap:10px !important;
}

.bm-pdp-trust-item{
  padding:12px 14px !important;
  border-radius:16px !important;
}

.bm-pdp-trust-item strong{
  font-size:14px;
}

.bm-pdp-trust-item span{
  font-size:13px;
  color:#64748b;
}

.bm-pdp-tabs{
  max-width:1120px;
  margin:34px auto 0 !important;
}

.bm-pdp-tab-body{
  padding:28px !important;
}

@media(max-width:1100px){
  .bm-pdp-grid{
    grid-template-columns:1fr !important;
  }

  .bm-pdp-buy-row{
    grid-template-columns:1fr !important;
  }

  .bm-pdp-buy-now{
    grid-column:auto;
  }
}

/* PRODUCT PAGE FINAL POLISH */

.bm-product-page{
  max-width:1380px;
  margin:0 auto;
}

.bm-product-main{
  align-items:start;
  gap:34px;
}

.bm-product-gallery{
  max-width:520px;
}

.bm-product-summary{
  max-width:560px;
}

.bm-product-title{
  font-size:44px;
  line-height:1.05;
  margin-bottom:14px;
}

.bm-product-actions{
  margin-top:22px;
}

.bm-product-buy-row{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:14px;
  align-items:center;
}

.bm-qty{
  height:54px;
}

.bm-add-cart{
  height:54px;
  font-size:16px;
  font-weight:700;
}

.bm-buy-now{
  height:46px;
  margin-top:12px;
  font-size:15px;
}

.bm-product-benefits{
  margin-top:18px;
}

.bm-benefit-card{
  padding:18px 20px;
  border-radius:18px;
}

.bm-product-tabs{
  margin-top:28px;
  margin-bottom:28px;
}

.bm-product-tab-content{
  padding:34px;
  border-radius:26px;
}

.bm-product-tab-content table{
  margin-top:20px;
}

.bm-product-tab-content td,
.bm-product-tab-content th{
  padding:14px 16px;
}

.newsletter{
  margin-top:40px !important;
  padding-top:10px;
}
/* FOOTER FINAL POLISH */

.bm-newsletter{
  padding:56px 0 28px;
}

.bm-newsletter__box{
  padding:42px 48px;
  border-radius:28px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
  align-items:center;
}

.bm-newsletter__title{
  font-size:42px;
  line-height:1.05;
  margin:10px 0 14px;
}

.bm-newsletter__sub{
  font-size:16px;
  color:var(--bm-muted);
}

.bm-newsletter__form{
  display:flex;
  gap:14px;
}

.bm-newsletter__input{
  height:58px;
  border-radius:18px;
  padding:0 22px;
  font-size:15px;
}

.bm-newsletter__btn{
  height:58px;
  padding:0 28px;
  border-radius:18px;
  font-size:15px;
  font-weight:700;
}

.bm-footer{
  padding:20px 0 0;
}

.bm-footer__grid{
  gap:42px;
  padding:34px 0;
}

.bm-footer__logo{
  margin-bottom:18px;
}

.bm-footer__desc{
  line-height:1.7;
  max-width:320px;
}

.bm-footer__col h4{
  margin-bottom:18px;
  font-size:16px;
}

.bm-footer__col ul{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.bm-footer__col a{
  transition:all .18s ease;
}

.bm-footer__col a:hover{
  color:var(--bm-primary);
  padding-left:3px;
}

.bm-footer__bottom{
  padding:24px 0 34px;
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.06);
}

.bm-footer__payments{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.bm-footer__payment-chip{
  height:36px;
  padding:0 16px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
}

#cookie-banner{
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:980px){

  .bm-newsletter__box{
    grid-template-columns:1fr;
    padding:34px 26px;
  }

  .bm-newsletter__title{
    font-size:32px;
  }

  .bm-newsletter__form{
    flex-direction:column;
  }

  .bm-newsletter__btn,
  .bm-newsletter__input{
    width:100%;
  }
}

/* =========================
   FOOTER GRID FIX
========================= */

.bm-footer{
  background:#1f2937;
  color:#fff;
}

.bm-footer__grid{
  display:grid !important;
  grid-template-columns:1.4fr repeat(4, 1fr) !important;
  gap:42px !important;
  align-items:start;
}

.bm-footer__brand{
  max-width:340px;
}

.bm-footer__col ul{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.bm-footer__col li{
  margin:0 !important;
}

.bm-footer__col h4{
  color:#fff;
  font-weight:800;
}

.bm-footer__col a,
.bm-footer__desc,
.bm-footer__contact,
.bm-footer__copy{
  color:rgba(255,255,255,.75);
}

.bm-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

@media(max-width:1100px){
  .bm-footer__grid{
    grid-template-columns:1fr 1fr !important;
  }
}

@media(max-width:640px){
  .bm-footer__grid{
    grid-template-columns:1fr !important;
  }

  .bm-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

