/* TheBlassa Speed & Cart Booster */
:root{
  --tbsc-brand:#111111;
  --tbsc-accent:#f4c542;
  --tbsc-bg:#ffffff;
  --tbsc-muted:#777;
  --tbsc-border:#ececec;
  --tbsc-radius:16px;
  --tbsc-shadow:0 12px 36px rgba(0,0,0,.16);
}

body.tbsc-cart-open{overflow:hidden;}

.tbsc-mobile-nav,
.tbsc-cart-drawer,
.tbsc-cart-overlay{box-sizing:border-box;}

.tbsc-mobile-nav * ,
.tbsc-cart-drawer * {box-sizing:border-box;}

.tbsc-mobile-nav{display:none;}

.tbsc-cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.38);
  opacity:0;
  visibility:hidden;
  transition:.22s ease;
  z-index:999998;
}

.tbsc-cart-drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(420px, 92vw);
  height:100vh;
  background:#fff;
  transform:translateX(105%);
  transition:transform .26s ease;
  z-index:999999;
  display:flex;
  flex-direction:column;
  box-shadow:var(--tbsc-shadow);
  color:#111;
}

body.tbsc-cart-open .tbsc-cart-overlay{opacity:1;visibility:visible;}
body.tbsc-cart-open .tbsc-cart-drawer{transform:translateX(0);}

.tbsc-cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:62px;
  padding:16px 18px;
  border-bottom:1px solid var(--tbsc-border);
  font-size:18px;
}

.tbsc-icon-btn{
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f5f5f5;
  color:#111;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.tbsc-free-shipping{
  padding:12px 16px;
  background:#fff9df;
  border-bottom:1px solid #f2e7a7;
  font-size:13px;
  font-weight:600;
  display:none;
}
.tbsc-free-shipping.is-visible{display:block;}
.tbsc-free-shipping .tbsc-bar{
  height:8px;
  background:#eadfba;
  border-radius:999px;
  margin-top:8px;
  overflow:hidden;
}
.tbsc-free-shipping .tbsc-bar > span{
  display:block;
  height:100%;
  width:0%;
  background:var(--tbsc-brand);
  border-radius:999px;
}

.tbsc-cart-body{
  padding:14px;
  overflow:auto;
  flex:1;
  -webkit-overflow-scrolling:touch;
}

.tbsc-empty{
  text-align:center;
  margin:28px 0;
  color:#555;
  font-size:15px;
}

.tbsc-cart-items{display:flex;flex-direction:column;gap:12px;}

.tbsc-cart-item{
  display:grid;
  grid-template-columns:68px 1fr auto;
  gap:10px;
  padding:10px;
  border:1px solid var(--tbsc-border);
  border-radius:14px;
  background:#fff;
}

.tbsc-cart-img img{
  width:68px!important;
  height:68px!important;
  object-fit:contain;
  border-radius:10px;
  background:#fafafa;
}

.tbsc-cart-title{
  color:#111!important;
  display:block;
  font-weight:700;
  font-size:13px;
  line-height:1.25;
  text-decoration:none!important;
  margin-bottom:4px;
}

.tbsc-cart-price,
.tbsc-line-total{
  font-size:13px;
  font-weight:700;
  color:#111;
}

.tbsc-line-total{text-align:right;white-space:nowrap;}

.tbsc-qty-row{
  margin-top:8px;
  display:flex;
  align-items:center;
  gap:5px;
  flex-wrap:wrap;
}

.tbsc-qty-row button,
.tbsc-qty-row input{
  height:30px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:9px;
}
.tbsc-qty-row button{
  width:30px;
  cursor:pointer;
  font-weight:800;
}
.tbsc-qty-row input{
  width:44px;
  text-align:center;
  font-size:13px;
}
.tbsc-qty-row .tbsc-remove{
  width:auto;
  padding:0 8px;
  font-size:11px;
  color:#b00020;
  border-color:#ffd1d9;
}

.tbsc-cart-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
  padding:14px;
  background:#f7f7f7;
  border-radius:14px;
}

.tbsc-cart-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:14px;
  border-top:1px solid var(--tbsc-border);
}

