body.home {
  --stv-ink: #102431;
  --stv-ink-soft: #5e7180;
  --stv-teal: #0f766e;
  --stv-teal-deep: #0a4b4f;
  --stv-accent: #e76f51;
  --stv-sand: #f3ebdf;
  --stv-cream: #f7f6f2;
  --stv-card: #ffffff;
  --stv-line: rgba(16, 36, 49, 0.12);
  --stv-shadow: 0 30px 70px rgba(16, 36, 49, 0.14);
  --primary-color: var(--stv-teal);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.08), transparent 28%),
    var(--stv-cream);
  color: var(--stv-ink);
}

body.home,
body.home p,
body.home li,
body.home a,
body.home span {
  font-family: "Muli", sans-serif;
}

body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5,
body.home h6 {
  font-family: "Muli", sans-serif;
  letter-spacing: -0.03em;
  color: var(--stv-ink);
}

body.home a {
  color: inherit;
}

body.home #header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--stv-teal) 0%, var(--stv-teal-deep) 100%);
  color: #ffffff !important;
}

.button.secondary {
  background: rgba(15, 118, 110, 0.08);
  color: var(--stv-teal) !important;
  border-color: rgba(15, 118, 110, 0.18);
}

.stv-topbar,
.stv-mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stv-topbar {
  min-height: 42px;
}

.stv-topbar__items,
.stv-topbar__social,
.stv-desktop-nav ul,
.stv-mobile-panel ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.stv-topbar__social {
  gap: 12px;
}

.stv-topbar__items a,
.stv-topbar__social a {
  text-decoration: none;
}

.stv-topbar__social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stv-mainbar {
  min-height: 88px;
}

.stv-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.stv-brand img {
  display: block;
  width: auto;
}

.stv-desktop-nav {
  flex: 1 1 auto;
}

.stv-desktop-nav ul {
  justify-content: center;
  gap: 22px;
}

.stv-desktop-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--stv-ink);
}

.stv-desktop-nav a:hover {
  color: var(--stv-teal);
}

.stv-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stv-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(16, 36, 49, 0.12);
  background: #ffffff;
  color: var(--stv-ink);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 36, 49, 0.08);
}

.stv-mobile-panel {
  display: none;
  border-top: 1px solid rgba(16, 36, 49, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.stv-mobile-panel.is-open {
  display: block;
}

.stv-mobile-panel .stv-shell {
  padding: 18px 0 22px;
}

.stv-mobile-panel ul {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.stv-mobile-panel a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(16, 36, 49, 0.06);
}

.stv-mobile-panel a:last-child {
  border-bottom: 0;
}

body.home .header-wrapper {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(16, 36, 49, 0.06);
}

body.home #top-bar {
  background: linear-gradient(90deg, #102431 0%, #0f766e 100%);
}

body.home #top-bar .nav > li > a,
body.home #top-bar .social-icons > a {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.home #top-bar .nav > li > a:hover,
body.home #top-bar .social-icons > a:hover {
  color: #ffffff !important;
}

body.home #masthead .header-inner {
  min-height: 88px;
  align-items: center;
}

body.home #masthead .header-search-form,
body.home #masthead .account-item,
body.home #masthead .header-divider,
body.home .mobile-sidebar .header-search-form,
body.home #login-form-popup {
  display: none !important;
}

body.home #logo {
  width: auto !important;
}

body.home #logo img,
body.home .stuck #logo img {
  max-height: 68px !important;
  width: auto;
}

body.home .header-main .social-icons,
body.home .header-main .cart-icon strong,
body.home .header-main .menu-title,
body.home .header-main .header-button > .button.is-outline,
body.home .header-main .nav > li > a > i:not(.icon-angle-down),
body.home .header-main .nav > li > a {
  color: var(--stv-ink) !important;
}

body.home .header-main .nav > li > a:hover,
body.home .header-main .nav > li > a:hover > i:not(.icon-angle-down) {
  color: var(--stv-teal) !important;
}

body.home .header-bottom {
  min-height: 0;
  background: rgba(255, 255, 255, 0.88) !important;
  border-top: 1px solid rgba(16, 36, 49, 0.08);
}

