/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2026 | 12:27:16 */
/* ===== TBS – Readmore cho MÔ TẢ DÀI (tab description) ===== */
body.single-product .tbs-desc-wrap{
  position: relative;
}

body.single-product .tbs-desc-wrap.is-collapsed{
  max-height: 520px;          /* chỉnh độ cao rút gọn ở đây */
  overflow: hidden;
}

/* lớp mờ cuối đoạn khi đang rút gọn */
body.single-product .tbs-desc-wrap.is-collapsed:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:120px;
  pointer-events:none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

/* nút xem thêm */
body.single-product .tbs-desc-toggle{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  margin-top:12px;
  font-weight:500;
  color:#222222;
  cursor:pointer;
  user-select:none;
}

body.single-product .tbs-desc-toggle svg{
  width:14px; height:14px;
  fill: currentColor;
}
body.single-product .tbs-desc-toggle svg{
  transition: transform .2s ease;
}

body.single-product .tbs-desc-toggle.is-open svg{
  transform: rotate(180deg);
}
