/* TOPAPP — layout header/footer toàn site */
body.index .vshd,
body.site-page .vshd {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

body.index,
body.site-page {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(18, 184, 134, 0.12), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(57, 119, 243, 0.12), transparent 28%),
    var(--bg);
}

body.index #hlcenter {
  float: none;
  padding: 0 !important;
  border: none !important;
}

body.index #container_fullwidth,
body.index .home_content {
  float: none;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

body.site-page #hlcenter {
  float: none;
  padding: 28px max(24px, calc((100vw - 1180px) / 2)) 48px !important;
  border: none !important;
  max-width: none;
}

body.site-page #container {
  max-width: 1180px;
  margin: 0 auto;
}

body.site-page nav.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  color: var(--muted);
}

body.site-page nav.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 600;
}

body.site-page nav.breadcrumb a:hover {
  text-decoration: underline;
}

body.site-page nav.breadcrumb .sep {
  color: #c5cdd8;
}

body.site-page nav.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

:root {
  --bg: #f6fbfa;
  --surface: #ffffff;
  --surface-soft: #eefaf7;
  --text: #172033;
  --muted: #697386;
  --line: #dfe8ea;
  --primary: #00804a;
  --primary-dark: #00804a;
  --blue: #3977f3;
  --purple: #7b61ff;
  --amber: #f0a325;
  --shadow: 0 20px 60px rgba(31, 49, 64, 0.12);
  --small-shadow: 0 10px 28px rgba(31, 49, 64, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 160px;
  object-fit: contain;
}

.brand-logo--footer {
  height: 42px;
  max-width: 180px;
  /* filter: brightness(0) invert(1); */
}

.brand-text {
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00804a);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(18, 184, 134, 0.26);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: #243046;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-search {
  position: relative;
}

.search-toggle,
.search-close,
.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.search-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #253349;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-toggle:hover,
.header-search.is-open .search-toggle {
  color: var(--primary-dark);
  border-color: rgba(18, 184, 134, 0.45);
  background: #f4fffb;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 140;
  display: none;
  width: min(360px, calc(100vw - 36px));
}