body.home .header-bottom .nav > li > a {
  color: var(--stv-ink) !important;
  font-size: 13px;
  letter-spacing: 0.04em;
}

body.home .header-bottom .nav > li > a::before {
  background-color: var(--stv-teal) !important;
}

body.home .stuck .header-wrapper {
  box-shadow: 0 18px 45px rgba(16, 36, 49, 0.08);
}

body.home .stuck .header-main,
body.home .stuck #logo img {
  height: auto !important;
}

body.home .stuck .header-main .nav > li > a {
  line-height: 48px !important;
}

.stv-header-cta.button {
  border-radius: 999px;
  padding: 0 22px;
  min-height: 42px;
  line-height: 40px;
  background: linear-gradient(135deg, var(--stv-teal) 0%, var(--stv-teal-deep) 100%) !important;
  border: 0;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
}

.stv-header-cta.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.26);
}

.stv-home {
  overflow: clip;
}

.stv-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.stv-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.stv-section__heading .stv-kicker,
.stv-cta .stv-kicker,
.stv-plan-card .stv-kicker {
  color: var(--stv-teal);
}

.stv-section {
  padding: 88px 0;
  position: relative;
}

.stv-section--light {
  background: rgba(255, 255, 255, 0.72);
}

.stv-section--sand {
  background: linear-gradient(180deg, rgba(243, 235, 223, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.stv-hero {
  position: relative;
  padding: clamp(78px, 11vw, 128px) 0 96px;
  background:
    linear-gradient(115deg, rgba(8, 25, 37, 0.88) 0%, rgba(15, 118, 110, 0.56) 58%, rgba(231, 111, 81, 0.18) 100%),
    url("../../uploads/2024/11/PHO-CO-HOI-AN.jpg") center/cover no-repeat;
}

.stv-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(247, 246, 242, 0), rgba(247, 246, 242, 1));
  pointer-events: none;
}

.stv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.stv-hero__content {
  color: #ffffff;
  max-width: 700px;
}

.stv-home .stv-hero__content h1 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
  text-shadow: 0 4px 14px rgba(9, 20, 28, 0.34), 0 14px 34px rgba(9, 20, 28, 0.26);
}

.stv-lead {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.stv-hero__actions,
.stv-plan-card__actions,
.stv-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stv-hero__actions {
  margin-top: 28px;
}

.stv-btn.button {
  border-radius: 999px;
  min-height: 54px;
  line-height: 52px;
  padding: 0 28px;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.stv-btn--primary.button {
  background: linear-gradient(135deg, var(--stv-accent) 0%, #dd8a4a 100%) !important;
  border: 0;
}

.stv-btn--primary.button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 24px 45px rgba(231, 111, 81, 0.24);
}

.stv-btn--ghost.button {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.stv-btn--ghost.button:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.stv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.stv-badges li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.stv-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stv-metric {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.stv-metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}

.stv-metric span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.stv-hero__aside {
  position: relative;
  min-height: 560px;
}

.stv-photo-stack {
  position: absolute;
  inset: 0;
}

.stv-photo {
  position: absolute;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--stv-shadow);
  animation: stv-pan 14s ease-in-out infinite alternate;
}

.stv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stv-photo--one {
  top: 18px;
  right: 0;
  width: 56%;
  height: 250px;
  background-image: url("../../uploads/2024/11/WELCOM-TO-DA-NANG-HOI-AN-HUE-2.jpg");
  transform: rotate(4deg);
}

.stv-photo--two {
  left: 0;
  top: 110px;
  width: 48%;
  height: 315px;
  background-image: url("../../uploads/2024/11/welcome-ho-chi-minh-city.jpg");
  transform: rotate(-7deg);
  animation-delay: 1.2s;
}

.stv-photo--three {
  right: 26px;
  bottom: 0;
  width: 62%;
  height: 220px;
  background-image: url("../../uploads/2024/11/KINH-THANH-HUE.jpg");
  transform: rotate(-2deg);
  animation-delay: 2.4s;
}

.stv-plan-card {
  position: absolute;
  left: 8%;
  bottom: 38px;
  z-index: 2;
  width: min(420px, 92%);
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 60px rgba(16, 36, 49, 0.18);
}

.stv-plan-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.stv-plan-card p {
  margin: 14px 0 0;
  color: var(--stv-ink-soft);
  line-height: 1.7;
}

.stv-plan-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.stv-plan-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--stv-ink);
}

