/**
 * Header/Footer Option 1 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â port tÃƒÂ¡Ã‚Â»Ã‚Â« update-header-footer.
 */

:root {
  --pt-v1-primary: var(--company-brand, #ed1c24);
  --pt-v1-primary-dark: #c62828;
  --pt-v1-ink: #16161f;
  --pt-v1-gold: #d4a843;
  --pt-v1-border: #e8eaed;
  --pt-v1-muted: #666666;
  --pt-v1-max: 1320px;
  --pt-v1-chip-h: 40px;
  --pt-v1-badge-w: 92px;
}

/* ÃƒÂ¡Ã‚ÂºÃ‚Â¨n mobile chrome cÃƒâ€¦Ã‚Â© ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Option 1 dÃƒÆ’Ã‚Â¹ng drawer riÃƒÆ’Ã‚Âªng */
body.pt-chrome-v1 .pt-mobile-topbar,
body.pt-chrome-v1 .pt-mobile-sticky-nav,
body.pt-chrome-v1 .pt-mobile-dock,
body.pt-chrome-v1 .pt-mobile-overlay {
  display: none !important;
}

body.pt-chrome-v1.pt-mobile-shell .site-main {
  padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)) !important;
}

body.pt-chrome-v1:not(.pt-mobile-shell) .site-main {
  padding-bottom: calc(var(--space-4xl, 64px) + 40px);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Header ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.pt-chrome-v1 {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: 100%;
  overflow-x: clip;
}

.admin-bar .pt-chrome-v1 {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .pt-chrome-v1 {
    top: 46px;
  }
}

/* Offset sticky khi cÃƒÆ’Ã‚Â³ thanh chÃƒÂ¡Ã‚Â»Ã‚Ân trÃƒÆ’Ã‚Âªn trang chÃƒÂ¡Ã‚Â»Ã‚Â§ gÃƒÂ¡Ã‚Â»Ã¢â‚¬Ëœc ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ pt-chrome-demo.css */

.pt-chrome-v1 .container {
  max-width: var(--pt-v1-max);
  width: 100%;
  margin-inline: auto;
  padding-left: var(--space-xl, 32px);
  padding-right: var(--space-xl, 32px);
  box-sizing: border-box;
}

/* Announcement bar */
.pt-chrome-v1__announce {
  background: var(--pt-v1-ink);
  color: #fff;
  overflow: hidden;
  max-width: 100%;
}

.pt-chrome-v1__announce-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 32px;
  min-width: 0;
  max-width: 100%;
}

.pt-chrome-v1__announce-meta {
  display: none;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .pt-chrome-v1__announce-meta {
    display: flex;
  }
}

.pt-chrome-v1__announce-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pt-chrome-v1__announce-meta .pt-icon {
  color: var(--pt-v1-gold);
  font-size: 13px;
}

.pt-chrome-v1__marquee-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-block: 8px;
}

.pt-chrome-v1__marquee {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: pt-v1-marquee 28s linear infinite;
  white-space: nowrap;
}

.pt-chrome-v1__marquee-item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes pt-v1-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pt-chrome-v1__announce-social {
  display: none;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pt-chrome-v1__announce-social {
    display: flex;
  }
}

.pt-chrome-v1__announce-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pt-chrome-v1__announce-social a:hover {
  background: var(--pt-v1-primary);
  color: #fff;
}

/* Main bar */
.pt-chrome-v1__main {
  border-bottom: 1px solid rgba(232, 234, 237, 0.6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  padding-block: 12px;
}

.pt-chrome-v1__main.is-scrolled {
  padding-block: 8px;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.25);
}

.pt-chrome-v1__main-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__main-inner {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, max-content);
    align-items: center;
    gap: clamp(10px, 1.4vw, 18px);
    min-height: 60px;
  }
}

/* Logo + ÃƒÆ’Ã¢â‚¬Â tÃƒÆ’Ã‚Â´/MÃƒÆ’Ã‚Â´ tÃƒÆ’Ã‚Â´/Xe mÃƒÆ’Ã‚Â¡y ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â cÃƒÂ¡Ã‚Â»Ã‚Â¥m trÃƒÆ’Ã‚Â¡i */
.pt-chrome-v1__brand-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__brand-cluster {
    gap: 12px;
    grid-column: 1;
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .pt-chrome-v1__brand-cluster {
    gap: 16px;
  }
}

