:root{
  --bg:#0b0f17;
  --panel:#101827;
  --card:#121c2e;
  --text:#e8eefc;
  --muted:rgba(232,238,252,.75);
  --stroke:rgba(255,255,255,.10);
  --accent:#fe5a37;

  --r:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --top:64px;
  --bottom:74px;

  --shell-max: 100%;
  --content-max: 100%;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Main app shell */
.bzcn-app{
  min-height:100vh;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(254,90,55,.20), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(109,40,217,.22), transparent 55%),
    var(--bg);
  color: var(--text);
  padding-top: var(--top);
  padding-bottom: calc(var(--bottom) + 8px);
  width: 100%;
}

/* Large screens: expand naturally, don't force phone width */
@media (min-width: 768px){
  :root{
    --content-max: 980px;
  }
}

@media (min-width: 1200px){
  :root{
    --content-max: 1180px;
  }
}

/* Top bar */
.bzcn-topbar{
  position:fixed;
  top:0;
  right:0;
  left:0;
  height: var(--top);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
  background: rgba(16,24,39,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  z-index: 50;
}

@media (min-width: 768px){
  .bzcn-topbar{
    padding-inline: 24px;
  }
}

@media (min-width: 1200px){
  .bzcn-topbar{
    padding-inline: 40px;
  }
}

.bzcn-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.bzcn-logo{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.35);
  font-weight:900;
}

.bzcn-title{
  font-weight:900;
  letter-spacing:.2px;
}

.bzcn-iconbtn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  height: 40px;
  width: 44px;
  cursor:pointer;
}

/* Content wrapper */
.bzcn-content{
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px;
}

@media (min-width: 768px){
  .bzcn-content{
    padding: 20px 24px;
  }
}

@media (min-width: 1200px){
  .bzcn-content{
    padding: 24px 32px;
  }
}

/* Cards */
.bzcn-card{
  background: rgba(18,28,46,.88);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 12px;
}

@media (min-width: 768px){
  .bzcn-card{
    padding: 18px;
    margin-bottom: 16px;
  }
}

.bzcn-card h2,
.bzcn-card h3{
  margin:0 0 8px 0;
}

.bzcn-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

/* Simple grid */
.bzcn-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 768px){
  .bzcn-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
  }
}

@media (min-width: 1200px){
  .bzcn-grid{
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
  }
}

/* Bottom nav */
.bzcn-bottomnav{
  position:fixed;
  right:0;
  left:0;
  bottom:0;
  height: var(--bottom);
  background: rgba(16,24,39,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--stroke);
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 60;
  padding: 10px 8px;
}

.bzcn-navitem{
  text-decoration:none;
  color: var(--muted);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 6px;
  font-size: 16px;
}

.bzcn-navitem span{
  font-size:11px;
  opacity:.95;
}

.bzcn-navitem.is-active{
  color: var(--text);
}

.bzcn-navitem.is-active::after{
  content:"";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 2px;
}