.stv-plan-card li i {
  color: var(--stv-teal);
  margin-top: 3px;
}

.stv-plan-card__actions {
  margin-top: 22px;
}

.stv-plan-card__actions .button {
  min-height: 46px;
  line-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  margin: 0;
}

.stv-plan-card__actions .button.secondary {
  background: transparent !important;
  color: var(--stv-teal) !important;
  border: 1px solid rgba(15, 118, 110, 0.24);
}

.stv-value-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.stv-value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stv-value-card {
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 49, 0.08);
  box-shadow: 0 18px 46px rgba(16, 36, 49, 0.08);
}

.stv-value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(231, 111, 81, 0.14));
  color: var(--stv-teal);
  font-size: 20px;
}

.stv-value-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.stv-value-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--stv-ink-soft);
}

.stv-section__heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.stv-section__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.stv-section__heading p {
  margin: 14px 0 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--stv-ink-soft);
}

.stv-section__eyebrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--stv-teal);
}

.stv-destination-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.stv-destination-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 34px;
  min-height: 290px;
  box-shadow: var(--stv-shadow);
}

.stv-destination-card--large-left {
  grid-column: span 7;
}

.stv-destination-card--large-right {
  grid-column: span 5;
}

.stv-destination-card--small-left {
  grid-column: span 5;
}

.stv-destination-card--small-right {
  grid-column: span 7;
}

.stv-destination-card__media,
.stv-destination-card__media::after {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}

.stv-destination-card__media {
  background-size: cover;
  background-position: center;
}

.stv-destination-card__media::after {
  content: "";
  background: linear-gradient(180deg, rgba(16, 36, 49, 0.04), rgba(16, 36, 49, 0.82));
}

.stv-destination-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 28px;
  color: #ffffff;
}

.stv-destination-card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stv-home .stv-destination-grid .stv-destination-card h3 {
  margin: 18px 0 10px;
  color: #ffffff !important;
  font-size: 28px;
  text-shadow: 0 3px 10px rgba(9, 20, 28, 0.4), 0 12px 28px rgba(9, 20, 28, 0.28);
}

.stv-destination-card p {
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.stv-destination-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
}

.stv-destination-card:hover .stv-destination-card__media {
  transform: scale(1.06);
}

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

.stv-tour-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 49, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 36, 49, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stv-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(16, 36, 49, 0.14);
  border-color: rgba(15, 118, 110, 0.14);
}

.stv-tour-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.stv-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.stv-tour-card:hover .stv-tour-card__image img {
  transform: scale(1.07);
}

.stv-tour-card__body {
  padding: 24px;
}

.stv-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 16px;
  color: var(--stv-ink-soft);
  font-size: 13px;
}

.stv-tour-card__meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.stv-tour-card__meta i {
  color: var(--stv-teal);
}

.stv-tour-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.stv-tour-card p {
  margin: 14px 0 0;
  color: var(--stv-ink-soft);
  line-height: 1.75;
}

.stv-inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
  color: var(--stv-teal);
}

.stv-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.stv-split__media {
  position: relative;
}

.stv-media-card {
  min-height: 560px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(16, 36, 49, 0.12), rgba(16, 36, 49, 0.2)),
    url("../../uploads/2024/11/THUYEN-DEN-LONG.jpg") center/cover no-repeat;
  box-shadow: var(--stv-shadow);
}

.stv-media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(16, 36, 49, 0.16);
}

.stv-media-badge strong {
  display: block;
  color: var(--stv-teal);
  font-size: 30px;
  line-height: 1;
}

.stv-media-badge span {
  display: block;
  margin-top: 8px;
  color: var(--stv-ink-soft);
}

.stv-split__content h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.stv-split__content p {
  margin: 18px 0 0;
  color: var(--stv-ink-soft);
  line-height: 1.85;
  font-size: 17px;
}

.stv-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.stv-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.stv-list i {
  margin-top: 5px;
  color: var(--stv-accent);
}

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

.stv-step {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 49, 0.08);
  box-shadow: 0 18px 40px rgba(16, 36, 49, 0.08);
}