.pt-chrome-v1__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.pt-chrome-v1__logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__logo img {
    height: 52px;
    max-width: 210px;
  }
}

@media (min-width: 1280px) {
  .pt-chrome-v1__logo img {
    height: 56px;
    max-width: 230px;
  }
}

@media (min-width: 1440px) {
  .pt-chrome-v1__logo img {
    height: 58px;
    max-width: 250px;
  }
}

.pt-chrome-v1__main.is-scrolled .pt-chrome-v1__logo img {
  height: 44px;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__main.is-scrolled .pt-chrome-v1__logo img {
    height: 48px;
  }
}

/* Desktop nav */
.pt-chrome-v1__nav {
  display: none;
  flex-shrink: 0;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid var(--pt-v1-border);
}

@media (min-width: 1024px) {
  .pt-chrome-v1__nav {
    display: block;
    padding-left: 18px;
  }
}

/* Holding ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â segmented: ÃƒÆ’Ã¢â‚¬Â tÃƒÆ’Ã‚Â´ (ink) / MÃƒÆ’Ã‚Â´ tÃƒÆ’Ã‚Â´ / Xe mÃƒÆ’Ã‚Â¡y (brand) */
.pt-chrome-v1__holding-seg {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--pt-v1-border);
  border-radius: 999px;
  background: #fff;
}

.pt-chrome-v1__holding-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--pt-v1-chip-h);
  padding: 0 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__holding-link {
    gap: 7px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }
}