/* On desktop: keep bottom nav, but make it centered and elegant */
@media (min-width: 992px){
  .bzcn-bottomnav{
    width: min(720px, calc(100% - 40px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 18px;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    height: 68px;
    padding: 8px 10px;
  }
}

/* ===== Categories (Chips + Panels + Slider) ===== */

.bzcn-section{
  padding:0 0 8px;
}

.bzcn-chips{
  display:flex;
  gap:10px;
  overflow:auto;
  padding: 6px 0 14px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bzcn-chips::-webkit-scrollbar{
  height:0;
}

.bzcn-chip{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  scroll-snap-align:start;
  white-space:nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: .2s ease;
}

.bzcn-chip:hover{
  background: rgba(255,255,255,.09);
}

.bzcn-chip-ic{
  font-size:16px;
  line-height:1;
}

.bzcn-chip-txt{
  font-size:13px;
  font-weight:800;
}

.bzcn-chip.is-active{
  border-color: rgba(254,90,55,.55);
  background: rgba(254,90,55,.14);
}

.bzcn-catpanel{
  display:none;
}

.bzcn-catpanel.is-active{
  display:block;
}

.bzcn-cathead h2{
  margin:0 0 6px 0;
}

.bzcn-cathead p{
  margin:0;
  color:var(--muted);
}

/* Product slider */
.bzcn-slider{
  display:flex;
  gap:12px;
  overflow:auto;
  padding: 2px 0 6px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type:x mandatory;
}

.bzcn-slider::-webkit-scrollbar{
  height:0;
}

.bzcn-pcard{
  flex:0 0 auto;
  width: 160px;
  border-radius: var(--r);
  border:1px solid var(--stroke);
  background: rgba(18,28,46,.88);
  box-shadow: var(--shadow);
  text-decoration:none;
  color: var(--text);
  overflow:hidden;
  scroll-snap-align:start;
  transition: transform .2s ease, border-color .2s ease;
}

.bzcn-pcard:hover{
  transform: translateY(-3px);
  border-color: rgba(254,90,55,.35);
}

.bzcn-pimg{
  height: 110px;
  display:grid;
  place-items:center;
  font-size:42px;
  background: rgba(255,255,255,.05);
}

.bzcn-ptxt{
  padding:10px;
}

.bzcn-ptitle{
  font-weight:900;
  font-size:13px;
  margin-bottom:6px;
}

.bzcn-psub{
  color:var(--muted);
  font-size:12px;
}

/* Wider cards on larger screens */
@media (min-width: 768px){
  .bzcn-pcard{
    width: 200px;
  }

  .bzcn-pimg{
    height: 130px;
    font-size: 48px;
  }

  .bzcn-ptitle{
    font-size: 14px;
  }
}

@media (min-width: 1200px){
  .bzcn-pcard{
    width: 220px;
  }

  .bzcn-pimg{
    height: 140px;
    font-size: 52px;
  }
}
/* Force hide theme mobile toolbar */

.wd-toolbar,
.woodmart-toolbar,
.mobile-bottom-navbar,
.wd-bottom-bar{
  display:none !important;
}
/* ===== Home ===== */
.bzcn-home{display:block}
.bzcn-hero{
  border:1px solid var(--stroke);
  border-radius:24px;
  padding:20px;
  margin-bottom:18px;
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(254,90,55,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.bzcn-hero__content h1{
  margin:10px 0 10px;
  font-size:24px;
  line-height:1.4;
}
.bzcn-hero__content p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}
.bzcn-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(254,90,55,.14);
  border:1px solid rgba(254,90,55,.35);
  font-size:12px;
  font-weight:800;
}

.bzcn-homecats{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:14px;
  -webkit-overflow-scrolling: touch;
}
.bzcn-homecats::-webkit-scrollbar{height:0}
.bzcn-homecat{
  min-width:90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  color:var(--text);
  padding:14px 12px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
}
.bzcn-homecat span{font-size:22px}
.bzcn-homecat strong{
  font-size:12px;
  text-align:center;
  line-height:1.4;
}

.bzcn-block{margin-bottom:22px}
.bzcn-block__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.bzcn-block__head h2{
  margin:0;
  font-size:20px;
}
.bzcn-block__head a{
  color:var(--accent);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

/* ===== Real Product Cards ===== */
.bzcn-real-slider{
  display:flex;
  gap:14px;
  overflow:auto;
  padding:2px 0 6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.bzcn-real-slider::-webkit-scrollbar{height:0}

.bzcn-realcard{
  flex:0 0 auto;
  width:170px;
  border-radius:22px;
  border:1px solid var(--stroke);
  background:rgba(18,28,46,.88);
  box-shadow:var(--shadow);
  overflow:hidden;
  text-decoration:none;
  color:var(--text);
  scroll-snap-align:start;
  transition:transform .2s ease, border-color .2s ease;
}
.bzcn-realcard:hover{
  transform:translateY(-3px);
  border-color:rgba(254,90,55,.35);
}

.bzcn-realcard__img{
  aspect-ratio: 1 / 1.08;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}
.bzcn-realcard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bzcn-noimg{
  font-size:42px;
  opacity:.8;
}

.bzcn-realcard__body{
  padding:12px;
}
.bzcn-realcard__title{
  font-size:14px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:6px;
  min-height:42px;
}
.bzcn-realcard__store{
  font-size:12px;
  color:var(--muted);
  margin-bottom:8px;
}
.bzcn-realcard__price{
  font-size:15px;
  font-weight:800;
  margin-bottom:10px;
}
.bzcn-realcard__price del{
  opacity:.6;
  font-size:12px;
  margin-left:4px;
}
.bzcn-realcard__price ins{
  text-decoration:none;
}
.bzcn-realcard__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height:38px;
  border-radius:12px;
  background:rgba(254,90,55,.14);
  border:1px solid rgba(254,90,55,.35);
  color:var(--text);
  font-size:13px;
  font-weight:800;
}

/* Better spacing on larger screens */
@media (min-width: 768px){
  .bzcn-hero{padding:26px}
  .bzcn-hero__content h1{font-size:30px}
  .bzcn-realcard{width:210px}
}

@media (min-width: 1200px){
  .bzcn-realcard{width:230px}
}
/* ===== Better product density ===== */
.bzcn-real-slider{
  display:flex;
  gap:12px;
  overflow:auto;
  padding:2px 0 6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.bzcn-real-slider::-webkit-scrollbar{height:0}

.bzcn-realcard{
  flex:0 0 auto;
  width:140px; /* smaller on mobile */
  border-radius:20px;
  border:1px solid var(--stroke);
  background:rgba(18,28,46,.88);
  box-shadow:var(--shadow);
  overflow:hidden;
  text-decoration:none;
  color:var(--text);
  scroll-snap-align:start;
  transition:transform .2s ease, border-color .2s ease;
}

.bzcn-realcard:hover{
  transform:translateY(-3px);
  border-color:rgba(254,90,55,.35);
}

.bzcn-realcard__img{
  aspect-ratio:1 / 1.05;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}

.bzcn-realcard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bzcn-noimg{
  font-size:40px;
  opacity:.8;
}

.bzcn-realcard__body{
  padding:10px;
}

.bzcn-realcard__title{
  font-size:13px;
  font-weight:800;
  line-height:1.45;
  margin-bottom:6px;
  min-height:38px;
}

.bzcn-realcard__store{
  font-size:11px;
  color:var(--muted);
  margin-bottom:6px;
}

.bzcn-realcard__price{
  font-size:14px;
  font-weight:800;
  margin-bottom:8px;
}

.bzcn-realcard__price del{
  opacity:.65;
  font-size:11px;
  margin-left:4px;
}

.bzcn-realcard__price ins{
  text-decoration:none;
}

.bzcn-realcard__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  border-radius:10px;
  background:rgba(254,90,55,.14);
  border:1px solid rgba(254,90,55,.35);
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

/* Product page in shell */
.bzcn-productpage{
  display:block;
}

.bzcn-productpage__backwrap{
  margin-bottom:14px;
}

.bzcn-backbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
}

.bzcn-producthero{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:22px;
}

.bzcn-producthero__img{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}

.bzcn-producthero__img img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}

.bzcn-noimg--big{
  min-height:300px;
  display:grid;
  place-items:center;
  font-size:72px;
}

.bzcn-producthero__body{
  background:rgba(18,28,46,.88);
  border:1px solid var(--stroke);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
}

.bzcn-productcats{
  color:var(--muted);
  font-size:12px;
  margin-bottom:8px;
}

.bzcn-producttitle{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.45;
}

.bzcn-productstore{
  color:var(--muted);
  font-size:13px;
  margin-bottom:10px;
}

.bzcn-productprice{
  font-size:20px;
  font-weight:900;
  margin-bottom:14px;
}

.bzcn-productprice del{
  opacity:.65;
  font-size:14px;
  margin-left:6px;
}

.bzcn-productprice ins{
  text-decoration:none;
}

.bzcn-productdesc{
  color:var(--text);
  opacity:.95;
  line-height:1.8;
  margin-bottom:18px;
}

.bzcn-productactions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.bzcn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.bzcn-btn--primary{
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.4);
  color:var(--text);
}

.bzcn-btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  color:var(--text);
}

/* Better desktop */
@media (min-width: 768px){
  .bzcn-realcard{
    width:180px;
  }

  .bzcn-realcard__title{
    font-size:14px;
    min-height:42px;
  }

  .bzcn-producthero{
    grid-template-columns:minmax(280px, 460px) 1fr;
    align-items:start;
  }

  .bzcn-producttitle{
    font-size:30px;
  }
}

@media (min-width: 1200px){
  .bzcn-realcard{
    width:200px;
  }
}
/* ===== Favorite buttons ===== */
.bzcn-favbtn{
  position:absolute;
  top:10px;
  left:10px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,15,23,.68);
  backdrop-filter: blur(10px);
  color:#fff;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2;
}

