:root {
  --bg: #fff8fb;
  --surface: #ffffff;
  --ink: #261b23;
  --muted: #766a72;
  --brand: #a51f62;
  --brand-dark: #771244;
  --accent: #e7d8ff;
  --line: #eadde5;
  --shadow: 0 18px 45px rgba(82, 38, 67, .12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.top-strip {
  background: var(--top-strip-bg, var(--brand-dark));
  color: var(--top-strip-text, #fff);
  font-size: var(--top-strip-size, 14px);
  font-family: var(--header-font, "Segoe UI", Arial, Helvetica, sans-serif);
}
.top-strip__inner { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.top-strip-right,
.top-strip-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.top-strip-right > :not([hidden]) + :not([hidden])::before,
.top-strip-links a + a::before {
  content: "|";
  padding: 0 9px;
  color: #fff;
  opacity: .9;
}
.top-strip-links a {
  color: inherit;
  white-space: nowrap;
}
.top-strip-links a:hover { text-decoration: underline; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--header-bg, #fff8fb) 96%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-family: var(--header-font, "Segoe UI", Arial, Helvetica, sans-serif);
  color: var(--header-text, var(--ink));
}
.site-header.not-sticky { position: static; }
.header-grid {
  min-height: var(--header-height, 78px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--brand-color, var(--brand)); font-family: var(--header-font, Georgia, "Times New Roman", serif); font-size: var(--brand-size, 26px); font-weight: 600; }
.brand img { width: var(--logo-width, 68px); height: var(--logo-height, 42px); object-fit: contain; }
.main-menu { display: flex; align-items: center; justify-content: space-evenly; flex-wrap: nowrap; gap: 6px; font-size: var(--menu-size, 14px); font-weight: 600; text-transform: uppercase; }
.main-menu a { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 8px; border-radius: var(--header-radius, var(--radius)); color: var(--menu-color, #5b233d); line-height: 1.2; text-align: center; white-space: nowrap; }
.main-menu a:hover { background: var(--menu-hover-bg, #f4dce8); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-search {
  width: clamp(170px, 20vw, 280px);
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--header-radius, var(--radius));
  background: var(--header-action-bg, #fff);
}
.header-search input {
  min-width: 0;
  height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--header-action-text, var(--brand-dark));
  font-size: 14px;
}
.header-search button {
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--header-cta-bg, var(--brand));
  color: var(--header-cta-text, #fff);
  font-weight: 600;
  cursor: pointer;
}
.icon-link { min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--header-radius, var(--radius)); background: var(--header-action-bg, #fff); color: var(--header-action-text, var(--brand-dark)); font-weight: 600; }
.cart-count { position: relative; }
.cart-count span { position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; border-radius: 999px; background: var(--header-cta-bg, var(--brand)); color: var(--header-cta-text, #fff); font-size: 12px; display: grid; place-items: center; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--header-action-bg, #fff); border-radius: var(--header-radius, var(--radius)); color: var(--header-action-text, var(--brand)); font-size: 22px; }
.site-header .btn {
  background: var(--header-cta-bg, var(--brand));
  border-color: var(--header-cta-bg, var(--brand));
  color: var(--header-cta-text, #fff);
  border-radius: var(--header-radius, var(--radius));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn.ghost { background: #fff; color: var(--brand); }
.btn.small { min-height: 38px; padding: 8px 12px; }
.btn.full { width: 100%; }
.text-link, .text-button { color: var(--brand); font-weight: 600; background: none; border: 0; cursor: pointer; }

.flash { width: min(100% - 32px, var(--max)); margin: 16px auto 0; padding: 12px 14px; border: 1px solid #bfe3c7; background: #edfff0; color: #1a6b32; border-radius: var(--radius); }
.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero__content { position: relative; z-index: 1; padding: 100px 0 86px; transform: translateY(calc(var(--hero-content-lift, 0px) * -1)); }
.hero__slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__slide { position: absolute; inset: 0; opacity: 0; background-repeat: no-repeat; animation: heroSlideFade calc(var(--hero-slide-count, 3) * var(--hero-slide-duration, 4.5s)) ease-in-out infinite; animation-delay: var(--hero-slide-delay, 0s); }
.hero__slide:first-child { opacity: 1; }
@keyframes heroSlideFade {
  0%, 44% { opacity: 1; }
  52%, 100% { opacity: 0; }
}
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1 { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: 58px; font-weight: 600; }
.hero p { max-width: 660px; margin: 18px 0 0; color: var(--block-body-color, #fff2f8); font-size: 18px; }
.hero.align-center h1,
.hero.align-center p {
  margin-left: auto;
  margin-right: auto;
}
.hero.align-right h1,
.hero.align-right p {
  margin-left: auto;
  margin-right: 0;
}
.hero.layout-image-left { background-position: left center; }
.hero.layout-image-right { background-position: right center; }
.hero.layout-image-left .hero__slide,
.hero.layout-image-right .hero__slide {
  border-radius: var(--block-image-radius, 0px);
}
.hero.layout-image-right .hero__slide {
  clip-path: inset(0 0 0 calc(100% - var(--hero-image-width, 50%)) round var(--block-image-radius, 0px));
}
.hero.layout-image-left .hero__slide {
  clip-path: inset(0 calc(100% - var(--hero-image-width, 50%)) 0 0 round var(--block-image-radius, 0px));
}
.hero.layout-image-top { background-position: center top; }
.hero.layout-image-right.align-left h1,
.hero.layout-image-right.align-left .rich-content,
.hero.layout-image-right.align-left .actions {
  max-width: min(760px, calc(100% - var(--hero-image-width, 50%) - var(--block-gap-x, 32px)));
}
.hero.layout-image-left.align-right h1,
.hero.layout-image-left.align-right .rich-content,
.hero.layout-image-left.align-right .actions {
  max-width: min(760px, calc(100% - var(--hero-image-width, 50%) - var(--block-gap-x, 32px)));
  margin-left: auto;
}
.hero.layout-text-only { background-image: none !important; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: var(--block-button-align, flex-start); }

.section { padding: 76px 0; }
.section.alt { background: #fff; }
.section.compact { padding: 40px 0; }
.section-head { margin-bottom: 28px; }
.section-head.row { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.section-head h2, .page-hero h1, .detail h1, .article h1 { color: var(--brand-dark); font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-weight: 600; }
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.category-card, .item-card, .post-card, .policy, .contact-card, .cart-panel, .side-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(82, 38, 67, .08);
}
.category-card {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  gap: 10px;
  text-align: center;
}
.category-card img {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: var(--radius);
}
.category-card strong,
.category-card span {
  width: 100%;
  text-align: center;
}
.category-card strong, .item-card h2, .item-card h3, .post-card h2, .post-card h3 { color: var(--brand-dark); font-weight: 600; }
.category-card span, .item-card p, .post-card p, .policy span { color: var(--muted); }

.category-grid {
  grid-template-columns: repeat(var(--cols-desktop, 4), minmax(0, 1fr));
}
.category-grid .category-card {
  min-width: 0;
}
.category-grid .category-card strong,
.category-grid .category-card span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.category-grid .category-card strong {
  -webkit-line-clamp: 1;
}
.category-grid .category-card span {
  -webkit-line-clamp: 2;
}
.item-card, .post-card { overflow: hidden; }
.item-card img, .post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.item-card__body, .post-card div { padding: 18px; }
.item-card h2, .item-card h3, .post-card h2, .post-card h3 { font-size: 22px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.card-bottom button { border: 0; border-radius: var(--radius); background: #f3d7e5; color: var(--brand-dark); font-weight: 600; padding: 10px 14px; cursor: pointer; }
.policy { padding: 18px; display: grid; gap: 8px; }
.policy__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: var(--block-image-radius, var(--radius));
}

.page-hero { padding: 64px 0 36px; background: #fff; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 700px; color: var(--muted); }
.filter-bar { margin-bottom: 24px; }
.filter-bar form, .search-large { display: flex; gap: 10px; max-width: 620px; }
.filter-bar form,
.search-large {
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(82, 38, 67, .07);
}
.filter-bar input,
.search-large input {
  border-color: transparent;
  border-radius: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.detail { padding: 64px 0; background: #fff; }
.detail-grid, .content-layout, .cart-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.detail-media img { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.summary { color: var(--muted); font-size: 18px; }
.price { margin-top: 18px; color: var(--brand); font-size: 28px; font-weight: 600; }
.rich-text { max-width: 900px; }
.rich-text img { border-radius: var(--radius); }
.rich-text h2, .rich-text h3 { color: var(--brand-dark); margin-top: 24px; }
.side-box { padding: 22px; position: sticky; top: 98px; }
.side-box h3 { color: var(--brand-dark); margin-top: 18px; }

.article { padding: 60px 0 80px; background: #fff; }
.article__head { max-width: 900px; }
.article__head p { color: var(--muted); }
.article-cover { width: min(100% - 32px, 980px); max-height: 540px; object-fit: cover; margin: 30px auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.result-list { display: grid; gap: 12px; }
.result-item { display: grid; gap: 4px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.result-item span { color: var(--muted); }
.form-stack { display: grid; gap: 14px; }
.contact-card, .cart-panel { padding: 24px; }
.cart-list { display: grid; gap: 10px; margin: 16px 0; }
.cart-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff8fb; }

.cta { background: var(--brand-dark); color: #fff; padding: 52px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta p { color: #f5dce8; max-width: 700px; }
.cta .block-subtitle { margin: 12px 0 18px; line-height: 1.55; }
.cta .rich-content { line-height: 1.75; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cta__actions .btn { white-space: nowrap; }
.cta__actions .btn.ghost { border-color: rgba(255,255,255,.65); background: transparent; color: #fff; }

.contact-seo-note,
.form-intro { color: var(--muted); font-size: 14px; line-height: 1.72; }
.contact-service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.contact-service-gallery a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(82,38,67,.06);
}
.contact-service-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.contact-service-gallery span { display: block; padding: 9px 7px; }

.article-consult {
  margin-top: 44px;
  padding: 48px 0 0;
}
.article-consult__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(183,37,112,.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7fb, #ffffff);
  box-shadow: 0 18px 45px rgba(82,38,67,.09);
}
.article-consult h2 {
  margin: 6px 0 12px;
  color: var(--brand-dark);
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.32;
}
.article-consult p {
  color: #685761;
  line-height: 1.75;
}
.article-consult__address { margin-top: 12px; }
.article-consult__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.article-consult__links a {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f6d7e6;
  color: #86174c;
  font-size: 13px;
  font-weight: 700;
}
.article-consult__media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 560px;
}
.article-consult__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(183,37,112,.14);
}
.article-consult__actions {
  display: grid;
  gap: 10px;
}
.article-consult__actions .btn { white-space: nowrap; }

/* Service archive and SEO service articles */
.service-archive-hero,
.service-detail-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.service-archive-hero { background-image: linear-gradient(90deg, rgba(42, 14, 30, .90) 0%, rgba(75, 19, 49, .72) 48%, rgba(75, 19, 49, .15) 100%), var(--service-hero-image); }
.service-detail-hero { background-image: linear-gradient(90deg, rgba(42, 14, 30, .92) 0%, rgba(75, 19, 49, .76) 52%, rgba(75, 19, 49, .18) 100%), var(--service-detail-image); }
.service-archive-hero__content,
.service-detail-hero__content { width: 100%; padding-block: 72px; color: #fff; }
.service-archive-hero__content > *,
.service-detail-hero__content > * { max-width: 760px; }
.service-archive-hero h1,
.service-detail-hero h1 { margin: 10px 0 18px; color: #fff !important; font-family: "Playfair Display", Georgia, serif; font-size: clamp(38px, 5vw, 62px); line-height: 1.12; }
.service-archive-hero p,
.service-detail-hero p { color: #fbeaf2; font-size: 17px; line-height: 1.75; }
.service-archive-hero .eyebrow,
.service-detail-hero .eyebrow { color: #ffd7e9; }
.service-archive-hero .btn,
.service-detail-hero .btn { background: #fff; color: var(--brand-dark); border-color: #fff; }
.service-archive-hero .btn.ghost,
.service-detail-hero .btn.ghost { background: transparent; color: #fff; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #f8dce9; font-size: 13px; }
.breadcrumbs a { color: #fff; }
.breadcrumbs strong { max-width: min(100%, 420px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.service-detail-hero__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; }
.service-detail-hero__meta span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.1); }

.service-archive-layout,
.service-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; align-items: start; }
.service-archive-main { min-width: 0; }
.service-archive-main .section-head p { max-width: 760px; color: var(--muted); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-grid .service-card { width: 100%; max-width: none; height: 100%; border-radius: 14px; box-shadow: 0 14px 34px rgba(82, 38, 67, .10); }
.service-grid .service-card .item-card__media { aspect-ratio: 4 / 3; }
.service-grid .service-card .item-card__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.service-grid .service-card:hover .item-card__media img { transform: scale(1.035); }
.service-grid .service-card .item-card__body { padding: 17px; }
.service-grid .service-card h2,
.service-grid .service-card h3 { min-height: 52px; max-height: none; font-size: 19px; line-height: 1.35; font-weight: 600; }
.service-grid .service-card .item-summary { display: -webkit-box; min-height: 67px; max-height: 67px; margin-top: 9px; font-size: 14px; line-height: 1.58; -webkit-line-clamp: 3; }
.service-grid .service-card .item-price { color: var(--brand); font-size: 18px; }
.service-grid .service-card .item-meta { margin-top: 10px; font-size: 11px; }
.service-grid .service-card .service-card__link { display: flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 12px; border-radius: 8px; background: var(--brand); color: #fff; font-size: 13px; }

.service-sidebar { position: sticky; top: 98px; display: grid; gap: 18px; }
.service-sidebar__image { overflow: hidden; border-radius: 18px; box-shadow: 0 16px 34px rgba(82, 38, 67, .12); }
.service-sidebar__image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-sidebar__box { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff8fb; box-shadow: 0 14px 34px rgba(82, 38, 67, .08); }
.service-sidebar__box h2 { margin: 4px 0 12px; color: var(--brand-dark); font-family: "Playfair Display", Georgia, serif; font-size: 25px; }
.service-sidebar__box p,
.service-sidebar__box li { color: #624657; font-size: 14px; line-height: 1.7; }
.service-sidebar__box ul { margin: 16px 0 20px; padding-left: 20px; }
.service-sidebar__box li + li { margin-top: 7px; }
.service-sidebar__nav a { display: block; padding: 11px 0; border-bottom: 1px solid #ecd8e2; color: var(--brand-dark); font-size: 14px; line-height: 1.45; }
.service-sidebar__nav a:last-child { border-bottom: 0; }

.service-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-process-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 28px rgba(82, 38, 67, .07); }
.service-process-grid span { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 16px; border-radius: 50%; background: #f7dce9; color: var(--brand-dark); font-weight: 700; }
.service-process-grid h3 { margin-bottom: 9px; color: var(--brand-dark); font-size: 18px; }
.service-process-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.service-detail-section { background: #fff; }
.service-article { max-width: none; color: #493541; font-size: 16px; line-height: 1.85; }
.service-article > h2:first-child { margin-top: 0; }
.service-article h2 { margin: 38px 0 15px; color: var(--brand-dark); font-family: "Playfair Display", Georgia, serif; font-size: 32px; line-height: 1.25; }
.service-article h3 { margin: 28px 0 12px; color: #8f174f; font-size: 21px; }
.service-article ul,
.service-article ol { padding-left: 24px; }
.service-article li { margin-bottom: 10px; padding-left: 4px; }
.service-steps { display: grid; gap: 12px; margin-top: 18px; list-style-position: inside; }
.service-steps li { padding: 16px 18px; border-left: 4px solid var(--brand); border-radius: 8px; background: #fff7fb; }
.service-faq { display: grid; gap: 10px; }
.service-faq details { border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.service-faq summary { padding: 16px 18px; color: var(--brand-dark); font-weight: 600; cursor: pointer; }
.service-faq details p { margin: 0; padding: 0 18px 18px; color: var(--muted); }
.service-detail-sidebar { top: 98px; }
.service-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-detail-cta { padding: 48px 0; background: #8f174f; color: #fff; }
.service-detail-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.service-detail-cta h2 { margin-bottom: 9px; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 34px; }
.service-detail-cta p { margin: 0; color: #f7dce9; }
.service-detail-cta .btn { flex: 0 0 auto; background: #fff; color: #8f174f; border-color: #fff; }

@media (max-width: 980px) {
  .service-archive-layout,
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-sidebar__nav { grid-column: 1 / -1; }
  .service-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .service-archive-hero,
  .service-detail-hero { min-height: 460px; background-position: 58% center; }
  .service-archive-hero { background-image: linear-gradient(rgba(42, 14, 30, .82), rgba(75, 19, 49, .78)), var(--service-hero-image); }
  .service-detail-hero { background-image: linear-gradient(rgba(42, 14, 30, .84), rgba(75, 19, 49, .80)), var(--service-detail-image); }
  .service-archive-hero__content,
  .service-detail-hero__content { padding-block: 48px; }
  .service-archive-hero h1,
  .service-detail-hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .service-archive-hero p,
  .service-detail-hero p { font-size: 15px; line-height: 1.65; }
  .breadcrumbs { margin-bottom: 20px; }
  .service-grid,
  .service-grid--related { grid-template-columns: 1fr; }
  .service-grid .service-card .item-summary { display: -webkit-box; }
  .service-sidebar { grid-template-columns: 1fr; }
  .service-sidebar__nav { grid-column: auto; }
  .service-process-grid { grid-template-columns: 1fr; }
  .service-article { font-size: 15px; line-height: 1.78; }
  .service-article h2 { font-size: 28px; }
  .service-detail-cta .container { display: grid; }
  .service-detail-cta h2 { font-size: 29px; }
  .service-detail-cta .btn { width: 100%; }
}

.service-category-hero {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  align-items: center;
  border: 0;
  background-image: linear-gradient(90deg, rgba(42,14,30,.90), rgba(75,19,49,.42)), var(--service-category-image);
  background-position: center;
  background-size: cover;
}
.service-category-hero h1 { color: #fff; font-size: clamp(38px, 5vw, 56px); }
.service-category-hero p { color: #f8dfeb; font-size: 17px; line-height: 1.7; }
.service-category-hero .eyebrow { color: #ffd7e9; }

.service-archive-hero h1,
.service-detail-hero h1,
.service-category-hero h1,
.service-archive-main .section-head h2,
.service-benefits .section-head h2,
.service-sidebar__box h2,
.service-article h2,
.service-detail-cta h2 {
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  letter-spacing: -.018em;
  word-spacing: 0;
}
.service-benefits .section-head h2 {
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .service-category-hero { min-height: 330px; background-image: linear-gradient(rgba(42,14,30,.78), rgba(75,19,49,.72)), var(--service-category-image); }
  .service-category-hero h1 { font-size: 36px; }
  .service-category-hero p { font-size: 15px; }
  .service-benefits .section-head h2 { font-size: 29px; }
}

.site-footer { background: #2c1724; color: #fff; padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 28px; }
.footer-grid h3, .footer-grid h4 { margin: 0 0 12px; }
.site-footer p, .site-footer a { color: #f4d8e7; }
.footer-links, .socials { display: grid; gap: 8px; }
.copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #e7c7d8; font-size: 14px; }
.quick-contact { position: fixed; right: 18px; bottom: 18px; display: grid; gap: 10px; z-index: 30; }
.quick-contact a { min-width: 112px; padding: 11px 16px; border-radius: 999px; color: #fff; font-weight: 600; text-align: center; box-shadow: 0 14px 26px rgba(0,0,0,.2); }
.quick-contact .zalo { background: #0068ff; }
.quick-contact .phone { background: var(--brand); }

.custom-block {
  padding-top: var(--block-padding-y, 76px);
  padding-bottom: var(--block-padding-y, 76px);
}

.custom-block > .container {
  width: min(100% - 32px, var(--block-content-width, var(--max)));
}

.custom-block h1,
.custom-block h2,
.custom-block h3 {
  color: var(--block-title-color, inherit);
  font-family: var(--block-title-font, inherit);
  font-size: var(--block-title-size, inherit);
  font-weight: 600;
}

.custom-block p,
.custom-block li,
.custom-block span {
  font-family: var(--block-body-font, inherit);
  font-size: var(--block-body-size, inherit);
}

.custom-block .btn {
  min-height: var(--block-button-height, 42px);
  width: var(--block-button-width, auto);
  padding-left: var(--block-button-padding-x, 16px);
  padding-right: var(--block-button-padding-x, 16px);
  border-width: var(--block-button-border-width, 1px);
  border-style: solid;
  border-color: var(--block-button-border-color, var(--block-button-bg, var(--brand)));
  border-radius: var(--block-button-radius, var(--radius));
  background: var(--block-button-bg, var(--brand));
  color: var(--block-button-text, #fff);
  font-size: var(--block-button-font-size, 16px);
}

.custom-block img {
  border-radius: var(--block-image-radius, var(--radius));
}

.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }
.align-center .actions,
.align-center .section-head.row,
.align-center .cta__inner { justify-content: center; }
.align-right .actions,
.align-right .section-head.row,
.align-right .cta__inner { justify-content: flex-end; }

.dynamic-grid {
  grid-template-columns: repeat(var(--cols-desktop, 3), minmax(0, 1fr));
  gap: var(--block-gap-y, 20px) var(--block-gap-x, 20px);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap-y, 32px) var(--block-gap-x, 32px);
  align-items: center;
}

.content-block.layout-image-right .content-block__image {
  order: 2;
}

.content-block.layout-image-right .content-block__copy {
  order: 1;
}

.content-block.layout-image-top,
.content-block.layout-text-only {
  grid-template-columns: 1fr;
}

.content-block.layout-text-only .content-block__image {
  display: none;
}

.content-block__image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.content-block__copy {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, .62fr);
  gap: var(--block-gap-y, 24px) var(--block-gap-x, 28px);
  align-items: start;
}

.content-block__copy:not(:has(.content-block__side)) {
  grid-template-columns: 1fr;
}

.content-block__side {
  align-self: start;
  padding-top: 0;
}

.heading-block,
.text-block,
.button-block,
.single-image-block {
  display: grid;
  gap: 14px;
}

.text-block {
  max-width: 860px;
}

.align-center .text-block,
.align-center .heading-block,
.align-center .button-block {
  margin-left: auto;
  margin-right: auto;
}

.align-right .text-block,
.align-right .heading-block,
.align-right .button-block {
  margin-left: auto;
}

.single-image-block img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.spacer-block {
  padding: 0;
  min-height: var(--block-padding-y, 60px);
}

.animate-fade,
.animate-zoom,
.animate-pop,
.animate-slide-up,
.animate-slide-down,
.animate-slide-left,
.animate-slide-right,
.animate-float-up,
.animate-pulse,
.animate-tilt,
.animate-blur-in,
.animate-glow,
.animate-shimmer,
.animate-light-ray,
.animate-sparkle {
  animation-duration: .72s;
  animation-timing-function: cubic-bezier(.22, .72, .18, 1);
  animation-fill-mode: both;
}

.animate-fade { animation-name: fadeInBlock; }
.animate-slide-up { animation-name: slideUpBlock; }
.animate-slide-down { animation-name: slideDownBlock; }
.animate-slide-left { animation-name: slideLeftBlock; }
.animate-slide-right { animation-name: slideRightBlock; }
.animate-zoom { animation-name: zoomBlock; }
.animate-pop { animation-name: popBlock; }
.animate-float-up { animation-name: floatUpBlock; }
.animate-pulse { animation-name: pulseBlock; animation-duration: 1.2s; }
.animate-tilt { animation-name: tiltBlock; }
.animate-blur-in { animation-name: blurInBlock; }
.animate-glow { animation-name: glowBlock; animation-duration: 1s; }
.animate-shimmer { animation-name: shimmerBlock; animation-duration: 1.15s; }
.animate-light-ray,
.animate-sparkle {
  position: relative;
  overflow: hidden;
}
.animate-light-ray { animation-name: fadeInBlock; }
.animate-sparkle { animation-name: glowBlock; }
.animate-light-ray::after,
.animate-sparkle::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.18) 46%, rgba(255,255,255,.68) 50%, rgba(255,255,255,.18) 54%, transparent 62%);
  transform: translateX(-70%) rotate(8deg);
  animation: lightRaySweep 1.35s ease both;
}
.animate-sparkle::after {
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.85) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 26%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 72%, rgba(255,255,255,.66) 0 2px, transparent 3px);
  transform: none;
  animation: sparkleSoft 1.4s ease both;
}

@keyframes fadeInBlock {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpBlock {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDownBlock {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeftBlock {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRightBlock {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomBlock {
  from { opacity: 0; transform: scale(.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes popBlock {
  0% { opacity: 0; transform: scale(.92); }
  68% { opacity: 1; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes floatUpBlock {
  from { opacity: 0; transform: translateY(24px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulseBlock {
  0% { opacity: 0; transform: scale(.98); }
  45% { opacity: 1; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes tiltBlock {
  0% { opacity: 0; transform: rotate(-1.8deg) translateY(14px); }
  100% { opacity: 1; transform: rotate(0) translateY(0); }
}

@keyframes blurInBlock {
  from { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes glowBlock {
  0% { opacity: 0; filter: brightness(1); box-shadow: 0 0 0 rgba(255,255,255,0); }
  55% { opacity: 1; filter: brightness(1.08); box-shadow: 0 0 28px rgba(255,255,255,.42); }
  100% { opacity: 1; filter: brightness(1); box-shadow: inherit; }
}

@keyframes shimmerBlock {
  0% { opacity: 0; filter: saturate(1); }
  45% { opacity: 1; filter: saturate(1.16) brightness(1.08); }
  100% { opacity: 1; filter: saturate(1) brightness(1); }
}

@keyframes lightRaySweep {
  from { opacity: 0; transform: translateX(-75%) rotate(8deg); }
  30% { opacity: 1; }
  to { opacity: 0; transform: translateX(75%) rotate(8deg); }
}

@keyframes sparkleSoft {
  0% { opacity: 0; transform: scale(.95); }
  40% { opacity: .95; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hide-desktop {
  display: none !important;
}

@media (max-width: 1020px) {
  .header-grid { grid-template-columns: 1fr auto auto; }
  .header-actions { gap: 6px; }
  .header-search { width: min(42vw, 220px); }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-menu.open { display: flex; }
  .grid.three, .grid.four, .detail-grid, .content-layout, .cart-grid, .contact-grid, .footer-grid, .content-block { grid-template-columns: 1fr; }
  .dynamic-grid { grid-template-columns: repeat(var(--cols-tablet, 2), minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); }
  .category-grid .category-card img { width: 86px; height: 86px; }
  .content-block.layout-image-right .content-block__image { order: 0; }
  .side-box { position: static; }
  .hide-desktop { display: block !important; }
  .hide-tablet { display: none !important; }
}

@media (max-width: 640px) {
  .top-strip__inner { display: block; }
  .brand { font-size: clamp(12px, var(--brand-size, 26px), 26px); }
  .brand img { width: min(var(--logo-width, 68px), 56px); height: min(var(--logo-height, 42px), 42px); }
  .header-actions .btn,
  .header-actions .cart-count { display: none; }
  .header-search { width: min(46vw, 180px); }
  .header-search input { padding-inline: 9px; }
  .header-search button { padding-inline: 10px; }
  h1 { font-size: 40px; }
  .hero { min-height: 520px; }
  .hero__content { padding: 80px 0 70px; }
  .section { padding: 54px 0; }
  .section-head.row, .cta__inner { display: block; }
  .filter-bar form, .search-large { display: grid; }
  .dynamic-grid { grid-template-columns: repeat(var(--cols-mobile, 1), minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-contact { display: none; }
  .hide-tablet { display: block !important; }
  .hide-mobile { display: none !important; }
}

/* Mobile-first polish for tablet and phone previews */
.hero__slider.is-static .hero__slide {
  opacity: 1;
  animation: none;
}

@media (max-width: 1020px) {
  .container { width: min(100% - 24px, var(--max)); }
  .top-strip__inner {
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .header-grid {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    gap: 9px;
    font-size: clamp(12px, var(--brand-size, 26px), 30px);
    line-height: 1.15;
  }
  .brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand img {
    width: min(var(--logo-width, 68px), 58px);
    height: min(var(--logo-height, 42px), 46px);
    flex: 0 0 auto;
  }
  .header-search {
    width: 220px;
    max-width: 32vw;
  }
  .main-menu {
    top: calc(100% + 8px);
    z-index: 40;
  }


  .content-block {
    gap: 18px;
  }
  .content-block__image img {
    max-height: var(--body-image-height-tablet, 360px);
    aspect-ratio: 4 / 3;
  }
  .section-head h2,
  .page-hero h1,
  .detail h1,
  .article h1 {
    font-size: 32px;
  }
  .category-card,
  .item-card,
  .post-card,
  .policy {
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  body { line-height: 1.55; }
  .container { width: min(100% - 20px, var(--max)); }
  .top-strip__inner {
    display: grid;
    gap: 3px;
    padding: 7px 0;
    text-align: left;
  }
  .header-grid {
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .brand {
    font-size: clamp(12px, var(--brand-size, 26px), 22px);
    gap: 7px;
  }
  .brand span { max-width: 150px; }
  .brand img {
    width: min(var(--logo-width, 68px), 46px);
    height: min(var(--logo-height, 42px), 38px);
  }
  .header-actions {
    gap: 6px;
  }
  .header-search {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin-bottom: 8px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .main-menu {
    left: 10px;
    right: 10px;
    top: calc(100% + 6px);
  }

  .hero.custom-block {
    min-height: clamp(560px, 142vw, 720px) !important;
    display: grid;
    align-items: start;
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    background-size: cover;
    background-position: var(--hero-bg-pos-mobile, var(--hero-bg-pos-tablet, var(--hero-bg-pos, center center)));
    color: var(--ink);
  }
  .hero.custom-block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.34) 62%, rgba(255,255,255,.04) 100%);
  }
  .hero__slider {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
  }
  .hero__slide {
    background-size: cover !important;
    background-position: var(--hero-bg-pos-mobile, var(--hero-bg-pos-tablet, var(--hero-bg-pos, center bottom))) !important;
    clip-path: none !important;
    border-radius: 0;
  }
  .hero__content {
    z-index: 2;
    width: min(100% - 24px, 420px);
    padding: 30px 0 34px;
    transform: translateY(calc(var(--hero-content-lift-mobile, var(--hero-content-lift, 0px)) * -1));
  }
  .hero h1 {
    font-size: 32px !important;
    line-height: 1.1;
  }
  .hero p {
    font-size: 15px !important;
    line-height: 1.5;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .hero .btn {
    width: 100%;
    min-height: 44px;
    padding: 9px 10px;
    font-size: 14px;
    text-align: center;
  }
  .section {
    padding: 42px 0;
  }
  .section-head { margin-bottom: 18px; }
  .section-head h2,
  .page-hero h1,
  .detail h1,
  .article h1 {
    font-size: 28px;
  }
  .content-block__image img {
    max-height: var(--body-image-height-mobile, 300px);
    aspect-ratio: 4 / 3;
  }
  .dynamic-grid {
    gap: 12px;
  }
  .category-card,
  .policy {
    padding: 14px;
  }
  .category-grid .category-card { padding: 12px; gap: 8px; }
  .category-grid .category-card img { width: 76px; height: 76px; }
  .category-grid .category-card strong { font-size: 14px; }
  .category-grid .category-card span { font-size: 13px; }
  .item-card__body,
  .post-card div {
    padding: 14px;
  }
  .quick-contact {
    display: grid;
    right: 12px;
    bottom: 12px;
  }
  .quick-contact a {
    min-width: 92px;
    padding: 9px 12px;
    font-size: 13px;
  }
}
/* Admin-added responsive hero focal controls use inline form styles. */

/* Top strip mobile polish */
@media (max-width: 640px) {
  .top-strip {
    padding: 6px 0;
  }
  .top-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0;
  }
  .top-strip__inner span {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 8px;
    min-width: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .top-strip__inner span::before {
    min-width: 52px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .82;
  }
  .top-strip__inner span:first-child::before {
    content: "Địa chỉ";
  }
  .top-strip__inner span:last-child::before {
    content: "Thông tin";
  }
}
/* Refine mobile top info cards: content only, premium surface */
@media (max-width: 640px) {
  .top-strip {
    background: linear-gradient(135deg, #7f164e 0%, #a51f62 54%, #6d123f 100%);
  }
  .top-strip__inner {
    gap: 7px;
  }
  .top-strip__inner span {
    display: block;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 6px 16px rgba(55, 10, 34, .16);
    color: #fff;
    font-weight: 600;
    line-height: 1.38;
    text-shadow: 0 1px 1px rgba(40, 8, 26, .25);
  }
  .top-strip__inner span::before {
    content: none !important;
    display: none !important;
  }
}
/* Top strip social links on small screens */
.top-strip-right { min-width: 0; }
@media (max-width: 640px) {
  .top-strip-right {
    justify-content: flex-start;
    gap: 0;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 6px 16px rgba(55,10,34,.16);
    line-height: 1.38;
  }
  .top-strip-right .top-strip-info {
    display: inline;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-weight: 600;
  }
  .top-strip-links { justify-content: flex-start; }
}

/* Show social channel shortcuts on Desktop, Tablet and Mobile */
.site-header .mobile-social-menu {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: -10px 0 8px;
  color: #8a6074;
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  font-size: 9.5px;
  line-height: 1.2;
}
.site-header .mobile-social-menu > span { margin-right: 2px; }
.site-header .mobile-social-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border: 1px solid rgba(183,37,112,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #74344f;
  font-size: 9px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(82,38,67,.04);
}
.site-header .mobile-social-menu .social-youtube { color: #b4232d; }
.site-header .mobile-social-menu .social-tiktok { color: #34232c; }
.site-header .mobile-social-menu .social-facebook { color: #1767bd; }

@media (min-width: 641px) and (max-width: 1020px) {
  .site-header .mobile-social-menu {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: stretch;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 0 4px 7px 0;
  }
}

@media (max-width: 640px) {
  .site-header .mobile-social-menu {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: -1px 0 0;
    padding: 4px 6px 0;
  }
}

/* Button alignment polish */
.custom-block .button-block {
  justify-items: var(--block-button-align, start);
}
.align-center .custom-block .actions {
  justify-content: var(--block-button-align, center);
}
.align-right .custom-block .actions {
  justify-content: var(--block-button-align, flex-end);
}
/* Final button control precedence */
.custom-block .actions {
  justify-content: var(--block-button-align, flex-start);
}
.custom-block .btn {
  min-height: var(--block-button-height, 42px) !important;
  width: var(--block-button-width, auto) !important;
  padding-left: var(--block-button-padding-x, 16px) !important;
  padding-right: var(--block-button-padding-x, 16px) !important;
  border-width: var(--block-button-border-width, 1px) !important;
  border-color: var(--block-button-border-color, var(--block-button-bg, var(--brand))) !important;
  border-radius: var(--block-button-radius, var(--radius)) !important;
  font-size: var(--block-button-font-size, 16px) !important;
}
@media (max-width: 640px) {
  .hero.custom-block .actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--block-button-align, flex-start);
  }
}

/* Tablet and mobile button control precedence */
@media (max-width: 1020px) {
  .custom-block .actions,
  .hero.custom-block .actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: var(--block-button-align, flex-start) !important;
  }
  .custom-block .btn,
  .hero.custom-block .btn {
    min-height: var(--block-button-height, 42px) !important;
    width: var(--block-button-width, auto) !important;
    padding-left: var(--block-button-padding-x, 16px) !important;
    padding-right: var(--block-button-padding-x, 16px) !important;
    border-width: var(--block-button-border-width, 1px) !important;
    border-color: var(--block-button-border-color, var(--block-button-bg, var(--brand))) !important;
    border-radius: var(--block-button-radius, var(--radius)) !important;
    font-size: var(--block-button-font-size, 16px) !important;
  }
}

@media (max-width: 1020px) and (orientation: landscape) {
  .hero.custom-block::after {
    content: none;
  }
  .hero.custom-block {
    min-height: clamp(420px, 78vh, 590px) !important;
    display: grid;
    align-items: end;
    background-size: cover;
    background-position: var(--hero-bg-pos, center center);
    color: #fff;
  }
  .hero__slider {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
  }
  .hero__slide {
    background-size: cover !important;
    background-position: var(--hero-bg-pos, center center) !important;
  }
  .hero__content {
    width: min(100% - 32px, var(--max));
    padding: clamp(44px, 10vh, 100px) 0 clamp(38px, 9vh, 86px);
    transform: translateY(calc(var(--hero-content-lift, 0px) * -1));
  }
  .hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 6vw, 58px) !important;
  }
  .hero p {
    max-width: 660px;
    font-size: clamp(15px, 2.2vw, 18px) !important;
  }
}

@media (min-width: 641px) and (max-width: 1020px) and (orientation: portrait) {
  .hero.custom-block {
    min-height: clamp(520px, 72vw, 620px) !important;
  }
  .hero.layout-image-right .hero__slide {
    clip-path: inset(0 0 0 54% round var(--block-image-radius, 0px));
    background-size: 46% auto !important;
    background-position: right center !important;
  }
  .hero.layout-image-left .hero__slide {
    clip-path: inset(0 54% 0 0 round var(--block-image-radius, 0px));
    background-size: 46% auto !important;
    background-position: left center !important;
  }
  .hero.layout-image-right.align-left h1,
  .hero.layout-image-right.align-left .rich-content,
  .hero.layout-image-right.align-left .actions,
  .hero.layout-image-left.align-right h1,
  .hero.layout-image-left.align-right .rich-content,
  .hero.layout-image-left.align-right .actions {
    max-width: min(440px, 48vw);
  }
  .hero__content {
    padding-top: clamp(58px, 9vw, 86px);
    padding-bottom: clamp(52px, 8vw, 78px);
  }
  .hero h1 {
    font-size: clamp(34px, 5.4vw, 44px) !important;
  }
  .hero p {
    font-size: clamp(15px, 2vw, 17px) !important;
  }
}

@media (max-width: 640px) {
  .hero.layout-image-right.align-left h1,
  .hero.layout-image-right.align-left .rich-content,
  .hero.layout-image-right.align-left .actions,
  .hero.layout-image-left.align-right h1,
  .hero.layout-image-left.align-right .rich-content,
  .hero.layout-image-left.align-right .actions {
    max-width: none;
    margin-left: 0;
  }
  .hero__content {
    width: min(100% - 28px, 360px);
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 34px) !important;
    line-height: 1.08;
  }
  .hero p {
    max-width: 100%;
    font-size: 15px !important;
  }
  .hero.custom-block .actions {
    gap: 8px;
  }
  .hero.custom-block .btn {
    width: auto !important;
    min-width: min(142px, 100%);
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* Content image crop controls */
.content-block__image,
.single-image-block {
  overflow: hidden;
  border-radius: var(--block-image-radius, var(--radius));
}

.content-block__image img,
.single-image-block img {
  display: block;
  width: 100%;
  height: var(--body-image-height, min(520px, 48vw));
  max-height: none !important;
  aspect-ratio: 4 / 3;
  object-fit: var(--body-image-fit, var(--block-image-fit, cover)) !important;
  object-position: var(--body-image-pos, var(--block-image-pos, center center)) !important;
  transform: scale(var(--body-image-scale, var(--block-image-scale, 1)));
  transform-origin: var(--body-image-pos, var(--block-image-pos, center center));
  transition: object-position .15s ease, transform .15s ease;
}

.single-image-block img {
  height: min(640px, 56vw);
}

@media (max-width: 1020px) {
  .content-block__image img,
  .single-image-block img {
    height: var(--body-image-height-tablet, 360px);
    object-position: var(--body-image-pos-tablet, var(--body-image-pos, var(--block-image-pos-tablet, var(--block-image-pos, center center)))) !important;
    transform-origin: var(--body-image-pos-tablet, var(--body-image-pos, var(--block-image-pos-tablet, var(--block-image-pos, center center))));
  }
}

@media (max-width: 640px) {
  .content-block__image img,
  .single-image-block img {
    height: var(--body-image-height-mobile, 300px);
    object-position: var(--body-image-pos-mobile, var(--body-image-pos-tablet, var(--body-image-pos, var(--block-image-pos-mobile, var(--block-image-pos-tablet, var(--block-image-pos, center center)))))) !important;
    transform-origin: var(--body-image-pos-mobile, var(--body-image-pos-tablet, var(--body-image-pos, var(--block-image-pos-mobile, var(--block-image-pos-tablet, var(--block-image-pos, center center))))));
  }
}

/* Adaptive content block layout polish */
@media (min-width: 641px) and (max-width: 1020px) {
  .content-block:not(.layout-image-top):not(.layout-text-only) {
    grid-template-columns: 1fr !important;
    align-items: start;
  }
  .content-block.layout-image-right .content-block__image {
    order: 0 !important;
  }
  .content-block.layout-image-right .content-block__copy {
    order: 1 !important;
  }
  .content-block__image img {
    height: min(var(--body-image-height-tablet, 460px), 520px) !important;
  }
  .content-block__text h2 {
    font-size: clamp(26px, 4vw, var(--block-title-size, 34px));
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .content-block__copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-block:not(.layout-text-only) {
    grid-template-columns: 1fr !important;
  }
  .content-block__copy {
    grid-template-columns: 1fr;
  }
  .content-block__side {
    padding-top: 0;
  }
  .content-block.layout-image-right .content-block__image {
    order: 0 !important;
  }
  .content-block__image img {
    width: 100%;
    height: var(--body-image-height-mobile, clamp(240px, 86vw, 360px)) !important;
  }
}

@media (max-width: 430px) {
  .content-block__image img {
    height: var(--body-image-height-mobile, clamp(220px, 92vw, 330px)) !important;
  }
}

/* Rich content frontend polish */
.custom-block p + p,
.custom-block ul,
.custom-block ol,
.custom-block blockquote,
.custom-block table {
  margin-top: 12px;
}

.custom-block ul,
.custom-block ol {
  padding-left: 1.35em;
}

.custom-block li {
  margin: 4px 0;
}

.custom-block blockquote {
  margin-left: 0;
  padding: 10px 14px;
  border-left: 3px solid var(--block-title-color, var(--brand));
  background: rgba(165, 31, 98, .06);
  border-radius: 6px;
}

.custom-block table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.custom-block td,
.custom-block th {
  border: 1px solid rgba(124, 31, 78, .18);
  padding: 8px 10px;
}

.custom-block a {
  color: var(--block-title-color, var(--brand));
  font-weight: 600;
}


.rich-content {
  color: var(--block-body-color, inherit);
  font-family: var(--block-body-font, inherit);
  font-size: var(--block-body-size, inherit);
  line-height: 1.7;
}
.rich-content > :first-child { margin-top: 0; }
.rich-content > :last-child { margin-bottom: 0; }

.block-subtitle {
  display: block;
  margin: 0 0 12px;
  color: var(--block-title-color, #771244);
  font-family: var(--block-title-font, inherit);
  font-size: var(--block-subtitle-size, 16px);
  font-weight: 600;
  line-height: 1.35;
}

.block-subtitle-content {
  color: var(--block-text-color, inherit);
  font-family: var(--block-body-font, inherit);
  font-size: var(--block-subtitle-body-size, 14px);
  line-height: 1.65;
}

.block-subtitle-content > :first-child { margin-top: 0; }
.block-subtitle-content > :last-child { margin-bottom: 0; }

/* Block title icon controls */
.block-title-icon {
  display: block;
  width: var(--block-icon-size, 34px);
  height: var(--block-icon-size, 34px);
  object-fit: contain;
  border-radius: var(--block-icon-radius, 0);
  margin: 0 0 12px;
}
.align-center .block-title-icon,
.heading-block .block-title-icon,
.text-block .block-title-icon,
.button-block .block-title-icon {
  margin-left: auto;
  margin-right: auto;
}
.align-right .block-title-icon {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 640px) {
  .hero__content {
    transform: translateY(calc(var(--hero-content-lift-mobile, var(--hero-content-lift, 0px)) * -1));
  }
}
@media (max-width: 1020px) and (orientation: landscape) {
  .hero__content {
    transform: translateY(calc(var(--hero-content-lift, 0px) * -1));
  }
}










.category-card strong,
.item-card h2,
.item-card h3,
.detail-content h1 {
  font-family: var(--record-title-font, inherit);
  font-size: var(--record-title-size, inherit);
  color: var(--record-title-color, var(--brand-dark));
}

.category-card span,
.item-card p,
.detail-content .summary,
.rich-text,
.side-box {
  font-family: var(--record-body-font, inherit);
  font-size: var(--record-body-size, inherit);
  color: var(--record-body-color, inherit);
}


/* Compact marketplace product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.shop-product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(82, 38, 67, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shop-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(82, 38, 67, .16);
}
.shop-product-card .item-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
}
.shop-product-card .item-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.item-discount,
.item-badge {
  position: absolute;
  z-index: 2;
  top: 0;
  padding: 5px 7px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.item-discount { right: 0; background: #ee4d2d; }
.item-badge { left: 0; max-width: 70%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background: var(--brand); }
.shop-product-card .item-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 11px;
}
.shop-product-card h2,
.shop-product-card h3 {
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 500;
}
.shop-product-card .item-summary {
  margin: 7px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.4;
}
.item-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
}
.item-price { color: #ee4d2d; font-size: 17px; font-weight: 600; }
.item-price-row del { color: #999; font-size: 12px; }
.item-meta {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  min-height: 18px;
  margin-top: 7px;
  color: #777;
  font-size: 11px;
}
.item-meta span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.item-add {
  width: 100%;
  min-height: 34px;
  margin-top: 9px;
  border: 0;
  border-radius: 3px;
  background: #fce8f1;
  color: var(--brand-dark);
  font-weight: 600;
  cursor: pointer;
}
.detail-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.detail-price-row del { color: #999; }
.detail-price-row > span { padding: 4px 7px; background: #ee4d2d; color: #fff; border-radius: 3px; font-weight: 700; }
.detail-commerce-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 18px 0; color: var(--muted); }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .shop-product-card .item-card__body { padding: 8px; }
  .shop-product-card h2, .shop-product-card h3 { min-height: 36px; font-size: 14px; }
  .shop-product-card .item-summary { display: none; }
  .item-price { font-size: 15px; }
  .item-add { min-height: 32px; margin-top: 7px; }
  .detail-commerce-meta { grid-template-columns: 1fr; }
}


/* Marketplace density and equal cards */
.product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}
.product-grid .shop-product-card { height: 100%; }
.shop-product-card .item-card__body { padding: 9px; }
.shop-product-card h2,
.shop-product-card h3 {
  min-height: 36px;
  font-size: 14px;
  line-height: 1.3;
}
.shop-product-card .item-summary {
  min-height: 36px;
  margin-top: 5px;
  font-size: 12px;
}
.item-price-row { padding-top: 7px; }
.item-price { font-size: 16px; }
.item-add { min-height: 32px; margin-top: 7px; }
.detail-media .detail-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
}
.detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.detail-thumbnails button {
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.detail-thumbnails button.active { border-color: var(--brand); }
.detail-thumbnails img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 2px; }
.detail-commerce-meta .full-row { grid-column: 1 / -1; }

@media (max-width: 1180px) and (min-width: 901px) {
  .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 900px) and (min-width: 641px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
  .shop-product-card .item-summary { display: none; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .shop-product-card .item-card__body { padding: 8px; }
  .shop-product-card h2,
  .shop-product-card h3 { min-height: 34px; font-size: 13px; }
  .item-price { font-size: 15px; }
  .item-meta { font-size: 10px; }
}


/* Final compact sizing: stable in admin preview and public pages */
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}
.product-grid .shop-product-card {
  width: 100%;
  max-width: 180px;
}
.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 160px)) !important;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}
.category-grid .category-card {
  width: 100%;
  max-width: 160px;
  padding: 10px;
}
.category-grid .category-card img {
  width: 68px;
  height: 68px;
}
.detail-grid {
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  justify-content: center;
}
.detail-media {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.detail-media .detail-main-image {
  width: 100%;
  max-width: 480px;
  max-height: 480px;
}

@media (max-width: 900px) and (min-width: 641px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .product-grid .shop-product-card { max-width: 175px; }
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .category-grid .category-card { max-width: 165px; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .product-grid .shop-product-card { max-width: none; }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px;
  }
  .category-grid .category-card { max-width: none; padding: 9px; }
  .category-grid .category-card img { width: 64px; height: 64px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-media,
  .detail-media .detail-main-image { max-width: 100%; }
}


/* Configurable footer */
.site-footer {
  position: relative;
  background: var(--footer-bg, #2c1724);
  color: var(--footer-text, #f4d8e7);
  padding: var(--footer-padding-top, 48px) 0 var(--footer-padding-bottom, 22px);
  font-family: var(--footer-font, inherit);
  font-size: var(--footer-text-size, 14px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(var(--footer-cols, 4), minmax(0, 1fr));
  gap: var(--footer-gap, 28px);
  align-items: start;
}
.footer-logo-column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-auto-column { display: none; }
@media (min-width: 901px) {
  .footer-auto-column.show-desktop { display: block; }
}
@media (min-width: 561px) and (max-width: 900px) {
  .footer-auto-column.show-tablet { display: block; }
}

/* Custom social and floating contact icons */
.site-footer .socials a > span {
  width: auto;
  height: auto;
  display: inline;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
}
.footer-social-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.quick-contact {
  left: auto;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.quick-contact .quick-contact-button {
  position: relative;
  width: 56px;
  height: 56px;
  min-width: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(24,18,22,.24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-contact .quick-contact-button:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(24,18,22,.32);
}
.quick-contact .zalo { background: #0068ff; }
.quick-contact .phone { background: #b91362; }
.quick-contact .messenger { background: #087fff; }
.quick-contact .quick-contact-icon,
.quick-contact .quick-contact-fallback {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  font-size: 20px;
  font-weight: 500;
}
.quick-contact .quick-contact-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.quick-contact .quick-contact-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: max-content;
  height: auto;
  padding: 6px 9px;
  border: 0;
  border-radius: 5px;
  background: #24131d;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .18s ease, transform .18s ease;
}
.quick-contact .quick-contact-button:hover .quick-contact-label,
.quick-contact .quick-contact-button:focus-visible .quick-contact-label {
  opacity: 1;
  transform: translate(0, -50%);
}
.quick-contact.effect-pulse .quick-contact-button {
  animation: quick-contact-pulse 2.4s ease-in-out infinite;
}
.quick-contact.effect-pulse .quick-contact-button:nth-child(2) { animation-delay: .35s; }
.quick-contact.effect-pulse .quick-contact-button:nth-child(3) { animation-delay: .7s; }
.quick-contact.effect-float .quick-contact-button {
  animation: quick-contact-float 2.8s ease-in-out infinite;
}
.quick-contact.effect-float .quick-contact-button:nth-child(2) { animation-delay: .4s; }
.quick-contact.effect-float .quick-contact-button:nth-child(3) { animation-delay: .8s; }
@keyframes quick-contact-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(24,18,22,.24), 0 0 0 0 rgba(0,104,255,.22); }
  50% { box-shadow: 0 8px 22px rgba(24,18,22,.24), 0 0 0 9px rgba(0,104,255,0); }
}
@keyframes quick-contact-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 560px) {
  .quick-contact {
    left: auto;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .quick-contact .quick-contact-button {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }
  .quick-contact .quick-contact-icon img { width: 30px; height: 30px; }
  .quick-contact .quick-contact-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .quick-contact .quick-contact-button { animation: none !important; transition: none; }
}
.footer-column {
  min-width: 0;
  align-self: start;
}
.site-footer h3,
.site-footer h4 {
  margin: 0 0 10px;
  color: var(--footer-heading, #fff);
  font-size: var(--footer-heading-size, 16px);
  line-height: 1.35;
}
.site-footer p {
  margin: 0 0 10px;
  color: var(--footer-text, #f4d8e7);
  overflow-wrap: anywhere;
}
.site-footer a {
  color: var(--footer-link, #f4d8e7);
  overflow-wrap: anywhere;
  transition: color .16s ease, opacity .16s ease;
}
.site-footer a:hover { color: var(--footer-link-hover, #fff); }
.footer-logo {
  display: block;
  width: min(var(--footer-logo-width, 56px), 56px);
  max-height: 52px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}
.footer-brand-column > p {
  max-width: 38ch;
  line-height: 1.55;
}
.footer-links,
.site-footer .socials {
  display: grid;
  gap: 6px;
}
.footer-links a {
  width: fit-content;
  line-height: 1.45;
}
.site-footer .socials {
  grid-template-columns: repeat(auto-fit, minmax(92px, max-content));
  margin-top: 16px;
}
.site-footer .socials a,
.quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.site-footer .socials a span,
.quick-contact a span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.footer-contact-list { display: grid; gap: 8px; }
.footer-contact-list p {
  display: grid;
  gap: 2px;
}
.footer-contact-list strong {
  color: var(--footer-heading, #fff);
  font-size: .82em;
  font-weight: 600;
}
.site-footer .copyright { color: var(--footer-text, #e7c7d8); }
.site-footer .copyright {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--footer-text, #f4d8e7) 22%, transparent);
  text-align: center;
}
.quick-contact {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}
.quick-contact a {
  justify-content: center;
  min-width: 124px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .site-footer {
    padding-bottom: calc(var(--footer-padding-bottom, 22px) + 66px);
  }
  .footer-grid {
    grid-template-columns: repeat(var(--footer-cols-mobile, 2), minmax(0, 1fr));
    gap: 24px 18px;
    align-items: start;
  }
  .footer-logo { margin-inline: auto; object-position: center; }
  .footer-brand-column { text-align: center; }
  .footer-brand-column > p { margin-inline: auto; }
  .site-footer .socials { justify-content: center; }
  .footer-links a { width: auto; }
  .footer-mobile-cols-2 .footer-column {
    width: 100%;
    min-width: 0;
    padding: 0 4px;
    text-align: left;
  }
  .footer-auto-column.show-mobile { display: block; }
  .footer-mobile-cols-2 .footer-logo {
    margin-inline: 0;
    object-position: left center;
  }
  .footer-mobile-cols-2 .footer-brand-column > p {
    margin-inline: 0;
  }
  .footer-mobile-cols-2 .socials {
    justify-content: flex-start;
  }
  .footer-mobile-cols-2 .footer-grid h3,
  .footer-mobile-cols-2 .footer-grid h4 {
    min-height: 22px;
  }
  .footer-mobile-cols-2 .footer-column p,
  .footer-mobile-cols-2 .footer-column a,
  .footer-mobile-cols-2 .footer-column span {
    overflow-wrap: anywhere;
  }
  .site-footer .copyright {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
    text-align: center;
  }
  .quick-contact {
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
  }
  .quick-contact a {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 6px;
  }
}

/* Full price page */
.price-page-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(42,14,30,.92), rgba(75,19,49,.68) 55%, rgba(75,19,49,.16)), var(--price-hero-image);
  background-position: center;
  background-size: cover;
}
.price-page-hero__content { padding-block: 70px; color: #fff; }
.price-page-hero__content > * { max-width: 760px; }
.price-page-hero h1 { margin: 10px 0 18px; color: #fff; font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.12; letter-spacing: -.02em; }
.price-page-hero p { color: #f9e6ef; font-size: 17px; line-height: 1.75; }
.price-page-hero .eyebrow { color: #ffd5e8; }
.price-page-hero .btn { background: #fff; color: var(--brand-dark); border-color: #fff; }
.price-page-hero .btn.ghost { background: transparent; color: #fff; }

.price-anchor-nav { position: sticky; top: var(--header-height, 74px); z-index: 12; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(82,38,67,.07); backdrop-filter: blur(10px); }
.price-anchor-nav .container { display: flex; justify-content: center; gap: 8px; padding-block: 10px; overflow-x: auto; scrollbar-width: thin; }
.price-anchor-nav a { flex: 0 0 auto; padding: 9px 15px; border-radius: 999px; color: var(--brand-dark); font-size: 13px; font-weight: 600; }
.price-anchor-nav a:hover { background: #f8dfea; }

.price-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; align-items: start; }
.price-page-main { min-width: 0; }
.price-intro { margin-bottom: 30px; }
.price-intro h2 { margin: 5px 0 12px; color: var(--brand-dark); font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; font-size: 36px; line-height: 1.3; letter-spacing: -.018em; }
.price-intro > p:last-child { max-width: 820px; color: var(--muted); line-height: 1.75; }
.price-groups { display: grid; gap: 28px; }
.price-card { scroll-margin-top: 150px; overflow: hidden; border: 1px solid #ead7e1; border-radius: 18px; background: #fff; box-shadow: 0 16px 38px rgba(82,38,67,.09); }
.price-card > header { padding: 25px 28px; background: linear-gradient(135deg, #8f174f, #b72570); color: #fff; }
.price-card > header span { display: inline-block; margin-bottom: 7px; color: #ffd8e9; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-card > header h2 { margin: 0; color: #fff; font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; font-size: 27px; line-height: 1.35; letter-spacing: -.015em; }
.price-card > header p { margin: 8px 0 0; color: #fdebf3; font-size: 14px; line-height: 1.6; }
.price-list { display: grid; }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 17px 24px; border-bottom: 1px solid #f0e2e9; }
.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(even) { background: #fffafd; }
.price-row.featured { background: #fff0f7; }
.price-row strong { display: block; color: #4a2d3d; font-size: 15px; line-height: 1.45; }
.price-row small { display: block; margin-top: 4px; color: #84717b; font-size: 12px; line-height: 1.5; }
.price-row b { color: #a51f62; font-size: 16px; line-height: 1.4; text-align: right; white-space: nowrap; }

.price-sidebar { position: sticky; top: 145px; display: grid; gap: 18px; }
.price-sidebar__image { overflow: hidden; border-radius: 18px; box-shadow: 0 16px 34px rgba(82,38,67,.12); }
.price-sidebar__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.price-sidebar__box { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff8fb; box-shadow: 0 14px 34px rgba(82,38,67,.08); }
.price-sidebar__box h2 { margin: 4px 0 13px; color: var(--brand-dark); font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; font-size: 24px; line-height: 1.4; letter-spacing: -.015em; }
.price-sidebar__box p,
.price-sidebar__box li { color: #624657; font-size: 14px; line-height: 1.7; }
.price-sidebar__box ul { margin: 15px 0 20px; padding-left: 20px; }
.price-sidebar__box li + li { margin-top: 7px; }
.price-contact-card p { margin: 12px 0 0; }

.price-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 980px; margin: 0 auto; }
.price-faq-grid details { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 10px 26px rgba(82,38,67,.06); }
.price-faq-grid summary { padding: 17px 18px; color: var(--brand-dark); font-weight: 600; cursor: pointer; }
.price-faq-grid p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.price-faq-section .section-head h2 { font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; letter-spacing: -.018em; }
.price-page-cta { padding: 48px 0; background: #8f174f; color: #fff; }
.price-page-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.price-page-cta h2 { margin-bottom: 8px; color: #fff; font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif; font-size: 34px; letter-spacing: -.018em; }
.price-page-cta p { margin: 0; color: #f7dce9; }
.price-page-cta .btn { flex: 0 0 auto; background: #fff; color: #8f174f; border-color: #fff; }

@media (max-width: 980px) {
  .price-page-layout { grid-template-columns: 1fr; }
  .price-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-contact-card { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .price-page-hero { min-height: 460px; background-image: linear-gradient(rgba(42,14,30,.82), rgba(75,19,49,.78)), var(--price-hero-image); }
  .price-page-hero__content { padding-block: 48px; }
  .price-page-hero h1 { font-size: 38px; }
  .price-page-hero p { font-size: 15px; line-height: 1.65; }
  .price-anchor-nav { top: var(--header-height, 64px); }
  .price-anchor-nav .container { justify-content: flex-start; }
  .price-intro h2 { font-size: 29px; }
  .price-card > header { padding: 21px 18px; }
  .price-card > header h2 { font-size: 23px; }
  .price-row { grid-template-columns: 1fr; gap: 8px; padding: 15px 17px; }
  .price-row b { text-align: left; white-space: normal; }
  .price-sidebar { grid-template-columns: 1fr; }
  .price-contact-card { grid-column: auto; }
  .price-faq-grid { grid-template-columns: 1fr; }
  .price-page-cta .container { display: grid; }
  .price-page-cta h2 { font-size: 29px; }
  .price-page-cta .btn { width: 100%; }
}

/* Final size guard: uploaded source images never resize the floating buttons. */
.quick-contact .quick-contact-button {
  box-sizing: border-box !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  gap: 0 !important;
  overflow: visible !important;
  border-radius: 50% !important;
}
.quick-contact .quick-contact-icon {
  box-sizing: border-box !important;
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  padding: 0 !important;
  border: 0 !important;
}
.quick-contact .quick-contact-icon img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}
.quick-contact .zalo { background: #0068ff !important; }
.quick-contact .phone { background: #b91362 !important; }
.quick-contact .messenger { background: #087fff !important; }
.quick-contact .quick-contact-label {
  position: absolute !important;
  top: 50% !important;
  right: calc(100% + 10px) !important;
  width: max-content !important;
  height: auto !important;
  padding: 6px 9px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 5px !important;
  opacity: 0 !important;
  transform: translate(6px, -50%) !important;
}
.quick-contact .quick-contact-button:hover .quick-contact-label,
.quick-contact .quick-contact-button:focus-visible .quick-contact-label {
  opacity: 1 !important;
  transform: translate(0, -50%) !important;
}
@media (max-width: 560px) {
  .quick-contact .quick-contact-button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
  }
  .quick-contact .quick-contact-label { display: none !important; }
}

/* Keep the custom icon controls above the legacy mobile contact bar. */
.site-footer .socials a > span {
  width: auto;
  height: auto;
  display: inline;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 560px) {
  .quick-contact {
    left: auto;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}

/* Kim Loan news polish */
.page-hero h1,
.post-card h2,
.post-card h3,
.article h1 {
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  letter-spacing: -.015em;
  word-spacing: 0;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}
.post-card h2,
.post-card h3 { line-height: 1.35; }
.post-card p { line-height: 1.7; }
.article h2,
.article h3 { color: var(--brand-dark); line-height: 1.35; }
.article ul { padding-left: 22px; }
.article li { margin: 8px 0; }
.article em { color: #7b6872; }
@media (max-width: 640px) {
  .page-hero h1 { font-size: 36px; line-height: 1.22; }
}

/* Kim Loan news banner */
.news-hero {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(183, 37, 112, .14), transparent 34%),
    linear-gradient(135deg, #fff8fb 0%, #fff 44%, #f9edf4 100%);
}
.news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
}
.news-hero__copy {
  padding: 20px 0;
}
.news-hero__copy h1 {
  margin: 10px 0 16px;
  max-width: 720px;
  color: var(--brand-dark);
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -.025em;
}
.news-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #6f5c67;
  font-size: 16px;
  line-height: 1.75;
}
.news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.news-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(183, 37, 112, .16);
  border-radius: 999px;
  background: #fff;
  color: #8d174f;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(82, 38, 67, .07);
}
.news-hero__image {
  overflow: hidden;
  border: 1px solid rgba(183, 37, 112, .16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(82, 38, 67, .13);
}
.news-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
@media (max-width: 900px) {
  .news-hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .news-hero { padding: 42px 0; }
  .news-hero__image img { aspect-ratio: 16 / 8; }
  .article-consult__inner { grid-template-columns: 1fr; }
  .article-consult__actions { display: flex; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .news-hero { padding: 34px 0; }
  .news-hero__copy h1 { font-size: 34px; line-height: 1.22; }
  .news-hero__copy p:not(.eyebrow) { font-size: 15px; }
  .news-hero__image { border-radius: 20px; }
  .news-hero__image img { aspect-ratio: 4 / 3; }
  .contact-service-gallery { grid-template-columns: 1fr; }
  .article-consult__media { grid-template-columns: 1fr; }
  .cta__actions,
  .article-consult__actions { display: grid; justify-content: stretch; }
  .cta__actions .btn,
  .article-consult__actions .btn { width: 100%; }
  .article-consult__inner { padding: 22px; border-radius: 18px; }
  .article-consult h2 { font-size: 24px; }
}

/* Kim Loan contact map */
.contact-map-box {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(183, 37, 112, .16);
  border-radius: 18px;
  background: #fff7fb;
  box-shadow: 0 14px 34px rgba(82, 38, 67, .08);
}
.contact-map-box iframe {
  display: block;
  width: 100%;
  min-height: 285px;
  border: 0;
}
.contact-map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #b72570;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(82, 38, 67, .18);
}
.contact-map-link:hover { background: #8f174f; }
@media (max-width: 640px) {
  .contact-map-box iframe { min-height: 240px; }
  .contact-map-link {
    position: static;
    width: calc(100% - 24px);
    margin: 12px;
  }
}
/* Kim Loan contact hero banner */
.contact-hero {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8fb 0%, #ffffff 46%, #f9edf4 100%);
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
}
.contact-hero__copy h1 {
  margin: 10px 0 16px;
  color: var(--brand-dark);
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: -.025em;
}
.contact-hero__copy p:not(.eyebrow) {
  max-width: 650px;
  color: #6f5c67;
  font-size: 16px;
  line-height: 1.75;
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-hero__actions .btn.ghost {
  border-color: rgba(183,37,112,.28);
  background: #fff;
  color: #9a1857;
}
.contact-hero__banner {
  overflow: hidden;
  border: 1px solid rgba(183,37,112,.16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(82,38,67,.14);
}
.contact-hero__banner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
}
@media (max-width: 900px) {
  .contact-hero { padding: 42px 0; }
  .contact-hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-hero__banner img { aspect-ratio: 16 / 8; }
}
@media (max-width: 640px) {
  .contact-hero { padding: 34px 0; }
  .contact-hero__copy h1 { font-size: 34px; line-height: 1.22; }
  .contact-hero__copy p:not(.eyebrow) { font-size: 15px; }
  .contact-hero__actions { display: grid; }
  .contact-hero__actions .btn { width: 100%; }
  .contact-hero__banner { border-radius: 20px; }
  .contact-hero__banner img { aspect-ratio: 4 / 3; }
}
/* Kim Loan compact responsive menu */
@media (max-width: 1020px) {
  .site-header {
    overflow: visible;
  }
  .header-grid {
    grid-template-columns: minmax(0, auto) minmax(190px, 1fr);
    gap: 10px 12px;
    align-items: center;
  }
  .menu-toggle {
    display: none !important;
  }
  .header-actions {
    justify-self: end;
    width: min(46vw, 300px);
  }
  .header-search {
    width: 100% !important;
    max-width: none !important;
    min-height: 36px;
    border-radius: 14px;
  }
  .header-search input {
    height: 36px;
    font-size: 13px;
  }
  .header-search button {
    height: 36px;
    padding-inline: 13px;
    font-size: 13px;
  }
  .main-menu,
  .main-menu.open {
    grid-column: 1 / -1;
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    border: 1px solid rgba(183,37,112,.14) !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,251,.96)) !important;
    box-shadow: 0 10px 26px rgba(82,38,67,.07) !important;
  }
  .main-menu a {
    flex: 0 1 auto;
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid rgba(183,37,112,.12);
    border-radius: 999px;
    background: #fff;
    color: #6f2748;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .01em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 7px 16px rgba(82,38,67,.05);
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  .main-menu a:hover,
  .main-menu a:focus-visible {
    border-color: rgba(183,37,112,.34);
    background: #f7d9e8;
    color: #83164b;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(183,37,112,.12);
  }
  .main-menu a[aria-current="page"],
  .main-menu a.is-active,
  .main-menu a.active {
    border-color: #b72570;
    background: #b72570;
    color: #fff;
    box-shadow: 0 10px 22px rgba(183,37,112,.18);
  }
}
@media (max-width: 640px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .brand {
    justify-content: center;
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .brand img {
    width: min(var(--logo-width, 68px), 48px);
    height: min(var(--logo-height, 42px), 38px);
  }
  .header-actions {
    justify-self: stretch;
    width: 100%;
  }
  .main-menu,
  .main-menu.open {
    justify-content: center !important;
    gap: 6px !important;
    padding: 7px;
    border-radius: 16px !important;
  }
  .main-menu a {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
    letter-spacing: 0;
  }
}
@media (max-width: 380px) {
  .main-menu a {
    padding-inline: 8px;
    font-size: 10.5px;
  }
}
/* Kim Loan refined 2026 compact menu */
@media (max-width: 1020px) {
  .brand {
    gap: 9px;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: clamp(15px, 2.1vw, 18px) !important;
    font-weight: 700 !important;
    letter-spacing: -.01em;
  }
  .brand img {
    width: min(var(--logo-width, 68px), 46px) !important;
    height: min(var(--logo-height, 42px), 34px) !important;
  }
  .main-menu,
  .main-menu.open {
    gap: 6px !important;
    margin-top: 4px !important;
    padding: 7px 8px !important;
    border-color: rgba(183,37,112,.11) !important;
    border-radius: 16px !important;
    background: rgba(255,248,251,.78) !important;
    box-shadow: 0 8px 20px rgba(82,38,67,.045) !important;
  }
  .main-menu a {
    min-height: 28px !important;
    padding: 6px 10px !important;
    border-color: rgba(183,37,112,.11) !important;
    border-radius: 999px !important;
    color: #6b314b !important;
    font-size: 11.2px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
  }
  .main-menu a:hover,
  .main-menu a:focus-visible {
    background: #fae6ef !important;
    color: #8f174f !important;
    border-color: rgba(183,37,112,.24) !important;
    transform: none !important;
    box-shadow: 0 6px 16px rgba(183,37,112,.08) !important;
  }
  .main-menu a[aria-current="page"],
  .main-menu a.is-active,
  .main-menu a.active {
    background: linear-gradient(135deg, #b72570, #9a1857) !important;
    border-color: #b72570 !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 18px rgba(183,37,112,.16) !important;
  }
  .header-search {
    min-height: 34px !important;
    border-radius: 13px !important;
  }
  .header-search input {
    height: 34px !important;
    font-size: 12.5px !important;
  }
  .header-search button {
    height: 34px !important;
    padding-inline: 12px !important;
    font-size: 12.5px !important;
  }
}
@media (max-width: 640px) {
  .brand {
    font-size: 16px !important;
  }
  .brand img {
    width: 40px !important;
    height: 31px !important;
  }
  .main-menu,
  .main-menu.open {
    gap: 5px !important;
    padding: 7px !important;
  }
  .main-menu a {
    min-height: 27px !important;
    padding: 6px 9px !important;
    font-size: 10.8px !important;
  }
}
@media (max-width: 380px) {
  .brand { font-size: 15px !important; }
  .main-menu a {
    min-height: 26px !important;
    padding: 5px 7px !important;
    font-size: 10px !important;
  }
}
/* Kim Loan ultra slim 2026 header/menu polish */
@media (max-width: 1020px) {
  .top-strip {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
  .brand {
    gap: 7px !important;
    font-size: clamp(13px, 1.75vw, 15px) !important;
    font-weight: 650 !important;
    letter-spacing: -.015em !important;
  }
  .brand img {
    width: min(var(--logo-width, 68px), 40px) !important;
    height: min(var(--logo-height, 42px), 30px) !important;
  }
  .main-menu,
  .main-menu.open {
    gap: 5px !important;
    padding: 6px 7px !important;
    border-radius: 15px !important;
    background: rgba(255,248,251,.68) !important;
  }
  .main-menu a {
    min-height: 25px !important;
    padding: 5px 8px !important;
    font-size: 10px !important;
    font-weight: 650 !important;
    letter-spacing: -.01em !important;
    border-width: 1px !important;
  }
  .main-menu a[aria-current="page"],
  .main-menu a.is-active,
  .main-menu a.active {
    font-weight: 700 !important;
    box-shadow: 0 5px 14px rgba(183,37,112,.13) !important;
  }
  .header-search input,
  .header-search button {
    font-size: 11.5px !important;
  }
}
@media (max-width: 640px) {
  .top-strip .container {
    gap: 5px !important;
  }
  .brand {
    font-size: 13.5px !important;
    gap: 6px !important;
  }
  .brand img {
    width: 34px !important;
    height: 27px !important;
  }
  .main-menu,
  .main-menu.open {
    gap: 4px !important;
    padding: 6px !important;
  }
  .main-menu a {
    min-height: 24px !important;
    padding: 5px 7px !important;
    font-size: 9.4px !important;
  }
}
@media (max-width: 380px) {
  .brand { font-size: 12.8px !important; }
  .main-menu a {
    min-height: 23px !important;
    padding: 4px 6px !important;
    font-size: 8.9px !important;
  }
}

/* Kim Loan softer slim menu + right aligned search */
@media (max-width: 1020px) {
  .brand {
    color: #a33a6e !important;
    font-weight: 600 !important;
    opacity: .92 !important;
  }
  .main-menu,
  .main-menu.open {
    justify-content: flex-end !important;
    padding: 5px 7px !important;
    background: rgba(255,250,252,.74) !important;
    border-color: rgba(183,37,112,.08) !important;
    box-shadow: 0 5px 14px rgba(82,38,67,.035) !important;
  }
  .main-menu a {
    min-height: 23px !important;
    padding: 4px 7px !important;
    color: #87536c !important;
    background: rgba(255,255,255,.72) !important;
    border-color: rgba(183,37,112,.09) !important;
    font-size: 9.4px !important;
    font-weight: 560 !important;
    letter-spacing: -.018em !important;
  }
  .main-menu a:hover,
  .main-menu a:focus-visible {
    background: #fdf0f6 !important;
    color: #9b2d62 !important;
    border-color: rgba(183,37,112,.16) !important;
    box-shadow: none !important;
  }
  .main-menu a[aria-current="page"],
  .main-menu a.is-active,
  .main-menu a.active {
    background: linear-gradient(135deg, #c1437c, #ad2e69) !important;
    border-color: rgba(183,37,112,.55) !important;
    color: #fff !important;
    font-weight: 650 !important;
    box-shadow: 0 4px 12px rgba(183,37,112,.12) !important;
  }
  .header-search {
    justify-self: end !important;
    margin-left: auto !important;
    width: clamp(220px, 36vw, 330px) !important;
  }
}
@media (max-width: 640px) {
  .main-menu,
  .main-menu.open {
    justify-content: flex-end !important;
    gap: 4px !important;
  }
  .main-menu a {
    min-height: 22px !important;
    padding: 4px 6px !important;
    font-size: 8.8px !important;
    font-weight: 550 !important;
  }
  .header-search {
    width: min(100%, 310px) !important;
    justify-self: end !important;
    margin-left: auto !important;
  }
}
@media (max-width: 420px) {
  .header-search {
    width: 100% !important;
  }
  .main-menu,
  .main-menu.open {
    justify-content: center !important;
  }
}

/* Kim Loan correction: menu stays original/center, only search moves right */
@media (max-width: 1020px) {
  .main-menu,
  .main-menu.open {
    justify-content: center !important;
  }
  .header-search {
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: translateX(0) !important;
    width: clamp(220px, 34vw, 330px) !important;
  }
}
@media (max-width: 640px) {
  .main-menu,
  .main-menu.open {
    justify-content: center !important;
  }
  .header-search {
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    width: min(100%, 310px) !important;
  }
}

/* Kim Loan final search position fix: make search box visibly right aligned */
@media (max-width: 1020px) {
  .header-search {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .header-search input {
    flex: 0 1 235px !important;
    width: 235px !important;
    margin-left: auto !important;
    border: 1px solid var(--line) !important;
    border-right: 0 !important;
    border-radius: 13px 0 0 13px !important;
    background: #fff !important;
  }
  .header-search button {
    flex: 0 0 auto !important;
    border-radius: 0 13px 13px 0 !important;
  }
}
@media (max-width: 640px) {
  .header-search input {
    flex-basis: 210px !important;
    width: 210px !important;
  }
}
@media (max-width: 420px) {
  .header-search input {
    flex: 1 1 auto !important;
    width: auto !important;
  }
}

/* Kim Loan tablet-only search alignment fix */
@media (min-width: 641px) and (max-width: 1020px) {
  .header-grid {
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
  }
  .brand {
    grid-column: 1 !important;
  }
  .main-menu,
  .main-menu.open {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-content: center !important;
  }
  .header-search {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    width: 245px !important;
    max-width: 245px !important;
    margin: 0 !important;
    border: 1px solid var(--line) !important;
    border-radius: 13px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  .header-search input {
    flex: 1 1 auto !important;
    width: auto !important;
    margin-left: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .header-search button {
    flex: 0 0 auto !important;
    border-radius: 0 !important;
  }
}

/* Kim Loan tablet search below menu, aligned right */
@media (min-width: 641px) and (max-width: 1020px) {
  .header-grid {
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
  }
  .brand {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
  }
  .main-menu,
  .main-menu.open {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
  }
  .header-search {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    width: 245px !important;
    max-width: 245px !important;
    margin: 4px 12px 0 auto !important;
    border: 1px solid var(--line) !important;
    border-radius: 13px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  .header-search input {
    flex: 1 1 auto !important;
    width: auto !important;
    margin-left: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .header-search button {
    flex: 0 0 auto !important;
    border-radius: 0 !important;
  }
}

/* Kim Loan tablet true fix: move the search wrapper below menu and align right */
@media (min-width: 641px) and (max-width: 1020px) {
  .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    justify-self: stretch !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    padding-right: 4px !important;
  }
  .header-actions .header-search {
    width: 245px !important;
    max-width: 245px !important;
    margin: 4px 0 0 auto !important;
  }
}

/* Kim Loan social navigation and 2026 social hub */
.mobile-social-menu { display: none; }

@media (max-width: 640px) {
  .header-grid { padding-bottom: 8px !important; }
  .header-actions { grid-row: auto !important; }
  .mobile-social-menu {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    margin-top: -1px;
    padding: 4px 6px 0;
    color: #8a5d72;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    line-height: 1.2;
  }
  .mobile-social-menu > span { margin-right: 2px; }
  .mobile-social-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 8px;
    border: 1px solid rgba(183,37,112,.12);
    border-radius: 999px;
    background: #fff;
    color: #74344f;
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(82,38,67,.04);
  }
  .mobile-social-menu .social-youtube { color: #b4232d; }
  .mobile-social-menu .social-tiktok { color: #34232c; }
  .mobile-social-menu .social-facebook { color: #1767bd; }
  .main-menu,
  .main-menu.open {
    width: 100% !important;
    overflow: visible !important;
  }
  .main-menu a { flex: 0 0 auto !important; }
}

.social-hub {
  background: #fff9fc;
  color: #49323e;
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
}
.social-return-bar {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(183,37,112,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(82,38,67,.07);
  backdrop-filter: blur(12px);
}
.social-return-bar .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.social-return-bar a { color: #9d1858; font-size: 13px; font-weight: 750; }
.social-return-bar span { color: #806b76; font-size: 11px; }
.social-hero {
  padding: 48px 0;
  background: linear-gradient(135deg,#fff 0%,#fff4f9 55%,#f6dfe9 100%);
}
.social-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr);
  gap: 34px;
  align-items: center;
}
.social-hero__grid > * { min-width: 0; }
.social-hero h1 {
  max-width: 680px;
  margin: 8px 0 16px;
  color: #851448;
  font-size: clamp(36px,4.5vw,56px);
  line-height: 1.12;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}
.social-hero p:not(.eyebrow) { max-width: 680px; color: #715c67; line-height: 1.75; }
.social-hero img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border: 1px solid rgba(183,37,112,.14);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(82,38,67,.14);
}
.social-channel-tabs {
  position: sticky;
  top: 44px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-block: 12px;
  background: rgba(255,249,252,.95);
  backdrop-filter: blur(12px);
}
.social-channel-tabs a {
  min-width: 96px;
  padding: 9px 16px;
  border: 1px solid #ead7e1;
  border-radius: 999px;
  background: #fff;
  color: #6f4157;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.social-channel-tabs a:hover,.social-channel-tabs a.is-active { border-color: #b72570; background: #b72570; color: #fff; }
.social-channel-tabs a.youtube.is-active { background: #d72b36; border-color: #d72b36; }
.social-channel-tabs a.tiktok.is-active { background: #23161d; border-color: #23161d; }
.social-channel-tabs a.facebook.is-active { background: #1769c2; border-color: #1769c2; }
.social-channel-list { display: grid; gap: 26px; padding-block: 24px 64px; }
.social-channel {
  overflow: hidden;
  border: 1px solid #eadce4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(82,38,67,.08);
}
.social-channel__head {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid #efe2e9;
  background: linear-gradient(135deg,#fff,#fff7fb);
}
.social-channel__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #b72570;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.social-channel--youtube .social-channel__icon { background: #d72b36; }
.social-channel--tiktok .social-channel__icon { background: #23161d; }
.social-channel--facebook .social-channel__icon { background: #1769c2; }
.social-channel__title p { margin: 0 0 3px; color: #9c7588; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.social-channel__title h2 { margin: 0 0 4px; color: #67163d; font-size: 20px; }
.social-channel__title span { color: #806a75; font-size: 12px; line-height: 1.5; }
.social-channel__open,.social-channel__pending {
  padding: 9px 13px;
  border-radius: 999px;
  background: #f8e5ee;
  color: #941850;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}
.social-channel__pending { color: #8f7a84; background: #f3eef1; }
.social-video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding: 20px; }
.social-tiktok-live {
  grid-column: 1 / -1;
  min-width: 0;
  padding: 4px;
  overflow: visible;
}
.social-tiktok-live__notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg,#24161e,#4b2739);
  color: #fff;
}
.social-tiktok-live__notice strong { font-size: 12px; }
.social-tiktok-live__notice span { color: #efdce6; font-size: 10px; text-align: right; }
.social-tiktok-live .tiktok-embed {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 420px !important;
  margin: 0 !important;
  border-radius: 16px;
}
.social-tiktok-live iframe {
  width: 100% !important;
  min-height: 420px !important;
  border: 0 !important;
  border-radius: 16px;
}
.social-tiktok-preview-head {
  max-width: 760px;
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #7e174b;
  font-size: 12px;
}
.social-tiktok-preview-head span {
  color: #7d6070;
  font-size: 11px;
  text-align: right;
}
.social-tiktok-preview-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  max-width: 760px;
  margin: 8px auto 14px;
}
.social-tiktok-preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid #eadce4;
  border-radius: 16px;
  background: #fff7fb;
  color: #fff;
  box-shadow: 0 12px 26px rgba(82,38,67,.08);
}
.social-tiktok-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .25s ease;
}
.social-tiktok-preview-card:hover img { transform: scale(1.035); }
.social-tiktok-preview-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg,rgba(36,22,30,0),rgba(36,22,30,.78));
}
.social-tiktok-preview-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(183,37,112,.92);
  transform: translate(-50%,-50%);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.social-tiktok-preview-card strong {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 11px;
  z-index: 1;
  font-size: 12px;
  line-height: 1.35;
}
.social-tiktok-live__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(183,37,112,.18);
  border-radius: 999px;
  background: #fff3f8;
  color: #941850;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}
.social-video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eadce4;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  box-shadow: 0 10px 28px rgba(82,38,67,.07);
}
.social-video-card__media { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #261820; }
.social-video-card__media iframe,.social-video-card__media img { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; }
.social-video-card__media img { transition: transform .25s ease; }
.social-video-card:hover .social-video-card__media img { transform: scale(1.025); }
.social-play { position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(183,37,112,.9); color: #fff; transform: translate(-50%,-50%); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.social-facebook-reel-preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.social-facebook-reel-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(20,10,16,.05),rgba(20,10,16,.62));
}
.social-facebook-reel-preview em {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.social-play--facebook {
  z-index: 1;
  background: #1769c2;
  font-family: Arial,sans-serif;
  font-size: 24px;
  font-weight: 900;
}
.social-video-card__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; }
.social-video-card__body strong { color: #6d183f; font-size: 13px; }
.social-video-card__body a,.social-video-card__body span { color: #a31a59; font-size: 10px; font-weight: 650; text-align: right; }
.social-seo-copy { padding: 56px 0; background: #331824; color: #f9eaf1; text-align: center; }
.social-seo-copy h2 { margin: 0 0 12px; color: #fff; font-size: clamp(26px,3vw,38px); }
.social-seo-copy p { max-width: 850px; margin: 0 auto; color: #e9cedb; line-height: 1.75; }
.social-seo-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 22px; }
.social-seo-links a { padding: 9px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: #fff; font-size: 12px; }

@media (max-width: 900px) {
  .social-hero__grid { grid-template-columns: 1fr; }
  .social-hero img { aspect-ratio: 16/7; }
}
@media (max-width: 640px) {
  .social-return-bar .container { min-height: 40px; }
  .social-return-bar span { display: none; }
  .social-return-bar a { font-size: 11px; }
  .social-hero { padding: 28px 0 24px; }
  .social-hero__grid { gap: 20px; }
  .social-hero h1 { font-size: 31px; line-height: 1.16; }
  .social-hero p:not(.eyebrow) { font-size: 13px; line-height: 1.65; }
  .social-hero img { aspect-ratio: 4/3; border-radius: 18px; }
  .social-channel-tabs { top: 40px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-block: 8px; }
  .social-channel-tabs a { min-width: auto; padding: 7px 12px; font-size: 10px; }
  .social-channel-list { gap: 18px; padding-block: 14px 36px; }
  .social-channel { border-radius: 18px; }
  .social-channel__head { grid-template-columns: auto 1fr; gap: 10px; padding: 14px; }
  .social-channel__icon { width: 36px; height: 36px; border-radius: 11px; font-size: 14px; }
  .social-channel__title h2 { font-size: 15px; }
  .social-channel__title span { display: block; font-size: 10px; }
  .social-channel__open,.social-channel__pending { grid-column: 1/-1; justify-self: stretch; padding: 8px 11px; text-align: center; }
  .social-video-grid { gap: 8px; padding: 10px; }
  .social-tiktok-live__notice { display: grid; gap: 4px; padding: 10px; }
  .social-tiktok-live__notice strong { font-size: 10px; }
  .social-tiktok-live__notice span { font-size: 8.5px; text-align: left; }
  .social-video-card { border-radius: 12px; }
  .social-video-card__body { display: grid; gap: 3px; padding: 9px; }
  .social-video-card__body strong { font-size: 10px; }
  .social-video-card__body a,.social-video-card__body span { font-size: 8.5px; text-align: left; }
  .social-play { width: 34px; height: 34px; font-size: 11px; }
  .social-seo-copy { padding: 38px 0; }
  .social-seo-copy p { font-size: 12px; }
}
