/* ============================================================
 page-showroom.css — PORT 1:1 từ Wave 2 showroom-hanoi/index.html
 Loaded conditional on page-showroom.php template (5 showroom pages)
 ============================================================ */

:root {
  --cream: #faf6f0;
  --cream-darker: #F5F0E8;
  --cream-deeper: #EDE6D9;
  --navy: #1A2332;
  --navy-darker: #0f1620;
  --terracotta: #B85742;
  --terracotta-darker: #8B3A2F;
  --terracotta-deepest: #7A2F26;
  --terracotta-light: #E8B4A8;
  --gray-500: #6e7480;
  --gray-600: #5e6470;
  --gray-700: #2D3748;
  --border-soft: rgba(26, 35, 50, 0.08);
  --border-med: rgba(26, 35, 50, 0.14);

  --container: 1280px;
  --pad-x: clamp(20px, 5vw, 60px);

  --fs-display: clamp(34px, 4.5vw, 52px);
  --fs-h2: clamp(24px, 3.2vw, 34px);
  --fs-h3: clamp(20px, 2.6vw, 24px);
  --fs-body-lg: 16px;
  --fs-body: 15px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-eyebrow: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.65;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-mid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-darker); }

.btn-secondary { background: var(--terracotta); color: var(--cream); }
.btn-secondary:hover { background: var(--terracotta-darker); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.5);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* ============ NAVIGATION (Wave 2) ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 1px;
}
.nav__logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-top: 2px;
}
@media (max-width: 768px) { .nav__logo-sub { display: none; } }

.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--terracotta);
}
.nav__cta { font-size: 13px; padding: 10px 20px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none !important; }
}

.nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .nav__hamburger { display: inline-flex; }
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 32, 0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav__overlay.is-active { opacity: 1; pointer-events: auto; }

.nav__drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; max-width: 85vw;
  height: 100dvh;
  background: var(--cream);
  z-index: 1000;
  padding: 28px 28px 32px;
  box-shadow: -4px 0 24px rgba(15, 22, 32, 0.15);
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.nav__drawer.is-open { right: 0; }

.nav__drawer-close {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 12px;
}