.bzcn-favbtn--big{
  top:14px;
  left:14px;
  width:42px;
  height:42px;
  font-size:20px;
}

.bzcn-realcard__img,
.bzcn-productgallery__main{
  position:relative;
}

/* ===== Better product page v2 ===== */
.bzcn-productpage{
  display:block;
  padding-bottom:8px;
}

.bzcn-productpage__top{
  display:flex;
  justify-content:flex-start;
  margin-bottom:14px;
}

.bzcn-backbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
}

.bzcn-productgallery{
  margin-bottom:16px;
}

.bzcn-productgallery__main{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}

.bzcn-productgallery__main img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.bzcn-productinfo{
  background:rgba(18,28,46,.88);
  border:1px solid var(--stroke);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
  margin-bottom:18px;
}

.bzcn-productcats{
  color:var(--muted);
  font-size:12px;
  margin-bottom:8px;
}

.bzcn-producttitle{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.45;
}

.bzcn-productstore{
  color:var(--muted);
  font-size:13px;
  margin-bottom:10px;
}

.bzcn-productprice{
  font-size:22px;
  font-weight:900;
  margin-bottom:14px;
}

.bzcn-productprice del{
  opacity:.65;
  font-size:14px;
  margin-left:6px;
}

.bzcn-productprice ins{
  text-decoration:none;
}