.tbsc-btn{
  min-height:46px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none!important;
  font-weight:800;
  font-size:14px;
  border:1px solid var(--tbsc-brand);
  padding:0 14px;
}
.tbsc-btn-primary{background:var(--tbsc-brand);color:#fff!important;}
.tbsc-btn-secondary{background:#fff;color:var(--tbsc-brand)!important;}
.tbsc-full{width:100%;}

.tbsc-whatsapp-order{
  margin:0 14px 14px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:#25D366;
  color:#fff!important;
  font-weight:800;
  text-decoration:none!important;
}

.tbsc-toast{
  position:fixed;
  left:50%;
  bottom:86px;
  transform:translateX(-50%) translateY(20px);
  background:#111;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  opacity:0;
  visibility:hidden;
  transition:.2s ease;
  z-index:1000000;
  font-size:13px;
  font-weight:700;
  max-width:90vw;
  text-align:center;
}
.tbsc-toast.is-visible{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}

/* Nettoyage UX produits sans forcer le thème */
.woocommerce ul.products li.product .button,
.products .product .button{
  border-radius:999px!important;
  font-weight:800!important;
}

@media (max-width: 768px){
  body{padding-bottom:72px;}

  .tbsc-mobile-nav{
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    height:60px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:2px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 8px 28px rgba(0,0,0,.16);
    border-radius:20px;
    padding:6px;
    z-index:999990;
  }

  .tbsc-mobile-nav-item{
    position:relative;
    border:0;
    background:transparent;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1px;
    text-decoration:none!important;
    color:#111!important;
    font-family:inherit;
    padding:0;
    border-radius:14px;
    cursor:pointer;
  }
  .tbsc-mobile-nav-item span{font-size:18px;line-height:1;}
  .tbsc-mobile-nav-item small{font-size:10px;font-weight:800;line-height:1;}
  .tbsc-mobile-nav-item.tbsc-wa{background:#25D366;color:#fff!important;}
  .tbsc-mobile-nav-item.tbsc-cart-trigger{background:#111;color:#fff!important;}
  .tbsc-mobile-nav-item em{
    position:absolute;
    top:2px;
    right:8px;
    min-width:17px;
    height:17px;
    padding:0 4px;
    border-radius:999px;
    background:var(--tbsc-accent);
    color:#111;
    font-size:10px;
    font-style:normal;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .tbsc-cart-drawer{
    width:100vw;
    height:calc(100vh - env(safe-area-inset-bottom));
  }

  .tbsc-cart-item{
    grid-template-columns:62px 1fr;
  }
  .tbsc-line-total{
    grid-column:2;
    text-align:left;
  }

  /* Accélération ressentie : cards produit plus simples sur mobile */
  .woocommerce ul.products li.product,
  .products .product{
    contain:layout paint;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .products .product .product-title,
  .products .product h3{
    font-size:13px!important;
    line-height:1.25!important;
  }

  .quick-view,
  .quick-view-button,
  .woodmart-quick-view,
  .wd-quick-view-btn,
  .yith-wcqv-button{
    display:none!important;
  }
}


/* V1.1 — Mobile commerce premium */
.tbsc-shop-trust,
.tbsc-single-trust{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0 14px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.tbsc-shop-trust::-webkit-scrollbar,
.tbsc-single-trust::-webkit-scrollbar{display:none;}
.tbsc-shop-trust span,
.tbsc-single-trust span{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#f7f7f7;
  color:#111;
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

@media (max-width: 768px){
  body.tbsc-premium-mobile-ui{
    -webkit-tap-highlight-color:transparent;
  }

  body.tbsc-premium-mobile-ui .site-content,
  body.tbsc-premium-mobile-ui .main-page-wrapper,
  body.tbsc-premium-mobile-ui .content-area{
    overflow-x:hidden;
  }

  body.tbsc-premium-mobile-ui.woocommerce-page ul.products,
  body.tbsc-premium-mobile-ui .woocommerce ul.products,
  body.tbsc-premium-mobile-ui .products.elements-grid,
  body.tbsc-premium-mobile-ui .products{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:11px!important;
    margin-left:0!important;
    margin-right:0!important;
  }

  body.tbsc-premium-mobile-ui .woocommerce ul.products:before,
  body.tbsc-premium-mobile-ui .woocommerce ul.products:after,
  body.tbsc-premium-mobile-ui ul.products:before,
  body.tbsc-premium-mobile-ui ul.products:after{
    display:none!important;
    content:none!important;
  }

  body.tbsc-premium-mobile-ui .woocommerce ul.products li.product,
  body.tbsc-premium-mobile-ui ul.products li.product,
  body.tbsc-premium-mobile-ui .products .product,
  body.tbsc-premium-mobile-ui .product-grid-item{
    width:auto!important;
    max-width:none!important;
    float:none!important;
    clear:none!important;
    margin:0!important;
    padding:8px!important;
    border:1px solid rgba(0,0,0,.06)!important;
    border-radius:18px!important;
    background:#fff!important;
    box-shadow:0 6px 18px rgba(0,0,0,.045)!important;
    overflow:hidden!important;
    min-width:0!important;
    position:relative!important;
  }

  body.tbsc-premium-mobile-ui .product-grid-item .product-wrapper,
  body.tbsc-premium-mobile-ui .products .product .product-wrapper,
  body.tbsc-premium-mobile-ui ul.products li.product .product-wrapper{
    box-shadow:none!important;
    border:0!important;
    padding:0!important;
    margin:0!important;
    background:transparent!important;
  }

  body.tbsc-premium-mobile-ui ul.products li.product a img,
  body.tbsc-premium-mobile-ui .products .product img,
  body.tbsc-premium-mobile-ui .product-grid-item img{
    width:100%!important;
    aspect-ratio:1/1!important;
    height:auto!important;
    max-height:170px!important;
    object-fit:contain!important;
    border-radius:14px!important;
    background:#fafafa!important;
    padding:6px!important;
    margin:0 auto 8px!important;
  }

  body.tbsc-premium-mobile-ui .woocommerce-loop-product__title,
  body.tbsc-premium-mobile-ui .product-title,
  body.tbsc-premium-mobile-ui .product-grid-item .wd-entities-title,
  body.tbsc-premium-mobile-ui .products .product h3{
    min-height:34px!important;
    margin:6px 0 5px!important;
    font-size:12.5px!important;
    line-height:1.28!important;
    font-weight:800!important;
    color:#111!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden!important;
    text-align:left!important;
  }

  body.tbsc-premium-mobile-ui .woocommerce-loop-product__title a,
  body.tbsc-premium-mobile-ui .product-title a,
  body.tbsc-premium-mobile-ui .wd-entities-title a{
    color:#111!important;
    text-decoration:none!important;
  }

  body.tbsc-premium-mobile-ui ul.products li.product .price,
  body.tbsc-premium-mobile-ui .products .product .price,
  body.tbsc-premium-mobile-ui .product-grid-item .price{
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:center!important;
    gap:4px!important;
    min-height:24px!important;
    margin:4px 0 8px!important;
    color:#111!important;
    font-size:13px!important;
    font-weight:900!important;
    text-align:left!important;
  }

  body.tbsc-premium-mobile-ui .price del{
    color:#999!important;
    font-size:11px!important;
    font-weight:600!important;
    opacity:.85!important;
  }

  body.tbsc-premium-mobile-ui .price ins{
    color:#d72626!important;
    font-weight:900!important;
    text-decoration:none!important;
  }

  body.tbsc-premium-mobile-ui ul.products li.product .button,
  body.tbsc-premium-mobile-ui .products .product .button,
  body.tbsc-premium-mobile-ui .product-grid-item .button,
  body.tbsc-premium-mobile-ui .product-grid-item .add_to_cart_button{
    width:100%!important;
    min-height:38px!important;
    height:auto!important;
    margin:4px 0 0!important;
    padding:9px 8px!important;
    border-radius:12px!important;
    background:#111!important;
    color:#fff!important;
    border:1px solid #111!important;
    font-size:12px!important;
    line-height:1.1!important;
    font-weight:900!important;
    text-align:center!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    box-shadow:none!important;
    white-space:normal!important;
  }

  body.tbsc-premium-mobile-ui ul.products li.product .button.loading,
  body.tbsc-premium-mobile-ui .products .product .button.loading{
    opacity:.72!important;
  }

  body.tbsc-premium-mobile-ui .onsale,
  body.tbsc-premium-mobile-ui .product-label,
  body.tbsc-premium-mobile-ui .product-labels span,
  body.tbsc-premium-mobile-ui .labels-rounded .out-of-stock{
    border-radius:999px!important;
    font-size:10px!important;
    font-weight:900!important;
    min-height:22px!important;
    padding:4px 7px!important;
  }

  body.tbsc-premium-mobile-ui .star-rating,
  body.tbsc-premium-mobile-ui .product-rating-price,
  body.tbsc-premium-mobile-ui .hover-content,
  body.tbsc-premium-mobile-ui .product-excerpt,
  body.tbsc-premium-mobile-ui .woocommerce-product-details__short-description,
  body.tbsc-premium-mobile-ui ul.products li.product .description,
  body.tbsc-premium-mobile-ui .product-grid-item .wd-product-cats,
  body.tbsc-premium-mobile-ui .product-grid-item .wd-product-brands,
  body.tbsc-premium-mobile-ui .product-grid-item .wd-product-stock,
  body.tbsc-premium-mobile-ui .wd-product-countdown{
    display:none!important;
  }

  body.tbsc-hide-mobile-noise .quick-view,
  body.tbsc-hide-mobile-noise .quick-view-button,
  body.tbsc-hide-mobile-noise .woodmart-quick-view,
  body.tbsc-hide-mobile-noise .wd-quick-view-btn,
  body.tbsc-hide-mobile-noise .yith-wcqv-button,
  body.tbsc-hide-mobile-noise .yith-wcwl-add-to-wishlist,
  body.tbsc-hide-mobile-noise .wd-wishlist-btn,
  body.tbsc-hide-mobile-noise .wd-compare-btn,
  body.tbsc-hide-mobile-noise .compare,
  body.tbsc-hide-mobile-noise .product-compare-button{
    display:none!important;
  }

  body.tbsc-shop-ux .woocommerce-result-count,
  body.tbsc-shop-ux .woocommerce-ordering{
    font-size:12px!important;
    margin-bottom:10px!important;
  }

  body.tbsc-shop-ux .tbsc-shop-trust,
  body.tbsc-single-product-ux .tbsc-single-trust{
    margin-left:0!important;
    margin-right:0!important;
    padding-bottom:2px!important;
  }

  body.tbsc-single-product-ux .single_add_to_cart_button{
    min-height:48px!important;
    border-radius:14px!important;
    font-size:15px!important;
    font-weight:900!important;
    background:#111!important;
    color:#fff!important;
    border-color:#111!important;
  }

  body.tbsc-single-product-ux .summary .price{
    font-size:20px!important;
    font-weight:900!important;
    color:#111!important;
  }

  body.tbsc-single-product-ux .quantity input.qty{
    min-height:46px!important;
    border-radius:12px!important;
  }

  body.tbsc-premium-mobile-ui .tbsc-mobile-nav{
    bottom:max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px){
  body.tbsc-premium-mobile-ui .woocommerce ul.products,
  body.tbsc-premium-mobile-ui .products{
    gap:8px!important;
  }
  body.tbsc-premium-mobile-ui .woocommerce ul.products li.product,
  body.tbsc-premium-mobile-ui .products .product,
  body.tbsc-premium-mobile-ui .product-grid-item{
    padding:7px!important;
  }
  body.tbsc-premium-mobile-ui .woocommerce-loop-product__title,
  body.tbsc-premium-mobile-ui .product-title,
  body.tbsc-premium-mobile-ui .product-grid-item .wd-entities-title{
    font-size:12px!important;
  }
}

/* V1.2 — Conversion Booster */
.tbsc-free-tip{
  margin-top:5px;
  font-size:12px;
  font-weight:700;
  color:#5f4b00;
}

.tbsc-category-chips{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:2px 0 6px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.tbsc-category-chips::-webkit-scrollbar{display:none;}
.tbsc-category-chips strong{
  flex:0 0 auto;
  font-size:13px;
  color:#111;
  font-weight:900;
  margin-right:2px;
}
.tbsc-category-chips a{
  flex:0 0 auto;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 13px;
  border-radius:999px;
  background:#111;
  color:#fff!important;
  text-decoration:none!important;
  font-size:12px;
  font-weight:850;
  line-height:1;
}

.tbsc-cart-upsells{
  margin-top:14px;
  padding:12px;
  border:1px solid rgba(0,0,0,.07);
  border-radius:16px;
  background:#fbfbfb;
}
.tbsc-upsell-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:8px;
  margin-bottom:10px;
}
.tbsc-upsell-head strong{
  color:#111;
  font-size:14px;
  font-weight:950;
}
.tbsc-upsell-head small{
  color:#777;
  font-size:11px;
  font-weight:800;
}
.tbsc-upsell-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.tbsc-upsell-item{
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:8px;
  align-items:center;
  padding:8px;
  border-radius:13px;
  background:#fff;
  border:1px solid rgba(0,0,0,.05);
}
.tbsc-upsell-img img{
  width:48px!important;
  height:48px!important;
  object-fit:contain!important;
  border-radius:10px!important;
  background:#f7f7f7!important;
  padding:3px!important;
}
.tbsc-upsell-info a{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  color:#111!important;
  text-decoration:none!important;
  font-size:12px;
  line-height:1.2;
  font-weight:850;
}
.tbsc-upsell-info span{
  display:block;
  margin-top:3px;
  color:#111;
  font-size:12px;
  font-weight:900;
}
.tbsc-mini-add{
  min-height:32px;
  border:0;
  border-radius:999px;
  background:#111;
  color:#fff!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 10px;
  font-size:11px;
  line-height:1;
  font-weight:950;
  text-decoration:none!important;
  white-space:nowrap;
  cursor:pointer;
}
.tbsc-mini-add.loading{opacity:.65;pointer-events:none;}

.tbsc-checkout-trust{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:0 0 18px;
}
.tbsc-checkout-trust span{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:13px 14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 8px 24px rgba(0,0,0,.045);
}
.tbsc-checkout-trust strong{
  color:#111;
  font-size:13px;
  font-weight:950;
}
.tbsc-checkout-trust small{
  color:#666;
  font-size:11px;
  font-weight:700;
  line-height:1.25;
}

@media (max-width:768px){
  body.tbsc-conversion-booster .tbsc-whatsapp-order{
    min-height:48px;
    font-size:14px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(37,211,102,.22);
  }

  body.tbsc-conversion-booster .tbsc-cart-actions{
    position:sticky;
    bottom:0;
    background:#fff;
    z-index:2;
    padding-bottom:max(14px, env(safe-area-inset-bottom));
  }

  body.tbsc-conversion-booster .tbsc-btn-primary{
    box-shadow:0 8px 18px rgba(0,0,0,.16);
  }

  .tbsc-category-chips{
    margin-left:0!important;
    margin-right:0!important;
    padding-left:1px;
  }
  .tbsc-category-chips strong{
    display:none;
  }
  .tbsc-category-chips a{
    min-height:32px;
    padding:0 12px;
    font-size:11px;
  }

  .tbsc-checkout-trust{
    grid-template-columns:1fr;
    gap:8px;
    margin:0 0 14px;
  }
  .tbsc-checkout-trust span{
    padding:11px 12px;
    border-radius:14px;
  }

  body.tbsc-checkout-ux form.checkout{
    display:block!important;
  }
  body.tbsc-checkout-ux .woocommerce-billing-fields__field-wrapper,
  body.tbsc-checkout-ux .woocommerce-shipping-fields__field-wrapper{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
  }
  body.tbsc-checkout-ux .form-row,
  body.tbsc-checkout-ux .woocommerce form .form-row{
    width:100%!important;
    float:none!important;
    margin:0 0 10px!important;
  }
  body.tbsc-checkout-ux .form-row input.input-text,
  body.tbsc-checkout-ux .form-row textarea,
  body.tbsc-checkout-ux .form-row select,
  body.tbsc-checkout-ux .select2-container .select2-selection--single{
    min-height:46px!important;
    border-radius:13px!important;
    border:1px solid rgba(0,0,0,.14)!important;
    background:#fff!important;
    font-size:15px!important;
  }
  body.tbsc-checkout-ux #order_review,
  body.tbsc-checkout-ux #order_review_heading,
  body.tbsc-checkout-ux .woocommerce-checkout-review-order{
    border-radius:16px!important;
  }
  body.tbsc-checkout-ux #place_order{
    width:100%!important;
    min-height:52px!important;
    border-radius:15px!important;
    background:#111!important;
    color:#fff!important;
    font-size:16px!important;
    font-weight:950!important;
  }

  .tbsc-upsell-item{
    grid-template-columns:46px 1fr auto;
  }
  .tbsc-mini-add{
    min-height:31px;
    padding:0 9px;
    font-size:10.5px;
  }
}

/* V4 Growth Booster */
.tbsc-growth-modal,
.tbsc-growth-modal *{box-sizing:border-box;}
.tbsc-growth-modal{
  position:fixed;
  inset:0;
  z-index:1000001;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.tbsc-growth-modal.is-visible{display:flex;}
.tbsc-growth-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.48);
  backdrop-filter:blur(4px);
}
.tbsc-growth-card{
  position:relative;
  width:min(430px, 100%);
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.25);
  color:#111;
  animation:tbscPop .22s ease;
}
@keyframes tbscPop{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}
.tbsc-growth-close{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f4f4f4;
  color:#111;
  font-size:24px;
  cursor:pointer;
}
.tbsc-growth-kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#fff3bf;
  color:#111;
  font-size:12px;
  font-weight:950;
  margin-bottom:10px;
}
.tbsc-growth-card h3{
  margin:0 34px 8px 0;
  color:#111;
  font-size:24px;
  line-height:1.08;
  font-weight:950;
}
.tbsc-growth-card p{
  margin:0 0 14px;
  color:#555;
  font-size:14px;
  line-height:1.45;
  font-weight:650;
}
.tbsc-growth-coupon{
  margin:0 0 14px;
  padding:11px 12px;
  border:1px dashed rgba(0,0,0,.25);
  border-radius:16px;
  background:#fafafa;
  color:#111;
  font-size:14px;
  font-weight:800;
}
.tbsc-growth-coupon strong{
  letter-spacing:.06em;
  background:#111;
  color:#fff;
  padding:4px 8px;
  border-radius:9px;
}
.tbsc-growth-form{display:grid;gap:10px;}
.tbsc-growth-form input{
  width:100%;
  min-height:48px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:15px;
  padding:0 14px;
  font-size:15px;
  outline:0;
}
.tbsc-growth-form input:focus{border-color:#111;box-shadow:0 0 0 3px rgba(0,0,0,.08);}
.tbsc-growth-form button{
  min-height:48px;
  border:0;
  border-radius:15px;
  background:#111;
  color:#fff;
  font-weight:950;
  cursor:pointer;
}
.tbsc-growth-form button:disabled{opacity:.65;cursor:wait;}
.tbsc-growth-form small{
  color:#777;
  font-size:11px;
  line-height:1.3;
}

.tbsc-abandoned-bar{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translate(-50%, 120%);
  z-index:1000000;
  width:min(520px, calc(100% - 24px));
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
  background:#111;
  color:#fff;
  border-radius:18px;
  padding:10px 10px 10px 14px;
  box-shadow:0 14px 38px rgba(0,0,0,.28);
  transition:.24s ease;
}
.tbsc-abandoned-bar.is-visible{transform:translate(-50%, 0);}
.tbsc-abandoned-bar strong{font-size:13px;font-weight:950;}
.tbsc-abandoned-bar span{font-size:12px;color:rgba(255,255,255,.75);font-weight:700;}
.tbsc-abandoned-close{
  width:28px;height:28px;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:20px;line-height:1;cursor:pointer;
}
.tbsc-abandoned-open{
  border:0;
  border-radius:13px;
  background:var(--tbsc-accent,#f4c542);
  color:#111;
  min-height:38px;
  padding:0 14px;
  font-size:12px;
  font-weight:950;
  cursor:pointer;
}

.tbsc-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin:0 0 12px;
}
.tbsc-section-head strong{font-size:18px;font-weight:950;color:#111;line-height:1.1;}
.tbsc-section-head small{font-size:12px;font-weight:750;color:#777;text-align:right;}
.tbsc-bundle-packs,
.tbsc-trending-products{
  clear:both;
  margin:16px 0;
  padding:16px;
  border:1px solid rgba(0,0,0,.07);
  border-radius:22px;
  background:#fff;
  box-shadow:0 8px 28px rgba(0,0,0,.045);
}
.tbsc-pack-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.tbsc-pack-card{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-height:118px;
  padding:14px;
  border-radius:18px;
  background:linear-gradient(135deg,#fafafa,#fff7d2);
  border:1px solid rgba(0,0,0,.06);
  color:#111;
  text-decoration:none!important;
  transition:.18s ease;
}
.tbsc-pack-card:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.08);}
.tbsc-pack-card span{font-size:14px;font-weight:950;color:#111;}
.tbsc-pack-card small{font-size:12px;line-height:1.35;color:#5c5c5c;font-weight:650;}
.tbsc-pack-card em{margin-top:auto;font-size:12px;color:#111;font-weight:950;font-style:normal;}
.tbsc-trending-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.tbsc-trending-card{
  display:grid;
  gap:8px;
  padding:10px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  background:#fff;
  min-width:0;
}
.tbsc-trending-img{
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fafafa;
  border-radius:14px;
  overflow:hidden;
}
.tbsc-trending-img img{width:100%;height:100%;object-fit:contain;}
.tbsc-trending-title{
  color:#111!important;
  font-size:12px;
  font-weight:850;
  line-height:1.25;
  text-decoration:none!important;
  min-height:30px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.tbsc-trending-price{font-size:13px;font-weight:950;color:#111;}
.tbsc-trending-price del{opacity:.55;font-size:11px;}
.tbsc-trending-price ins{text-decoration:none;}
.tbsc-growth-home{display:block;margin:18px 0;}
.tbsc-growth-hero{
  margin:0 0 18px;
  padding:28px;
  border-radius:26px;
  background:linear-gradient(135deg,#111,#2b2b2b);
  color:#fff;
  overflow:hidden;
}
.tbsc-growth-hero span{display:inline-flex;margin-bottom:10px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.12);font-size:12px;font-weight:950;}
.tbsc-growth-hero h2{max-width:720px;margin:0 0 10px;color:#fff;font-size:34px;line-height:1.02;font-weight:950;}
.tbsc-growth-hero p{max-width:620px;margin:0 0 16px;color:rgba(255,255,255,.72);font-size:15px;font-weight:650;}
.tbsc-growth-hero a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 18px;border-radius:14px;background:var(--tbsc-accent,#f4c542);color:#111!important;text-decoration:none!important;font-weight:950;}

body.tbsc-growth-booster ul.products li.product .onsale,
body.tbsc-growth-booster span.onsale{
  border-radius:999px!important;
  font-weight:950!important;
  box-shadow:0 7px 18px rgba(0,0,0,.16)!important;
}
body.tbsc-growth-booster ul.products li.product.outofstock:after{
  content:'Rupture';
  position:absolute;
  top:10px;
  left:10px;
  z-index:3;
  padding:5px 9px;
  border-radius:999px;
  background:#e53935;
  color:#fff;
  font-size:11px;
  font-weight:950;
}

@media (max-width:768px){
  .tbsc-growth-modal{padding:12px;align-items:flex-end;}
  .tbsc-growth-card{border-radius:24px 24px 18px 18px;padding:22px 18px calc(20px + env(safe-area-inset-bottom));}
  .tbsc-growth-card h3{font-size:22px;}
  .tbsc-abandoned-bar{
    bottom:74px;
    grid-template-columns:auto 1fr auto;
    border-radius:16px;
    width:calc(100% - 18px);
  }
  .tbsc-bundle-packs,
  .tbsc-trending-products{padding:13px;border-radius:18px;margin:12px 0;}
  .tbsc-section-head{align-items:flex-start;flex-direction:column;gap:3px;}
  .tbsc-section-head strong{font-size:16px;}
  .tbsc-section-head small{text-align:left;font-size:11px;}
  .tbsc-pack-grid,
  .tbsc-trending-row{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:10px;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
  }
  .tbsc-pack-card{min-width:72%;scroll-snap-align:start;min-height:112px;}
  .tbsc-trending-card{min-width:42%;scroll-snap-align:start;}
  .tbsc-growth-hero{padding:22px 18px;border-radius:22px;}
  .tbsc-growth-hero h2{font-size:26px;}
  .tbsc-growth-hero p{font-size:14px;}
}

/* V4.2 automatic homepage fallback */
.tbsc-auto-growth-fallback {
  width: min(1180px, calc(100% - 24px));
  margin: 18px auto 22px;
  clear: both;
}
.tbsc-auto-growth-fallback .tbsc-growth-home {
  margin-top: 0;
}
@media (max-width: 768px) {
  .tbsc-auto-growth-fallback {
    width: calc(100% - 18px);
    margin: 12px auto 16px;
  }
}

/* V1.5.0 — Final cleanup + WhatsApp direct product CTA */
.tbsc-single-wa-button{
  width:100%;
  min-height:48px;
  margin-top:10px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff!important;
  text-decoration:none!important;
  font-size:15px;
  font-weight:950;
  line-height:1;
  box-shadow:0 8px 20px rgba(37,211,102,.20);
}
.tbsc-single-wa-button:before{
  content:'💬';
  margin-right:7px;
}
.tbsc-single-wa-button:hover{filter:brightness(.96);transform:translateY(-1px);}
body.tbsc-frontend-clean footer a[href*="themeforest"],
body.tbsc-frontend-clean footer a[href*="xtemos"],
body.tbsc-frontend-clean footer a[href*="woodmart"],
body.tbsc-frontend-clean .copyrights-wrapper a[href*="themeforest"],
body.tbsc-frontend-clean .copyrights-wrapper a[href*="xtemos"],
body.tbsc-frontend-clean .copyrights-wrapper a[href*="woodmart"]{
  display:none!important;
}
body.tbsc-frontend-clean .amount,
body.tbsc-frontend-clean .price{
  letter-spacing:-.01em;
}
body.tbsc-frontend-clean .woocommerce ul.products li.product-category mark.count,
body.tbsc-frontend-clean .product-categories .count:empty{
  display:none!important;
}
@media (max-width:768px){
  .tbsc-single-wa-button{
    min-height:50px;
    font-size:14px;
    border-radius:15px;
  }
  body.woocommerce-checkout .tbsc-mobile-nav,
  body.woocommerce-cart .tbsc-mobile-nav,
  body.woocommerce-account .tbsc-mobile-nav{
    display:none!important;
  }
}

/* V1.5.1 - TheBlassa logo size restored: desktop + tablet + mobile */
@media (min-width: 1025px) {
  .whb-header .site-logo img,
  .whb-header .woodmart-logo img,
  .whb-header .wd-logo img,
  .whb-header .whb-logo img,
  .whb-header .header-logo img,
  .site-header .site-logo img,
  .site-header .woodmart-logo img,
  .site-header .wd-logo img,
  .site-header .whb-logo img,
  .site-header .header-logo img,
  header .site-logo img,
  header .woodmart-logo img,
  header .wd-logo img,
  header .whb-logo img,
  header .header-logo img {
    max-height: 72px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .whb-header,
  .whb-main-header,
  .site-header,
  header.site-header {
    min-height: 95px !important;
  }

  .whb-sticked .site-logo img,
  .whb-sticked .woodmart-logo img,
  .whb-sticked .wd-logo img,
  .whb-sticked .whb-logo img,
  .whb-sticked .header-logo img {
    max-height: 58px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .whb-header .site-logo img,
  .whb-header .woodmart-logo img,
  .whb-header .wd-logo img,
  .whb-header .whb-logo img,
  .whb-header .header-logo img,
  .site-header .site-logo img,
  .site-header .woodmart-logo img,
  .site-header .wd-logo img,
  .site-header .whb-logo img,
  .site-header .header-logo img,
  header .site-logo img,
  header .woodmart-logo img,
  header .wd-logo img,
  header .whb-logo img,
  header .header-logo img {
    max-height: 62px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 768px) {
  .whb-mobile-header .site-logo img,
  .whb-mobile-header .woodmart-logo img,
  .whb-mobile-header .wd-logo img,
  .whb-mobile-header .whb-logo img,
  .whb-mobile-header .header-logo img,
  .mobile-header .site-logo img,
  .mobile-header .woodmart-logo img,
  .mobile-header .wd-logo img,
  .mobile-header .whb-logo img,
  .mobile-header .header-logo img,
  .site-header .site-logo img,
  .site-header .woodmart-logo img,
  .site-header .wd-logo img,
  .site-header .whb-logo img,
  .site-header .header-logo img,
  header .site-logo img,
  header .woodmart-logo img,
  header .wd-logo img,
  header .whb-logo img,
  header .header-logo img {
    max-height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .whb-mobile-header,
  .mobile-header,
  .site-header,
  header.site-header {
    min-height: 78px !important;
  }
}