.header-search.is-open .search-panel {
  display: block;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.search-box__icon {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 14px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-close {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 22px;
  line-height: 1;
}

.search-close:hover {
  color: var(--text);
  background: #f0f4f6;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-user-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  color: #243046;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.header-user-link:hover {
  color: var(--primary-dark);
  border-color: rgba(18, 184, 134, 0.45);
}

.header-user-link i {
  font-size: 14px;
  color: var(--primary);
}

.header-user-greet span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-user-greet strong {
  font-weight: 700;
}

.header-btn-post {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 18px rgba(18, 184, 134, 0.24);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-btn-post:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(18, 184, 134, 0.3);
}

.header-btn-post i {
  font-size: 13px;
}

.header-user-dropdown {
  position: relative;
}

.header-user-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #253349;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-user-toggle:hover,
.header-user-dropdown.open .header-user-toggle {
  color: var(--primary-dark);
  border-color: rgba(18, 184, 134, 0.45);
  background: #f4fffb;
}

.header-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 130;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.header-user-dropdown.open .header-user-menu {
  display: block;
}

.header-user-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #243046;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-user-menu li a:hover {
  color: var(--primary-dark);
  background: #f0fbf7;
}

.header-user-menu li a i {
  width: 16px;
  color: var(--muted);
  text-align: center;
}

.header-user-menu__head {
  padding: 10px 16px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 8px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 0 0 34px;
  overflow: hidden;
  background: #f7fbfa;
}

.hero-slider {
  position: relative;
  height: min(620px, calc(100vh - 72px));
  min-height: 520px;
  overflow: hidden;
  background: #122033;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.7s ease, visibility 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-apps {
  background-image:
    linear-gradient(90deg, rgba(12, 22, 38, 0.88) 0%, rgba(12, 22, 38, 0.66) 42%, rgba(12, 22, 38, 0.18) 100%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=85");
}

.slide-products {
  background-image:
    linear-gradient(90deg, rgba(12, 22, 38, 0.9) 0%, rgba(12, 22, 38, 0.62) 44%, rgba(12, 22, 38, 0.12) 100%),
    url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1800&q=85");
}

.slide-games {
  background-image:
    linear-gradient(90deg, rgba(12, 22, 38, 0.9) 0%, rgba(12, 22, 38, 0.64) 44%, rgba(12, 22, 38, 0.16) 100%),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1800&q=85");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(18, 184, 134, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-insight-panel {
  position: relative;
  z-index: 6;
  width: min(1080px, calc(100% - 48px));
  margin: -46px auto 0;
  padding: 18px 22px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 232, 234, 0.8);
  border-radius: 14px;
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(12px);
}

.hero-search-panel {
  position: relative;
  width: 100%;
}

.hero-search {
  margin: 0;
}

.hero-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero-search__field {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 48px rgba(8, 18, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-search__field:focus-within {
  border-color: rgba(18, 184, 134, 0.72);
  box-shadow:
    0 22px 54px rgba(8, 18, 32, 0.32),
    0 0 0 4px rgba(18, 184, 134, 0.16);
  transform: translateY(-1px);
}

.hero-search__icon {
  color: var(--primary-dark);
  font-size: 16px;
}

.hero-search__field input {
  min-width: 0;
  min-height: 42px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.hero-search__field input::placeholder {
  color: #8a96a8;
}

.hero-search__clear {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: #eef2f6;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-search__clear[hidden] {
  display: none;
}

.hero-search__clear:hover {
  color: var(--text);
  background: #e2e8f0;
}

.hero-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(18, 184, 134, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-search__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(18, 184, 134, 0.34);
}

.hero-search__hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 6px;
}

.hero-search__hints-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-search__tag {
  padding: 6px 12px;
  border: 1px solid #d7e0ea;
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  background: #f4f8fb;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-search__tag:hover {
  background: #e6f7f0;
  border-color: rgba(18, 184, 134, 0.55);
  transform: translateY(-1px);
}

.slider-dots {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 86px;
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.active {
  width: 30px;
  background: var(--primary);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
}

.primary-btn {
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 28px rgba(18, 184, 134, 0.28);
}

.secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 30, 48, 0.34);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(18, 184, 134, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow.left {
  left: max(18px, calc((100vw - 1180px) / 2));
}

.hero-arrow.right {
  right: max(18px, calc((100vw - 1180px) / 2));
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  width: 100%;
  margin-top: 14px;
  padding: 14px 2px 0;
  border-top: 1px solid var(--line);
}

.metric-panel div {
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.metric-panel div:last-child {
  border-right: 0;
}

.metric-panel strong,
.metric-panel span {
  display: block;
}

.metric-panel strong {
  font-size: 19px;
}

.metric-panel span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.section-block,
.blog-section,
.review-band {
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2,
.review-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0;
}

.section-heading a {
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  display: block;
  min-height: 122px;
  padding: 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-card.active {
  border-color: rgba(18, 184, 134, 0.5);
  box-shadow: var(--small-shadow);
  transform: translateY(-2px);
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
}

.category-icon.mint {
  color: var(--primary-dark);
  background: #def8f1;
}

.category-icon.green {
  background: #e7f9e9;
}

.category-icon.blue {
  background: #eaf2ff;
}

.category-icon.purple {
  background: #f0ecff;
}

.category-icon.amber {
  background: #fff4d9;
}

.category-icon--img {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.category-icon--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.category-card small {
  color: var(--muted);
  line-height: 1.5;
}

.sort-tabs,
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sort-tabs button,
.blog-filters button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #354258;
  background: #fff;
  cursor: pointer;
}

.sort-tabs button.active,
.blog-filters button.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  min-height: 268px;
  padding: 18px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 49, 64, 0.06);
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-art {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 18px;
  font-size: 34px;
  font-weight: 700;
}

.art-phone {
  background: linear-gradient(145deg, #e7fff6, #bdf6df);
}

.art-laptop {
  background: linear-gradient(145deg, #eaf3ff, #b9d2ff);
}

.art-audio {
  background: linear-gradient(145deg, #f0ecff, #cfbdff);
}

.art-home {
  background: linear-gradient(145deg, #fff5dd, #ffd780);
}

.badge {
  align-self: start;
  padding: 6px 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #e1f8f1;
}

.product-card h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.product-load-more-wrap {
  display: none;
  justify-content: center;
  margin-top: 28px;
}

.product-load-more-wrap.is-visible,
.product-load-more-wrap:not([hidden]) {
  display: flex;
}

.product-load-more-btn {
  min-width: 180px;
  padding: 12px 28px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}

.product-load-more-btn:hover:not(:disabled) {
  color: #fff;
  background: var(--primary);
}

.product-load-more-btn:disabled,
.product-load-more-btn.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.product-card--enter {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card--enter.product-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.product-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 14px;
}

.rating {
  color: #f5a400;
}

.empty-state {
  margin: 22px 0 0;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fff;
}

.review-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 50%, rgba(18, 184, 134, 0.14), transparent 42%),
    radial-gradient(circle at 92% 30%, rgba(57, 119, 243, 0.1), transparent 38%),
    linear-gradient(135deg, #f4fffb 0%, #f8fbff 55%, #f7fffd 100%);
  border-top: 1px solid rgba(18, 184, 134, 0.12);
  border-bottom: 1px solid rgba(18, 184, 134, 0.12);
}

.review-band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 18%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 134, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.review-copy {
  position: relative;
  z-index: 1;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
}

.review-copy__desc {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.score-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid rgba(18, 184, 134, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 251, 0.92));
  box-shadow:
    0 14px 36px rgba(18, 184, 134, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.04);
}

.score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 184, 134, 0.45), rgba(57, 119, 243, 0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.score-ring {
  --score-pct: 91;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) 0deg,
    #00804a calc(var(--score-pct) * 3.6deg),
    #e8f8f3 calc(var(--score-pct) * 3.6deg),
    #e8f8f3 360deg
  );
  box-shadow:
    0 0 0 6px rgba(18, 184, 134, 0.08),
    0 10px 24px rgba(18, 184, 134, 0.16);
}

.score-ring__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 184, 134, 0.1);
}

.score-ring__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  white-space: nowrap;
  line-height: 1;
}

.score-ring__num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.score-ring__max {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.score-card__body {
  min-width: 0;
}

.score-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(18, 184, 134, 0.12);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-card__title {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.35;
}

.score-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.blog-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.blog-filters {
  margin-bottom: 20px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card,
.popular-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 49, 64, 0.06);
}

.article-card {
  overflow: hidden;
}

.article-image {
  height: 168px;
  background-size: cover;
  background-position: center;
}

.image-phone {
  background:
    linear-gradient(135deg, rgba(20, 30, 48, 0.24), rgba(18, 184, 134, 0.16)),
    radial-gradient(circle at 52% 35%, #fbfbff 0 7%, transparent 8%),
    linear-gradient(145deg, #11203d, #46c7a5);
}

.image-laptop {
  background:
    linear-gradient(135deg, rgba(17, 32, 61, 0.12), rgba(57, 119, 243, 0.22)),
    linear-gradient(180deg, transparent 48%, #26324b 49% 58%, transparent 59%),
    radial-gradient(circle at 50% 40%, #7ab6ff, #16315f 48%, #111827);
}

.image-audio {
  background:
    radial-gradient(circle at 50% 44%, #ffffff 0 12%, transparent 13%),
    radial-gradient(circle at 38% 38%, #7b61ff 0 18%, transparent 19%),
    radial-gradient(circle at 62% 38%, #00804a 0 18%, transparent 19%),
    linear-gradient(145deg, #1d2439, #697386);
}

.article-card span {
  display: inline-block;
  margin: 14px 16px 0;
  padding: 6px 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #e1f8f1;
}

.article-card h3 {
  margin: 12px 16px 8px;
  font-size: 17px;
  line-height: 1.45;
}

.article-card p {
  margin: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
}

.article-card time {
  display: block;
  margin: 0 16px 18px;
  color: #8a94a6;
  font-size: 12px;
}

.popular-panel {
  padding: 20px;
}

.popular-panel h3 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 18px;
}

.popular-panel a:not(.panel-link) {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.popular-panel strong {
  font-size: 14px;
  line-height: 1.45;
}

.thumb {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.thumb-one {
  background: linear-gradient(145deg, #111827, #00804a);
}

.thumb-two {
  background: linear-gradient(145deg, #133d73, #86c8ff);
}

.thumb-three {
  background: linear-gradient(145deg, #7b61ff, #f0a325);
}

.panel-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 700;
}

.site-footer {
  position: relative;
  clear: both;
  overflow: visible;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, #07131d 0%, #111827 46%, #073f39 100%);
}

.footer-glow {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 520px;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 134, 0.34), transparent 68%);
  pointer-events: none;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  /* background:
    radial-gradient(circle at 14% 10%, rgba(57, 119, 243, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); */
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.site-footer .brand {
  color: #fff;
}

.footer-cta {
  display: grid !important;
  visibility: visible;
  opacity: 1;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.footer-logo {
  width: max-content;
  margin-bottom: 22px;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.footer-cta p,
.footer-about p {
  max-width: 660px;
  margin: 16px 0 0;
  line-height: 1.7;
}

body.logged-in .footer-cta {
  display: grid !important;
  visibility: visible;
  opacity: 1;
}

body.logged-in .footer-subscribe {
  display: block;
  visibility: visible;
  opacity: 1;
}

.footer-subscribe {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(6, 15, 26, 0.42);
}

.footer-subscribe label {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}

.footer-subscribe div {
  display: flex;
  gap: 10px;
}

.footer-subscribe input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 17px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-subscribe__msg {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  min-height: 1.2em;
}

.footer-subscribe__msg.is-success {
  color: #8ce99a;
}

.footer-subscribe__msg.is-error {
  color: #ffa8a8;
}

.footer-subscribe button {
  height: 48px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #00804a, var(--primary));
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(18, 184, 134, 0.22);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: 54px;
  padding: 42px 0 30px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer-links a::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: #00804a;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1040px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand tools"
      "panel panel";
    align-items: center;
    gap: 0;
    padding: 0 18px;
    min-height: 64px;
  }

  .brand {
    grid-area: brand;
    min-height: 64px;
  }

  .site-header__tools {
    grid-area: tools;
    margin-left: 0;
  }

  .site-header__panel {
    grid-area: panel;
    display: none;
    flex: none;
    width: 100%;
    padding: 0 0 16px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header.open .site-header__panel {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 8px;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-user {
    flex-wrap: nowrap;
    gap: 6px;
    width: auto;
  }

  .header-user-greet {
    display: none;
  }

  .header-user-link span,
  .header-btn-post span {
    display: none;
  }

  .header-user-link,
  .header-btn-post {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .search-panel {
    position: fixed;
    top: 64px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .hero-section {
    padding: 0 0 34px;
  }

  .hero-insight-panel {
    width: calc(100% - 36px);
    margin-top: -36px;
    padding: 14px 16px 12px;
  }

  .hero-search__field {
    grid-template-columns: auto 1fr auto;
    min-height: 52px;
    padding-left: 14px;
    border-radius: 18px;
  }

  .hero-search__submit span {
    display: none;
  }

  .hero-search__submit {
    min-width: 42px;
    padding: 0 14px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-band,
  .blog-section {
    grid-template-columns: 1fr;
  }

  .footer-cta,
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1041px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section-block,
  .blog-section,
  .review-band,
  .site-footer,
  body.site-page #hlcenter {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-section {
    padding: 0 0 26px;
  }

  .hero-slider {
    min-height: 520px;
    height: 520px;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-arrow {
    display: none;
  }

  .slider-dots {
    right: 18px;
    bottom: 102px;
  }

  .hero-insight-panel {
    width: 100%;
    margin-top: 12px;
    padding: 14px 12px 12px;
    border-radius: 12px;
  }

  .hero-search__field {
    grid-template-columns: 1fr auto auto;
    min-height: 48px;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    border-color: #d5dfeb;
    box-shadow: 0 10px 24px rgba(14, 24, 38, 0.12);
  }

  .hero-search__icon {
    display: none;
  }

  .hero-search__field input {
    min-height: 36px;
    padding: 0 8px 0 10px;
    font-size: 15px;
  }

  .hero-search__clear {
    width: 30px;
    height: 30px;
  }

  .hero-search__submit {
    min-width: auto;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    box-shadow: none;
  }

  .hero-search__submit i {
    display: none;
  }

  .hero-search__submit span {
    display: inline;
  }

  .hero-search__hints {
    justify-content: flex-start;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
  }

  .hero-search__hints-label {
    width: 100%;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .hero-search__tag {
    padding: 6px 11px;
    font-size: 12px;
  }

  .metric-panel {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
  }

  .metric-panel div {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-panel div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .score-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    padding: 24px;
    border-radius: 16px;
  }

  .footer-subscribe div {
    flex-direction: column;
  }

  .footer-subscribe button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.product-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.product-art.has-thumb {
  overflow: hidden;
  padding: 0;
}

.product-art.has-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card h3 a {
  color: inherit;
}

.article-card h3 a:hover {
  color: var(--primary-dark);
}

.article-image {
  display: block;
}

/* Thanh tiện ích nổi — liên hệ + lên đầu trang */
.fab-dock {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 99990;
  pointer-events: none;
}

.fab-dock__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.fab-dock__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.fab-dock__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 55%); */
  pointer-events: none;
}

.fab-dock__btn:hover,
.fab-dock__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.26);
  color: #fff;
  text-decoration: none;
  outline: none;
}

.fab-dock__btn:active {
  transform: translateY(-1px);
}

.fab-dock__btn--phone {
  background: linear-gradient(160deg, #00804a 0%, var(--primary) 50%, #00804a 100%);
  box-shadow: 0 8px 24px rgba(18, 184, 134, 0.38);
}

.fab-dock__btn--phone:hover,
.fab-dock__btn--phone:focus-visible {
  box-shadow: 0 14px 32px rgba(18, 184, 134, 0.45);
}

.fab-dock__btn--zalo {
  background: linear-gradient(160deg, #60a5fa 0%, #0068ff 52%, #0047c7 100%);
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.34);
}

.fab-dock__btn--zalo:hover,
.fab-dock__btn--zalo:focus-visible {
  box-shadow: 0 14px 32px rgba(0, 104, 255, 0.42);
}

.fab-dock__btn--messenger {
  background: linear-gradient(160deg, #818cf8 0%, #0084ff 50%, #0062d6 100%);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.34);
}

.fab-dock__btn--messenger:hover,
.fab-dock__btn--messenger:focus-visible {
  box-shadow: 0 14px 32px rgba(0, 132, 255, 0.42);
}

.fab-dock__btn--top {
  --fab-btn-size: 52px;
  --fab-stack-gap: 11px;
  height: 0;
  min-height: 0;
  margin-top: calc(-1 * var(--fab-stack-gap));
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  pointer-events: none;
  border: none;
  box-shadow: none;
  background: linear-gradient(160deg, #475569 0%, #1e293b 55%, #0f172a 100%);
  transition:
    height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.fab-dock__btn--top.is-visible {
  height: var(--fab-btn-size);
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.32);
}

.fab-dock__btn--top.is-visible:hover .fab-dock__glyph,
.fab-dock__btn--top.is-visible:focus-visible .fab-dock__glyph {
  transform: translateY(-2px);
}

.fab-dock #back-top {
  position: static;
  right: auto;
  bottom: auto;
  display: flex;
  text-align: center;
}

.fab-dock__glyph {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.fab-dock__glyph svg,
.fab-dock__glyph img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fab-dock__btn--phone .fab-dock__glyph,
.fab-dock__btn--zalo .fab-dock__glyph,
.fab-dock__btn--messenger .fab-dock__glyph {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.fab-dock__btn--phone .fab-dock__glyph {
  color: var(--primary-dark);
}

.fab-dock__btn--phone .fab-dock__glyph svg,
.fab-dock__btn--zalo .fab-dock__glyph img,
.fab-dock__btn--messenger .fab-dock__glyph img {
  width: 20px;
  height: 20px;
}

.fab-dock__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.fab-dock__label::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #0f172a;
  transform: translateY(-50%) rotate(45deg);
}

.fab-dock__btn:hover .fab-dock__label,
.fab-dock__btn:focus-visible .fab-dock__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 700px) {
  .fab-dock {
    right: 14px;
    bottom: 16px;
  }

  .fab-dock__stack {
    gap: 9px;
  }

  .fab-dock__btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .fab-dock__btn--top {
    --fab-btn-size: 48px;
    --fab-stack-gap: 9px;
  }

  .fab-dock__glyph {
    width: 28px;
    height: 28px;
  }

  .fab-dock__glyph svg {
    width: 20px;
    height: 20px;
  }

  .fab-dock__btn--phone .fab-dock__glyph,
  .fab-dock__btn--zalo .fab-dock__glyph,
  .fab-dock__btn--messenger .fab-dock__glyph {
    width: 28px;
    height: 28px;
  }

  .fab-dock__btn--phone .fab-dock__glyph svg,
  .fab-dock__btn--zalo .fab-dock__glyph img,
  .fab-dock__btn--messenger .fab-dock__glyph img {
    width: 18px;
    height: 18px;
  }

  .fab-dock__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-dock__btn--top {
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }
}