.bzcn-productdesc{
  color:var(--text);
  opacity:.96;
  line-height:1.85;
  margin-bottom:18px;
}

.bzcn-productdesc p{
  margin:0 0 10px;
}

.bzcn-productactions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.bzcn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.bzcn-btn--primary{
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.40);
  color:var(--text);
}

.bzcn-btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  color:var(--text);
}

.bzcn-related{
  margin-top:6px;
}

/* Remove old conflicting product layout spacing */
.bzcn-producthero,
.bzcn-producthero__body,
.bzcn-producthero__img{
  all: unset;
}

/* Better density for product cards */
.bzcn-realcard{
  width:150px;
}

@media (min-width: 768px){
  .bzcn-producttitle{
    font-size:30px;
  }

  .bzcn-realcard{
    width:185px;
  }
}

@media (min-width: 1200px){
  .bzcn-realcard{
    width:205px;
  }
}
/* ===== Cart badge ===== */
.bzcn-navitem{
  position:relative;
}
.bzcn-cartbadge{
  position:absolute;
  top:0;
  right:18px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* ===== Add to cart message ===== */
.bzcn-addtocart-msg{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.28);
  color:#d8ffe4;
}

/* ===== Cart page ===== */
.bzcn-cartpage{
  display:block;
}

.bzcn-cartlist{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:18px;
}