@media (min-width: 1280px) {
  .pt-chrome-v1__holding-link {
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .pt-chrome-v1__holding-link {
    gap: 9px;
    padding: 0 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}

.pt-chrome-v1__holding-link-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 22px;
}

@media (min-width: 1280px) {
  .pt-chrome-v1__holding-link-icon-wrap {
    flex-basis: 30px;
    width: 30px;
    height: 24px;
  }
}

.pt-chrome-v1__holding-link-icon {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.pt-chrome-v1__holding-link-text {
  flex: 0 0 auto;
  line-height: 1;
}

.pt-chrome-v1__holding-link--oto .pt-chrome-v1__holding-link-icon {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.pt-chrome-v1__holding-link--oto:hover .pt-chrome-v1__holding-link-icon,
.pt-chrome-v1__holding-link--moto:hover .pt-chrome-v1__holding-link-icon,
.pt-chrome-v1__holding-link--xemay:hover .pt-chrome-v1__holding-link-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(7452%) hue-rotate(353deg) brightness(93%) contrast(93%);
  opacity: 0.92;
}

.pt-chrome-v1__holding-link--moto .pt-chrome-v1__holding-link-icon-wrap {
  flex: 0 0 34px;
  width: 34px;
  height: 20px;
}

.pt-chrome-v1__holding-link--moto .pt-chrome-v1__holding-link-icon {
  width: 34px;
  height: 20px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.pt-chrome-v1__holding-link--oto {
  color: var(--pt-v1-ink);
  background: #fff;
}

.pt-chrome-v1__holding-link--oto:hover,
.pt-chrome-v1__holding-link--oto:focus-visible {
  background: rgba(237, 28, 36, 0.07);
  color: var(--pt-v1-primary);
  outline: none;
}

.pt-chrome-v1__holding-link--moto {
  color: var(--pt-v1-ink);
  background: #fff;
  border-left: 1px solid var(--pt-v1-border);
}

.pt-chrome-v1__holding-link--moto:hover,
.pt-chrome-v1__holding-link--moto:focus-visible {
  background: rgba(237, 28, 36, 0.07);
  color: var(--pt-v1-primary);
  outline: none;
}

.pt-chrome-v1__holding-link--xemay .pt-chrome-v1__holding-link-icon-wrap {
  flex: 0 0 32px;
  width: 32px;
  height: 22px;
}

.pt-chrome-v1__holding-link--xemay .pt-chrome-v1__holding-link-icon {
  width: 32px;
  height: 22px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.pt-chrome-v1__holding-link--xemay {
  color: var(--pt-v1-ink);
  background: #fff;
  border-left: 1px solid var(--pt-v1-border);
}

.pt-chrome-v1__holding-link--xemay:hover,
.pt-chrome-v1__holding-link--xemay:focus-visible {
  background: rgba(237, 28, 36, 0.07);
  color: var(--pt-v1-primary);
  outline: none;
}

/* Award badges ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â pill trÃƒÂ¡Ã‚ÂºÃ‚Â¯ng trÃƒÆ’Ã‚Âªn thanh chÃƒÆ’Ã‚Â­nh */
.pt-chrome-v1__badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pt-chrome-v1__badges--main {
  display: none;
  justify-content: center;
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__badges--main {
    display: flex;
    grid-column: 2;
    justify-self: center;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pt-chrome-v1__main-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, max-content);
  }

  .pt-chrome-v1__badges--main {
    display: none;
  }

  .pt-chrome-v1__actions {
    grid-column: 2;
  }
}

@media (min-width: 1280px) {
  .pt-chrome-v1__badges--main {
    gap: 10px;
  }

  :root {
    --pt-v1-badge-w: 100px;
  }
}

.pt-chrome-v1__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__actions {
    margin-left: 0;
    grid-column: 3;
    justify-self: end;
  }
}

@media (min-width: 1280px) {
  .pt-chrome-v1__actions {
    gap: 8px;
  }
}

.pt-chrome-v1__badges-hit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--pt-v1-badge-w);
  width: var(--pt-v1-badge-w);
  min-width: var(--pt-v1-badge-w);
  max-width: var(--pt-v1-badge-w);
  box-sizing: border-box;
  height: var(--pt-v1-chip-h);
  min-height: var(--pt-v1-chip-h);
  padding: 0 8px;
  line-height: 0;
  text-decoration: none;
  border: 1px solid rgba(237, 28, 36, 0.3);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 3px 10px rgba(237, 28, 36, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pt-chrome-v1__badges-hit:hover,
.pt-chrome-v1__badges-hit:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(237, 28, 36, 0.48);
  outline: none;
  box-shadow:
    0 5px 14px rgba(237, 28, 36, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.pt-chrome-v1__badges-hit img {
  display: block;
  width: 100%;
  height: 22px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1280px) {
  .pt-chrome-v1__badges-hit img {
    height: 24px;
  }
}

/* Expandable search pill */
.pt-chrome-v1__search {
  display: none;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 40px;
  min-height: var(--pt-v1-chip-h);
  height: var(--pt-v1-chip-h);
  padding: 0;
  border: 1px solid var(--pt-v1-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: width 0.28s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pt-chrome-v1__cats-search {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 8px;
}

@media (min-width: 768px) {
  .pt-chrome-v1__cats-search {
    display: block;
  }

  .pt-chrome-v1__search--cats {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.pt-chrome-v1__search:not(.is-open):not(:focus-within) {
  justify-content: center;
}

.pt-chrome-v1__search:not(.is-open):not(:focus-within) .pt-chrome-v1__search-input {
  display: none;
}

.pt-chrome-v1__search.is-open,
.pt-chrome-v1__search:focus-within {
  justify-content: flex-start;
}

.pt-chrome-v1__search.is-open .pt-chrome-v1__search-input,
.pt-chrome-v1__search:focus-within .pt-chrome-v1__search-input {
  display: block;
}

.pt-chrome-v1__search.is-open,
.pt-chrome-v1__search:focus-within {
  width: min(240px, 34vw);
  padding-right: 12px;
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.08);
}

.pt-chrome-v1__search--cats.is-open,
.pt-chrome-v1__search--cats:focus-within {
  width: min(220px, 36vw);
  padding-right: 12px;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pt-chrome-v1__search-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: rgba(26, 26, 26, 0.65);
  cursor: pointer;
  line-height: 0;
}

.pt-chrome-v1__search-toggle .pt-icon {
  display: block;
  font-size: 15px;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
  transform: translate(0, 0.5px);
}

.pt-chrome-v1__search-toggle:hover,
.pt-chrome-v1__search.is-open .pt-chrome-v1__search-toggle,
.pt-chrome-v1__search:focus-within .pt-chrome-v1__search-toggle {
  color: var(--pt-v1-primary);
}

.pt-chrome-v1__search-input {
  flex: 1;
  min-width: 0;
  width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--pt-v1-ink);
  opacity: 0;
  outline: none;
  transition: opacity 0.2s ease, width 0.28s ease;
}

.pt-chrome-v1__search-input::placeholder {
  color: var(--pt-v1-muted);
}

.pt-chrome-v1__search.is-open .pt-chrome-v1__search-input,
.pt-chrome-v1__search:focus-within .pt-chrome-v1__search-input {
  width: 100%;
  opacity: 1;
}

/* Hotline pill */
.pt-chrome-v1__hotline {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 2px 12px 2px 2px;
  border: 1px solid var(--pt-v1-border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pt-chrome-v1__hotline:hover,
.pt-chrome-v1__hotline:focus-visible {
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.06);
  outline: none;
}

@media (min-width: 640px) {
  .pt-chrome-v1__hotline {
    display: inline-flex;
  }
}

.pt-chrome-v1__hotline-icon,
.pt-chrome-v1-footer__cta-call .pt-chrome-v1__hotline-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--pt-v1-primary);
  color: #fff;
  animation: pt-v1-pulse-ring 2s infinite;
}

@keyframes pt-v1-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(237, 28, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0); }
}

.pt-chrome-v1__hotline-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.pt-chrome-v1__hotline-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pt-v1-muted);
}