.stv-step__number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(231, 111, 81, 0.18));
  color: var(--stv-teal);
  font-size: 18px;
  font-weight: 700;
}

.stv-step h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.stv-step p {
  margin: 0;
  color: var(--stv-ink-soft);
  line-height: 1.75;
}

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

.stv-quote {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 49, 0.08);
  box-shadow: 0 18px 40px rgba(16, 36, 49, 0.08);
}

.stv-quote__stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.stv-quote p {
  margin: 16px 0 0;
  color: var(--stv-ink);
  font-size: 17px;
  line-height: 1.8;
}

.stv-quote footer {
  margin-top: 18px;
  color: var(--stv-ink-soft);
  font-size: 14px;
}

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

.stv-guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 49, 0.08);
  box-shadow: 0 18px 40px rgba(16, 36, 49, 0.08);
}

.stv-guide-card__image {
  display: block;
  aspect-ratio: 16 / 10;
}

.stv-guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stv-guide-card__body {
  padding: 22px;
}

.stv-guide-card__category {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--stv-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stv-guide-card h3 {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.stv-guide-card p {
  margin: 14px 0 0;
  color: var(--stv-ink-soft);
  line-height: 1.75;
}

.stv-faq {
  display: grid;
  gap: 14px;
}

.stv-faq__item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 49, 0.08);
  box-shadow: 0 12px 30px rgba(16, 36, 49, 0.06);
  overflow: hidden;
}

.stv-faq__question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  color: var(--stv-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.stv-faq__question i {
  color: var(--stv-teal);
  transition: transform 0.3s ease;
}

.stv-faq__item.is-open .stv-faq__question i {
  transform: rotate(45deg);
}

.stv-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.stv-faq__item.is-open .stv-faq__answer {
  grid-template-rows: 1fr;
}

.stv-faq__answer > div {
  overflow: hidden;
}

.stv-faq__answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--stv-ink-soft);
  line-height: 1.8;
}

.stv-cta {
  padding: 24px 0 98px;
}

.stv-cta__panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(130deg, rgba(10, 75, 79, 0.96), rgba(15, 118, 110, 0.94)),
    url("../../uploads/2024/11/DU-THUYEN-SONG-HAN.jpg") center/cover no-repeat;
  box-shadow: 0 28px 60px rgba(10, 75, 79, 0.24);
}

.stv-cta__panel h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  max-width: 720px;
}

.stv-cta__panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.stv-cta__actions .button {
  min-height: 50px;
  line-height: 48px;
  border-radius: 999px;
  margin: 0;
}

.stv-cta__actions .button.secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.stv-footer {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.18), transparent 32%),
    linear-gradient(180deg, #102431 0%, #0a1620 100%);
  color: rgba(255, 255, 255, 0.84);
}

.stv-footer__main {
  padding: 74px 0 28px;
}

.stv-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.stv-footer h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 22px;
}

.stv-footer p,
.stv-footer li,
.stv-footer a {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.stv-footer p {
  margin: 0 0 10px;
}

.stv-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stv-footer a:hover {
  color: #ffffff;
}

.stv-footer__tagline {
  max-width: 360px;
}

.stv-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stv-footer__chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stv-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.stv-footer__actions .button {
  min-height: 44px;
  line-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  margin: 0;
}

.stv-footer__actions .button.secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stv-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 30px;
}

.stv-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.stv-footer__bottom p {
  margin: 0;
  font-size: 14px;
}

.stv-footer__bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stv-supports {
  position: fixed;
  right: 20px;
  bottom: 118px;
  z-index: 999;
  display: grid;
  gap: 14px;
}

