/* =========================================================
   DARAZ STYLE - CLEAN (FINAL)
   Header + Banner + Sections + Woo Product Card (Daraz order)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root{
  --daraz-orange:#f2f8f4;
  --daraz-peach:#0d4a3f;
  --daraz-bg:#f5f5f5;
  --daraz-border:#eee;
  --daraz-text:#212121;
  --daraz-muted:#9e9e9e;

  /* PDP final tokens */
  --dz-orange:#f85606;
  --dz-text:#212121;
  --dz-muted:#757575;
  --dz-border:#eee;
}

/* Base reset */
html,body{ margin:0; padding:0; }
body{
  background:#fff;
  font-family:'Inter', Arial, sans-serif;
}
html, body{ overflow-x:hidden; }
a{ text-decoration:none !important; }

/* Container */
.dz-container{
  max-width:1188px !important;
  margin:0 auto !important;
  padding:0 16px !important;
  box-sizing:border-box !important;
}

/* ================= TOP BAR ================= */
.dz-topbar{
  width:100%;
  background:var(--daraz-orange);
  margin:0;
  padding:0;
  overflow:hidden;
}
.dz-topbar-row{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  font-size:13px;
  font-weight:600;
}
.dz-topbar a{ color:#55971c; }
.dz-topbar a:hover{ text-decoration:underline !important; }

/* ================= MAIN HEADER ================= */
.dz-header{
  width:100%;
  background:#fff;
  margin:0;
  padding:0;
  overflow:hidden;
}
.dz-header-row{
  height:92px;
  display:flex;
  align-items:center;
  gap:22px;
}

/* Logo */
.dz-logo{ display:flex; align-items:center; margin-bottom: -8px;}
.dz-logo-link{ display:flex; align-items:center; }
.dz-logo img{ height:42px; width:auto; display:block;}

/* Fallback mark/text */
.dz-mark{
  width:44px;height:44px;border-radius:10px;
  background:rgba(255,255,255,.18);
  display:grid;place-items:center;
  font-weight:900;font-size:22px;
  color:#fff;
}
.dz-logo-text{ color:#fff; font-size:26px; font-weight:900; }

/* Search */
.dz-search{
  flex: 1;
  width: 100%;
  max-width: 760px;
  height: 46px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}

.dz-search-input{
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 16px;
  background: transparent;
  z-index: 2;
  text-align: left !important;
  line-height: normal !important;
  box-sizing: border-box;
}

.dz-search-input::placeholder{
  text-align: left !important;
  color: #888 !important;
  opacity: 1 !important;
}

.dz-search-btn{
  width: 58px;
  min-width: 58px;
  flex: 0 0 58px;
  height: 46px;
  border: 0;
  padding: 0;
  background: #458800 !important;
  border-left: 1px solid #E0E0E0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff !important;
  box-sizing: border-box;
}

/* Mobile only */
@media (max-width: 768px){
  .dz-search{
    width: calc(100% - 24px) !important;
    max-width: none;
    margin: 0 auto !important;
  }

  .dz-search-input{
    padding: 0 12px !important;
    font-size: 15px;
  }

  .dz-search-btn{
    width: 56px !important;
    min-width: 56px !important;
    flex: 0 0 56px !important;
    height: 46px !important;
  }
}

/* Cart */
.dz-actions{ min-width:90px; display:flex; justify-content:flex-end; }
.dz-cart{
  position:relative;
  padding:8px 12px;
  background:transparent;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.dz-cart:hover{ background:rgba(255,255,255,.10); }
.dz-cart-ico{ width:40px; height:40px; }
.dz-cart-ico,
.dz-cart-ico *{
  fill:none !important;
  stroke:#458800 !important;
}
.dz-cart-ico circle{ fill:#fff !important; }
.dz-cart-count{
  position:absolute;
  top:0;
  right:4px;
  background:#8bb458;
  color:#fff;
  font-size:12px;
  font-weight:900;
  min-width:20px;
  height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6px;
}
.dz-cart-count:empty{ display:none !important; }

/* Remove gap below header */
.site-main, main{ margin:0 !important; padding:0 !important;background: #ffffff!important; }
main.site-main > *:first-child{ margin-top:0 !important; padding-top:0 !important; }
header, .dz-header, .dz-topbar{ margin:0 !important; padding:0 !important; }

/* ================= HOME BANNER ================= */
.dz-home-banner{
  background:var(--daraz-bg);
  padding:0 !important;
  margin-top:-1px !important;
}
.dz-home-banner .dz-container{
  max-width:1188px !important;
  margin:0 auto !important;
  padding:0 !important;
}
.dz-banner-grid{
  display:grid !important;
  grid-template-columns:2fr 1fr !important;
  gap:12px !important;
}
.dz-banner-left a,
.dz-banner-right a{
  position:relative;
  display:block;
  overflow:hidden !important;
}
.dz-banner-left img,
.dz-banner-right img{
  width:100% !important;
  height:380px !important;
  object-fit:cover !important;
  display:block !important;
}
.dz-banner-btn{
  position:absolute;
  left:28px;
  bottom:28px;
  background:#ffea00;
  color:#111;
  font-weight:800;
  padding:10px 18px;
  border-radius:999px;
  font-size:16px;
}
.dz-home-banner *{ border-radius:0 !important; }

/* ================= SECTIONS BG ================= */
.dz-flashsale,
.dz-cats,
.dz-jfy{ #fff !important; }

/* ================= FLASH SALE WRAP ================= */
.dz-flashsale{ padding:18px 0 !important; }
.dz-flashsale .dz-container{
  background:#fff !important;
  border:1px solid var(--daraz-border) !important;
  padding:0 !important;
  overflow:hidden !important;
}
.dz-flashsale .dz-fs-head{ padding:16px 16px 0 !important; margin:0 !important; }
.dz-flashsale .dz-fs-title{ margin:0 0 10px !important; font-size:25px !important; font-weight:500 !important; }
.dz-flashsale .dz-fs-bar{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:12px 16px !important;
  border-top:1px solid var(--daraz-border) !important;
  border-bottom:1px solid var(--daraz-border) !important;
  background:#fff !important;
}
.dz-flashsale .dz-fs-pill{ color:55971c !important; font-weight:400 !important; font-size:16px !important; margin-left: -17px;}
.dz-flashsale .dz-fs-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid var(--daraz-orange) !important;
  color:var(--daraz-orange) !important;
  padding:10px 16px !important;
  font-weight:900 !important;
  font-size:14px !important;
  border-radius:8px !important;
  white-space:nowrap !important;
  background: #88b053;
}
.dz-flashsale .dz-fs-btn:hover{ background: #55971c !important; }

/* ================= CATEGORY GRID ================= */
.dz-cats{ padding:16px 0; }
.dz-cats .dz-container{ background:#fff; border:1px solid var(--daraz-border); }
.dz-cats-title{ margin:0; padding:14px 0; font-size:25px; font-weight:500 !important; }
.dz-cats-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  border-top:1px solid var(--daraz-border);
}
.dz-cat{
  color:#111;
  background:#fff;
  border-right:1px solid var(--daraz-border);
  border-bottom:1px solid var(--daraz-border);
  padding:16px 10px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transition:all .15s ease;
}
.dz-cat:nth-child(8n){ border-right:0; }
.dz-cat:hover{ box-shadow:0 3px 12px rgba(0,0,0,.08); transform:translateY(-2px); }
.dz-cat-img{ width:90px; height:90px; display:flex; align-items:center; justify-content:center; }
.dz-cat-img img{ width:100%; height:100%; object-fit:contain; display:block; }
.dz-cat-name{ font-size:14px; line-height:1.2; height:34px; overflow:hidden; }

@media (max-width:1100px){
  .dz-cats-grid{ grid-template-columns:repeat(6,1fr); }
  .dz-cat:nth-child(8n){ border-right:1px solid var(--daraz-border); }
  .dz-cat:nth-child(6n){ border-right:0; }
}
@media (max-width:768px){
  .dz-cats-grid{ grid-template-columns:repeat(4,1fr); }
  .dz-cat:nth-child(6n){ border-right:1px solid var(--daraz-border); }
  .dz-cat:nth-child(4n){ border-right:0; }
}
@media (max-width:480px){
  .dz-cats-grid{ grid-template-columns:repeat(3,1fr); }
  .dz-cat:nth-child(4n){ border-right:1px solid var(--daraz-border); }
  .dz-cat:nth-child(3n){ border-right:0; }
}

/* ================= JUST FOR YOU ================= */
.dz-jfy{ padding:18px 0; }
.dz-jfy .dz-container{ background:#fff; border:1px solid var(--daraz-border); padding:18px; }
.dz-jfy-title{ font-size:25px; margin:0 0 14px; font-weight:500; }

/* =========================================================
   WOOCOMMERCE PRODUCTS = DARAZ CARD (FIXED ORDER)
   Title -> Price -> %Off -> Rating
   ========================================================= */

/* Reset list */
.woocommerce ul.products,
ul.products{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

/* Grid (Daraz spacing) */
.woocommerce ul.products,
ul.products{
  display:grid !important;
  grid-template-columns:repeat(6, minmax(0,1fr)) !important;
  gap:12px !important;
}

/* Responsive */
@media (max-width:1200px){
  .woocommerce ul.products,
  ul.products{ grid-template-columns:repeat(5,1fr) !important; }
}
@media (max-width:992px){
  .woocommerce ul.products,
  ul.products{ grid-template-columns:repeat(3,1fr) !important; }
}
@media (max-width:520px){
  .woocommerce ul.products,
  ul.products{ grid-template-columns:repeat(2,1fr) !important; }
}

/* Card */
.woocommerce ul.products li.product,
ul.products li.product{
  position:relative !important;
  background:#fff !important;
  border:1px solid var(--daraz-border) !important;
  border-radius:0 !important;
  box-shadow:none !important;
  overflow:hidden !important;

  margin:0 !important;
  padding:12px !important;

  float:none !important;
  width:auto !important;
  height:auto !important;
  min-height:unset !important;

  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 10px 22px rgba(0,0,0,.08) !important;
  border-color:var(--daraz-orange) !important;
  z-index:2;
}

/* Make anchor not destroy colors */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product a *{
  text-decoration:none !important;
}

/* Image area (Daraz style) */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img,
ul.products li.product a img,
ul.products li.product img{
  width:100% !important;
  height:210px !important;
  object-fit:contain !important;
  display:block !important;
  margin:0 0 10px !important;
}

/* ---- Title (Daraz 2 lines) ---- */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h3.dz-ptitle,
ul.products li.product h3.dz-ptitle a{
  font-family:'Inter', Arial, sans-serif !important;
  font-size:14px !important;
  font-weight:400 !important;
  color:var(--daraz-text) !important;
  line-height:18px !important;

  margin:0 0 8px !important;

  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  min-height:36px !important;
}

/* Hover title orange only */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
ul.products li.product:hover .woocommerce-loop-product__title,
ul.products li.product:hover h3.dz-ptitle a{
  color:#000000 !important;
}

/* ---- Price row ---- */
.woocommerce ul.products li.product .price,
ul.products li.product .price,
ul.products li.product .dz-price{
  display:flex !important;
  align-items:baseline !important;
  gap:8px !important;

  color:var(--daraz-orange) !important;
  font-weight:700 !important;
  font-size:16px !important;
  line-height:1.1 !important;

  margin:0 0 4px !important;
}

/* Regular & sale */
.woocommerce ul.products li.product .price del,
ul.products li.product .price del{
  color:var(--daraz-muted) !important;
  font-weight:400 !important;
  font-size:13px !important;
}
.woocommerce ul.products li.product .price ins,
ul.products li.product .price ins{
  text-decoration:none !important;
  background:none !important;
}

/* ---- % off text (from functions.php) ---- */
.dz-off{
  display:inline-block !important;
  color:var(--daraz-muted) !important;
  font-size:13px !important;
  font-weight:500 !important;
  margin:0 0 6px !important;
}

/* ---- Rating (stars) ---- */
.woocommerce ul.products li.product .star-rating{
  font-size:12px !important;
  margin:0 !important;
}
.woocommerce ul.products li.product .woocommerce-review-link{
  color:var(--daraz-muted) !important;
  font-size:12px !important;
}

.woocommerce ul.products li.product:hover .dz-off{
  color:var(--daraz-muted) !important;
}

/* ================= FLOAT BAR ================= */
#dzFloatBar{
  position: fixed !important;
  left: 0 !important;
  top: 75% !important;
  transform: translateY(-50%) !important;
  z-index: 999999 !important;

  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;

  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
#dzFloatBar.is-show{ opacity:1; pointer-events:auto; }

#dzFloatBar .dz-float-item{
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;

  background: #fff !important;
  border: 1px solid var(--daraz-border) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.08) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #444 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
#dzFloatBar .dz-float-item svg{
  width: 18px !important;
  height: 18px !important;
  fill: #666 !important;
  display:block !important;
}
#dzFloatBar .dz-float-item:hover{
  border-color:var(--daraz-orange) !important;
  background:var(--daraz-orange) !important;
}
#dzFloatBar .dz-float-item:hover svg{ fill:#fff !important; }

/* ================= RESPONSIVE HEADER/BANNER ================= */
@media (max-width: 992px){
  .dz-header-row{
    height:auto;
    padding:15px 0;
    flex-wrap:wrap;
  }
  .dz-search{
    flex:0 0 100%;
    max-width:none;
  }
  .dz-topbar-row{
    justify-content:center;
    flex-wrap:wrap;
    height:auto;
    padding:8px 0;
  }
  .dz-banner-grid{ grid-template-columns:1fr !important; }
  .dz-banner-left img,
  .dz-banner-right img{ height:260px !important; }
}

/* =========================
   DARAZ CARD (DZ TEMPLATE) - FINAL
   ========================= */

ul.products{
  display:grid !important;
  grid-template-columns:repeat(6, minmax(0,1fr)) !important;
  gap:12px !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}
@media (max-width:1200px){ ul.products{ grid-template-columns:repeat(5,1fr) !important; } }
@media (max-width:992px){ ul.products{ grid-template-columns:repeat(3,1fr) !important; } }
@media (max-width:520px){ ul.products{ grid-template-columns:repeat(2,1fr) !important; } }

ul.products li.product.dz-pcard{
  margin:0 !important;
  padding:12px !important;
  background:#fff !important;
  border:1px solid #eee !important;
  border-radius:0 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
  overflow:hidden !important;
}

.dz-card-inner{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}

.dz-pimg-wrap{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:210px !important;
  margin:0 0 10px !important;
  overflow:hidden !important;
}
.dz-pimg-wrap img{
  width:100% !important;
  height:210px !important;
  object-fit:contain !important;
  display:block !important;
}

/* Title */
.dz-ptitle{
  margin:0 0 8px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size:14px !important;
  font-weight:400 !important;
  color:#212121 !important;
  line-height:1.3 !important;

  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  min-height:36px !important;
}
.dz-ptitle a{ color:inherit !important; text-decoration:none !important; }

/* Price + percent + rating order */
.dz-meta{
  margin-top:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:6px !important;
}

/* Price (Daraz orange) */
.dz-price{
  color:#fd830b !important;
  font-weight:800 !important;
  font-size:18px !important;
  line-height:1.1 !important;
}
.dz-price del{
  color:#999 !important;
  font-weight:400 !important;
  margin-left:6px !important;
  font-size:13px !important;
}
.dz-price ins{
  background:none !important;
  text-decoration:none !important;
}

/* Discount % */
.dz-discount{
  
  font-size:13px !important;
  font-weight:500 !important;
}

/* Rating row */
.dz-rating{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  font-size:13px !important;
  color:#666 !important;
}
.dz-rating .star-rating{ margin:0 !important; }
.dz-review-count{ color:#999 !important; }

/* Hover like Daraz (only border + title) */
ul.products li.product.dz-pcard{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
ul.products li.product.dz-pcard:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 10px 22px rgba(0,0,0,.08) !important;
  border-color:#55971c !important;
}
ul.products li.product.dz-pcard:hover .dz-ptitle a{
  color:#f85606 !important;
}

/* =========================
   DARAZ META ORDER (FINAL)
========================= */

/* Hide the ugly "Rated 4.00 out of 5 based on..." text (your theme is printing it) */
.woocommerce ul.products li.product .woocommerce-product-rating,
.woocommerce ul.products li.product .woocommerce-review-link,
.woocommerce ul.products li.product .woocommerce-review-link *,
.woocommerce ul.products li.product .star-rating + span,
.woocommerce ul.products li.product .rating,
.woocommerce ul.products li.product .rating *{
  display:none !important;
}

/* Our meta block */
.woocommerce ul.products li.product .dz-meta{
  margin-top:6px !important;
}

/* Price row */
.woocommerce ul.products li.product .dz-price-row .price{
  color:#000000 !important;
  font-weight:800 !important;
  font-size:18px !important;
  line-height:1.2 !important;
}

/* Make del price small + grey like Daraz */
.woocommerce ul.products li.product .dz-price-row .price del{
  color:#9e9e9e !important;
  font-weight:500 !important;
  font-size:13px !important;
  margin-left:8px !important;
}
.woocommerce ul.products li.product .dz-price-row .price ins{
  text-decoration:none !important;
  background:none !important;
}

/* Discount + rating on same line */
.woocommerce ul.products li.product .dz-subrow{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  margin-top:4px !important;
}


/* Stars */
.woocommerce ul.products li.product .dz-rating{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
}
.woocommerce ul.products li.product .dz-rating .star-rating{
  display:inline-block !important;
  float:none !important;
  margin:0 !important;
  font-size:12px !important;
}
.woocommerce ul.products li.product .dz-rating-count{
  color:var(--daraz-muted) !important;
  font-size:13px !important;
  font-weight:500 !important;
}

/* Hover: only title orange */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover .dz-ptitle a{
  color:#2E7D32 !important;
}

/* ✅ Remove "customer rating(s)" text but keep stars + (count) */
ul.products li.product.dz-pcard .dz-rating{
  font-size: 0 !important;
  
}
ul.products li.product.dz-pcard .dz-rating .star-rating{
  font-size: 12px !important;
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
ul.products li.product.dz-pcard .dz-rating .dz-review-count{
  font-size: 12px !important;
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin-left: 6px !important;
}
ul.products li.product.dz-pcard .dz-rating .star-rating span{
  text-indent: -9999px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
ul.products li.product.dz-pcard .dz-rating .star-rating strong.rating,
ul.products li.product.dz-pcard .dz-rating .star-rating span .rating{
  display: none !important;
}

/* Make only currency symbol smaller */
.woocommerce-Price-amount bdi {
  display: inline-flex;
  align-items: baseline;
}
.woocommerce-Price-amount bdi span:first-child {
  font-size: 13px !important;
  position: relative;
  top: -2px;
  margin-right: 2px;
}

/* Daraz-inspired PDP (stable, not exact copy) */
.dz-pdp{background:transparent}
.dz-pdp__crumb{margin:10px 0 14px;color:#666}

.dz-pdp__grid{
  display:grid;
  grid-template-columns: 800px 1fr 800px;
  gap:16px;
  align-items:start;
}

.dz-pdp__gallery,
.dz-pdp__main{
  background:#fff;
  border:1px solid #eee;
  border-radius:6px;
}

.dz-pdp__title{margin:0 0 0px;font-size:22px;line-height:1.25;font-weight:700}
.dz-pdp__row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.dz-pdp__actions{display:flex;gap:10px}
.dz-iconbtn{border:0;background:#fff;cursor:pointer;font-size:18px;opacity:.8}
.dz-iconbtn:hover{opacity:1}

.dz-pdp__brand{margin:8px 0 10px;color:#666}

.dz-pdp__priceblock{display:flex;align-items:flex-end;gap:10px;margin:10px 0 12px}
.dz-pdp__discount{
  background:#ffe7d6;
  color:#ff6a00;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  font-size:13px;
}

.single-product p.price, .single-product span.price{
  color:#ff6a00 !important;
  font-size:20px !important;
  font-weight:800 !important;
  margin:0 !important;
}
.single-product p.price del, .single-product span.price del{
  opacity:.6 !important;
  font-size:14px !important;
  margin-right:8px !important;
}

.dz-pdp__short{margin:10px 0 14px;color:#333}

.dz-pdp__cta form.cart{margin:0}
.dz-pdp__cta{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:10px;
}

/* Sidebar */
.dz-pdp__side{display:grid;gap:12px;position:sticky;top:92px}
.dz-sidebox{background:#fff;border:1px solid #eee;border-radius:6px;overflow:hidden}
.dz-sidebox__h{padding:12px 14px;font-weight:800;font-size:14px;border-bottom:1px solid #eee}
.dz-sidebox__b{padding:12px 14px}
.dz-sideitem{margin:10px 0;font-size:14px;color:#333}

/* Gallery styling (keep WC behavior) */
.single-product .woocommerce-product-gallery .flex-viewport{
  border:1px solid #f0f0f0;
  border-radius:6px;
  overflow:hidden !important;
  background:#fff;
}
.single-product .flex-control-thumbs{
  margin-top:10px !important;
  display:flex !important;
  gap:10px !important;
  overflow:auto !important;
  padding-bottom:6px !important;
}
.single-product .flex-control-thumbs li{width:auto !important;float:none !important}
.single-product .flex-control-thumbs img{
  width:58px !important;height:58px !important;object-fit:cover !important;
  border-radius:6px !important;border:2px solid transparent !important;opacity:1 !important;
}
.single-product .flex-control-thumbs img.flex-active{border-color:#2E7D32 !important}


.single-product .woocommerce-tabs ul.tabs{
  margin:0 0 10px !important;
  padding:0 !important;
  border-bottom:1px solid #eee !important;
}
.single-product .woocommerce-tabs ul.tabs li{border:0 !important;background:transparent !important;margin-right:10px !important}
.single-product .woocommerce-tabs ul.tabs li a{padding:10px 10px !important;font-weight:800 !important;color:#111 !important}
.single-product .woocommerce-tabs ul.tabs li.active a{color:#ff6a00 !important}

@media (max-width:1100px){
  .dz-pdp__grid{grid-template-columns:1fr}
  .dz-pdp__side{position:static}
}

/* =========================
   DARAZ-LIKE PDP ALIGN FIX
========================= */

.single-product .dz-container,
.single-product .dz-sp-wrap,
.single-product .dz-single,
.single-product .dz-single-grid{
  max-width: 1188px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.single-product .dz-sp-wrap{
  padding: 14px 16px !important;
}

.single-product .woocommerce-breadcrumb{
  max-width: 1188px !important;
  margin: 10px auto 14px !important;
  padding: 0 !important;
  color:#666 !important;
  font-size:13px !important;
}

.single-product .dz-single-grid{
  display: grid !important;
  grid-template-columns: 360px 1fr 360px !important;
  gap: 16px !important;
  align-items: start !important;
}

.single-product .dz-single-left,
.single-product .dz-single-mid,
.single-product .dz-single-right{
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
}

.single-product .dz-single-left{ padding: 12px !important; }
.single-product .dz-single-mid{ padding: 16px !important; }
.single-product .dz-single-right{
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.single-product .dz-single-right .dz-box{
  background:#fff !important;
  border:1px solid #eee !important;
  border-radius:6px !important;
  overflow:hidden !important;
  margin-bottom: 12px !important;
}
.single-product .dz-single-right .dz-box-h{
  padding: 12px 14px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  border-bottom: 1px solid #eee !important;
}
.single-product .dz-single-right .dz-box-b{ padding: 12px 14px !important; }
.single-product .dz-single-right .dz-row{
  margin: 10px 0 !important;
  font-size: 14px !important;
  color: #333 !important;
}
.single-product .dz-single-right .dz-muted{
  color:#888 !important;
  font-size: 12px !important;
}

.single-product .dz-sp-title{
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
}
.single-product .dz-sp-price .price{
  color:#ff6a00 !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  margin: 0 !important;
}
.single-product .dz-sp-price del{
  font-size: 14px !important;
  opacity:.6 !important;
  margin-right: 8px !important;
}

@media (max-width: 1100px){
  .single-product .dz-single-grid{ grid-template-columns: 1fr !important; }
  .single-product .dz-single-right{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }
}

.single-product .woocommerce-product-gallery__image img{
  width:100%;
  height:auto;
}

/* =========================================
   REMOVE BLACK/GREY (EMPTY) STARS
========================================= */
.woocommerce .star-rating::before,
ul.products li.product .star-rating::before{
  color: transparent !important;
  content: "★★★★★" !important;
}
.woocommerce .star-rating span::before,
ul.products li.product .star-rating span::before{
  color: #ffc107 !important;
}
.woocommerce .star-rating,
ul.products li.product .star-rating{
  margin: 0 !important;
  line-height: 1 !important;
}

/* ✅ Remove WooCommerce gallery zoom/search icon */
.single-product .woocommerce-product-gallery__trigger,
.single-product a.woocommerce-product-gallery__trigger{
  display: none !important;
}
.single-product .woocommerce-product-gallery__trigger *,
.single-product a.woocommerce-product-gallery__trigger *{
  display: none !important;
}

/* PDP: Reduce Left Gallery width + reduce gap */
@media (min-width: 1101px){
  .single-product .dz-pdp__grid{
    grid-template-columns: 320px 1fr 360px !important;
    gap: 12px !important;
    align-items: start !important;
  }
  .single-product .dz-pdp__gallery{
    width: 306px !important;
    max-width: 306px !important;
  }
  .single-product .dz-pdp__gallery .woocommerce-product-gallery{
    width: 100% !important;
    max-width: 100% !important;
  }
  .single-product .dz-pdp__side{
    width: 360px !important;
    max-width: 360px !important;
  }
}

/* PDP: rating stars + review count inline */
.single-product .dz-pdp__rating,
.single-product .woocommerce-product-rating{
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}
.single-product .woocommerce-product-rating .star-rating{
  margin: 0 !important;
  float: none !important;
  flex: 0 0 auto !important;
}
.single-product .woocommerce-product-rating .woocommerce-review-link{
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}
.single-product .woocommerce-product-rating .woocommerce-review-link br{ display:none !important; }

/* Remove PDP share icon only */
.single-product .dz-pdp__actions button:first-child{ display: none !important; }
/* Remove Wishlist (Love) Icon */
.single-product .dz-pdp__actions button[title="Wishlist"],
.single-product .dz-pdp__actions .dz-iconbtn[title="Wishlist"]{ display: none !important; }

/* Daraz style text justify */
.single-product .dz-pdp__title{ text-align: left !important; }
.single-product .dz-pdp__short,
.single-product .dz-pdp__short p,
.single-product .dz-pdp__short li{ text-align: justify !important; }
.single-product .dz-pdp__priceblock{ text-align: left !important; }
.single-product .dz-pdp__row.dz-pdp__rating{
  justify-content: flex-start !important;
  text-align: left !important;
}
.single-product .dz-pdp__main p{ text-align: justify !important; }
.single-product .dz-pdp__short ul{ padding-left: 18px !important; }

/* Remove rating gap */
.single-product .dz-pdp__row.dz-pdp__rating,
.single-product .woocommerce-product-rating{ gap: 0 !important; }

/* Move middle product content */
.single-product .dz-pdp__main{ padding-left: 6px !important; }
.single-product .dz-pdp__title{ margin-top: 7px !important; }
.single-product .product_meta{margin-bottom: 5px !important; }

/* Remove the fake empty grid item created by WooCommerce clearfix */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after{
  content: none !important;
  display: none !important;
}

/* Proceed to Checkout - Custom Orange */
.wc-block-cart__submit-button,
.wc-block-components-button.wc-block-cart__submit-button{
  background-color: #8bb559 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  display: inline-block !important;
  text-align: center;
}
.wc-block-cart__submit-button:hover{
  background-color: #55971c !important;
  color: #ffffff !important;
}



/* ✅ Desktop এ সব hide */
.dz-mcat-btn, .dz-mcat-overlay, .dz-mcat-drawer { display:none;  }

/* ✅ শুধু Mobile এ show */
@media (max-width: 767px){
  .dz-mcat-btn{ 
    display:inline-flex;
    width:42px;height:42px;border:0;border-radius:10px;
    background:rgba(218, 188, 188, 0.18);
    color:#458800;font-size:22px;
    align-items:center;justify-content:center;
    cursor:pointer;
    margin-right:10px;
    vertical-align:middle;
  }
  .dz-mcat-overlay{
    display:block;
    position:fixed; inset:0;
    background:rgba(0,0,0,.35);
    opacity:0; visibility:hidden;
    transition:.2s;
    z-index:999998;
  }
  .dz-mcat-drawer{
    display:block;
    position:fixed; top:0; left:0;
    width:82%; max-width:320px; height:100vh;
    background:#fff;
    transform:translateX(-105%);
    transition:transform .25s ease;
    z-index:999999;
    box-shadow:10px 0 30px rgba(0,0,0,.15);
    overflow:auto;
  }
  .dz-mcat-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 14px;
    border-bottom:1px solid #eee;
    position:sticky; top:0; background:#fff;
  }
  .dz-mcat-title{ font-weight:700; }
  .dz-mcat-close{ border:0; background:transparent; font-size:20px; cursor:pointer; }
  .dz-mcat-links a{
    display:block; padding:12px 14px;
    text-decoration:none; color:#222;
    border-bottom:1px solid #f2f2f2;
  }

  body.dz-mcat-open .dz-mcat-drawer{ transform:translateX(0); }
  body.dz-mcat-open .dz-mcat-overlay{ opacity:1; visibility:visible; }
}

@media (max-width: 767px){
  .dz-topbar{ display: none !important; }
}

/* Align copyright with header container */
.site-footer .container{
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.dzm-wrap{font-family:Arial;background:#f5f5f5}
.dzm-top{background:#fff;padding:10px;position:sticky;top:0}
.dzm-logo{color:#f85606;font-weight:bold;font-size:20px}
.dzm-search{display:flex;margin-top:8px}
.dzm-search input{flex:1;padding:10px;border:2px solid #f85606;border-radius:30px 0 0 30px;border-right:0}
.dzm-search button{background:#f85606;color:#fff;border:0;padding:10px 15px;border-radius:0 30px 30px 0}

/* ===== ONLY Bottom Nav (Daraz-like: true bottom fixed) ===== */
@media (max-width: 768px){

  .dz-bnav{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    height: 58px !important;
    background: #fff !important;
   

    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;

    z-index: 999999 !important;
    padding: 0 !important;
    box-sizing: border-box !important;

    padding-bottom: env(safe-area-inset-bottom) !important;
  }

  .dz-bnav::after{ display:none !important; }

  .dz-bnav-item{
    flex: 1;
    height: 58px !important;
    text-decoration: none !important;
    color: #5c5c5c !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 4px !important;
    font-size: 12px !important;
    line-height: 1 !important;

    position: relative;
    z-index: 2;
  }

  .dz-ico{
    width: 30px !important;
    height: 30px !important;
    display: grid !important;
    place-items: center !important;
  }

  .dz-bnav-item svg{
    width: 28px !important;
    height: 28px !important;
    fill: currentColor !important;
  }

  .dz-bnav-item.is-active{ color:#f85606 !important; }

  .dz-ico{
  position: relative !important;
}

.dz-badge{
  position: absolute !important;
  top: -6px !important;

  right: auto !important;         /* changed */
  left: 45% !important;           /* 🔥 control here */
  transform: translateX(45%) !important; /* changed */

  width: 15px !important;
  min-width: 15px !important;
  height: 15px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  background: #458800 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.16) !important;
  z-index: 9 !important;
}




.dz-bnav {
  border-top: 1px solid #ddd !important;
}
  footer, .site-footer, #colophon{
    padding-bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  }

  /* safe-area fix (kept, but not duplicated) */
  .dz-bnav{
    height: calc(58px + env(safe-area-inset-bottom)) !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
  }
  .dz-bnav-item{ height: 58px !important; }
}


/* Desktop hide */
@media (min-width: 769px){
  .dz-bnav{ display:none !important; }
}

/* =========================================================
   ✅ PDP BUTTONS (CLEAN FINAL - NO DUPLICATE)
   Add to Cart + Buy Now = SAME SIZE
   Put at VERY END
========================================================= */

.single-product form.cart{
  display:flex !important;
  align-items:stretch !important;
  gap:12px !important;
  flex-wrap:wrap !important;
}

/* quantity fixed */
.single-product form.cart .quantity{
  border:1px solid #ddd !important;
  border-radius:8px !important;
  overflow:hidden !important;
  height:39px !important;
}
.single-product form.cart .quantity input.qty{
  width:40px !important;
  height:40px !important;
  border:0 !important;
  outline:none !important;
  text-align:center !important;
  margin-left: 12px!important;
}

/* BOTH buttons (button + link) */
.single-product form.cart button.single_add_to_cart_button,
.single-product form.cart a.dz-buy-now,
.single-product form.cart a.dz-btn--blue,
.single-product form.cart .dz-btn--blue,
.single-product form.cart a.buy-now-btn,
.single-product form.cart .buy-now-btn{
  height:30px !important;
  min-height:40px !important;
  padding:0 22px !important;
  line-height:52px !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  border-radius:8px !important;
  font-size:16px !important;
  font-weight:400 !important;

  margin:0 !important;
  float:none !important;
  box-sizing:border-box !important;
  white-space:nowrap !important;
}

/* equal width */
.single-product form.cart button.single_add_to_cart_button,
.single-product form.cart a.dz-buy-now,
.single-product form.cart a.dz-btn--blue,
.single-product form.cart a.buy-now-btn{
  flex:1 1 0 !important;
}

/* colors */
.single-product form.cart button.single_add_to_cart_button{
  background:#0d4a3f !important;
  color:#fff !important;
  border:0 !important;
}
.single-product form.cart a.dz-buy-now,
.single-product form.cart a.dz-btn--blue,
.single-product form.cart a.buy-now-btn{
  background:#2aa6df !important;
  color:#fff !important;
  border:0 !important;
}

/* hover */
.single-product form.cart button.single_add_to_cart_button:hover{ opacity:.92 !important; }
.single-product form.cart a.dz-buy-now:hover,
.single-product form.cart a.dz-btn--blue:hover,
.single-product form.cart a.buy-now-btn:hover{ opacity:.92 !important; }




/* =========================
   MOBILE 2 COLUMN FIX
========================= */
@media (max-width: 768px){

  /* All grid = 2 column */
  .dz-footer__grid{
    grid-template-columns: 1fr 1fr !important;
    gap:16px;
  }

  /* Payment column full width */
  .dz-footer__pay{
    grid-column: span 2 !important;
  }

}


/* =========================
   MOBILE ONLY - PAYMENT 1 LINE
========================= */
@media (max-width: 768px){

  .dz-payment{
    display:flex;
    flex-wrap:nowrap !important;   /* wrap বন্ধ */
    gap:8px;
    overflow-x:auto;               /* জায়গা কম হলে scroll */
    -webkit-overflow-scrolling:touch;
  }

  .dz-pay__pill{
    white-space:nowrap;
    flex:0 0 auto;
  }

}

/* =========================
   HIDE SCROLLBAR (MOBILE)
========================= */
@media (max-width: 768px){

  .dz-payment{
    -ms-overflow-style: none;   /* IE */
    scrollbar-width: none;      /* Firefox */
  }

  .dz-payment::-webkit-scrollbar{
    display: none;              /* Chrome / Safari */
  }

}





/* ✅ Drawer/overlay stay UNDER bottom nav (mobile only) */
@media (max-width: 768px){

  /* bottom nav সবসময় উপরে */
  .dz-bnav{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999999 !important;
  }

  /* overlay bottom nav এর নিচে থাকবে */
  .dz-mcat-overlay{
    z-index: 9999990 !important;
  }

  /* drawer bottom nav এর নিচে থাকবে + nav এর উপর overlap করবে না */
  .dz-mcat-drawer{
    z-index: 9999991 !important;
    bottom: 62px !important;                 /* ✅ bottom nav height (যদি আলাদা হয় 56/64 করে দাও) */
    height: calc(100vh - 62px) !important;   /* ✅ nav bar এর জায়গা বাদ */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ✅ black scrollbar hide (optional) */
  .dz-mcat-drawer::-webkit-scrollbar{ width:0; height:0; }
}




.dz-fdeal{
    
    margin-right: 6px !important;
}


/* Rating row er nicher gap komao */
.dz-pdp__row.dz-pdp__rating{
  margin-bottom: 6px !important;  /* 0-10px er moddhe adjust korte paro */
  padding-bottom: 0 !important;
}

/* Rating div er nijer margin remove */
.woocommerce-product-rating{
  margin-bottom: 0 !important;
}

/* Flash deal er uporer margin komao */
.dz-fdeal{
  margin-top: 6px !important;   /* 0 dile ekdom tight hobe */
}



/* Product meta category link black */
.product_meta .posted_in a{
  color: #000000 !important;
  text-decoration: none;
}

/* Hover eo black thakbe */
.product_meta .posted_in a:hover{
  color: #000000 !important;
}

/* Review link black */
.woocommerce-review-link{
  color: #ff6b00 !important;
  text-decoration: none;
}

/* Hover eo black thakbe */
.woocommerce-review-link:hover{
  color: #f90000 !important;
}

/* Mobile e Ends In text ছোট (exact target) */
@media (max-width: 768px){
  .dz-fdeal-inner > div:last-child > span:first-child{
    font-size: 11px !important;
    font-weight: 600 !important;
  }
}
@media (max-width: 768px){
  .dz-fdeal-inner > div:last-child > span:first-child{
    font-size: 11px !important;
    position: relative;
    top: -1px;   /* 🔥 উপরে তুলতে */
  }
}




.single-product form.cart{
    margin-right: 6.5px;
    
}



/* Daraz Style Button Text */
.single-product button.single_add_to_cart_button,
.single-product a.dz-btn.dz-buy-now {

    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 17px !important;      /* Daraz size */
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}




.comment-form-rating .stars a {
    color: #ccc !important;
    font-size: 24px;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a:hover ~ a,
.comment-form-rating .stars.selected a,
.comment-form-rating .stars.selected a.active ~ a {
    color: #f85606 !important;
}





/* =========================
   Modern Review Form Inputs
   (Name, Email, Website, Review textarea)
   ========================= */

/* label clean */
.woocommerce #review_form #respond label{
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color:#222 !important;
  display:block;
  margin: 0 0 6px !important;
}

/* input + textarea base */
.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond input[type="url"],
.woocommerce #review_form #respond textarea{
  width:100% !important;
  max-width: 520px;              /* চাইলে remove করতে পারো */
  box-sizing:border-box !important;

  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 15px !important;

  padding: 12px 14px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 10px !important;
  background: #fff !important;

  outline: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

/* textarea height */
.woocommerce #review_form #respond textarea{
  min-height: 120px !important;
  resize: vertical;
}

/* focus effect (Daraz orange) */
.woocommerce #review_form #respond input:focus,
.woocommerce #review_form #respond textarea:focus{
  border-color: #f85606 !important;
  box-shadow: 0 0 0 3px rgba(248,86,6,.15) !important;
}

/* spacing: Name/Email line gap */
.woocommerce #review_form #respond p.comment-form-author,
.woocommerce #review_form #respond p.comment-form-email,
.woocommerce #review_form #respond p.comment-form-url{
  margin: 10px 0 !important;
}

/* checkbox line nicer */
.woocommerce #review_form #respond p.comment-form-cookies-consent{
  margin: 10px 0 14px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 14px !important;
  color:#444 !important;
}

/* submit button modern */
.woocommerce #review_form #respond input#submit{
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;

  background:#f85606 !important;
  color:#fff !important;
  border:0 !important;

  padding: 11px 18px !important;
  border-radius: 10px !important;
  cursor:pointer;
}
.woocommerce #review_form #respond input#submit:hover{
  filter: brightness(.95);
}









/* Product meta সব text black */
.single-product .dz-pdp__meta,
.single-product .dz-pdp__meta * {
    color: #000 !important;
}

/* link hover করলেও black থাকবে */
.single-product .dz-pdp__meta a:hover {
    color: #000 !important;
    text-decoration: none !important;
}





.dz-pdp__discount{
  animation: pulseDiscount 0.8s infinite;
}

@keyframes pulseDiscount{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.1); }
  100%{ transform: scale(1); }
}



/* Only Ends In text animation */
.dz-fdeal-inner > div:last-child > span:first-child{
  display: inline-block;
  animation: endsSlide 2.2s infinite ease-in-out;
}

@keyframes endsSlide{
  0%{
    transform: translateX(-8px);
    opacity: 0;
  }
  25%{
    transform: translateX(0);
    opacity: 1;
  }
  75%{
    transform: translateX(0);
    opacity: 1;
  }
  100%{
    transform: translateX(8px);
    opacity: 0;
  }
}




@media (max-width: 768px){

  .single-product .dz-pdp__short{
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      height: 0 !important;
  }

}


@media (max-width: 768px){

  .single-product form.cart{
      margin-bottom: 7px !important;
  }

}





/* =========================================================
   TOP 3 SECTION (Slider + App Box + Strip Banner) ONLY
   Width: 1190px
   ========================================================= */

.dz-top3{
  padding:12px 0 6px;
  background:#fff;
}

/* Wider container only for this section */
.dz-top3 .dz-container{
  max-width:1219px !important;
}

.dz-top3-grid{
  display:grid;
  grid-template-columns: 1fr 300px;
  gap:12px;
  align-items:stretch;
}

/* ---------- Slider ---------- */
.dz-slider{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  background:#f5f5f5;
  min-height:260px;
}

.dz-slider-track{
  display:flex;
  width:100%;
  overflow:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
}

.dz-slide{
  min-width:100%;
  scroll-snap-align:start;
  display:block;
}

.dz-slide img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.dz-slide-ph{
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#777;
}

/* arrows */
.dz-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:22px;
  line-height:34px;
  cursor:pointer;
  z-index:3;
}
.dz-prev{ left:10px; }
.dz-next{ right:10px; }

/* dots */
.dz-dots{
  position:absolute;
  left:0; right:0;
  bottom:10px;
  display:flex;
  gap:6px;
  justify-content:center;
  z-index:3;
}
.dz-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(0,0,0,.08);
  cursor:pointer;
}
.dz-dot.is-active{ background:#fff; }

/* ---------- Right App Box ---------- */
.dz-top3-right{ height:100%; }

.dz-appbox{
  height:100%;
  border-radius:12px;
  border:1px solid #eee;
  overflow:hidden;
  background:#fff;
  display:flex;
  flex-direction:column;
}

.dz-appbox-head{
  padding:14px;
  background:linear-gradient(135deg,#ffe3d7,#fff);
  border-bottom:1px solid #f2f2f2;
}

.dz-appbox-title{
  margin:0;
  font-size:16px;
  font-weight:900;
  color:#222;
}

.dz-appbox-sub{
  margin:6px 0 10px;
  font-size:12px;
  color:#666;
  line-height:1.4;
}

.dz-appbox-btn{
  display:inline-block;
  background:#8cb659;
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:10px;
}

.dz-appbox-features{
  padding:12px 14px;
  display:grid;
  gap:10px;
}

.dz-appfeat{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:800;
  color:#333;
}

.dz-appico{
  width:28px;
  height:28px;
  border-radius:10px;
  background:#fff2ea;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 28px;
}

.dz-appico img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.dz-appbox-bottom{
  margin-top:auto;
  padding:12px 14px 14px;
  border-top:1px solid #f2f2f2;
  display:grid;
  grid-template-columns: 86px 1fr;
  gap:12px;
  align-items:center;
}

.dz-qr img{
  width:86px;
  height:86px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid #eee;
  background:#fff;
}

.dz-storebtns{
  display:grid;
  gap:8px;
}

.dz-store{
  display:flex;
  align-items:center;
  justify-content:center;
  height:36px;
  border-radius:10px;
  border:1px solid #eaeaea;
  font-weight:900;
  font-size:12px;
  text-decoration:none;
  color:#fff;
  background:#8cb659;
}

.dz-store:hover{ border-color:#ddd; }

/* ---------- Bottom Strip Banner ---------- */
.dz-strip{
  margin-top:12px;
  border-radius:12px;
  overflow:hidden;
  background:#f5f5f5;
}

.dz-strip-a img{
  width:100%;
  height:90px;
  object-fit:cover;
  display:block;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .dz-top3-grid{ grid-template-columns: 1fr; }
  .dz-slider{ min-height:200px; }
  .dz-slide img, .dz-slide-ph{ height:200px; }
  .dz-strip-a img{ height:80px; }
}


.dz-cart svg path{
    stroke-width:1.5 !important;   /* আগে ছিল 2 */
}





.dz-appbox-btn{
  position: relative;
  overflow: hidden;
}

.dz-appbox-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: dzShine 3s infinite;
}

@keyframes dzShine {
  100% { left: 125%; }
}







/* ✅ Remove black focus border (Woo Checkout inputs) */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea{
  outline: none !important;
  box-shadow: none !important;
}

/* ✅ Focus state (orange like Daraz) */
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus{
  outline: none !important;
  border-color:#f85606 !important;
  box-shadow: 0 0 0 3px rgba(248,86,6,.18) !important;
}

/* ✅ Some themes add black border via focus-visible */
.woocommerce-checkout input:focus-visible,
.woocommerce-checkout select:focus-visible,
.woocommerce-checkout textarea:focus-visible{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(248,86,6,.18) !important;
}

/* =========================
   CHECKOUT SOFT DARK BLACK
========================= */

.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3{
    color: #222222 !important;
    font-weight: 700 !important;
}

/* Form labels */
.woocommerce-checkout .form-row label{
    color: #222222 !important;
    font-weight: 600 !important;
}

/* Order table headings */
.woocommerce-checkout #order_review table th{
    color: #222222 !important;
    font-weight: 700 !important;
}


/* =========================
   CHECKOUT ALL FIELDS GREEN BORDER FIX
========================= */



/* Select2 dropdown height fix */
.woocommerce-checkout .select2-container--default .select2-selection--single{
    height: 44px !important;
    border-radius: 8px !important;
}

/* Focus state stronger green */
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout .select2-container--default.select2-container--focus 
.select2-selection--single{
    border-color: #4caf50 !important;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15) !important;
}


/* =========================
   CHECKOUT COUPON LINK GREEN
========================= */

.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .showcoupon{
    color: #4caf50 !important;   /* same green */
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* Hover */
.woocommerce-checkout .woocommerce-info a:hover,
.woocommerce-checkout .showcoupon:hover{
    color: #2e7d32 !important;   /* darker green on hover */
    text-decoration: underline !important;
}


/* =========================
   CHECKOUT LEGAL LINKS GREEN
========================= */

/* Privacy policy + Terms link */
.woocommerce-checkout .woocommerce-privacy-policy-text a,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a{
    color: #4caf50 !important;   /* same green */
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* Hover */
.woocommerce-checkout .woocommerce-privacy-policy-text a:hover,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a:hover{
    color: #2e7d32 !important;   /* darker green */
    text-decoration: underline !important;
}















/* =========================
   DZ CART DRAWER UI
   Premium mobile app style
========================= */

:root{
  --dz-green:#79b255;
  --dz-green-dark:#4d8c2d;
  --dz-green-soft:#eef7e7;
  --dz-green-soft-2:#f7fbf3;
  --dz-border:#e6eddc;
  --dz-text:#20261f;
  --dz-muted:#7f887b;
  --dz-bg:#f5f8f1;
  --dz-white:#ffffff;
  --dz-shadow:0 10px 24px rgba(69, 98, 44, 0.10);
  --dz-radius:18px;
  --dz-radius-md:14px;
  --dz-radius-sm:10px;
}

/* Overlay */
.dz-cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.34);
  opacity:0;
  visibility:hidden;
  transition:.28s ease;
  z-index:999998;
}

/* Drawer */
.dz-cart-drawer{
  position:fixed;
  top:0;
  right:0;
  width:75vw !important;
  max-width:520px !important;
  height:100vh;
  background:linear-gradient(180deg,#f8fbf5 0%, #f3f8ef 100%);
  transform:translateX(105%);
  transition:transform .30s cubic-bezier(.22,.61,.36,1);
  z-index:999999;
  box-shadow:-8px 0 28px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}




/* Open */
body.dz-cart-open .dz-cart-overlay{
  opacity:1;
  visibility:visible;
}
body.dz-cart-open .dz-cart-drawer{
  transform:translateX(0);
}

/* Header */
.dz-cart-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:18px 16px 14px;
  background:#fff;
  border-bottom:1px solid #edf2e8;
}

.dz-cart-head-left{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.dz-cart-iconbox{
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(180deg,#eaf7df 0%, #dceecb 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  flex:0 0 36px;
  box-shadow:inset 0 0 0 1px #d7e8c8;
}

.dz-cart-icon{
  font-size:17px;
  line-height:1;
}

.dz-cart-count{
  position:absolute;
  right:-3px;
  bottom:-4px;
  min-width:16px;
  height:16px;
  padding:0 4px;
  border-radius:999px;
  background:#458800;
  color:#fff;
  font-size:10px;
  font-weight:700;
  line-height:16px;
  text-align:center;
  border:2px solid #fff;
}

.dz-cart-head-text strong{
  display:block;
  margin:0 0 2px;
  font-size:15px;
  font-weight:800;
  color:var(--dz-text);
  line-height:1.2;
}

.dz-cart-head-text small{
  display:block;
  font-size:12px;
  color:var(--dz-muted);
  font-weight:500;
  line-height:1.2;
}

.dz-cart-close{
  width:34px;
  height:34px;
  border:0;
  border-radius:12px;
  background:#f4f5f2;
  color:#5e6659;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}

/* Body */
.dz-cart-body{
  padding:12px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  background:transparent;
}

.dz-cart-body::-webkit-scrollbar{
  width:8px;
}
.dz-cart-body::-webkit-scrollbar-thumb{
  background:#d6e3cd;
  border-radius:999px;
}



.dz-free-ship-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.dz-free-ship-left{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:#52604a;
  font-weight:600;
}

.dz-free-ship-left strong{
  color:#2e3a2a;
}

.dz-free-ship-badge{
  font-size:14px;
  line-height:1;
}

.dz-free-ship-target{
  font-size:12px;
  color:#516049;
  font-weight:700;
  white-space:nowrap;
}

.dz-free-ship-progress{
  width:100%;
  height:7px;
  background:#dfe7d8;
  border-radius:999px;
  overflow:hidden;
}
.dz-free-ship-progress span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#65ab45 0%, #84c65b 100%);
}

/* Main content shell */
.dz-cart-content-shell{
  display:block;
}

/* Remove default WC layout clutter */
.dz-cart-drawer .woocommerce{
  margin:0;
}

.dz-cart-drawer .woocommerce-cart-form{
  margin:0;
}

.dz-cart-drawer table.shop_table{
  width:100%;
  border:none !important;
  border-collapse:separate !important;
  border-spacing:0 12px !important;
  background:transparent !important;
  margin:0 !important;
}

.dz-cart-drawer table.shop_table thead{
  display:none !important;
}

.dz-cart-drawer table.shop_table tbody,
.dz-cart-drawer table.shop_table tr,
.dz-cart-drawer table.shop_table td{
  border:none !important;
  
}

/* cart item card */
.dz-cart-drawer table.shop_table tbody tr.cart_item{
  display: block !important;
  position: relative !important;
  background: #fff !important;
  border: 1px solid var(--dz-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--dz-shadow) !important;
  
  overflow: hidden !important;
  padding:14px 12px;
  margin-top: -5px;
  padding-bottom: 0;
}


/* Remove button */
.dz-cart-drawer td.product-remove{
  position:absolute;
  top:14px;
  right:12px;
  width:auto !important;
  padding:0 !important;
  z-index:3;
}
.dz-cart-drawer td.product-remove a.remove{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  border-radius:10px;
  display:flex !important;
  align-items:center;
  justify-content:center;
  background:#f3f5f1 !important;
  color:#7b8476 !important;
  font-size:16px !important;
  line-height:1 !important;
  text-decoration:none !important;
  border:1px solid #e6ece0;
}
.dz-cart-drawer td.product-remove a.remove:hover{
  background:#ecf2e7 !important;
  color:#4c7f32 !important;
}

/* =========================
   CART ITEM BLOCK REPLACE
   replace from: Thumbnail
   to: Small mobile
========================= */

/* Thumbnail */
.dz-cart-drawer td.product-thumbnail{
  position: absolute !important;
  top: 18px !important;
  left: 42px !important;
  width: 64px !important;
  height: 64px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  z-index: 2 !important;
}

.dz-cart-drawer td.product-thumbnail::before{
  content: none !important;
  display: none !important;
}

.dz-cart-drawer td.product-thumbnail a{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #dfe7d8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  position: relative !important;
}

.dz-cart-drawer td.product-thumbnail img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 2 !important;
  transform: none !important;
  filter: none !important;
  clip: auto !important;
}

/* if lazyload plugin/theme hides image */
.dz-cart-drawer td.product-thumbnail img[data-src],
.dz-cart-drawer td.product-thumbnail img.lazyload,
.dz-cart-drawer td.product-thumbnail img.lazyloaded,
.dz-cart-drawer td.product-thumbnail img[class*="lazy"]{
  opacity: 1 !important;
  visibility: visible !important;
}

/* product remove */
.dz-cart-drawer td.product-remove{
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 4 !important;
}

.dz-cart-drawer td.product-remove::before{
  content: none !important;
  display: none !important;
}

.dz-cart-drawer td.product-remove a.remove{
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 10px !important;
  border: 1px solid #e6ece0 !important;
  background: #fafbf8 !important;
  color: #8a9285 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}



.dz-cart-drawer table.shop_table tbody tr.cart_item::before{
  content: "✓";
  position: absolute;
  top: 22px;
  left: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dz-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Name area */
.dz-cart-drawer td.product-name{
  display: block !important;
  margin: 0 44px 14px 112px !important;
  min-height: 76px !important;
  width: auto !important;
  padding: 0 !important;
  text-align: left !important;
}

.dz-cart-drawer td.product-name::before{
  content: none !important;
  display: none !important;
}

.dz-cart-drawer td.product-name a{
  display: block !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  line-height: 1.45 !important;
  text-align: left !important;
  color: #2c3129 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before{
  font-weight: 400 !important;
}

.dz-cart-drawer td.product-name a:hover{
  color: var(--dz-green-dark) !important;
}

.dz-cart-drawer td.product-name .variation,
.dz-cart-drawer td.product-name .wc-item-meta{
  margin: 6px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-size: 12px !important;
  color: var(--dz-muted) !important;
}

/* badges */
.dz-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.dz-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.dz-badge.stock{
  background: #e8f6df;
  color: #5f9840;
}

.dz-badge.premium{
  background: #fff2d7;
  color: #c08c1d;
}

/* Info rows */
.dz-cart-drawer td.product-price,
.dz-cart-drawer td.product-quantity,
.dz-cart-drawer td.product-subtotal{
  clear: both;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 2px !important;
  margin: 0 !important;
  border-top: 1px solid #eef3e9 !important;
  width: 100%;
  box-sizing: border-box;
}

.dz-cart-drawer td.product-price::before,
.dz-cart-drawer td.product-quantity::before,
.dz-cart-drawer td.product-subtotal::before{
  font-size: 14px;
  font-weight: 600;
  color: #697262;
}

.dz-cart-drawer td.product-price::before{
  content: "Price";
}

.dz-cart-drawer td.product-quantity::before{
  content: "Quantity";
}

.dz-cart-drawer td.product-subtotal::before{
  content: "Subtotal";
}

.dz-cart-drawer td.product-price .amount,
.dz-cart-drawer td.product-subtotal .amount{
  font-size: 16px;
  font-weight: 800;
  color: #273026;
}

/* Quantity */
.dz-cart-drawer .quantity{
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.dz-cart-drawer .quantity .minus,
.dz-cart-drawer .quantity .plus,
.dz-cart-drawer .quantity button{
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  border: 1px solid #e5ebdf !important;
  background: #f4f7f1 !important;
  color: #65705f !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  box-shadow: none !important;
}

.dz-cart-drawer .quantity input.qty{
  width: 48px !important;
  height: 34px !important;
  border: 1px solid #e5ebdf !important;
  background: #f8faf6 !important;
  border-radius: 10px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #273126 !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Coupon + update section */
.dz-cart-drawer tr:last-child td.actions{
  background: #fff!important;
  border: 1px solid var(--dz-border);
  border-radius: 18px;
  box-shadow: var(--dz-shadow);
  margin-top: 12px;
}

.dz-cart-drawer .coupon{
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 10px !important;
}

.dz-cart-drawer .coupon input{
  height: 42px !important;
  padding: 0 14px !important;
  border: 1px dashed #cdd9c2 !important;
  border-radius: 12px !important;
  background: #fcfefa !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 14px !important;
}

.dz-cart-drawer .coupon input:focus{
  border: 1px solid var(--dz-green) !important;
  box-shadow: 0 0 0 3px rgba(121,178,85,.12) !important;
}

.dz-cart-drawer button[name="apply_coupon"],
.dz-cart-drawer .coupon button{
  height: 42px !important;
  padding: 0 18px !important;
  border: none !important;
  border-radius: 12px !important;
  background: #88b053 !important
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  
}

.dz-cart-drawer button[name="update_cart"]{
  width: 100% !important;
  height: 44px !important;
  margin-top: 4px !important;
  border: none !important;
  border-radius: 12px !important;
  background: #edf6e6 !important;
  color: #3f5f31 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

/* Mobile */
@media (max-width:768px){
  .dz-cart-drawer{
    width: 75vw !important;
    max-width: none !important;
    height: calc(100vh - 62px);
    bottom: 62px;
  }

  .dz-cart-head{
    padding: 16px 14px 12px;
  }

  .dz-cart-body{
    padding: 10px;
  }

  .dz-cart-drawer td.product-thumbnail{
    top: 18px !important;
    left: 42px !important;
    width: 64px !important;
    height: 64px !important;
  }

  .dz-cart-drawer td.product-thumbnail a{
    width: 64px !important;
    height: 64px !important;
  }

  .dz-cart-drawer td.product-name{
    margin: 0 42px 14px 108px !important;
  }

  .dz-cart-drawer td.product-name a{
    font-size: 14px !important;
  }
}

/* Small mobile */
@media (max-width:480px){
  .dz-cart-drawer{
    width: 86vw !important;
  }


  .dz-cart-drawer td.product-thumbnail{
    top: 18px !important;
    left: 40px !important;
    width: 60px !important;
    height: 60px !important;
  }

  .dz-cart-drawer td.product-thumbnail a{
    width: 60px !important;
    height: 60px !important;
  }

  .dz-cart-drawer td.product-name{
    margin: 0 40px 14px 102px !important;
    min-height: 72px !important;
  }

  .dz-cart-drawer td.product-price::before,
  .dz-cart-drawer td.product-quantity::before,
  .dz-cart-drawer td.product-subtotal::before{
    font-size: 13px !important;
  }
}







/* jamela chilo jamela korle eikan nise teke remove */

/* Cart Totals Box */
.dz-cart-drawer .cart_totals {
  display: block !important;
  position: relative !important;
  background: #fff !important;
  border: 1px solid var(--dz-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--dz-shadow) !important;
  overflow: hidden !important;
  padding-bottom: 15px;
}


.woocommerce-info{
    
 margin: 0!important;  
 
 border-radius: 14px;
    
}

.woocommerce-info{
    border-top: none!important;
}


/* Title */
.dz-cart-drawer .cart_totals h2 {
  margin: 0 !important;
  padding: 16px 16px 8px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #52604a !important;
}

/* Table */
.dz-cart-drawer table.shop_table {
  width: 100% !important;
  border: none !important;
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
  background: transparent !important;
  margin: 0 !important;
}
.dz-cart-drawer .cart_totals table th,
.dz-cart-drawer .cart_totals table td {
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: #52604a !important;
  border: none !important;
  background: transparent !important;
}
.dz-cart-drawer .cart_totals .order-total th,
.dz-cart-drawer .cart_totals .order-total td {
  font-size: 16px !important;
  font-weight: 800 !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
}
.dz-cart-drawer .cart_totals .amount {
  font-weight: 800 !important;
  color: #52604a !important;
}

/* Checkout Button */
.dz-cart-drawer .wc-proceed-to-checkout {
  width: 100% !important;
  padding: 5px 40px !important;
  
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
}
.dz-cart-drawer .wc-proceed-to-checkout a.checkout-button {
  display: block !important;
  border-radius: 14px !important;
  background: #8bb458 !important !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-align: center !important;
  padding: 14px !important;
  margin: 0 !important;
  box-shadow: 0 12px 24px rgba(89,145,53,.20) !important;
}




/* BENEFITS WRAPPER */
.dz-cart-benefits{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-top:0;
  padding-top: 10px;
  padding-bottom: 5px;
}

/* EACH ITEM (SMALL + CLEAN) */
.dz-cart-benefit{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  background:#f4f8ef;
  border-radius:8px;
  padding:6px 6px;
  font-size:11px;
  font-weight:600;
  color:#2c3129;
  white-space:nowrap;
  overflow:hidden;
}

/* ICON SMALL */
.dz-benefit-icon{
  font-size:12px;
  line-height:1;
}

/* TEXT FIX */
.dz-cart-benefit span:last-child{
  overflow:hidden;
  text-overflow:ellipsis;
}

/* MOBILE PERFECT FIT */
@media (max-width:480px){
  .dz-cart-benefits{
    gap:4px;
  }

  .dz-cart-benefit{
    font-size:10px;
    padding:5px 4px;
  }

  .dz-benefit-icon{
    font-size:11px;
  }
}




/* Free Shipping Box final */
.dz-free-ship-card {
    background: #f0f6ea; border: 1px solid #e3edd7;
    padding: 15px; border-radius: 15px; margin-bottom: 20px;
}
.dz-progress-container {
    height: 8px; background: #eee; border-radius: 10px; margin: 10px 0;
}
.dz-progress-bar {
    height: 100%; background: #458800; border-radius: 10px;
}
.dz-ship-labels { display: flex; justify-content: space-between; font-size: 11px; color: #888; }

/* Item Card */
.dz-cart-item {
    background: #fff; border-radius: 18px; padding: 15px;
    margin-bottom: 15px; border: 1px solid #eef3e9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.item-main {
    display: grid !important;
    grid-template-columns: auto auto 1fr auto !important; /* ইমেজ, চেক, টাইটেল, ডিলিট */
    align-items: start !important;
    gap: 12px !important;
    position: relative !important;
}
.item-check { background: #79b255; color: #fff; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.item-thumb img { width: 60px; height: 60px; border-radius: 10px; }
.product-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding-right: 5px !important;
    color: #20261f !important;
}

.badge-stock { background: #eef7e7; color: #79b255; font-size: 10px; padding: 2px 8px; border-radius: 5px; }
.badge-premium { background: #fff8e1; color: #ffa000; font-size: 10px; padding: 2px 8px; border-radius: 5px; }
.dz-remove { position: absolute; text-decoration: none; font-size: 16px; }

.item-meta-table { border-top: 1px solid #f5f8f1; padding-top: 10px; }
.meta-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; color: #666; }

/* Qty Box */
.dz-qty-box { display: flex; background: #f4f8ef; border-radius: 8px; padding: 2px; }
.dz-qty-box button { border: none; background: none; padding: 4px 10px; cursor: pointer; font-weight: bold; }
.dz-qty-box input { width: 30px; border: none; background: none; text-align: center; font-size: 13px; }

/* Totals Card */
.dz-totals-card {
    background: linear-gradient(135deg, #1b4d2c 0%, #3d7a4d 100%);
    color: #fff; border-radius: 18px; padding: 18px; margin-top: 20px;
}
.total-line { display: flex; justify-content: space-between; margin-bottom: 8px; }
.total-line.main { border-top: 1px dashed rgba(255,255,255,0.2); padding-top: 10px; font-size: 18px; font-weight: bold; }

.dz-checkout-btn {
    background: #458800; color: #fff; text-align: center; display: block;
    padding: 15px; border-radius: 15px; margin-top: 15px; font-weight: bold; text-decoration: none;
}
.dz-footer-benefits { display: flex; justify-content: space-between; background:#f0f6ea; padding:10px; font-size: 10px; margin-top: 15px; color: #777; border-radius: 10px; }



/* --- Compact Premium Delete Button --- */
.dz-remove {
     grid-column: 4 !important; /* ৪ নম্বর কলামে ডিলিট বাটন */
    grid-row: 1 !important;    /* টাইটেল এর সাথে একই লাইনে রাখবে */
    position: static !important; /* আগের সব অ্যাবসোলিউট পজিশন বাতিল */
    
    width: 28px !important;
    height: 28px !important;
    background: #fff5f5 !important;
    color: #eb5757 !important;
    border: 1px solid #fee2e2 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px; /* টাইটেল এর সাথে এলাইনমেন্ট ঠিক করতে */
}


.dz-remove:hover {
    background: #eb5757;
    color: #ffffff;
    transform: scale(1.1); /* হোভারে সামান্য বড় হবে */
    box-shadow: 0 4px 10px rgba(235, 87, 87, 0.15);
}

/* আইকন সাইজ আরও ছোট এবং শার্প করা হয়েছে */
.dz-remove svg {
    width: 10px;       /* ১৮ থেকে কমিয়ে ১৪ করা হয়েছে */
    height: 10px;
    display: block;
    stroke-width: 2.5; /* লাইনগুলো একটু মোটা করা হয়েছে যাতে ছোট হলেও ক্লিয়ার দেখায় */
}

/* --- Space Reduction for Cart Details --- */

.item-meta-table {
    margin-top: 8px;      /* উপরের ইমেজ থেকে দূরত্ব কমানো হয়েছে */
    padding-top: 5px;     /* ভেতরের উপরের স্পেস কমানো হয়েছে */
    border-top: 1px solid #f2f6ee; 
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;       /* ১০ পিক্সেল থেকে কমিয়ে ৪ পিক্সেল করা হয়েছে (স্পেস কমবে) */
    border-bottom: none;  /* গ্যাপ কমাতে ডিভাইডার লাইন সরিয়ে দেওয়া হয়েছে */
}

/* আইকন বক্সের সাইজ এবং গ্যাপ ফিক্স */
.dz-meta-icon {
    width: 28px;          /* ৩২ থেকে কমিয়ে ২৮ করা হয়েছে */
    height: 28px;
    background: #f4f8ef;
    border: 1px solid #eef3e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;             /* আইকন এবং টেক্সটের মাঝের গ্যাপ কমানো হয়েছে */
}

.label-with-icon span:not(.dz-meta-icon) {
    font-size: 13px;      /* ফন্ট সাইজ সামান্য ছোট করা হয়েছে */
    font-weight: 600;
    color: #697262;
}

/* ভ্যালু টেক্সট (Price & Subtotal) */
.meta-row strong {
    font-size: 14px;
    font-weight: 800;
    color: #273026;
}

/* Quantity বক্সের সাইজ সামান্য ছোট করা */
.dz-qty-box {
    height: 32px;         /* ৩৬ থেকে কমিয়ে ৩২ করা হয়েছে */
}




/* --- Coupon Section Fix --- */

.dz-coupon-box {
    display: flex !important;           /* ইনপুট এবং বাটন পাশাপাশি আনবে */
    align-items: center !important;
    gap: 8px !important;               /* ইনপুট এবং বাটনের মাঝখানের গ্যাপ */
    width: 100% !important;
    margin-bottom: 12px !important;
}

.dz-coupon-input-wrap {
    flex: 1 !important;                /* ইনপুট বক্সটি যতটুকু সম্ভব জায়গা নেবে */
    position: relative !important;
}

.dz-coupon-input-wrap input {
    width: 100% !important;
    height: 44px !important;
    padding: 0 10px 0 40px !important;  /* আইকনের জন্য বামে জায়গা */
    border: 1px dashed #cdd9c2 !important;
    border-radius: 12px !important;
    background: #fcfefa !important;
    font-size: 14px !important;
    outline: none !important;
    box-sizing: border-box !important; /* যাতে প্যাডিং বর্ডার সাইজ না বাড়ায় */
}

.dz-coupon-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #79b255;
    display: flex;
    align-items: center;
}

.dz-apply-btn {
    flex-shrink: 0 !important;         /* বাটনটি যাতে চ্যাপ্টা না হয়ে যায় */
    background: #458800 !important;
    color: #fff !important;
    border: none !important;
    height: 44px !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    white-space: nowrap !important;    /* লেখা যাতে এক লাইনে থাকে */
}

/* নিচের আপডেট কার্ট বাটন ফিক্স */
.dz-update-full-btn {
    width: 100% !important;
    height: 44px !important;
    background: #edf6e6 !important;
    color: #3f5f31 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}




/* =========================
   DZ CATEGORY DRAWER 70% (Mobile Only)
========================= */

@media (max-width: 768px){

  .dz-mcat-drawer{
      width: 68vw !important;     /* 🔥 Mobile এ 65% */
      max-width: 68vw !important; /* force mobile width */
      left: 0 !important;
      right: auto !important;
  }

  body.dz-mcat-open .dz-mcat-drawer{
      transform: translateX(0) !important;
  }

}




.dz-flash-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Shine effect */
.dz-flash-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: dzShine 2.5s infinite;
}

/* Animation keyframes */
@keyframes dzShine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}



.dz-cat-header span {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 6px 14px; /* already থাকলে দরকার নেই */
    color: #fff;
    background: #f85606;
}

/* Shine effect */
.dz-cat-header span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: dzShine 2.5s infinite;
}

@keyframes dzShine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}



.dz-stock {
    position: relative;
    overflow: hidden;
    display: inline-block; /* important */
}

/* Shine effect */
.dz-stock::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: dzShine 4s infinite;
}

/* Animation */
@keyframes dzShine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}



.dz-fdeal-inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ভেতরের content উপরে রাখে */
.dz-fdeal-inner > * {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.dz-fdeal-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
    animation: dzShine 2.5s infinite;
}

@keyframes dzShine {
    0% {
        left: -75%;
    }
    100% {
        left: 130%;
    }
}



@media (max-width: 768px){

  aside.dz-mcat-drawer{
    height: calc(100vh - 10px) !important;
    bottom: 10px !important;
    overflow-y: auto;
    background: #fff;
  }

}



@media (max-width: 768px){

  /* category drawer */
  aside.dz-mcat-drawer,

  /* cart drawer (common possible classes) */
  aside.dz-cart-drawer,
  .dz-cart-drawer,
  .dz-cart-offcanvas,
  .dz-cart-sidebar {

    height: calc(100vh - 50px) !important;
    bottom: 10px !important;
    overflow-y: auto;
    background: #fff !important;
  }

}



.dz-search {
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: none;
}



.dz-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    color: #444444;
}


.dz-search-input::placeholder {
    color: #8E8E8E;
}



.dz-search-btn {
    width: 58px;
    height: 100%;
    border: none;
    border-left: 1px solid #E9E1DA;
    background: #F3E7DD;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}




/* ===== FINAL LOCK: NO HOVER COLOR CHANGE ===== */



/* Title always black */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h3.dz-ptitle,
ul.products li.product h3.dz-ptitle a,
ul.products li.product:hover .woocommerce-loop-product__title,
ul.products li.product:hover h3.dz-ptitle,
ul.products li.product:hover h3.dz-ptitle a{
  color:#2e7d32 !important;
}

/* Price always orange */
.woocommerce ul.products li.product .price,
ul.products li.product .price,
ul.products li.product .dz-price,
ul.products li.product:hover .price,
ul.products li.product:hover .dz-price{
  color:#ff6b00 !important;
}

/* Old price grey */
.woocommerce ul.products li.product .price del,
ul.products li.product .price del{
  color:#9e9e9e !important;
}
@media (min-width: 768px) {
  .dz-search-btn svg {
    width: 30px;
    height: 30px;
  }
}

/* header parent */
header{
  position: relative;
}





/* parent */
.dz-header-row{
  position: relative;
}

/* logo normal */
.dz-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* MOBILE ONLY */
@media (max-width: 767px) {

  .dz-cart-mobile {
    position: absolute;
    right: -7px;
    top: 20px; /* একটু fine-tuned */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 1000;
    top: 15px;
  }

  .dz-cart-ico {
    width: 30px;
    height: 30px;
    display: block;
  }

  .dz-cart-ico path {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
  }

  .dz-cart-ico circle {
    fill: #fff;
  }

  .dz-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 6px;
    height: 15px;
    padding: 0 4px;
    border-radius: 15px;
    background: #163a63 !important
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
}

/* DESKTOP এ hide */
@media (min-width: 768px) {
  .dz-cart-mobile {
    display: none;
  }
}

@media (max-width: 767px){
  .dz-actions{
    display: none !important;
  }
}






.dz-auth-page {
    padding: 18px 10px 28px;
    background: #f5f5f5;
}

.dz-auth-container {
    max-width: 430px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 14px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.dz-auth-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    text-align: left;
}

.dz-auth-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #8cb659;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.dz-auth-top h1 {
    margin: 0 0 3px;
    font-size: 18px;
    line-height: 1.2;
    color: #222;
    font-weight: 700;
}

.dz-auth-top p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.35;
}

.dz-auth-card {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 18px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.dz-auth-card h2 {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.3;
    color: #222;
    font-weight: 700;
}

.dz-auth-form {
    margin: 0;
}

.dz-auth-field {
    margin-bottom: 12px;
}

.dz-auth-field input {
    width: 100%;
    height: 50px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    color: #222;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
}

.dz-auth-field input:focus {
    border-color: #0d4a3f;
}

.dz-auth-field input::placeholder {
    color: #9a9a9a;
}

.dz-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 14px;
}

.dz-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 13px;
    line-height: 1.3;
}

.dz-auth-check input {
    margin: 0;
}

.dz-auth-link {
    color: #0d4a3f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.dz-auth-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: #8cb659;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dz-auth-btn:hover {
    background: #0d4a3f;
}

.dz-auth-divider {
    position: relative;
    text-align: center;
    margin: 4px 0 20px;
}

.dz-auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e4e4e4;
    transform: translateY(-50%);
}

.dz-auth-divider span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    font-weight: 700;
    font-size: 13px;
    color: #777;
}

.dz-auth-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
}

.dz-auth-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f3c7c7;
}

.dz-auth-success {
    background: #eefbf3;
    color: #117a37;
    border: 1px solid #b7e3c5;
}

@media (max-width: 600px) {
    .dz-auth-page {
        padding: 12px 8px 20px;
    }

    .dz-auth-container {
        max-width: 100%;
        border-radius: 18px;
        padding: 14px 10px 18px;
    }

    .dz-auth-top {
        gap: 10px;
        margin-bottom: 14px;
        justify-content: center;
    }

    .dz-auth-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 18px;
    }

    .dz-auth-top h1 {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .dz-auth-top p {
        font-size: 12px;
    }

    .dz-auth-card {
        padding: 16px 12px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .dz-auth-card h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .dz-auth-field {
        margin-bottom: 10px;
    }

    .dz-auth-field input {
        height: 46px;
        font-size: 14px;
        border-radius: 10px;
        padding: 0 12px;
    }

    .dz-auth-row {
        margin: 2px 0 12px;
        gap: 8px;
    }

    .dz-auth-check,
    .dz-auth-link {
        font-size: 12px;
    }

    .dz-auth-btn {
        height: 46px;
        font-size: 16px;
        border-radius: 10px;
    }

    .dz-auth-divider {
        margin: 0 0 18px;
    }

    .dz-auth-divider span {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .dz-auth-alert {
        font-size: 12px;
        padding: 10px 12px;
    }
}


@media (max-width: 992px) {
  .dz-header {
    background-color: #fff !important;
  }
}


/* Desktop only */
@media (min-width: 768px) {
 .dz-live-chat{
    right: 38px!important;  
     
 }   
    
}



.dz-live-chat{
  position: fixed;
  right: 14px;
  bottom: 20px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: auto;
  padding: 5px 7px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
  border: 1px solid #eee;
  font-size: 13px;
  line-height: 1;
  max-width: calc(100vw - 28px);
}

.dz-live-chat-text{
  white-space: nowrap;
  font-weight: 500;
  font-size: 13px;
}

.dz-live-chat-icon{
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #458800!important;
  overflow: hidden;
  flex-shrink: 0;
}

.dz-live-chat-icon img{
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  max-width: 16px;
  max-height: 16px;
}

@media (max-width: 767px){
  .dz-live-chat{
    right: 15px;
    bottom: 65px;
    padding: 5px 7px;
    font-size: 13px;
    border-radius: 10px;
  }

  .dz-live-chat-icon{
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .dz-live-chat-icon img{
    width: 14px;
    height: 14px;
    max-width: 14px;
    max-height: 14px;
  }
}







ul.products li.product.dz-pcard {
    border: 1px solid #eaeaea !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}





.dz-discount {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #EAF5E4 !important;
    color: #2E7D32 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    width: fit-content !important;
    margin-bottom: 8px !important; /* 🔥 এইটা add করো */
}




.dz-psubtitle {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
    line-height: 1.4;
}












/* ===============================
   FINAL CTA (SMALL + PERFECT ALIGN)
=============================== */

.dz-pdp__cta-exact{
  padding-right: 7px;
}

/* GRID */
.dz-cart-inline{
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 8px;
  align-items: center; /* MAIN ALIGN FIX */
  width: 100%;
  margin: 0;
  
}




@media (min-width: 992px){
  .dz-cart-inline{
    margin-top: -55px !important;
  }
}

/* ===== QUANTITY ===== */
.dz-qty-box{
  height: 40px;
  border: 1.5px solid #e3e7dd;
  border-radius: 10px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between; /* FIX */

  
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.dz-qty-btn{
  border: none;
  background: transparent;
  font-size: 18px;
  color: #8c9488;
  cursor: pointer;
  line-height: 1;
}

.dz-qty-btn:hover{
  color: #4f8f2f;
}

.dz-qty-input{
  width: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  background: transparent;
  line-height: 1;
}

/* remove spinner */
.dz-qty-input::-webkit-outer-spin-button,
.dz-qty-input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

/* ===== ADD TO CART ===== */
.dz-addcart-exact{
  height: 40px;
  border-radius: 10px;
  background: #eef5e6;
  color: #3f7f24;

  font-size: 12px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;
  padding: 0 8px;

  text-decoration: none;
  border: none;
  cursor: pointer;

  box-shadow: 0 3px 8px rgba(79,143,47,0.05);
  transition: 0.2s ease;

  white-space: nowrap;
  line-height: 1;
}

.dz-addcart-exact:hover{
  background: #e4efd8;
  color: #32691d;
}

/* ===== BUY NOW ===== */
.dz-buy-now-exact{
  height: 40px;
  border-radius: 10px;

  background: linear-gradient(135deg, #4f8f2f 0%, #3b7a22 100%);
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;
  padding: 0 8px;

  text-decoration: none;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(47,111,29,0.12);
  transition: 0.2s ease;

  white-space: nowrap;
  line-height: 1;
}

.dz-buy-now-exact:hover{
  background: linear-gradient(135deg, #458324 0%, #2e661c 100%);
}

/* ===== ICON ===== */
.dz-btn-icon{
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ===== FORCE ALIGN FIX ===== */
.dz-addcart-exact span,
.dz-buy-now-exact span{
  display: flex;
  align-items: center;
  line-height: 1;
}

/* safety */
.dz-cart-inline > *{
  min-width: 0;
  box-sizing: border-box;
}

/* ===== MOBILE ===== */
@media (max-width: 767px){
  .dz-cart-inline{
    grid-template-columns: 110px 1fr 1fr;
    gap: 8px;
  }

  .dz-qty-box,
  .dz-addcart-exact,
  .dz-buy-now-exact{
    height: 40px;
  }

  

  .dz-addcart-exact,
  .dz-buy-now-exact{
    font-size: 12px;
    padding: 0 6px;
  }

  .dz-btn-icon{
    font-size: 11px;
  }
}






/* ===== SIMPLE CLEAN META TEXT ===== */

.dz-pdp__meta .product_meta{
  font-size: 12px;        /* ছোট text */
  color: #6b7a63;         /* soft organic grey-green */
  line-height: 1.4;
}

/* SKU একটু bold */
.dz-pdp__meta .product_meta .sku{
  color: #2f3a2b;
  font-weight: 600;
}

/* "SKU:" label */
.dz-pdp__meta .product_meta .sku_wrapper{
  color: #7b8b72;
}

/* Categories label */
.dz-pdp__meta .product_meta .posted_in{
  color: #7b8b72;
}

/* category links */
.dz-pdp__meta .product_meta a{
  color: #3f7f24;     /* organic green */
  font-weight: 500;
  text-decoration: none;
}

/* hover */
.dz-pdp__meta .product_meta a:hover{
  color: #2f6f1d;
}

/* comma clean */
.dz-pdp__meta .product_meta .posted_in a + a::before{
  content: ", ";
  color: #aaa;
}



/* ===== FEATURE STRIP ===== */
.dz-feature-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#f3f8ec;
  border-radius:16px;
  
  overflow:hidden;
}

.dz-feature-box{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px;
}

.dz-feature-box:not(:last-child){
  border-right:1px solid #e5eddc;
}

.dz-f-icon{
  font-size:20px;
}

.dz-f-title{
  font-size:14px;
  font-weight:700;
  color:#4f8f2f;
}

.dz-f-sub{
  font-size:12px;
  color:#7a8474;
}

/* ===== MAIN CARD ===== */
.dz-info-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  overflow:hidden;
}

/* section */
.dz-info-section{
  padding:14px 16px;
}

.dz-info-section + .dz-info-section{
  border-top:1px solid #f0f0f0;
}

/* title */
.dz-info-title{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
  color:#1f251d;
}

/* row */
.dz-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  font-size:14px;
}

.dz-row + .dz-row{
  border-top:1px solid #f3f3f3;
}

.dz-left{
  color:#2e352c;
}

.dz-right{
  color:#8a9186;
  font-size:13px;
}

/* COD pill */
.dz-cod{
  background:#eaf5e4;
  color:#4f8f2f;
  font-weight:700;
  padding:4px 10px;
  border-radius:8px;
  font-size:12px;
}








/* =========================
   PREMIUM DESCRIPTION / REVIEW TABS
========================= */

/* wrapper */
.dz-pdp__tabs{
  margin-top: 20px;
}

.single-product .woocommerce-tabs{
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 22px;
}

/* tab nav */
.single-product .woocommerce-tabs ul.tabs{
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: none !important;
  list-style: none !important;
  overflow-x: auto;
}

.single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar{
  display: none;
}

.single-product .woocommerce-tabs ul.tabs li{
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  list-style: none !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after{
  display: none !important;
}

/* tab button */
.single-product .woocommerce-tabs ul.tabs li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px !important;
  border-radius: 999px;
  background: #f4f8ef;
  border: 1px solid #e4ebda;
  color: #5f6f56 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1;
  transition: all 0.2s ease;
}

/* active */
.single-product .woocommerce-tabs ul.tabs li.active a{
  background: linear-gradient(135deg, #4f8f2f 0%, #3f7f24 100%);
  border-color: #4f8f2f;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(79,143,47,0.18);
}

/* hover */
.single-product .woocommerce-tabs ul.tabs li a:hover{
  background: #edf5e6;
  color: #3f7f24 !important;
}



/* heading inside panel */
.single-product .woocommerce-tabs .panel h2,
.single-product .woocommerce-tabs .panel h3{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f251d;
  margin: 0 0 16px;
}

/* body text */
.single-product .woocommerce-tabs .panel,
.single-product .woocommerce-tabs .panel p,
.single-product .woocommerce-tabs .panel li,
.single-product .woocommerce-tabs .panel div{
  color: #4e5849;
  font-size: 15px;
  line-height: 1.75;
}

/* list */
.single-product .woocommerce-tabs .panel ul{
  margin: 12px 0 0 18px;
  padding: 0;
}

.single-product .woocommerce-tabs .panel li{
  margin-bottom: 8px;
}

/* review form / review list polish */
.single-product #reviews #comments ol.commentlist li .comment-text{
  border: 1px solid #e8eee0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(44,64,34,0.04);
}

.single-product #reviews #review_form_wrapper{
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #e8eee0;
  border-radius: 16px;
  background: #fcfdfb;
}

/* mobile */
@media (max-width: 767px){
  .single-product .woocommerce-tabs{
    padding: 14px;
    border-radius: 16px;
  }

  .single-product .woocommerce-tabs ul.tabs{
    gap: 8px;
    margin-bottom: 14px !important;
  }

  .single-product .woocommerce-tabs ul.tabs li a{
    padding: 9px 14px !important;
    font-size: 13px;
  }


  .single-product .woocommerce-tabs .panel h2,
  .single-product .woocommerce-tabs .panel h3{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .single-product .woocommerce-tabs .panel,
  .single-product .woocommerce-tabs .panel p,
  .single-product .woocommerce-tabs .panel li,
  .single-product .woocommerce-tabs .panel div{
    font-size: 14px;
    line-height: 1.65;
  }
}


.woocommerce .star-rating{
 font-size: 0.9em!important;   
}    








/* =========================
   PREMIUM DESCRIPTION BOX (ORGANIC STYLE)
========================= */

.dz-pdp__tabs{
  margin-top: 20px;
}

/* main wrapper */
.single-product .woocommerce-tabs{
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e6efdc;
  box-shadow: 0 6px 18px rgba(44,64,34,0.06);
}

/* panel (inner box) */
.single-product .woocommerce-tabs .panel{
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #edf4e6;
  
}

/* remove ugly default borders */
.single-product .woocommerce-tabs,
.single-product .woocommerce-tabs .panel,
.single-product .woocommerce-tabs ul.tabs{
  border: none !important;
}

/* ================= TAB BUTTON ================= */

.single-product .woocommerce-tabs ul.tabs{
  display: flex;
  gap: 8px;
  margin-bottom: 12px !important;
}

.single-product .woocommerce-tabs ul.tabs li{
  margin: 0 !important;
}

/* normal tab */
.single-product .woocommerce-tabs ul.tabs li a{
  padding: 8px 14px !important;
  border-radius: 999px;
  background: #eef6e8;
  color: #5c6f55 !important;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e3edd9;
}

/* active tab */
.single-product .woocommerce-tabs ul.tabs li.active a{
  background: #4f8f2f;
  color: #fff !important;
  border-color: #4f8f2f;
  box-shadow: 0 4px 10px rgba(79,143,47,0.18);
}

/* ================= TEXT ================= */

/* heading */
.single-product .woocommerce-tabs .panel h2{
  font-size: 22px;
  font-weight: 700;
  color: #1f251d;
  margin-bottom: 10px;
}

/* paragraph */
.single-product .woocommerce-tabs .panel p{
  font-size: 14px;
  line-height: 1.7;
  color: #4e5849;
}

/* list */
.single-product .woocommerce-tabs .panel ul{
  margin-left: 16px;
}

.single-product .woocommerce-tabs .panel li{
  font-size: 14px;
  margin-bottom: 6px;
  color: #4e5849;
}

/* remove extra spacing */
.single-product .woocommerce-tabs .panel *{
  margin-top: 0;
}

/* mobile */
@media(max-width:768px){
  .single-product .woocommerce-tabs{
    padding: 12px;
  }

  .single-product .woocommerce-tabs .panel{
    padding: 14px;
  }

  .single-product .woocommerce-tabs .panel h2{
    font-size: 18px;
  }

  .single-product .woocommerce-tabs .panel p,
  .single-product .woocommerce-tabs .panel li{
    font-size: 13px;
  }
}



.dz-fdeal-inner{
  height: 50px;   /* value বাড়াতে/কমাতে পারো */
  padding: 0 14px;
  display: flex;
  align-items: center;
}











/* Desktop only */
@media (min-width: 992px){
  .dz-pdp__grid{
    display: grid;
    grid-template-columns: 420px 1fr;
    column-gap: 30px;
    align-items: start;
  }

  .dz-pdp__main{
    grid-column: 2;
    grid-row: 1;
  }

  .dz-pdp__cta-exact{
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    align-self: start;
    margin-top: 5px; /* SKU এর নিচে gap */
  }

  .dz-cart-inline{
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 620px;
  }
}


@media (min-width: 992px){

  .dz-pdp__grid{
    display: grid;
    grid-template-columns: 420px 1fr 320px;
    column-gap: 20px;
    align-items: start;
  }

  /* middle content */
  .dz-pdp__main{
    grid-column: 2;
  }

  .dz-pdp__cta-exact{
    grid-column: 2;
  }

  /* ✅ right side delivery box */
  .dz-info-card{
    grid-column: 3;
    grid-row: 1 / span 3;
  }

}




/* Desktop only */
@media (min-width: 992px){
  .dz-pdp__grid{
    display: grid;
    grid-template-columns: 420px 1fr 320px;
    column-gap: 20px;
    row-gap: 10px;
    align-items: start;
  }

  .dz-pdp__main{
    grid-column: 2;
    grid-row: 1;
  }

  .dz-feature-strip{
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin: 0;
  }

  .dz-pdp__cta-exact{
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    margin: 0;
  }

  .dz-info-card{
    grid-column: 3;
    grid-row: 1 / span 3;
  }
}





@media (min-width: 992px){

  .dz-pdp__grid{
    row-gap: 5px; /* কম রাখো */
  }

  .dz-feature-strip{
    margin-top: -140px; /* 👉 gap টেনে উপরে আনবে */
  }

}





@media (min-width: 992px){

  .dz-pdp__grid{
    display: grid;
    grid-template-columns: 420px 1fr 320px;
    column-gap: 20px;
    row-gap: 0; /* 👉 gap remove */
    align-items: start;
  }

  .dz-pdp__main{
    grid-column: 2;
    grid-row: 1;
  }

  .dz-feature-strip{
    grid-column: 2;
    grid-row: 2;
  }

  .dz-pdp__cta-exact{
    grid-column: 2;
    grid-row: 3;
  }

  .dz-info-card{
    grid-column: 3;
    grid-row: 1 / span 3;
  }

}



@media (min-width: 992px){

  .dz-pdp__short p{
    display: none !important;
  }

}





@media (min-width: 992px){
  .dz-pdp__tabs{
    margin-top: 0!important;
    
  }
}



@media (min-width: 992px){
  .dz-pdp__related{
   margin-top: -16px;
  }
}




@media (min-width: 992px){
  .dz-logo img{
   margin-top: -14px;
  }
}



.elementor-element{
    --widgets-spacing-row:10px!important;
}




@media (max-width: 767px) {

    /* SAVE badge fix */
    .wc-block-components-product-metadata__description,
    .wc-block-components-product-badge,
    .wc-block-cart-item__prices + .wc-block-components-product-badge,
    .wc-block-cart-item__wrap .onsale,
    .wc-block-cart-item__wrap .save-price,
    .wc-block-cart-item__wrap [class*="save"] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 112px;
        max-width: fit-content;
        padding: 5px 12px;
        margin: 4px 0 2px;
        border: 1px solid #d7e4cd !important;
        border-radius: 8px;
        background: linear-gradient(180deg, #ffffff 0%, #f7fbf3 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
        font-size: 12px;
        line-height: 1;
        font-weight: 700;
        color: #6d7f57 !important;
        white-space: nowrap;
    }

    /* if badge text is wrapped in inner spans */
    .wc-block-components-product-metadata__description *,
    .wc-block-components-product-badge *,
    .wc-block-cart-item__wrap .onsale *,
    .wc-block-cart-item__wrap .save-price *,
    .wc-block-cart-item__wrap [class*="save"] * {
        font-size: inherit;
        line-height: inherit;
        color: inherit !important;
        font-weight: inherit;
    }

    /* prevent full-width ugly bar */
    .wc-block-cart-item__wrap .onsale,
    .wc-block-cart-item__wrap .save-price,
    .wc-block-cart-item__wrap [class*="save"] {
        float: none !important;
        clear: none !important;
    }
}



table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    
    color: #55971c;
}


.wc-block-cart-item__quantity .wc-block-cart-item__remove-link{
    color:#ff6b00!important;
}

.wc-block-components-product-price__value.is-discounted{
    color:#ff6b00;
}





/* =========================
   RELATED PRODUCTS PREMIUM TITLE
========================= */

.related.products h2{
  font-size:28px;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-0.02em;
  margin-bottom:18px;
  position:relative;
  display:inline-block;
}

/* underline accent */
.related.products h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:46px;
  height:4px;
  border-radius:20px;
  background:linear-gradient(90deg,#7fbf3f,#5f9f34);
}

/* subtle spacing fix */
.dz-pdp__related{
  
}

/* product grid gap more premium */
.related.products .products{
  
  gap:16px;
}





.cart-empty.woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.2;
}

.cart-empty.woocommerce-info::before {
    content: "🌿" !important;
    font-family: initial !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    font-size: 20px;
    line-height: 1;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    
    
}

.cart-empty.woocommerce-info {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2e7d32;
    background: #f1f8e9;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}




/* strong override */
.woocommerce .return-to-shop a.button.wc-backward {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    height: 30px;
    padding: 0 10px;

    border-radius: 12px;
    background: linear-gradient(135deg, #8db255, #6e9b2e) !important;
    color: #fff !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
    border: none;

    box-shadow: 0 8px 18px rgba(110, 155, 46, 0.22);
}




/* remove extra space from thumbnail pseudo */
.dz-cart-drawer td.product-thumbnail::before{
  content: none !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}



.dz-cart-drawer td.product-thumbnail{
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: auto !important;
}




/* --- 100% Matching Shield Check Icon Style --- */

.dz-ship-info {
    display: flex !important;
    align-items: center !important; /* আইকন এবং টেক্সট একদম মাঝখানে রাখবে */
    gap: 10px !important;
    margin-bottom: 12px;
}

.dz-ship-icon-box {
    width: 28px !important;
    height: 28px !important;
    background: #eef7e7 !important; /* হালকা গ্রিন ব্যাকগ্রাউন্ড */
    border: 1.5px solid #dceecb !important; /* প্রফেশনাল হালকা বর্ডার */
    border-radius: 8px !important; /* রাউন্ডেড কোণা */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #4caf50 !important; /* আইকন কালার একদম গ্রিন */
    flex-shrink: 0;
}

.dz-ship-icon-box svg {
    display: block !important;
}

/* টেক্সট এলাইনমেন্ট ফিক্স */
.dz-ship-info span:not(.dz-ship-icon-box) {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #4b5a44 !important;
    line-height: 1.2 !important;
}

















/* Remove top gap above checkout */
.tm-checkout-wrapper{
    margin-top: 10px !important;
}

/* Remove extra space from page content */
.page .entry-content{
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Header নিচের gap কমানো */
.site-content,
.content-area{
    margin-top: 0 !important;
    padding-top: 0 !important;
}













.tm-checkout-wrapper{
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}



.tm-checkout-form{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

            .tm-box{
    width: 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 14px;
    margin: 0 0 14px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    box-sizing: border-box;
}
            .tm-box-title{
                margin: 0 0 18px;
                font-size: 24px;
                font-weight: 700;
                color: #222;
            }
            .tm-grid{
                display: grid;
                gap: 16px;
                margin-bottom: 16px;
            }
            .tm-grid-3{
                grid-template-columns: repeat(3, 1fr);
            }
            .tm-grid-2{
                grid-template-columns: repeat(2, 1fr);
            }
            .tm-field label{
                display: block;
                font-size: 15px;
                font-weight: 600;
                margin-bottom: 8px;
                color: #222;
            }
            .tm-field label span,
            .tm-terms .req{
                color: #d72638;
                
            }
            .tm-field input,
            .tm-field select,
            .tm-field textarea{
                width: 100%;
                border: 1px solid #d6d6d6;
                border-radius: 6px;
                padding: 12px 14px;
                font-size: 15px;
                background: #fff;
                box-sizing: border-box;
                outline: none;
            }
            .tm-field textarea{
                resize: vertical;
                min-height: 70px;
            }
            .tm-pay-options{
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                margin-bottom: 16px;
            }
            .tm-pay-card{
    width: 100%;
    max-width: 100%;
    border: 1.5px solid #d3d3d3;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: #fff;
    box-sizing: border-box;
}
            .tm-pay-card.active{
                border-color: #5f7f70;
                background: #f5faf7;
            }
            .tm-pay-card input{
                margin-right: 10px;
            }
            .tm-pay-title{
                font-size: 15px;
                font-weight: 700;
                color: #222;
                line-height: 1.2;
            }
            .tm-pay-price{
                font-size: 14px;
                color: #555;
                margin-top: 4px;
                line-height: 1.2;
            }
            .tm-pay-old-price{
                margin-top: 4px;
                font-size: 13px;
                color: #888;
                text-decoration: line-through;
                line-height: 1.2;
            }
            .tm-notice{
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
            .tm-cod-notice{
                background: #eef3f8;
                color: #2d3e50;
                border-left: 4px solid #b7c7d8;
            }
            .tm-warning{
                background: #fff3cd;
                border: 1px solid #f1dc97;
                color: #7a5a00;
            }
            .tm-discount-box{
                background: #edf8ef;
                border: 1px solid #b9dfbf;
                color: #1f6b2d;
                padding: 12px 14px;
                border-radius: 6px;
                margin-bottom: 14px;
                font-size: 14px;
                font-weight: 600;
            }
            .tm-logos{
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 14px;
                padding: 8px 0;
            }
            .tm-logo-placeholder{
                height: 34px;
                min-width: 58px;
                padding: 5px 10px;
                border: 1px solid #e2e2e2;
                border-radius: 6px;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 11px;
                color: #666;
                box-sizing: border-box;
            }
            .tm-terms{
                display: flex;
                align-items: flex-start;
                gap: 10px;
                font-size: 14px;
                margin: 14px 0 18px;
                color: #222;
            }
            .tm-terms input{
                margin-top: 3px;
            }
            .tm-terms a{
                color: #2b63c0;
                text-decoration: none;
            }
            .tm-place-order{
                width: 100%;
                background: #5f7f70;
                color: #fff;
                border: none;
                border-radius: 8px;
                font-size: 20px;
                font-weight: 700;
                padding: 14px 20px;
                cursor: pointer;
            }
            @media (max-width: 768px){
                .tm-grid-3,
                .tm-grid-2{
                    grid-template-columns: 1fr;
                }
                .tm-box{
                    padding: 15px;
                }
                .tm-box-title{
                    font-size: 20px;
                }
                .tm-pay-options{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
                .tm-pay-card{
                    width: 100%;
                    min-width: 100%;
                }
                .tm-place-order{
                    font-size: 18px;
                }
            }
            
            
            
            











.tm-manual-payment-box{
    margin-top:14px;
    padding:14px;
    background:#f8fbf8;
    border:1px solid #dbe7db;
    border-radius:8px;
    padding-bottom: 0;
}

.tm-manual-title{
    margin:0 0 12px;
    font-size:16px;
    font-weight:700;
    color:#1f1f1f;
}

.tm-method-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-bottom:12px;
}

.tm-method-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 12px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    background:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:all .2s ease;
}

.tm-method-btn input{
    display:none;
}

.tm-method-btn.active{
    border-color:#2f6f57;
    background:#edf7f1;
    color:#1f513f;
}

.tm-payment-number-wrap label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:700;
    color:#444;
}

.tm-payment-number{
    background:#fff7e8;
    border:1px dashed #efb24b;
    border-radius:8px;
    padding:12px 14px;
    margin-bottom:12px;
    font-size:18px;
    font-weight:700;
    letter-spacing:.3px;
}

.tm-manual-payment-box input[type="text"]{
    width:100%;
    padding:10px 12px;
    border:1px solid #d9d9d9;
    border-radius:6px;
    box-sizing:border-box;
}







.tm-method-btn{
    padding: 12px 14px;
}

.tm-method-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.tm-method-inner img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.tm-method-text{
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}












@media (max-width: 767px){
    .tm-method-btn{
        padding: 0;
        min-height: 44px;
    }

    .tm-method-inner{
        gap: 8px;
    }

    .tm-method-inner img{
        width: 20px;
        height: 20px;
    }

    .tm-method-text{
        font-size: 14px;
    }
}



.tm-payment-number-wrap {
  margin-bottom: 21px!important; /* "Send money to this number" এবং "Sender Number" এর মধ্যে gap বাড়াতে */
}

.tm-field {
  margin-bottom: 21px!important; /* Sender Number ফিল্ড এবং Transaction ID ফিল্ডের মধ্যে gap বাড়াতে */
}

.tm-field {
  margin-bottom: 5px!important; /* Sender Number এবং Transaction ID এর মধ্যে gap কমানোর জন্য */
}









.dz-offer-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 6px;
}

.dz-offer-row .dz-discount{
    margin: 0 !important;
    min-width: 84px;
    height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-sizing: border-box;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
}

.dz-buy-now-btn{
    min-width: 84px;
    height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #458800;
    color: #fff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.dz-buy-now-btn:hover{
    background:#e85f00;
}

.dz-rating{
    margin-top: 4px;
}

@media (max-width: 767px){
    .dz-offer-row{
        gap: 6px;
        margin-top: 6px;
        margin-bottom: 5px;
    }

    .dz-offer-row .dz-discount,
    .dz-buy-now-btn{
        min-width: 68px;
        height: 21px;
        padding: 0 10px;
        font-size: 10px;
        margin-right: 1.5px;
    }
}










@media (min-width: 992px){
    .dz-offer-row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        width:100%;
        margin-top:8px;
        margin-bottom:6px;
        overflow:hidden;
    }

    .dz-offer-row .dz-discount{
        margin:0 !important;
        flex:1 1 auto;
        min-width:0;
        max-width:calc(100% - 92px);
        height:28px;
        padding:0 10px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:999px;
        box-sizing:border-box;
        font-size:11px;
        font-weight:700;
        line-height:1;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .dz-buy-now-btn{
        flex:0 0 84px;
        width:84px;
        max-width:84px;
        height:28px;
        padding:0;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:8px;
        font-size:11px;
        font-weight:700;
        line-height:1;
        white-space:nowrap;
        box-sizing:border-box;
        margin-right: 2px;
    }
}










.dz-flash-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  flex-wrap:nowrap;
}

.dz-flash-title{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  font-size:18px;
  font-weight:800;
  color:#22552b;
  line-height:1;
  flex:1 1 auto;
  min-width:0;
}

.dz-flash-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#7ea93f;
  color:#fff !important;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  padding:10px 16px;
  border-radius:14px;
  white-space:nowrap;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  flex:0 0 auto;
  margin-left:auto;
}





/* ===== COD ADVANCE PAYMENT BOX ===== */

.tm-cod-advance-box{
    margin-top: 18px;
    padding: 22px 20px;
    background: linear-gradient(180deg, #f8fcf7 0%, #f2f8f1 100%);
    border: 1.5px solid #cfe3c8;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(44, 88, 44, 0.08);
}

/* Badge */
.tm-cod-advance-box::before{
    content: "Advance Required";
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e4f2dd;
    color: #2f6a34;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Title */
.tm-cod-advance-box h4{
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
    color: #18351f;
}

/* Label */
.tm-cod-advance-box label{
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2a3d2f;
}

/* ===== SAME SIZE INPUT (MAIN FIX) ===== */

.tm-cod-advance-box input[type="text"]{
    width: 100%;
    height: 64px;
    padding: 0 20px;
    border: 1.5px solid #d5dfd2;
    border-radius: 16px;
    background: #ffffff;
    font-size: 17px;
    font-weight: 600;
    color: #1f2d22;
    box-sizing: border-box;
    display: block;
    transition: all 0.2s ease;
}

/* Focus */
.tm-cod-advance-box input[type="text"]:focus{
    outline: none;
    border-color: #7cab63;
    box-shadow: 0 0 0 4px rgba(124,171,99,0.14);
}

/* Readonly (Number box) */
.tm-cod-advance-box input[readonly]{
    background: #f7faf6;
    color: #204127;
    font-weight: 700;
}

/* Placeholder */
.tm-cod-advance-box input::placeholder{
    color: #8a9488;
    font-weight: 600;
}

/* Spacing */
.tm-cod-advance-box .tm-payment-number-wrap,
.tm-cod-advance-box .tm-field{
    margin-bottom: 16px;
}

/* Method buttons */
.tm-cod-advance-box .tm-method-buttons{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.tm-cod-advance-box .tm-method-btn{
    border: 1.5px solid #d7dfd5;
    border-radius: 14px;
    background: #fff;
    min-height: 62px;
    transition: all 0.2s ease;
}

.tm-cod-advance-box .tm-method-btn.active{
    border-color: #70955d;
    background: #edf7e8;
    box-shadow: 0 6px 18px rgba(90,136,76,0.12);
}

.tm-cod-advance-box .tm-method-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
}

.tm-cod-advance-box .tm-method-inner img{
    width: 28px;
    height: 28px;
}

.tm-cod-advance-box .tm-method-text{
    font-size: 15px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 767px){
    .tm-cod-advance-box{
        padding: 18px 16px;
        border-radius: 16px;
    }

    .tm-cod-advance-box input[type="text"]{
        height: 58px;
        font-size: 16px;
        border-radius: 14px;
    }
}


/* Copy feedback bubble */
.tm-copy-tip{
    position: absolute;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 8px;
    background: #1f2d22;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
    z-index: 9999;
}

.tm-copy-tip.show{
    opacity: 1;
    transform: translate(-50%, -6px);
}

/* cursor pointer for number */
#tm_cod_advance_box input[readonly]{
    cursor: pointer;
}










body.woocommerce-cart .wp-block-woocommerce-empty-cart-block{
  max-width:430px!important;
  margin:25px auto 90px!important;
  padding:28px 14px!important;
  background:#fff!important;
  border-radius:24px!important;
  box-shadow:0 14px 45px rgba(0,0,0,.10)!important;
  text-align:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block:before{
  content:"🛒";
  width:86px;
  height:86px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf5ef;
  border-radius:50%;
  font-size:40px;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title:before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator{
  display:none!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title{
  font-size:19px!important;
  font-weight:800!important;
  color:#111!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title:after{
  content:"Looks like you haven’t added anything yet.";
  display:block;
  margin-top:8px;
  font-size:13px;
  font-weight:400;
  color:#777;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2:nth-of-type(2){
  color:#0d4a3f!important;
  font-size:25px!important;
  font-weight:800!important;
  margin:32px 0 22px!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2:nth-of-type(2):after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  background:#0d4a3f;
  margin:10px auto 0;
  border-radius:20px;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products{
  display:grid!important;
  grid-template-columns:repeat(2,1fr)!important;
  gap:12px!important;
  padding:0!important;
  margin:0!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product{
  width:100%!important;
  height:260px!important;
  box-sizing:border-box!important;
  display:flex!important;
  flex-direction:column!important;
  background:#fff!important;
  border:1px solid #edf1ee!important;
  border-radius:18px!important;
  padding:10px!important;
  box-shadow:0 8px 22px rgba(0,0,0,.08)!important;
  text-align:center!important;
  overflow:hidden!important;
  position:relative!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image{
  height:95px!important;
  margin:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img{
  width:100%!important;
  height:95px!important;
  object-fit:contain!important;
  border-radius:12px!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title{
  height:42px!important;
  margin:8px 0 4px!important;
  font-size:12px!important;
  line-height:1.25!important;
  font-weight:800!important;
  color:#111!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price{
  height:22px!important;
  margin:0!important;
  font-size:13px!important;
  font-weight:800!important;
  color:#0d4a3f!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block del{
  font-size:10px!important;
  color:#999!important;
  margin-right:4px!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating{
  height:18px!important;
  margin:5px 0!important;
  font-size:11px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-button{
  margin-top:auto!important;
  height:32px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-button__link{
  background:#0d4a3f!important;
  color:#fff!important;
  border-radius:999px!important;
  padding:8px 12px!important;
  font-size:11px!important;
  font-weight:700!important;
  line-height:1!important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale{
  position:absolute!important;
  
  background:#0d4a3f!important;
  color:#fff!important;
  border:0!important;
  border-radius:20px!important;
  
  font-size:9px!important;
  font-weight:800!important;
  width:auto!important;
}

@media(max-width:380px){
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block{
    padding:24px 10px!important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product{
    height:255px!important;
    padding:8px!important;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img{
    height:90px!important;
  }
}




.dz-pimg-wrap img{
    position: relative;
    right: 0.1px;
}



.mx-label{
    font-family: 'Hind Siliguri', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0px;
}