.bzcn-cartitem{
  position:relative;
  display:flex;
  gap:12px;
  background:rgba(18,28,46,.88);
  border:1px solid var(--stroke);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:12px;
}

.bzcn-cartitem__img{
  flex:0 0 88px;
  width:88px;
  height:88px;
  overflow:hidden;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  display:block;
}

.bzcn-cartitem__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bzcn-cartitem__body{
  flex:1;
  min-width:0;
}

.bzcn-cartitem__title{
  display:block;
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:6px;
}

.bzcn-cartitem__store{
  color:var(--muted);
  font-size:12px;
  margin-bottom:8px;
}

.bzcn-cartitem__subtotal{
  color:var(--text);
  font-size:15px;
  font-weight:800;
  margin-bottom:10px;
}

.bzcn-cartqty{
  display:flex;
  align-items:center;
  gap:8px;
}

.bzcn-qty-btn{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:18px;
  cursor:pointer;
}

.bzcn-qty-value{
  min-width:24px;
  text-align:center;
  font-weight:800;
}

.bzcn-cartremove{
  position:absolute;
  top:10px;
  left:10px;
  width:32px;
  height:32px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.bzcn-cartsummary{
  background:rgba(18,28,46,.88);
  border:1px solid var(--stroke);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:16px;
}

.bzcn-cartsummary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
  font-size:16px;
}

.bzcn-checkout-btn{
  width:100%;
}

/* Product description safety */
.bzcn-productdesc img,
.bzcn-productdesc figure{
  display:none !important;
}
.bzcn-add-msg{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  min-height:20px;
}
/* Cart page */
.bzcn-cart{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.bzcn-cart-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.bzcn-cart-item{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img{
  width:88px;
  min-width:88px;
  height:88px;
  overflow:hidden;
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bzcn-cart-item__body{
  flex:1;
}

.bzcn-cart-item__title{
  font-weight:800;
  margin-bottom:4px;
}

.bzcn-cart-item__store{
  font-size:12px;
  opacity:.75;
  margin-bottom:8px;
}

.bzcn-cart-item__line-total{
  font-weight:800;
  margin-bottom:10px;
}

.bzcn-cart-item__controls{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.bzcn-cart-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.bzcn-cart-item__qty{
  min-width:26px;
  text-align:center;
  font-weight:800;
}

.bzcn-cart-remove{
  border:none;
  border-radius:10px;
  padding:8px 12px;
  background:rgba(255,80,80,.14);
  color:#fff;
  cursor:pointer;
}

.bzcn-cart-summary{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.bzcn-checkout-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.4);
  color:#fff;
  font-weight:800;
}
.bzcn-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.bzcn-topbar-left,
.bzcn-topbar-center,
.bzcn-topbar-right{
  display:flex;
  align-items:center;
}

.bzcn-topbar-center{
  flex:1;
  justify-content:center;
}

.bzcn-logo-img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}

.bzcn-brand-text{
  font-weight:800;
  font-size:20px;
}

.bzcn-topcart{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
}

.bzcn-cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
}

.bzcn-bottomnav{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  align-items:center;
}

.bzcn-navitem{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:#fff;
  font-size:18px;
}

.bzcn-navitem span{
  font-size:12px;
}

.bzcn-navitem-cart{
  position:relative;
}

.bzcn-cart-badge{
  position:absolute;
  top:0;
  right:18px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.bzcn-add-msg{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  min-height:20px;
}
.bzcn-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.bzcn-topbar-left,
.bzcn-topbar-center,
.bzcn-topbar-right{
  display:flex;
  align-items:center;
}

.bzcn-topbar-center{
  flex:1;
  justify-content:center;
}

.bzcn-logo-img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}

.bzcn-brand-text{
  font-weight:800;
  font-size:20px;
}

.bzcn-topcart{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
}

.bzcn-cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5;
}