.stv-supports__item {
  display: grid;
  place-items: center;
  align-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  color: #ffffff !important;
  background: transparent !important;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(16, 36, 49, 0.16);
  transform: translateX(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.supports.stv-supports .stv-supports__item img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.stv-supports__item i,
.stv-supports__item span {
  display: none !important;
}

.stv-supports__item--phone {
  background: transparent !important;
}

.stv-supports__item--whatsapp {
  background: transparent !important;
}

.stv-supports__item--messenger {
  background: transparent !important;
}

.stv-supports__item:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(16, 36, 49, 0.2);
  filter: saturate(1.04);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html:focus-within {
  scroll-behavior: smooth;
}

@keyframes stv-pan {
  from {
    transform: translateY(0) scale(1.01);
  }
  to {
    transform: translateY(-8px) scale(1.04);
  }
}

@media (max-width: 1140px) {
  .stv-hero__grid,
  .stv-split {
    grid-template-columns: 1fr;
  }

  .stv-hero__aside {
    min-height: 520px;
  }

  .stv-value-strip__grid,
  .stv-tour-grid,
  .stv-quote-grid,
  .stv-guide-grid,
  .stv-steps,
  .stv-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stv-destination-card--large-left,
  .stv-destination-card--large-right,
  .stv-destination-card--small-left,
  .stv-destination-card--small-right {
    grid-column: span 6;
  }

  .stv-cta__panel,
  .stv-footer__bottom-inner,
  .stv-section__heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 849px) {
  body.home #top-bar {
    display: none;
  }

  body.home .header-bottom,
  .stv-desktop-nav,
  .stv-header-actions {
    display: none;
  }

  body.home #masthead .header-inner {
    min-height: 76px;
  }

  .stv-mainbar {
    min-height: 76px;
  }

  .stv-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .stv-shell {
    width: min(100% - 28px, 1240px);
  }

  .stv-hero {
    padding-top: 54px;
    padding-bottom: 78px;
  }

  .stv-metrics,
  .stv-value-strip__grid,
  .stv-tour-grid,
  .stv-quote-grid,
  .stv-guide-grid,
  .stv-steps,
  .stv-footer__grid {
    grid-template-columns: 1fr;
  }

  .stv-destination-grid {
    grid-template-columns: 1fr;
  }

  .stv-destination-card--large-left,
  .stv-destination-card--large-right,
  .stv-destination-card--small-left,
  .stv-destination-card--small-right {
    grid-column: auto;
  }

  .stv-hero__aside {
    min-height: 450px;
  }

  .stv-plan-card {
    left: 0;
    bottom: 0;
  }

  .stv-photo--one {
    width: 56%;
    height: 180px;
  }

  .stv-photo--two {
    top: 94px;
    width: 46%;
    height: 220px;
  }

  .stv-photo--three {
    width: 54%;
    height: 160px;
  }

  .stv-media-card {
    min-height: 380px;
  }

  .stv-supports {
    right: 14px;
    bottom: 88px;
  }

  .stv-supports__item {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 549px) {
  body.home #logo img,
  body.home .stuck #logo img {
    max-height: 60px !important;
  }

  .stv-section {
    padding: 70px 0;
  }

  .stv-hero__content h1,
  .stv-section__heading h2,
  .stv-split__content h2,
  .stv-cta__panel h2 {
    line-height: 1.02;
  }

  .stv-lead,
  .stv-section__heading p,
  .stv-split__content p,
  .stv-quote p {
    font-size: 16px;
  }

  .stv-plan-card,
  .stv-value-card,
  .stv-tour-card,
  .stv-step,
  .stv-quote,
  .stv-guide-card,
  .stv-faq__item,
  .stv-cta__panel {
    border-radius: 24px;
  }

  .stv-hero__actions,
  .stv-plan-card__actions,
  .stv-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stv-hero__actions .button,
  .stv-plan-card__actions .button,
  .stv-cta__actions .button {
    width: 100%;
    text-align: center;
  }

  .stv-badges li {
    width: 100%;
  }

  .stv-plan-card {
    width: 100%;
    padding: 24px;
  }

  .stv-supports__item {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

:root {
  --stv-ink: #102431;
  --stv-ink-soft: #5e7180;
  --stv-teal: #0f766e;
  --stv-teal-deep: #0a4b4f;
  --stv-accent: #e76f51;
  --stv-sand: #f3ebdf;
  --stv-cream: #f7f6f2;
  --stv-card: #ffffff;
  --stv-line: rgba(16, 36, 49, 0.12);
  --stv-shadow: 0 30px 70px rgba(16, 36, 49, 0.14);
}

body.stv-page {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.08), transparent 28%),
    var(--stv-cream);
  color: var(--stv-ink);
}