.pt-chrome-v1__hotline-number {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--pt-v1-primary);
}

@media (min-width: 1280px) {
  .pt-chrome-v1__hotline {
    gap: 10px;
    padding: 2px 14px 2px 2px;
  }

  .pt-chrome-v1__hotline-number {
    font-size: 17px;
  }
}

/* Holding CTA */
.pt-chrome-v1__holding {
  display: none;
  align-items: center;
  gap: 6px;
  min-height: var(--pt-v1-chip-h);
  padding: 0 16px;
  border-radius: 999px;
  background: var(--pt-v1-ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
}

@media (min-width: 1280px) {
  .pt-chrome-v1__holding {
    display: inline-flex;
    padding: 0 18px;
  }
}

.pt-chrome-v1__holding:hover {
  background: var(--pt-v1-primary);
  color: #fff;
}

.pt-chrome-v1__holding .pt-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.pt-chrome-v1__holding:hover .pt-icon {
  transform: translateX(2px);
}

.pt-chrome-v1__menu-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--pt-v1-ink);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__menu-btn {
    display: none;
  }
}

/* Category strip */
.pt-chrome-v1__cats {
  background: linear-gradient(90deg, var(--pt-v1-primary), var(--pt-v1-primary-dark));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 60;
}

.pt-chrome-v1__cats-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding-block: 6px;
  position: relative;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__cats-inner {
    overflow: visible;
  }
}

.pt-chrome-v1__cats-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__cats-nav {
    overflow: visible;
    flex-wrap: nowrap;
  }
}

.pt-chrome-v1__cats-nav::-webkit-scrollbar {
  display: none;
}

.pt-chrome-v1__cat {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: background 0.2s ease;
}

.pt-chrome-v1__cat .pt-icon,
.pt-chrome-v1__cat .pt-icon--image,
.pt-chrome-v1__menu-item--nav .pt-icon,
.pt-chrome-v1__menu-item--nav .pt-icon--image,
.pt-chrome-v1__submenu-link .pt-icon,
.pt-chrome-v1__submenu-link .pt-icon--image {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  font-size: 15px;
  line-height: 1;
  object-fit: contain;
  flex-shrink: 0;
}

.pt-chrome-v1__cat .pt-icon {
  color: var(--pt-v1-gold);
}

.pt-chrome-v1__cat:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pt-chrome-v1__cats-divider {
  display: none;
  flex-shrink: 0;
  width: 1px;
  height: 22px;
  margin-inline: 6px;
  background: rgba(255, 255, 255, 0.28);
}

@media (min-width: 768px) {
  .pt-chrome-v1__cats-divider {
    display: block;
  }
}

.pt-chrome-v1__cat--link {
  font-weight: 600;
}

.pt-chrome-v1__primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-chrome-v1__primary-menu > .menu-item {
  position: relative;
  flex-shrink: 0;
}

