/* DMCTN Global Boxed Layout – TẠO BỞI BÙI VĂN TĨNH */
:root{
  --dmctn-boxed-max: 1200px;
  --dmctn-gutter: 20px;
}
.dmctn-box{
  max-width: var(--dmctn-boxed-max);
  margin: 0 auto;
  padding-inline: var(--dmctn-gutter);
  box-sizing: border-box;
}

/* Không phá layout mobile/tablet */
@media (max-width: 1024px){
  :root{ --dmctn-boxed-max: 100%; --dmctn-gutter: 16px; }
}

/* Nếu có cụm nút nổi dùng class này thì né mép khung */
.dmctn-floating{
  right: clamp(8px, (100vw - var(--dmctn-boxed-max))/2 - 56px, 24px);
  bottom: 28px;
  z-index: 999;
}

/* Chống tràn ngang */
body{ overflow-x: hidden; }
.entry-content img, .entry-content video, .entry-content table,
.woocommerce div.product div.images img {
  max-width: 100%; height: auto;
}
.entry-content table{ width: 100%; display: block; overflow-x: auto; }