body.stv-page,
body.stv-page p,
body.stv-page li,
body.stv-page a,
body.stv-page span {
  font-family: "Muli", "Roboto Condensed", sans-serif;
}

body.stv-page h1,
body.stv-page h2,
body.stv-page h3,
body.stv-page h4,
body.stv-page h5,
body.stv-page h6 {
  font-family: "Muli", "Roboto Condensed", sans-serif;
  letter-spacing: -0.03em;
  color: var(--stv-ink);
}

.stv-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.stv-site-header .header-wrapper {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(16, 36, 49, 0.06);
}

.stv-site-header #top-bar {
  background: linear-gradient(90deg, #102431 0%, #0f766e 100%);
}

.stv-site-header #top-bar .stv-topbar__items a,
.stv-site-header #top-bar .stv-topbar__social a {
  color: rgba(255, 255, 255, 0.86);
}

.stv-site-header #top-bar .stv-topbar__items a:hover,
.stv-site-header #top-bar .stv-topbar__social a:hover {
  color: #ffffff;
}

.stv-site-header #masthead {
  background: transparent;
}

.stv-site-header #logo {
  width: auto !important;
}

.stv-site-header #logo img {
  max-height: 68px !important;
  width: auto;
}

.stv-site-header .stv-desktop-nav a.is-current {
  color: var(--stv-teal);
}

body.stv-page .header-bottom,
body.stv-page #main-menu,
body.stv-page #login-form-popup,
body.stv-page .supports:not(.stv-supports),
body.stv-page .gtranslate_wrapper,
body.stv-page .blog-share,
body.stv-page #comments,
body.stv-page .mh-page-title-inner,
body.stv-page .shop-page-title .woocommerce-ordering,
body.stv-page .shop-page-title .woocommerce-result-count {
  display: none !important;
}

body.stv-page #main {
  padding: 34px 0 92px;
}

body.stv-page a {
  color: inherit;
}

body.stv-page img {
  max-width: 100%;
}

body.stv-page .shop-page-title,
body.stv-page .row.page-wrapper,
body.stv-page .blog-single .row.align-center,
body.stv-page .content-area.page-wrapper .row-main {
  width: min(100% - 40px, 1220px);
  margin-left: auto;
  margin-right: auto;
}

body.stv-page .shop-page-title {
  margin-top: 8px;
  margin-bottom: 26px;
}

body.stv-page .shop-page-title .page-title-inner,
body.stv-page .entry-header,
body.stv-page.single-product .product-title-container,
.stv-notice-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--stv-line);
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(255, 255, 255, 0.96) 44%);
  box-shadow: var(--stv-shadow);
}

body.stv-page .shop-page-title .page-title-inner::after,
body.stv-page .entry-header::after,
body.stv-page.single-product .product-title-container::after,
.stv-notice-card::after {
  content: "";
  position: absolute;
  inset: auto -6% -35% auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.14), transparent 68%);
  pointer-events: none;
}

body.stv-page .shop-page-title .page-title-inner {
  padding: 40px 42px;
}