.pt-chrome-v1__primary-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.pt-chrome-v1__primary-menu .pt-chrome-v1__submenu-item + .pt-chrome-v1__submenu-item {
  margin-top: 4px;
}

.pt-chrome-v1__cat-caret {
  font-size: 10px;
  opacity: 0.75;
  margin-left: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pt-chrome-v1__menu-item {
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__menu-item:hover,
  .pt-chrome-v1__menu-item:focus-within {
    z-index: 90;
  }

  /* VÃƒÆ’Ã‚Â¹ng nÃƒÂ¡Ã‚Â»Ã¢â‚¬Ëœi giÃƒÂ¡Ã‚Â»Ã‚Â¯a mÃƒÂ¡Ã‚Â»Ã‚Â¥c menu vÃƒÆ’Ã‚Â  dropdown ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â trÃƒÆ’Ã‚Â¡nh Ãƒâ€žÃ¢â‚¬ËœÃƒÆ’Ã‚Â³ng khi rÃƒÆ’Ã‚Âª chuÃƒÂ¡Ã‚Â»Ã¢â€žÂ¢t qua khe hÃƒÂ¡Ã‚Â»Ã…Â¸ */
  .pt-chrome-v1__menu-item.menu-item-has-children::after,
  .pt-chrome-v1__primary-menu > .menu-item-has-children::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    z-index: 99;
  }

  .pt-chrome-v1__menu-item:hover .pt-chrome-v1__cat-caret,
  .pt-chrome-v1__menu-item:focus-within .pt-chrome-v1__cat-caret {
    transform: rotate(180deg);
    opacity: 1;
  }

  .pt-chrome-v1__menu-item:hover .pt-chrome-v1__submenu,
  .pt-chrome-v1__menu-item:focus-within .pt-chrome-v1__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.18s ease 0s,
      transform 0.18s ease 0s,
      visibility 0s linear 0s;
  }

  .pt-chrome-v1__menu-item--nav:nth-last-child(-n + 2) .pt-chrome-v1__submenu--nav,
  .pt-chrome-v1__primary-menu > .menu-item:nth-last-child(-n + 2) > .sub-menu {
    left: auto;
    right: 0;
  }
}

.pt-chrome-v1__submenu {
  display: none;
}

@media (min-width: 1024px) {
  .pt-chrome-v1__submenu {
    display: block;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: min(360px, calc(100vw - 48px));
    padding: 14px;
    border: 1px solid var(--pt-v1-border);
    border-radius: 16px;
    background: #fff;
    color: var(--pt-v1-ink);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition:
      opacity 0.22s ease 0.08s,
      transform 0.22s ease 0.08s,
      visibility 0s linear 0.3s;
    z-index: 100;
  }

  .pt-chrome-v1__submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }

  .pt-chrome-v1__submenu--nav {
    width: min(300px, calc(100vw - 48px));
  }
}

.pt-chrome-v1__submenu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pt-chrome-v1__submenu-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--pt-v1-ink);
}

.pt-chrome-v1__submenu-desc {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--pt-v1-muted);
  line-height: 1.4;
}

.pt-chrome-v1__submenu-badge {
  display: inline-flex;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(237, 28, 36, 0.1);
  color: var(--pt-v1-primary);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.pt-chrome-v1__submenu-badge:hover {
  background: var(--pt-v1-primary);
  color: #fff;
}

.pt-chrome-v1__submenu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.pt-chrome-v1__submenu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pt-chrome-v1__submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--pt-v1-ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.pt-chrome-v1__submenu-link__lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.pt-chrome-v1__submenu-link__label {
  min-width: 0;
}

.pt-chrome-v1__submenu-link__lead .pt-icon {
  font-size: 14px;
  color: #ed1c24;
  flex-shrink: 0;
  transform: none;
}

.pt-chrome-v1__submenu-link__caret {
  font-size: 10px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.pt-chrome-v1__submenu-link .pt-icon {
  font-size: 10px;
  color: #94a3b8;
  transition: color 0.18s ease, transform 0.18s ease;
}

.pt-chrome-v1__submenu-link:hover {
  background: #fff5f5;
  color: var(--pt-v1-primary);
}

.pt-chrome-v1__submenu-link:hover .pt-chrome-v1__submenu-link__lead .pt-icon {
  color: var(--pt-v1-primary);
}

.pt-chrome-v1__submenu-link:hover .pt-chrome-v1__submenu-link__caret {
  color: var(--pt-v1-primary);
  transform: translateX(2px);
}

/* Mobile drawer */
.pt-chrome-v1__drawer[hidden] {
  display: none !important;
}

.pt-chrome-v1__drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.pt-chrome-v1__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 31, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pt-chrome-v1__drawer.is-open .pt-chrome-v1__drawer-backdrop {
  opacity: 1;
}

.pt-chrome-v1__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.pt-chrome-v1__drawer.is-open .pt-chrome-v1__drawer-panel {
  transform: translateX(0);
}

.pt-chrome-v1__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--pt-v1-border);
}

