/* Đình Nam UI — bám layout Tuấn Sang (desktop) */

:root {
  --ts-blue: #1f76b8;
  --ts-blue-deep: #163d7a;
  --ts-title: #34366d;
  --ts-red: #e31c23;
  --ts-red-dark: #c4141a;
  --ts-bg: #eef3f8;
  --ts-font: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  --ts-serif: 'Roboto-Bold', Arial, Helvetica, sans-serif;
  --html-bg-website: #1f76b8;
  --html-sc-website: #e31c23;
}

body, body.body_load {
  font-family: var(--ts-font) !important;
  background: #fff !important;
  color: #222;
  font-size: 15px !important;
}
#wrapper { background: #fff !important; }
.container-ts { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

/* Top bar */
.ts-topbar { background: var(--ts-blue); color: #fff; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; font-size: 13px; }
.ts-topbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; min-height: 36px; padding: 6px 0; }
.ts-topbar a, .ts-topbar span { color: #fff !important; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ts-topbar__sep { opacity: .55; }
.ts-topbar__addr { max-width: 48vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Thanh liên hệ gọn trên mobile */
.ts-mobile-bar {
  display: none;
  background: var(--ts-blue);
  color: #fff;
  font-size: 12px;
}
.ts-mobile-bar__item {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  border-right: 1px solid rgba(255,255,255,.2);
}
.ts-mobile-bar__item:last-child { border-right: 0; }
.ts-mobile-bar__item i { font-size: 13px; }
.ts-mobile-bar__item img { flex-shrink: 0; }

@media (max-width: 991px) {
  .ts-topbar { display: none; }
  .ts-mobile-bar { display: flex; }
}

/* Header */
.ts-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid #e8ecf1; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.ts-header__row { display: flex; align-items: center; gap: 16px; min-height: 84px; padding: 6px 0; }
.ts-header__logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.ts-header__logo img { max-height: 68px; width: auto; object-fit: contain; }
.ts-header__logo-text { font-weight: 700; color: var(--ts-blue); letter-spacing: .06em; text-transform: uppercase; }
.ts-nav { flex: 1; display: flex; justify-content: flex-end; }
.ts-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 2px; }
.ts-nav__item { position: relative; list-style: none; }
.ts-nav__item > a {
  display: block; padding: 8px 12px; color: var(--ts-blue); text-decoration: none;
  font-weight: 600; font-size: 14px; letter-spacing: .03em; text-transform: uppercase; border-radius: 6px; white-space: nowrap;
}
.ts-nav__item > a:hover, .ts-nav__item.is-active > a { background: var(--ts-blue); color: #fff !important; }
.ts-nav__sub {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff;
  border-radius: 8px; box-shadow: 0 10px 28px rgba(0,0,0,.12); list-style: none; margin: 0; padding: 6px 0; z-index: 40;
}
.ts-nav__item.has-child:hover > .ts-nav__sub { display: block; }
.ts-nav__sub a { display: block; padding: 9px 14px; color: #333; text-decoration: none; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 500; text-transform: none; }
.ts-nav__sub a:hover { background: #f0f6fc; color: var(--ts-blue); }
.ts-header__actions { display: flex; align-items: center; gap: 8px; }
.ts-header__iconbtn { width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; border-radius: 8px; font-size: 18px; color: #111; }
.ts-header__iconbtn i { color: currentColor; opacity: 1; }
.ts-header__iconbtn:hover { background: #f0f6fc; color: var(--ts-blue); }
.ts-header__book { background: var(--ts-red); color: #fff !important; text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: .03em; text-transform: uppercase; padding: 9px 14px; border-radius: 6px; }
.ts-header__book:hover { background: var(--ts-red-dark); }
.ts-header__call-m { display: none; text-decoration: none; }
.ts-header__burger { display: none; }
@media (max-width: 1100px) {
  .ts-nav, .ts-header__book { display: none; }
  .ts-header__burger, .ts-header__call-m { display: inline-flex; align-items: center; justify-content: center; }
  .ts-header__row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 8px 0;
  }
  .ts-header__actions { display: contents; }
  .ts-header__burger { grid-column: 1; grid-row: 1; background: var(--ts-blue); color: #fff !important; box-shadow: 0 4px 10px rgba(31,118,184,.35); }
  .ts-header__burger:hover { background: var(--ts-blue-dark); }
  .ts-header__logo { grid-column: 2; grid-row: 1; justify-self: center; }
  .ts-header__logo img { max-height: 52px; }
  #ts-search-open { grid-column: 3; grid-row: 1; justify-self: end; }
  .ts-header__call-m { grid-column: 4; grid-row: 1; color: var(--ts-red) !important; }
  .ts-header__iconbtn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .ts-header__logo img { max-height: 44px; }
  .ts-header__iconbtn { width: 38px; height: 38px; font-size: 16px; }
  .ts-mobile-bar__item span { font-size: 11px; }
}

/* Drawer */
.ts-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: .25s; z-index: 1100; }
.ts-drawer-overlay.is-open { opacity: 1; visibility: visible; }
.ts-drawer { position: fixed; top: 0; left: 0; width: min(300px, 86vw); height: 100%; background: #fff; z-index: 1101; transform: translateX(-100%); transition: .3s; display: flex; flex-direction: column; }
.ts-drawer.is-open { transform: translateX(0); }
.ts-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid #eee; }
.ts-drawer__nav { list-style: none; margin: 0; padding: 0; overflow: auto; flex: 1; }
.ts-drawer__item { border-bottom: 1px solid #eee; }
.ts-drawer__row { display: flex; align-items: stretch; }
.ts-drawer__row > a {
  flex: 1;
  display: block;
  padding: 14px 16px;
  color: #222;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-drawer__item.is-active > .ts-drawer__row > a { color: var(--ts-blue); }
.ts-drawer__toggle {
  width: 48px;
  flex-shrink: 0;
  border: 0;
  border-left: 1px solid #eee;
  background: #f8f8f8;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ts-drawer__item.is-open .ts-drawer__toggle i { transform: rotate(180deg); }
.ts-drawer__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f7f9fc;
  display: none;
}
.ts-drawer__item.is-open > .ts-drawer__sub { display: block; }
.ts-drawer__sub a {
  display: block;
  padding: 10px 16px 10px 28px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  border-top: 1px solid #e8eaed;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-drawer__sub a:hover { color: var(--ts-blue); background: #fff; }
.ts-drawer__cta { padding: 16px; border-top: 1px solid #eee; display: grid; gap: 8px; }
body:has(.ts-header) .wrap-top,
body:has(.ts-header) .section-header,
body:has(.ts-header) .mobile-header,
body:has(.ts-header) .mobile-menu { display: none !important; }

/* ===== HERO: tỉ lệ như banner Tuấn Sang (~33% height) ===== */
.ts-hero-slide { background: #fff; }
.ts-hero-slide__frame { width: 100%; }
.ts-hero-slide__canvas {
  position: relative;
  width: 100%;
  padding-top: 33.333%; /* giống --ratio Tuấn Sang */
  background: #fff;
  overflow: hidden;
}
.ts-hero-slide__canvas > *:not(.ts-hero-slide__wavebg) {
  position: absolute;
  z-index: 2;
}
.ts-hero-slide__line {
  top: 8%; left: 50%; transform: translateX(-50%);
  width: min(220px, 28%); height: 1px; background: #777;
}
.ts-hero-slide__waves-icon {
  top: 11%; left: 50%; transform: translateX(-50%);
}
.ts-hero-slide__cols {
  top: 28%; left: 50%; transform: translateX(-50%);
  width: min(1100px, 94%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.ts-hero-slide__name {
  margin: 0; text-align: center; white-space: nowrap;
  font-family: var(--ts-serif);
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 52px);
  line-height: 1.05;
  color: #1a4f8c;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.ts-hero-slide__side {
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: clamp(10px, 1.05vw, 13px);
  line-height: 1.45;
  color: #111;
}
.ts-hero-slide__side--left { text-align: left; text-transform: uppercase; }
.ts-hero-slide__side--right { text-align: left; }
.ts-hero-slide__side a { color: #111; font-weight: 700; text-decoration: none; }
.ts-hero-slide__wavebg {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%; z-index: 1; pointer-events: none;
}
.ts-hero-slide__wavebg svg { width: 100%; height: 100%; display: block; }
@media (max-width: 767px) {
  .ts-hero-slide__canvas { padding-top: 78%; }
  .ts-hero-slide__cols { top: 22%; grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .ts-hero-slide__name { order: -1; white-space: normal; font-size: clamp(24px, 7vw, 34px); }
  .ts-hero-slide__side--left, .ts-hero-slide__side--right { text-align: center; }
}

/* Blocks */
.ts-block { padding: 48px 0; background: #fff; }
.ts-block--soft { background: var(--ts-bg); }
.ts-h2 {
  margin: 0 0 28px; text-align: center;
  font-size: clamp(24px, 2.6vw, 30px); font-weight: 600; color: var(--ts-title);
}
.ts-h2--left { text-align: left; }
.ts-eyebrow { margin: 0 0 4px; color: var(--ts-blue); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: 14px; }
.ts-eyebrow--muted { color: #888; font-weight: 500; text-transform: none; letter-spacing: 0; }
.t-center { text-align: center; }
.ts-lead { font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; color: #666; line-height: 1.55; margin: 0 0 14px; }
.ts-btn-blue {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ts-blue); color: #fff !important; text-decoration: none;
  font-weight: 500; font-size: 15px; padding: 10px 28px; border-radius: 13px;
}
.ts-btn-blue:hover { background: var(--ts-blue-deep); }

/* ===== Dịch vụ — widget_service_style_1 Tuấn Sang ===== */
.ts-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .ts-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ts-svc-grid { grid-template-columns: 1fr; }
}

.ts-svc-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 15px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ts-svc-item__img {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #dce6f0;
}

.ts-svc-item__img a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-svc-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ts-svc-item:hover .ts-svc-item__img img {
  transform: scale(1.06);
}

.ts-svc-item__body {
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ts-svc-item__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.ts-svc-item__title a {
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ts-svc-item:hover .ts-svc-item__title a {
  color: var(--ts-blue);
}

.ts-svc-item__desc {
  margin: 10px 0 0;
  color: #6c757d;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ts-svc-item__more {
  margin-top: 16px;
}

.ts-svc-item__more a {
  display: inline-block;
  background: var(--ts-blue);
  color: #fff !important;
  text-decoration: none;
  font-family: var(--ts-font);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 36px;
  border-radius: 13px;
  transition: background 0.2s;
}

.ts-svc-item__more a:hover {
  background: var(--ts-blue-deep);
}

.ts-svc-item__more i {
  margin-left: 8px;
}

/* About + products */
.ts-about-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .ts-about-row { grid-template-columns: 1fr; } }
.ts-exp {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--ts-blue); color: #fff; border-radius: 10px; min-width: 90px; padding: 12px 14px; margin: 0 0 16px;
}
.ts-exp strong { font-size: 28px; line-height: 1; }
.ts-exp span { font-size: 11px; text-transform: uppercase; }
.ts-ticks { list-style: none; margin: 0; padding: 0; }
.ts-ticks li {
  position: relative; padding: 6px 0 6px 22px; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; font-size: 14.5px; line-height: 1.4;
}
.ts-ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--ts-blue); font-weight: 700; }
.ts-about-prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 600px) { .ts-about-prods { grid-template-columns: repeat(2, 1fr); } }
.ts-mini-prod { background: #fff; border: 1px solid #e8eef5; border-radius: 12px; padding: 10px; text-align: center; }
.ts-mini-prod img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.ts-mini-prod__name { display: block; margin-top: 8px; color: #222; text-decoration: none; font-size: 13px; line-height: 1.3; }

/* Stats */
.ts-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 800px) { .ts-stats { grid-template-columns: repeat(2, 1fr); } }
.ts-stat {
  background: #fff; border-radius: 14px; padding: 22px 12px; text-align: center;
  box-shadow: 0 4px 16px rgba(22,61,122,.07);
}
.ts-stat strong { display: block; font-size: 34px; color: var(--ts-blue); line-height: 1.1; }
.ts-stat span { display: block; margin-top: 6px; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; color: #666; font-size: 13px; }

/* Pricing */
.ts-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .ts-price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.ts-price {
  position: relative; background: #fff; border: 1px solid #e5ebf2; border-radius: 16px; padding: 28px 22px 24px;
  box-shadow: 0 6px 20px rgba(22,61,122,.06);
}
.ts-price--hot { border-color: var(--ts-blue); box-shadow: 0 10px 28px rgba(31,118,184,.18); }
.ts-price__tag {
  position: absolute; top: -12px; right: 16px; background: var(--ts-red); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 4px 10px; border-radius: 99px;
}
.ts-price h3 { margin: 0 0 8px; font-size: 20px; color: var(--ts-title); }
.ts-price__note { margin: 0 0 10px; color: #888; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; font-size: 13px; }
.ts-price__num { margin: 0 0 14px; color: var(--ts-blue); font-size: 15px; }
.ts-price__num b { font-size: 28px; }
.ts-price ul { margin: 0 0 18px; padding: 0 0 0 18px; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; color: #555; font-size: 13.5px; line-height: 1.55; }

/* Reviews + Tin tức — Owl slide */
.ts-reviews-slide,
.ts-news-slide {
  position: relative;
  padding: 0;
  overflow: visible;
}
.ts-reviews-slide .owl-stage,
.ts-news-slide .owl-stage {
  display: flex;
  align-items: stretch;
}
.ts-reviews-slide .owl-item,
.ts-news-slide .owl-item {
  display: flex;
  height: auto;
}
.ts-reviews-slide .item,
.ts-news-slide .item {
  width: 100%;
  display: flex;
  height: 100%;
}
/* Ẩn dots */
.ts-reviews-slide .owl-dots,
.ts-news-slide .owl-dots {
  display: none !important;
}

/* Nút prev/next — tròn trắng, icon xanh, 2 bên */
.ts-reviews-slide .owl-nav,
.ts-news-slide .owl-nav {
  position: static;
  margin: 0 !important;
  height: 0;
  pointer-events: none;
}
.ts-reviews-slide.owl-theme .owl-nav [class*='owl-'],
.ts-news-slide.owl-theme .owl-nav [class*='owl-'],
.ts-reviews-slide .owl-nav button,
.ts-news-slide .owl-nav button,
.ts-reviews-slide .owl-nav .owl-prev,
.ts-news-slide .owl-nav .owl-prev,
.ts-reviews-slide .owl-nav .owl-next,
.ts-news-slide .owl-nav .owl-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--ts-blue) !important;
  box-shadow: 0 6px 18px rgba(22, 61, 122, 0.18) !important;
  pointer-events: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  z-index: 5;
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
}
/* Nút nằm trong vùng item (mép trái/phải slide) */
.ts-reviews-slide .owl-nav .owl-prev,
.ts-news-slide .owl-nav .owl-prev { left: 10px !important; }
.ts-reviews-slide .owl-nav .owl-next,
.ts-news-slide .owl-nav .owl-next { right: 10px !important; left: auto !important; }
/* Tin tức: căn giữa theo khối ảnh phía trên card */
.ts-news-slide .owl-nav .owl-prev,
.ts-news-slide .owl-nav .owl-next {
  top: 32% !important;
}
.ts-reviews-slide.owl-theme .owl-nav [class*='owl-']:hover,
.ts-news-slide.owl-theme .owl-nav [class*='owl-']:hover,
.ts-reviews-slide .owl-nav button:hover,
.ts-news-slide .owl-nav button:hover {
  background: var(--ts-blue) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(31, 118, 184, 0.35) !important;
}
.ts-reviews-slide .owl-nav span,
.ts-news-slide .owl-nav span {
  display: block !important;
  width: 100%;
  height: 100%;
  font-size: 0 !important;
  line-height: 0 !important;
  background: none !important;
}
.ts-reviews-slide .owl-nav .owl-prev span::before,
.ts-news-slide .owl-nav .owl-prev span::before,
.ts-reviews-slide .owl-nav .owl-next span::before,
.ts-news-slide .owl-nav .owl-next span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.ts-reviews-slide .owl-nav .owl-prev span::before,
.ts-news-slide .owl-nav .owl-prev span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%231f76b8' d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
}
.ts-reviews-slide .owl-nav .owl-next span::before,
.ts-news-slide .owl-nav .owl-next span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%231f76b8' d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
}
.ts-reviews-slide .owl-nav .owl-prev:hover span::before,
.ts-news-slide .owl-nav .owl-prev:hover span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
}
.ts-reviews-slide .owl-nav .owl-next:hover span::before,
.ts-news-slide .owl-nav .owl-next:hover span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
}
@media (max-width: 600px) {
  .ts-reviews-slide.owl-theme .owl-nav [class*='owl-'],
  .ts-news-slide.owl-theme .owl-nav [class*='owl-'] {
    width: 34px !important;
    height: 34px !important;
  }
  .ts-reviews-slide .owl-nav .owl-prev,
  .ts-news-slide .owl-nav .owl-prev { left: 6px !important; }
  .ts-reviews-slide .owl-nav .owl-next,
  .ts-news-slide .owl-nav .owl-next { right: 6px !important; }
}

.ts-review {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(22, 61, 122, 0.07);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.ts-review p { margin: 0 0 12px; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; color: #555; line-height: 1.55; font-size: 14px; }
.ts-review cite { font-style: normal; font-weight: 600; color: var(--ts-title); }
.ts-review cite span { font-weight: 400; color: #888; font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif; font-size: 13px; }

/* ===== Tin tức card ===== */
.ts-post-item {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.ts-post-item__img {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 10px;
  background: #dce6f0;
}

.ts-post-item__img a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-post-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ts-post-item:hover .ts-post-item__img img {
  transform: scale(1.05);
}

.ts-post-item__body {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ts-post-item__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}

.ts-post-item__title a {
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ts-post-item:hover .ts-post-item__title a {
  color: var(--ts-blue);
}

.ts-post-item__desc {
  margin: 8px 0 0;
  color: #6c757d;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ts-post-item__info {
  margin-top: 10px;
}

.ts-post-item__date {
  display: inline-block;
  padding: 3px 10px;
  background: var(--ts-blue);
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}

.ts-post-item__date i {
  margin-right: 4px;
}

.ts-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #888;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}

/* Float CTAs */
.ts-float-call {
  position: fixed; left: 14px; bottom: 18px; z-index: 950;
  display: inline-flex; align-items: center; text-decoration: none;
  filter: drop-shadow(0 6px 14px rgba(227,28,35,.35));
}
.ts-float-call__icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--ts-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px; z-index: 1;
  animation: ts-pulse 1.8s ease infinite;
}
.ts-float-call__num {
  background: #fff; color: var(--ts-red); font-weight: 700; font-size: 17px;
  padding: 8px 14px 8px 20px; margin-left: -10px; border-radius: 0 999px 999px 0; border: 1px solid rgba(227,28,35,.25); border-left: 0;
}
@keyframes ts-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(227,28,35,.45); }
  50% { box-shadow: 0 0 0 12px rgba(227,28,35,0); }
}
.ts-tools {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 940;
  background: var(--ts-red); border-radius: 18px 0 0 18px; padding: 10px 6px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -3px 4px 16px rgba(227,28,35,.3);
}
.ts-tools a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  color: #fff !important; font-size: 17px; text-decoration: none; border-radius: 10px;
}
.ts-tools a:hover { background: rgba(255,255,255,.15); }
.ts-tools__zalo-link {
  text-decoration: none !important;
}
.ts-tools__zalo {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}
body:has(.ts-tools) .tool { display: none !important; }

/* Footer */
.footer { margin-top: 0 !important; padding-top: 0 !important; }
.box-footer {
  background: #0a2748 !important;
  padding: 36px 0 28px !important;
  margin: 0 !important;
}
.box-footer .grid.wide,
.box-footer .row,
.box-footer .col,
.box-footer .box-mg,
.box-footer .desc-footer,
.box-footer .title-tmp-footer {
  background: transparent !important;
  box-shadow: none !important;
}
.box-footer,
.box-footer p,
.box-footer span,
.box-footer li,
.box-footer div {
  color: rgba(255, 255, 255, 0.9) !important;
}
.box-footer a,
.box-footer a span { color: #fff !important; }
.box-footer a:hover { color: #ffe66d !important; }
.box-footer .title-footer,
.box-footer .title-footer span {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}
.box-footer .items-mxh-footer {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  color: #fff !important;
  min-height: 40px;
}
.box-footer .items-mxh-footer img {
  filter: brightness(0) invert(1);
}
.section-copy { background: #061a30 !important; margin: 0 !important; }
.copy-text, .copy-text--company { color: #fff !important; }

/* Search */
.ts-search-panel { display: none; position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,.5); align-items: flex-start; justify-content: center; padding-top: 15vh; }
.ts-search-panel.is-open { display: flex; }
.ts-search-panel form { background: #fff; border-radius: 10px; padding: 12px; width: min(460px, 92vw); display: flex; gap: 8px; }
.ts-search-panel input { flex: 1; border: 1px solid #ddd; border-radius: 8px; padding: 10px 12px; font-size: 15px; }
.ts-search-panel button { background: var(--ts-blue); color: #fff; border: 0; border-radius: 8px; padding: 0 14px; font-family: var(--ts-font); font-weight: 600; cursor: pointer; }
@media (max-width: 991px) {
  .container-ts { width: min(1200px, calc(100% - 28px)); }
  .ts-header { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
  .ts-drawer { width: min(320px, 88vw); }
  .ts-search-panel { padding-top: 12vh; align-items: flex-start; }
  .ts-search-panel form {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    width: min(92vw, 400px);
  }
  .ts-search-panel input { width: 100%; padding: 12px 14px; font-size: 16px; }
  .ts-search-panel button { width: 100%; padding: 12px; font-size: 15px; }
  .ts-search-panel #ts-search-close { width: 100%; padding: 12px; }
  .ts-float-call__num { display: none; }
  .ts-float-call__icon { width: 48px; height: 48px; font-size: 18px; }
  .ts-tools {
    top: auto;
    bottom: 80px;
    transform: none;
    border-radius: 14px 0 0 14px;
    padding: 8px 5px;
  }
  .ts-tools a { width: 38px; height: 38px; font-size: 15px; }
}

.title-all { font-family: var(--ts-font) !important; color: var(--ts-title) !important; }
.btn-templateP, .form--submit { background: var(--ts-blue) !important; border-radius: 13px !important; color: #fff !important; }

/* ========== BREADCRUMB + TITLE ========== */
.ts-crumbbar {
  background: #f4f7fb;
  border-bottom: 1px solid #e4ebf3;
  padding: 12px 0;
}
.ts-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.ts-breadcrumb li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}
.ts-breadcrumb li:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #9aafc2;
  border-top: 1.5px solid #9aafc2;
  transform: rotate(45deg);
  margin: 0 2px 0 4px;
  flex-shrink: 0;
}
.ts-crumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 280px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dde7f1;
  color: #3a5168 !important;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 2px rgba(22, 61, 122, 0.04);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
a.ts-crumb:hover {
  border-color: var(--ts-blue);
  color: var(--ts-blue) !important;
  box-shadow: 0 2px 8px rgba(31, 118, 184, 0.12);
}
.ts-crumb__icon {
  display: inline-flex;
  color: var(--ts-blue);
  flex-shrink: 0;
}
.ts-crumb--current {
  background: var(--ts-blue);
  border-color: var(--ts-blue);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(31, 118, 184, 0.22);
}

.ts-page-title {
  background: #fff;
  border-bottom: 1px solid #e8eef5;
  padding: 18px 0 16px;
}
.ts-page-title h1 {
  margin: 0;
  position: relative;
  padding-left: 14px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ts-title);
  font-family: 'Roboto-Bold', Arial, Helvetica, sans-serif;
}
.ts-page-title h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #1f76b8, #163d7a);
}

/* legacy alias */
.ts-page-banner { display: contents; }
.ts-page-banner__title { display: none; }

.ts-inner { padding: 28px 0 32px; background: #f5f8fc; }
.ts-inner__lead {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
  border: 1px solid #e8eef5;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  color: #555;
  line-height: 1.6;
}
.ts-inner__prose { margin-top: 36px; background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e8eef5; }

.ts-post-list,
.ts-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .ts-post-list,
  .ts-prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ts-post-list,
  .ts-prod-grid { grid-template-columns: 1fr; }
}
.ts-post-list > .ts-pagination,
.ts-prod-grid > .ts-pagination {
  grid-column: 1 / -1;
}

.ts-prod-item {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 14px rgba(22,61,122,.06);
}
.ts-prod-item__img {
  display: block;
  aspect-ratio: 1;
  background: #f0f5fa;
  overflow: hidden;
}
.ts-prod-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s;
}
.ts-prod-item:hover .ts-prod-item__img img { transform: scale(1.05); }
.ts-prod-item__body {
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ts-prod-item__title { margin: 0; font-size: 15px; line-height: 1.35; }
.ts-prod-item__title a {
  color: #222;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-prod-item__title a:hover { color: var(--ts-blue); }
.ts-prod-item__price {
  color: var(--ts-blue);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto-Bold', Arial, Helvetica, sans-serif;
}
.ts-prod-item__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.ts-prod-item__btn {
  display: inline-block;
  background: var(--ts-blue);
  color: #fff !important;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
.ts-prod-item__btn--ghost {
  background: #fff;
  color: var(--ts-blue) !important;
  border: 1px solid var(--ts-blue);
}
.ts-prod-item__btn:hover { background: var(--ts-blue-deep); color: #fff !important; }
.ts-prod-item__btn--ghost:hover { background: var(--ts-blue); color: #fff !important; }

/* ===== Chi tiết sản phẩm ===== */
.ts-prod-detail__top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 300px;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .ts-prod-detail__top { grid-template-columns: 1fr 1fr; }
  .ts-prod-aside { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .ts-prod-detail__top { grid-template-columns: 1fr; }
  .ts-prod-aside { grid-template-columns: 1fr; }
}
.ts-prod-gallery,
.ts-prod-info {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 16px;
}
.ts-prod-gallery__main {
  display: block;
  aspect-ratio: 1;
  background: #f3f7fb;
  border-radius: 10px;
  overflow: hidden;
}
.ts-prod-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ts-prod-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.ts-prod-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid #e5edf5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.ts-prod-thumb.is-active,
.ts-prod-thumb:hover { border-color: var(--ts-blue); }
.ts-prod-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ts-prod-info__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--ts-title);
  line-height: 1.3;
}
.ts-prod-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: #777;
  font-size: 13px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-prod-info__meta i { color: #f5b400; margin-right: 4px; }
.ts-prod-info__meta .fa-eye,
.ts-prod-info__meta .fa-barcode { color: var(--ts-blue); }
.ts-prod-info__price {
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #f0f7fd;
  border-radius: 10px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-prod-info__price em { font-style: normal; color: #666; margin-right: 6px; }
.ts-prod-info__price strong { color: var(--ts-red); font-size: 26px; }
.ts-prod-info__lead {
  margin: 0 0 12px;
  color: #555;
  line-height: 1.55;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-prod-info__facts {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  color: #444;
}
.ts-prod-info__facts li { padding: 6px 0; }
.ts-prod-info__facts i { color: var(--ts-blue); margin-right: 6px; }
.ts-prod-info__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.ts-prod-support__body { padding: 14px 16px 16px; }
.ts-prod-support__body p {
  margin: 0 0 10px;
  font-size: 13px;
  color: #666;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-prod-support__body .form--control {
  width: 100%;
  border: 1px solid #d5e0ec;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-sizing: border-box;
}
.ts-prod-support__btn { width: 100%; border: 0; cursor: pointer; text-align: center; }
.ts-prod-support__links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
}
.ts-prod-support__links a { color: var(--ts-blue); text-decoration: none; font-weight: 600; }

.ts-prod-strengths ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px 16px;
}
.ts-prod-strengths li {
  padding: 10px 0;
  border-bottom: 1px solid #eef2f7;
}
.ts-prod-strengths li:last-child { border-bottom: 0; }
.ts-prod-strengths strong {
  display: block;
  color: var(--ts-title);
  margin-bottom: 4px;
  font-size: 14px;
}
.ts-prod-strengths span {
  display: block;
  color: #777;
  font-size: 13px;
  line-height: 1.45;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}

.ts-prod-tabs {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  margin-bottom: 28px;
  overflow: hidden;
}
.ts-prod-tabs__head {
  margin: 0;
  padding: 14px 20px;
  background: var(--ts-blue);
  color: #fff;
  font-size: 18px;
}
.ts-prod-tabs__body { border: 0; border-radius: 0; }

.ts-prod-related {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 18px 18px 8px;
}
.ts-prod-related__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ts-prod-related__head h2 {
  margin: 0;
  font-size: 20px;
  color: var(--ts-title);
}
.ts-prod-related__head a {
  color: var(--ts-blue);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-prod-related-slide { position: relative; padding: 0 8px 10px; }
.ts-prod-related-slide .owl-stage { display: flex; align-items: stretch; }
.ts-prod-related-slide .owl-item { display: flex; }
.ts-prod-related-slide .item { width: 100%; display: flex; }
.ts-prod-related-slide .owl-dots { display: none !important; }
.ts-prod-related-slide.owl-theme .owl-nav [class*='owl-'] {
  position: absolute !important;
  top: 40% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(22,61,122,.18) !important;
  z-index: 3;
}
.ts-prod-related-slide .owl-nav .owl-prev { left: 0 !important; }
.ts-prod-related-slide .owl-nav .owl-next { right: 0 !important; left: auto !important; }
.ts-prod-related-slide .owl-nav span {
  display: block !important;
  width: 100%;
  height: 100%;
  font-size: 0 !important;
}
.ts-prod-related-slide .owl-nav .owl-prev span::before,
.ts-prod-related-slide .owl-nav .owl-next span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.ts-prod-related-slide .owl-nav .owl-prev span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%231f76b8' d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
}
.ts-prod-related-slide .owl-nav .owl-next span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%231f76b8' d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
}

.ts-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.ts-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ts-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d9e4ef;
  color: #333 !important;
  text-decoration: none;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-pagination a.is-active,
.ts-pagination a:hover {
  background: var(--ts-blue);
  border-color: var(--ts-blue);
  color: #fff !important;
}

.ts-prose {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #e8eef5;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}
.ts-prose--compact { padding: 0; border: 0; background: transparent; }
.ts-prose img { max-width: 100%; height: auto; }
.ts-prose h2, .ts-prose h3 { color: var(--ts-title); margin: 1.2em 0 .5em; }

.ts-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  color: #666;
}

.ts-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .ts-article-layout { grid-template-columns: 1fr; }
}
.ts-article {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #e8eef5;
}
.ts-article__head h1 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--ts-title);
  line-height: 1.3;
}
.ts-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #777;
}
.ts-article__meta i { margin-right: 4px; color: var(--ts-blue); }
.ts-article__body { padding: 0; border: 0; }

.ts-sidebar__box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  overflow: hidden;
}
.ts-sidebar__title {
  margin: 0;
  padding: 12px 16px;
  background: var(--ts-blue);
  color: #fff;
  font-size: 16px;
}
.ts-related { list-style: none; margin: 0; padding: 10px; }
.ts-related li { margin: 0 0 10px; }
.ts-related a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.ts-related__img {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #eef3f8;
}
.ts-related__img img { width: 100%; height: 100%; object-fit: cover; }
.ts-related__txt strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  color: #222;
  line-height: 1.35;
}
.ts-related a:hover strong { color: var(--ts-blue); }
.ts-related__txt em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 12px;
  color: #999;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}

.ts-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .ts-contact-grid { grid-template-columns: 1fr; }
}
.ts-contact-info,
.ts-contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e8eef5;
}
.ts-contact-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  color: #444;
  line-height: 1.45;
}
.ts-contact-list i { color: var(--ts-blue); margin-top: 3px; }
.ts-contact-list a { color: var(--ts-blue); text-decoration: none; }
.ts-contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ts-btn-blue--outline {
  background: #fff !important;
  color: var(--ts-blue) !important;
  border: 1px solid var(--ts-blue);
}
.ts-contact-form-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--ts-title);
}
.ts-form { display: flex; flex-direction: column; gap: 12px; }
.ts-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .ts-form__row { grid-template-columns: 1fr; }
}
.ts-form .form--control,
.ts-form textarea {
  width: 100%;
  border: 1px solid #d5e0ec;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
.ts-form textarea { min-height: 120px; resize: vertical; }
.ts-form__captcha {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}
.ts-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  background: #fff;
}
.ts-map iframe { width: 100% !important; min-height: 360px; display: block; border: 0; }

.ts-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ts-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ts-video-grid { grid-template-columns: 1fr; }
}
.ts-video-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  box-shadow: 0 4px 14px rgba(22,61,122,.06);
}
.ts-video-item__media {
  background: #0b1220;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ts-video-item__media video,
.ts-video-item__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.ts-empty-box {
  background: #fff;
  border: 1px dashed #c5d5e6;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  color: #666;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-empty-box p { margin: 0; line-height: 1.55; }
.ts-video-item__title {
  margin: 0;
  padding: 12px 14px;
  font-size: 15px;
  text-align: center;
  color: #222;
}

.ts-cta-band {
  background: linear-gradient(120deg, #163d7a, #1f76b8);
  padding: 28px 0;
  margin: 0 !important;
}
.ts-cta-band__row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 900px) {
  .ts-cta-band__row { grid-template-columns: 1fr; text-align: center; }
}
.ts-cta-band__copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
}
.ts-cta-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.ts-cta-band__form {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.ts-cta-band__form .form--control {
  flex: 1;
  border: 0;
  padding: 10px 12px;
  min-width: 0;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-cta-band__form .form--submit {
  border: 0;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
}
.ts-cta-band__hotline span {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
}
.ts-cta-band__hotline a {
  color: #ffe66d !important;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}

/* Product detail overrides */
.product-detail__sc { background: #f5f8fc; padding-bottom: 30px; }
.product-detail__sc .bg_form_all,
.product-detail__sc .wrapper-postsDetail__box {
  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid #e8eef5;
  box-shadow: none !important;
}
.product-detail__sc .title_product_detial span {
  color: var(--ts-title) !important;
  font-size: 24px !important;
}