.nav__drawer-brand {
  display: flex; flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  margin-bottom: 16px;
}
.nav__drawer-brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
  line-height: 1.05;
}
.nav__drawer-brand-sub {
  font-size: 12px; font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.nav__drawer-links { display: flex; flex-direction: column; }
.nav__drawer-links a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}
.nav__drawer-links a:hover { color: var(--terracotta); }
.nav__drawer-cta {
  margin-top: 20px;
  background: var(--terracotta) !important;
  color: var(--cream) !important;
  text-align: center;
  border-bottom: 0 !important;
  padding: 14px 18px !important;
  font-weight: 600 !important;
  border-radius: 2px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb-wrap {
  background: var(--cream-darker);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb__sep { color: var(--gray-500); opacity: 0.5; }
.breadcrumb__current { color: var(--navy); font-weight: 500; }

/* ============ ARTICLE HERO ============ */
.article-hero {
  background: linear-gradient(135deg, #1A2332 0%, #0f1620 100%) !important;
  color: var(--cream) !important;
  padding: 64px 0 72px !important;
  position: relative;
  overflow: hidden;
  min-height: 320px !important;
  }
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(184, 87, 66, 0.18), transparent 55%);
  pointer-events: none;
  min-height: 320px;
  }
.article-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.article-hero__meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cat-badge {
  background: var(--terracotta);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.subcat-text {
  font-size: 12px;
  color: var(--terracotta-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-hero__h1 {
  font-size: var(--fs-display);
  color: var(--cream) !important;
  line-height: 1.18;
  margin-bottom: 18px;
}
.article-hero__subtitle {
  font-size: 18px;
  font-style: italic;
  color: rgba(250, 246, 240, 0.8) !important;
  font-family: 'Playfair Display', serif;
  line-height: 1.55;
  max-width: 680px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 240, 0.15);
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(250, 246, 240, 0.7);
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ============ BRAND HEADLINE STATS ============ */
.brand-stats {
  background: var(--cream-darker);
  padding: 36px 0;
  border-bottom: 1px solid var(--border-soft);
}
.brand-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.brand-stat {
  text-align: center;
  padding: 0 8px;
}
.brand-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.brand-stat__label {
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .brand-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ============ ARTICLE BODY ============ */
.article-body {
  padding: 64px 0;
}
.intro-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--terracotta);
  margin: 0 0 48px;
}
.section-h2 {
  font-size: var(--fs-h2);
  margin: 48px 0 20px;
  line-height: 1.25;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.section-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.6em;
  font-weight: 600;
  color: var(--terracotta);
  flex-shrink: 0;
  min-width: 36px;
  padding-top: 6px;
}
.section-h2:first-of-type { margin-top: 0; }

.prose p {
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: var(--fs-body-lg);
  line-height: 1.78;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose em { font-style: italic; color: var(--gray-600); }
.prose a {
  color: var(--terracotta);
  font-weight: 500;
  border-bottom: 1px solid rgba(184, 87, 66, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.prose a:hover {
  color: var(--terracotta-darker);
  border-bottom-color: var(--terracotta);
}
.prose ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prose ul li {
  padding-left: 24px;
  position: relative;
  color: var(--gray-700);
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============ HIGHLIGHT QUOTE ============ */
.highlight-card {
  background: var(--cream-darker);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
}
.highlight-card__icon {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.55;
}
.highlight-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

/* ============ CONCLUSION ============ */
.conclusion-block {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 2px solid var(--border-soft);
}
.conclusion-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: inline-block;
}
.conclusion-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============ AUTHOR BLOCK ============ */
.author-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin-top: 40px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-darker));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.author-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.author-info-meta {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============ RELATED (Tham khảo thêm) ============ */
.related-section {
  background: var(--cream-darker);
  padding: 64px 0;
}
.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.related-h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin-bottom: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.article-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--border-med);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 35, 50, 0.08);
}
.article-card__img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cream-darker), var(--cream-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card__img-text {
  font-family: 'Playfair Display', serif;
  color: var(--gray-500);
  font-style: italic;
  font-size: 13px;
  padding: 0 16px;
  text-align: center;
  line-height: 1.4;
}
.article-card__info {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
  flex-wrap: wrap;
}
.article-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-500);
}
.article-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}
.article-card__link {
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============ CTA NAVY ============ */
.cta-section {
  padding: 48px 0;
}
.cta-navy {
  background: linear-gradient(135deg, #1A2332, #0f1620);
  color: var(--cream);
  border-radius: 10px;
  padding: 52px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(184, 87, 66, 0.18), transparent 55%);
  pointer-events: none;
}
.cta-navy__inner {
  position: relative;
  z-index: 2;
}
.cta-navy__eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 14px;
}
.cta-navy__h {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-h2);
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-navy__text {
  color: rgba(250, 246, 240, 0.78);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.cta-navy__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BACK LINK ============ */
.back-link-wrap {
  padding: 24px 0 56px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  transition: color 0.2s;
}
.back-link:hover { color: var(--terracotta); }
.back-link svg { width: 16px; height: 16px; }

/* ============ FOOTER (Wave 2) ============ */
.footer {
  background: var(--navy-darker);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 1px;
  margin-bottom: 16px;
}
.footer__logo .nav__logo-main { color: var(--cream); }
.footer__logo .nav__logo-sub { color: rgba(250, 246, 240, 0.6); }
.footer__tagline {
  font-size: 14px;
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.7;
  max-width: 360px;
  margin-top: 12px;
}
.footer__col h4, .footer__col p.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(250, 246, 240, 0.75);
}
.footer__col ul a:hover { color: var(--cream); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(250, 246, 240, 0.5);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============ SHOWROOM-SPECIFIC (Sprint 1.4) ============ */
.showroom-feature-image {
  background: var(--cream);
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
.showroom-feature-image .container-mid {
  position: relative;
}
.feature-image__wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 22, 32, 0.18);
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--cream-darker);
}
.feature-image__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-image__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 22, 32, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Hours + contact box */
.contact-box {
  background: var(--cream-darker);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 28px 28px;
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.contact-box__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-box__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.contact-box__icon svg { width: 16px; height: 16px; }
.contact-box__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-box__value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.contact-box__value a { color: var(--terracotta); border-bottom: 1px solid rgba(184, 87, 66, 0.3);  display: inline-block; padding: 10px 0;}
.contact-box__value a:hover { color: var(--terracotta-darker); }
@media (max-width: 600px) {
  .contact-box { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
}

/* Map link card (replace iframe — avoid CSP issues) */
.map-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-darker);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 28px 0 8px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.map-link:hover {
  border-color: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 35, 50, 0.06);
}
.map-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-link__icon svg { width: 18px; height: 18px; }
.map-link__body { flex: 1; min-width: 0; }
.map-link__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.map-link__addr {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.45;
}
.map-link__arrow {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.map-link:hover .map-link__arrow {
  color: var(--terracotta);
  transform: translateX(2px);
}

/* === Floating CTA — call + zalo === */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-cta__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.floating-cta__btn:hover { transform: translateY(-2px); }
.floating-cta__btn--call { background: #B85742; }
.floating-cta__btn--zalo { background: #0068FF; }
@media (max-width: 768px) {
  .floating-cta { right: 12px; bottom: 12px; }
  .floating-cta__btn { width: 52px; height: 52px; }
}