.pt-chrome-v1__drawer-logo img {
  height: 36px;
  width: auto;
}

.pt-chrome-v1__drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f5;
  cursor: pointer;
}

.pt-chrome-v1__drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.pt-chrome-v1__drawer-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.pt-chrome-v1__drawer-cats a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--pt-v1-border);
  border-radius: 16px;
  background: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-v1-ink);
}

.pt-chrome-v1__drawer-cats a .pt-icon {
  color: var(--pt-v1-primary);
}

.pt-chrome-v1__drawer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-chrome-v1__drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 234, 237, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--pt-v1-ink);
}

.pt-chrome-v1__drawer-nav a .pt-icon {
  color: var(--pt-v1-muted);
  font-size: 12px;
}

.pt-chrome-v1__drawer-hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px;
  padding: 12px;
  border-radius: 999px;
  background: var(--pt-v1-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

body.pt-v1-drawer-open {
  overflow: hidden;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Footer ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.pt-chrome-v1-footer {
  position: relative;
  margin-top: 112px;
  background: transparent;
}

.pt-chrome-v1-footer .site-footer,
.site-footer.pt-chrome-v1-footer {
  margin-top: 0;
}

.pt-chrome-v1-footer__cta-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -64px;
}

.pt-chrome-v1-footer__cta-wrap .container {
  max-width: min(1152px, 100%);
}

.pt-chrome-v1-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--pt-v1-primary), #c62828);
  box-shadow: 0 24px 48px rgba(237, 28, 36, 0.25);
  color: #fff;
}

@media (min-width: 768px) {
  .pt-chrome-v1-footer__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
  }
}

.pt-chrome-v1-footer__cta-text h2 {
  margin: 0;
  font-size: clamp(var(--text-2xl, 24px), 2.35vw, 1.875rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.pt-chrome-v1-footer__cta-text p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.pt-chrome-v1-footer__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .pt-chrome-v1-footer__cta-actions {
    flex-direction: row;
    align-items: center;
  }
}

.pt-chrome-v1-footer__cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--pt-v1-primary);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.pt-chrome-v1-footer__cta-call:hover {
  transform: scale(1.03);
  color: var(--pt-v1-primary);
}

.pt-chrome-v1-footer__cta-trial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.pt-chrome-v1-footer__cta-trial:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pt-chrome-v1-footer__main {
  position: relative;
  overflow: hidden;
  padding: 112px 0 32px;
  background: var(--pt-v1-ink);
  color: rgba(255, 255, 255, 0.7);
}

.pt-chrome-v1-footer__main::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pt-v1-primary), transparent);
}

.pt-chrome-v1-footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .pt-chrome-v1-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .pt-chrome-v1-footer__grid {
    grid-template-columns: 4fr 3fr 5fr;
  }
}

.pt-chrome-v1-footer__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.pt-chrome-v1-footer__logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.pt-chrome-v1-footer__about {
  margin: 16px 0 0;
  max-width: 24rem;
  font-size: 14px;
  line-height: 1.6;
}

.pt-chrome-v1-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.pt-chrome-v1-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pt-chrome-v1-footer__social a:hover {
  transform: translateY(-2px);
  background: var(--pt-v1-primary);
  color: #fff;
}