body.stv-page .woocommerce-breadcrumb,
body.stv-page .entry-category {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--stv-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.stv-page .woocommerce-breadcrumb a,
body.stv-page .entry-category a {
  color: var(--stv-teal);
}

body.stv-page .woocommerce-breadcrumb .divider {
  color: rgba(15, 118, 110, 0.38);
}

body.stv-page .entry-header,
body.stv-page.single-product .product-title-container {
  margin-bottom: 28px;
  padding: 36px 40px 28px;
}

body.stv-page .entry-header .entry-title,
body.stv-page.single-product .product-title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

body.stv-page .entry-header .entry-meta {
  margin-top: 18px;
  color: var(--stv-ink-soft);
  font-size: 13px;
  letter-spacing: 0.05em;
}

body.stv-page .entry-divider.is-divider {
  margin: 16px 0 0;
  width: 82px;
  height: 4px;
  background: linear-gradient(90deg, var(--stv-accent), var(--stv-teal));
  border-radius: 999px;
}

body.stv-page .entry-content,
body.stv-page .entry-content.single-page {
  color: var(--stv-ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

body.stv-page .entry-content > *:first-child {
  margin-top: 0;
}

body.stv-page .entry-content h2,
body.stv-page .entry-content h3,
body.stv-page .entry-content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  line-height: 1.14;
}

body.stv-page .entry-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

body.stv-page .entry-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

body.stv-page .entry-content p,
body.stv-page .entry-content ul,
body.stv-page .entry-content ol {
  margin-bottom: 1em;
}

body.stv-page .entry-content ul,
body.stv-page .entry-content ol {
  padding-left: 1.35em;
}

body.stv-page .entry-content blockquote {
  margin: 26px 0;
  padding: 22px 24px;
  border-radius: 24px;
  border-left: 0;
  background: rgba(15, 118, 110, 0.08);
  color: var(--stv-ink);
}

body.stv-page .entry-content img,
body.stv-page .entry-content .box-image img,
body.stv-page.single-product .mh-content-day img {
  border-radius: 22px;
}

body.stv-page .entry-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}

body.stv-page .entry-content table td,
body.stv-page .entry-content table th {
  border: 1px solid rgba(16, 36, 49, 0.12);
  padding: 12px 14px;
}

body.stv-page .entry-content table th {
  background: rgba(15, 118, 110, 0.08);
  color: var(--stv-ink);
}

body.stv-page.archive .products,
body.stv-page .blog-archive .row-masonry {
  gap: 28px 0;
}

body.stv-page .product-small .box,
body.stv-page .post-item .box {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(16, 36, 49, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(16, 36, 49, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

body.stv-page .product-small .box:hover,
body.stv-page .post-item .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(16, 36, 49, 0.14);
  border-color: rgba(15, 118, 110, 0.14);
}

body.stv-page .product-small .box-image,
body.stv-page .post-item .box-image {
  position: relative;
  overflow: hidden;
}

body.stv-page .product-small img,
body.stv-page .post-item .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

body.stv-page .product-small .box:hover img,
body.stv-page .post-item .box:hover .box-image img {
  transform: scale(1.06);
}

body.stv-page .product-small .box-image {
  aspect-ratio: 4 / 3;
  background: #d9e7e5;
}

body.stv-page .product-small .box-image > div,
body.stv-page .product-small .image-none,
body.stv-page .product-small .image-none > a {
  height: 100%;
}

body.stv-page .product-small .box-text-products {
  padding: 22px 22px 24px !important;
}

body.stv-page .product-small .product-title,
body.stv-page .post-item .post-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.24;
}

body.stv-page .product-small .price-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 49, 0.08);
}

body.stv-page .product-small .mh-tour-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--stv-ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

body.stv-page .product-small .mh-tour-info i {
  color: var(--stv-teal);
}

body.stv-page .product-small .mh-start {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(16, 36, 49, 0.76);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.35;
  z-index: 2;
}

body.stv-page .product-small .mh-box-excerpt {
  padding: 18px 18px 0;
}

body.stv-page .product-small .mh-excerpt p,
body.stv-page .post-item .from_the_blog_excerpt {
  margin: 0;
  color: var(--stv-ink-soft);
  line-height: 1.74;
}

body.stv-page .product-small .mh-link {
  margin: 12px 0 0;
  color: var(--stv-teal);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.stv-page .product-small .mh-link::after {
  content: " ->";
}

body.stv-page .post-item .box-text {
  padding: 22px 22px 26px;
}

body.stv-page .post-item .box-text-inner {
  display: grid;
  gap: 14px;
}

body.stv-page .post-item .is-divider {
  display: none;
}

body.stv-page .post-item .badge {
  left: 16px;
  top: 16px;
}

body.stv-page .post-item .badge-inner {
  min-width: 62px;
  padding: 10px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--stv-ink);
  box-shadow: 0 14px 28px rgba(16, 36, 49, 0.14);
}

body.stv-page.single-product .shop-container {
  padding-top: 4px;
}

body.stv-page.single-product .product-title-container {
  margin-bottom: 24px;
}