.bzcn-bottomnav{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  align-items:center;
}

.bzcn-navitem{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:#fff;
  font-size:18px;
}

.bzcn-navitem span{
  font-size:12px;
}

.bzcn-navitem-cart{
  position:relative;
}

.bzcn-cart-badge{
  position:absolute;
  top:-4px;
  right:10px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
  line-height:1;
  z-index:5;
}

.bzcn-add-msg{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  min-height:20px;
}

.bzcn-cart{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.bzcn-cart-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.bzcn-cart-item{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img{
  width:88px;
  min-width:88px;
  height:88px;
  overflow:hidden;
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bzcn-cart-item__body{
  flex:1;
}

.bzcn-cart-item__title{
  font-weight:800;
  margin-bottom:4px;
}

.bzcn-cart-item__store{
  font-size:12px;
  opacity:.75;
  margin-bottom:8px;
}

.bzcn-cart-item__line-total{
  font-weight:800;
  margin-bottom:10px;
}

.bzcn-cart-item__controls{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.bzcn-cart-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.bzcn-cart-item__qty{
  min-width:26px;
  text-align:center;
  font-weight:800;
}

.bzcn-cart-remove{
  border:none;
  border-radius:10px;
  padding:8px 12px;
  background:rgba(255,80,80,.14);
  color:#fff;
  cursor:pointer;
}

.bzcn-cart-summary{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.bzcn-checkout-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.4);
  color:#fff;
  font-weight:800;
}
.bzcn-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.bzcn-topbar-left,
.bzcn-topbar-center,
.bzcn-topbar-right{
  display:flex;
  align-items:center;
}

.bzcn-topbar-center{
  flex:1;
  justify-content:center;
}

.bzcn-logo-img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}

.bzcn-brand-text{
  font-weight:800;
  font-size:20px;
}

.bzcn-topcart{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
}

.bzcn-cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5;
}

.bzcn-bottomnav{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  align-items:center;
}

.bzcn-navitem{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:#fff;
  font-size:18px;
}

.bzcn-navitem span{
  font-size:12px;
}

.bzcn-navitem-cart{
  position:relative;
}

.bzcn-cart-badge{
  position:absolute;
  top:-4px;
  right:10px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4d67;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
  line-height:1;
  z-index:5;
}

.bzcn-add-msg{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  min-height:20px;
}

.bzcn-card-media{
  position:relative;
}

.bzcn-card-media img{
  display:block;
  width:100%;
  height:auto;
}

.bzcn-product-store{
  font-size:12px;
  opacity:.8;
  margin-bottom:6px;
}

.bzcn-favbtn{
  position:absolute;
  top:10px;
  left:10px;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.38);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
}

.bzcn-favbtn-large{
  top:14px;
  left:14px;
  width:42px;
  height:42px;
  font-size:20px;
}

.bzcn-product-page{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding-bottom:90px;
}

.bzcn-product-back{
  display:flex;
  justify-content:flex-start;
}

.bzcn-back-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  color:#fff;
}