.pt-chrome-v1-footer__gov {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.pt-chrome-v1-footer__gov > .pt-icon {
  flex-shrink: 0;
  font-size: 28px;
  color: var(--pt-v1-gold);
}

.pt-chrome-v1-footer__gov p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.pt-chrome-v1-footer__gov p:first-child {
  font-weight: 700;
  color: #fff;
}

.pt-chrome-v1-footer__col h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.pt-chrome-v1-footer__heading-line {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--pt-v1-primary);
}

.pt-chrome-v1-footer__col ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.pt-chrome-v1-footer__col li + li {
  margin-top: 10px;
}

.pt-chrome-v1-footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.pt-chrome-v1-footer__col a:hover {
  color: #fff;
}

.pt-chrome-v1-footer__col a .pt-icon {
  color: var(--pt-v1-primary);
  font-size: 12px;
}

.pt-chrome-v1-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pt-chrome-v1-footer__contact .pt-icon {
  margin-top: 2px;
  color: var(--pt-v1-gold);
  flex-shrink: 0;
}

.pt-chrome-v1-footer__newsletter {
  margin-top: 20px;
}

.pt-chrome-v1-footer__newsletter p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.pt-chrome-v1-footer__newsletter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 5px 5px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.pt-chrome-v1-footer__newsletter-row:focus-within {
  border-color: var(--pt-v1-primary);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.pt-chrome-v1-footer__newsletter-row input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}

.pt-chrome-v1-footer__newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.pt-chrome-v1-footer__newsletter-row button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0 18px;
  min-height: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--pt-v1-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.pt-chrome-v1-footer__newsletter-row button:hover,
.pt-chrome-v1-footer__newsletter-row button:focus-visible {
  background: var(--pt-v1-primary-dark);
  outline: none;
}

.pt-chrome-v1-footer__newsletter-row button .pt-icon {
  display: block;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  margin: 0;
}

.pt-chrome-v1-footer__product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pt-chrome-v1-footer__product-chips a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 600;
}

.pt-chrome-v1-footer__product-chips a:hover {
  border-color: var(--pt-v1-primary);
  color: #fff;
}

.pt-chrome-v1-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .pt-chrome-v1-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.pt-chrome-v1-footer__bottom p {
  margin: 0;
}

.pt-chrome-v1-footer__back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--pt-v1-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(237, 28, 36, 0.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pt-chrome-v1-footer__back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pt-chrome-v1-footer__back-top:hover {
  transform: translateY(-4px);
}

/* Override footer widget styles cÃƒâ€¦Ã‚Â© trÃƒÆ’Ã‚Âªn mobile */
body.pt-chrome-v1.pt-mobile-shell .site-footer.pt-chrome-v1-footer {
  display: block !important;
}

body.pt-chrome-v1.pt-mobile-shell .site-footer.pt-chrome-v1-footer > .container {
  max-width: var(--pt-v1-max);
  padding-inline: var(--space-xl, 32px);
}

/* TABLET_LANDSCAPE — co header desktop cho iPad nằm 768–1180px */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
  .pt-chrome-v1 .container {
    padding-left: clamp(16px, 2vw, 24px);
    padding-right: clamp(16px, 2vw, 24px);
  }

  .pt-chrome-v1__main {
    padding-block: 8px;
  }

  .pt-chrome-v1__main-inner {
    gap: 8px;
    min-height: 52px;
  }

  .pt-chrome-v1__logo img {
    height: 44px;
    max-width: 170px;
  }

  .pt-chrome-v1__holding-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .pt-chrome-v1__holding-link-text {
    font-size: 12px;
  }

  .pt-chrome-v1__hotline-label {
    font-size: 10px;
  }

  .pt-chrome-v1__hotline-number {
    font-size: 14px;
  }

  .pt-chrome-v1__holding {
    font-size: 12px;
    padding: 8px 12px;
  }

  .pt-chrome-v1__cats-inner {
    gap: 6px;
    min-height: 36px;
    padding-block: 4px;
  }

  .pt-chrome-v1__cat {
    padding: 5px 10px;
    font-size: 12px;
    gap: 6px;
  }

  .pt-chrome-v1__cat .pt-icon,
  .pt-chrome-v1__cat .pt-icon--image {
    width: 13px;
    height: 13px;
    max-width: 13px;
    max-height: 13px;
    font-size: 13px;
  }
}