body.stv-page.single-product .woocommerce-product-gallery,
body.stv-page.single-product .mh-content-tour,
body.stv-page.single-product .mh-quick-info,
body.stv-page.single-product .mh-box-price {
  border-radius: 28px;
  border: 1px solid rgba(16, 36, 49, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(16, 36, 49, 0.1);
}

body.stv-page.single-product .woocommerce-product-gallery {
  overflow: hidden;
}

body.stv-page.single-product .mh-content-tour {
  overflow: hidden;
  margin-bottom: 24px;
}

body.stv-page.single-product .mh-box-title-tour {
  margin: 0;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--stv-teal) 0%, var(--stv-teal-deep) 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

body.stv-page.single-product .mh-box-title-tour i {
  margin-right: 8px;
}

body.stv-page.single-product .mh-tour-info {
  padding: 24px 26px;
  color: var(--stv-ink-soft);
  line-height: 1.82;
}

body.stv-page.single-product .mh-tour-info .mh-box-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

body.stv-page.single-product .mh-tour-info .mh-box-info p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--stv-ink);
}

body.stv-page.single-product .mh-list-day + .mh-list-day {
  border-top: 1px solid rgba(16, 36, 49, 0.08);
}

body.stv-page.single-product .mh-head-day {
  margin: 0;
  padding: 18px 24px;
  font-size: 17px;
  color: var(--stv-ink);
}

body.stv-page.single-product .mh-content-day {
  padding: 0 24px 24px;
}

body.stv-page.single-product .mh-quick-info,
body.stv-page.single-product .mh-box-price {
  padding: 24px;
}

body.stv-page.single-product .mh-quick-info h4 {
  margin: 0 0 14px;
  font-size: 22px;
}

body.stv-page.single-product .mh-quick-info p {
  margin: 0 0 10px;
  color: var(--stv-ink-soft);
}

body.stv-page.single-product .mh-single-price,
body.stv-page.single-product .price {
  color: var(--stv-accent);
}

body.stv-page.single-product .mh-box-price .button,
body.stv-page.single-product .mh-box-price button,
body.stv-page.single-product .mh-box-price a[href^="#"],
body.stv-page.single-product .mh-box-price a[href^="tel:"] {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
}

.stv-notice-page {
  width: min(100% - 40px, 860px);
  margin: 18px auto 0;
}

.stv-notice-card {
  padding: 48px 52px;
  text-align: center;
}

.stv-notice-card h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.stv-notice-card p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--stv-ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.stv-notice-card__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stv-notice-card__actions .button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
}

@media (max-width: 849px) {
  .stv-site-header #top-bar {
    display: none;
  }

  body.stv-page #main {
    padding-top: 26px;
  }

  body.stv-page .shop-page-title,
  body.stv-page .row.page-wrapper,
  body.stv-page .blog-single .row.align-center,
  body.stv-page .content-area.page-wrapper .row-main,
  .stv-notice-page {
    width: min(100% - 28px, 1220px);
  }

  body.stv-page .shop-page-title .page-title-inner,
  body.stv-page .entry-header,
  body.stv-page.single-product .product-title-container,
  .stv-notice-card {
    padding: 30px 24px;
    border-radius: 26px;
  }

  body.stv-page .product-small .box-image {
    aspect-ratio: 5 / 4;
  }

  body.stv-page .post-item .box-text,
  body.stv-page .product-small .box-text-products {
    padding: 20px;
  }
}

@media (max-width: 549px) {
  .stv-site-header #logo img {
    max-height: 60px !important;
  }

  body.stv-page .shop-page-title,
  body.stv-page .row.page-wrapper,
  body.stv-page .blog-single .row.align-center,
  body.stv-page .content-area.page-wrapper .row-main,
  .stv-notice-page {
    width: min(100% - 22px, 1220px);
  }

  body.stv-page .shop-page-title .page-title-inner,
  body.stv-page .entry-header,
  body.stv-page.single-product .product-title-container,
  .stv-notice-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  body.stv-page .entry-header .entry-title,
  body.stv-page.single-product .product-title,
  .stv-notice-card h1 {
    line-height: 1.02;
  }

  body.stv-page .entry-content,
  body.stv-page .entry-content.single-page,
  .stv-notice-card p {
    font-size: 16px;
  }

  body.stv-page.single-product .mh-tour-info,
  body.stv-page.single-product .mh-quick-info,
  body.stv-page.single-product .mh-box-price {
    padding: 20px;
  }

  .stv-notice-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stv-notice-card__actions .button {
    width: 100%;
    text-align: center;
  }
}