.bzcn-product-hero{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.bzcn-product-image{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.bzcn-product-image img{
  width:100%;
  height:auto;
  display:block;
}

.bzcn-product-info{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-product-title{
  margin:0 0 10px;
  font-size:24px;
  font-weight:800;
  line-height:1.45;
}

.bzcn-product-store-line{
  font-size:13px;
  opacity:.8;
  margin-bottom:10px;
}

.bzcn-product-price{
  font-size:22px;
  font-weight:900;
  margin-bottom:12px;
}

.bzcn-product-desc{
  line-height:1.8;
  opacity:.96;
}

.bzcn-product-desc img,
.bzcn-product-desc figure{
  display:none !important;
}

.bzcn-related{
  margin-top:4px;
}

.bzcn-section-head h3{
  margin:0 0 12px;
}

.bzcn-related-slider{
  display:flex;
  gap:14px;
  overflow:auto;
}

.bzcn-related-item{
  min-width:240px;
}

.bzcn-sticky-buybar{
  position:fixed;
  right:16px;
  left:16px;
  bottom:86px;
  z-index:30;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.bzcn-add-to-cart-sticky{
  width:100%;
  min-height:48px;
  border:none;
  border-radius:16px;
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.4);
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}

.bzcn-add-msg-sticky{
  text-align:center;
}

.bzcn-noimg-large{
  min-height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
}

.bzcn-cart{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.bzcn-cart-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.bzcn-cart-item{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img{
  width:88px;
  min-width:88px;
  height:88px;
  overflow:hidden;
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.bzcn-cart-item__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bzcn-cart-item__body{
  flex:1;
}

.bzcn-cart-item__title{
  font-weight:800;
  margin-bottom:4px;
}

.bzcn-cart-item__store{
  font-size:12px;
  opacity:.75;
  margin-bottom:8px;
}

.bzcn-cart-item__line-total{
  font-weight:800;
  margin-bottom:10px;
}

.bzcn-cart-item__controls{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.bzcn-cart-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.bzcn-cart-item__qty{
  min-width:26px;
  text-align:center;
  font-weight:800;
}

.bzcn-cart-remove{
  border:none;
  border-radius:10px;
  padding:8px 12px;
  background:rgba(255,80,80,.14);
  color:#fff;
  cursor:pointer;
}

.bzcn-cart-summary{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.bzcn-cart-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.bzcn-checkout-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(254,90,55,.18);
  border:1px solid rgba(254,90,55,.4);
  color:#fff;
  font-weight:800;
}
/* =========================
   Product Cards Premium UI
   ========================= */

.bzcn-card{
  position: relative;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    rgba(18,28,46,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  overflow: hidden;
}

.bzcn-product-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.bzcn-card-media{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  margin-bottom: 10px;
}

.bzcn-card-media img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform .35s ease;
}

.bzcn-card:hover .bzcn-card-media img{
  transform: scale(1.03);
}

.bzcn-noimg{
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
}

.bzcn-favbtn{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,12,20,.58);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all .2s ease;
}

.bzcn-favbtn:hover{
  background: rgba(254,90,55,.18);
  border-color: rgba(254,90,55,.45);
  transform: translateY(-1px);
}

.bzcn-card h3{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 6px;
  color: #ffffff;
  min-height: 46px;
}

.bzcn-product-store{
  font-size: 12px;
  color: rgba(255,255,255,.68);
  margin-bottom: 8px;
  line-height: 1.4;
}

.bzcn-card p{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  color: #fe5a37;
  line-height: 1.2;
}

.bzcn-card p del{
  color: rgba(255,255,255,.45);
  font-size: 13px;
  margin-right: 6px;
  font-weight: 600;
}

.bzcn-card p ins{
  text-decoration: none;
  color: #fe5a37;
}

.bzcn-add-to-cart{
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(254,90,55,.42);
  background: rgba(254,90,55,.14);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.bzcn-add-to-cart:hover{
  background: #fe5a37;
  border-color: #fe5a37;
  transform: translateY(-1px);
}

.bzcn-add-msg{
  margin-top: 8px;
  min-height: 18px;
  font-size: 12px;
  font-weight: 700;
}

/* Related slider / horizontal cards */
.bzcn-related-slider{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bzcn-related-slider::-webkit-scrollbar{
  height: 0;
}

.bzcn-related-item{
  min-width: 220px;
  max-width: 220px;
  scroll-snap-align: start;
}

/* Product page premium */
.bzcn-product-page{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 100px;
}

.bzcn-product-back{
  display: flex;
  justify-content: flex-start;
}

.bzcn-back-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
}

.bzcn-product-hero{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bzcn-product-image{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
}

.bzcn-product-image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bzcn-product-info{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    rgba(18,28,46,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.bzcn-product-title{
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
}

.bzcn-product-store-line{
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-bottom: 12px;
}

.bzcn-product-price{
  font-size: 28px;
  font-weight: 900;
  color: #fe5a37;
  margin-bottom: 14px;
}

.bzcn-product-price del{
  color: rgba(255,255,255,.45);
  font-size: 15px;
  margin-right: 8px;
  font-weight: 600;
}

.bzcn-product-desc{
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255,255,255,.92);
}

.bzcn-product-desc p{
  margin: 0 0 10px;
}

/* Sticky buy bar better */
.bzcn-sticky-buybar{
  position: fixed;
  right: 14px;
  left: 14px;
  bottom: 86px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bzcn-add-to-cart-sticky{
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(254,90,55,.45);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(254,90,55,.22), rgba(254,90,55,.12));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(254,90,55,.12);
}

.bzcn-add-to-cart-sticky:hover{
  background: #fe5a37;
  border-color: #fe5a37;
}

.bzcn-add-msg-sticky{
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

/* Better on desktop */
@media (min-width: 768px){
  .bzcn-card-media img,
  .bzcn-noimg{
    height: 230px;
  }

  .bzcn-related-item{
    min-width: 250px;
    max-width: 250px;
  }

  .bzcn-product-title{
    font-size: 30px;
  }

  .bzcn-product-price{
    font-size: 32px;
  }
}
/* ===== Step 1: Product grid ===== */

.bzcn-products-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}

.bzcn-card{
  margin:0;
  padding:10px;
  border-radius:18px;
}

.bzcn-card-media{
  margin-bottom:8px;
}

.bzcn-card-media img,
.bzcn-noimg{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.bzcn-card h3{
  margin:0 0 4px;
  font-size:13px;
  font-weight:800;
  line-height:1.45;
  min-height:38px;
}

.bzcn-product-store{
  font-size:11px;
  opacity:.75;
  margin-bottom:6px;
}

.bzcn-card p{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  line-height:1.2;
}

.bzcn-add-to-cart{
  width:100%;
  min-height:40px;
  border-radius:12px;
  font-size:13px;
}

.bzcn-add-msg{
  min-height:16px;
  font-size:11px;
  margin-top:6px;
}

/* related products should also be grid-like when needed */
.bzcn-related-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media (min-width: 768px){
  .bzcn-products-grid{
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
  }

  .bzcn-related-grid{
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
  }

  .bzcn-card-media img,
  .bzcn-noimg{
    height:180px;
  }
}

@media (min-width: 1200px){
  .bzcn-products-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .bzcn-related-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ===== تحسين Grid المنتجات ===== */
.bzcn-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 10px;
}

/* ===== تحسين الكرت ===== */
.bzcn-card {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.bzcn-card:hover {
    transform: translateY(-4px);
}

/* ===== الصور ===== */
.bzcn-card-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
}

/* ===== العنوان ===== */
.bzcn-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 8px 0;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
}

/* ===== السعر ===== */
.bzcn-card p {
    color: #fe5a37;
    font-size: 16px;
    font-weight: bold;
}

/* ===== زر السلة ===== */
.bzcn-add-to-cart {
    width: 100%;
    background: #fe5a37;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 8px;
}

/* ===== زر المفضلة ===== */
.bzcn-favbtn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 34px;
    height: 34px;
}
.bzcn-card-media {
    position: relative;
    overflow: hidden;
}

.bzcn-card-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.bzcn-favbtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bzcn-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.bzcn-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* Toast */
.bzcn-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #fe5a37;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.bzcn-toast.show {
    opacity: 1;
}

/* حركة السلة */
.bzcn-bounce {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.bzcn-favbtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.bzcn-favbtn:active {
    transform: scale(1.2);
}
.bzcn-favbtn.is-active{
  transform: scale(1.06);
}