/* ===================================================================
   Rượu Mao Đài — Landing page (plain HTML/CSS, no framework needed)
   Fonts: Cormorant Garamond (display) + Be Vietnam Pro (body)
   =================================================================== */

:root {
  --navy-deep: #1c2440;
  --navy: #2a3358;
  --gold: #c9a24a;
  --gold-soft: #e3cf95;
  --cream: #f6efe0;
  --foreground: #1f2540;
  --muted-foreground: #6b7088;
  --border: #d8cfb8;

  --gradient-hero: linear-gradient(100deg, rgba(28,36,64,0.97) 0%, rgba(32,40,72,0.85) 45%, rgba(35,40,64,0.35) 100%);
  --gradient-gold: linear-gradient(135deg, #b8923c, #e6cf8d, #bd9847);
  --shadow-gold: 0 10px 30px -12px rgba(184,146,60,0.55);
  --shadow-soft: 0 24px 60px -30px rgba(28,36,64,0.45);

  --radius: 6px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--foreground);
  line-height: 1.5;
}

h1, h2, h3 { font-family: "Cormorant Garamond", serif; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- gold helpers ---------- */
.text-gold-gradient {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.btn-gold {
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, filter .25s ease;
  cursor: pointer; border: 0;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.06); }

.gold-outline {
  border: 1px solid rgba(201,162,74,.55);
  color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease; cursor: pointer; background: transparent;
}
.gold-outline:hover { background-color: rgba(201,162,74,.12); }

/* ===================================================================
   HERO / HEADER
   =================================================================== */
.site-header { position: relative; overflow: hidden; background: var(--navy-deep); }
.site-header .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.site-header .overlay { position: absolute; inset: 0; background-image: var(--gradient-hero); }
.site-header > .container { position: relative; }

/* nav */
.nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand > a { display: flex; align-items: center; gap: 12px; }
.brand .logo {
  width: 44px; height: 44px; flex: none; display: block;
  border-radius: 50%; object-fit: contain;
  box-shadow: 0 0 0 1px rgba(201,162,74,.45), 0 2px 10px rgba(0,0,0,.35);
}
.brand .name { line-height: 1.2; }
.brand .name b { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--gold-soft); }
.brand .name span { font-size: 10px; letter-spacing: .35em; color: rgba(201,162,74,.7); display: block; }

.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: rgba(246,239,224,.8); transition: color .2s; }
.nav-menu a:hover { color: var(--gold); }

.nav-cta { padding: 12px 24px; border-radius: var(--radius); font-size: 12px; }

/* hero content */
.hero { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding: 32px 0 64px; }
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1fr; padding-top: 32px; padding-bottom: 96px; } }

.hero-eyebrow { font-family: "Cormorant Garamond", serif; font-size: 20px; letter-spacing: .2em; color: var(--gold-soft); }
@media (min-width: 640px) { .hero-eyebrow { font-size: 22px; } }

.hero h1 { margin-top: 16px; font-size: 48px; font-weight: 700; line-height: 1.05; letter-spacing: .02em; }
@media (min-width: 640px) { .hero h1 { font-size: 60px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 72px; } }

.hero-tagline { margin-top: 24px; font-family: "Cormorant Garamond", serif; font-size: 20px; font-style: italic; color: rgba(246,239,224,.9); }
@media (min-width: 640px) { .hero-tagline { font-size: 22px; } }

.hero-features { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 640px) { .hero-features { grid-template-columns: repeat(4, 1fr); } }
.hero-features .item span {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.4); color: var(--gold);
}
.hero-features .item h3 { margin-top: 16px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-family: "Be Vietnam Pro", sans-serif; }
.hero-features .item p { margin-top: 4px; font-size: 12px; line-height: 1.6; color: rgba(246,239,224,.7); }

.hero-bottles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.hero-bottles figure { text-align: center; }
.hero-bottles img { margin: 0 auto; max-height: 416px; width: auto; filter: drop-shadow(0 25px 25px rgba(0,0,0,.45)); }
.hero-bottles figure:nth-child(2) img { max-height: 368px; }
.hero-bottles figcaption { margin-top: 16px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: rgba(246,239,224,.8); }

/* ===================================================================
   WHY
   =================================================================== */
.why { background: var(--cream); padding: 48px 0; }
.why .inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .why .inner { flex-direction: row; } }
.why h2 { font-size: 28px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--navy); flex-shrink: 0; }
@media (min-width: 640px) { .why h2 { font-size: 32px; } }
.why ul { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; flex: 1; }
@media (min-width: 1024px) { .why ul { grid-template-columns: repeat(4, 1fr); } }
.why li { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
@media (min-width: 1024px) { .why li { border-left: 1px solid var(--border); padding-left: 24px; } }
@media (min-width: 1024px) { .why li:first-child { border-left: 0; padding-left: 0; } }
.why li svg { width: 28px; height: 28px; color: var(--gold); }
.why li p { max-width: 176px; font-size: 12px; line-height: 1.6; color: var(--muted-foreground); }

/* ===================================================================
   PRODUCTS
   =================================================================== */
.products { background: var(--cream); padding: 80px 0; }
.products h2 { text-align: center; font-size: 40px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--navy); }
.products .grid { margin-top: 56px; display: grid; gap: 32px; }
@media (min-width: 1024px) { .products .grid { grid-template-columns: 1fr 1fr; } }

.card { display: grid; align-items: center; gap: 24px; padding: 32px; border-radius: 8px; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .card { grid-template-columns: 1fr 1fr; } }
.card-light { background: #fff; }
.card-dark { background: var(--navy-deep); }
.card img { margin: 0 auto; max-height: 288px; width: auto; }
.card h3 { font-size: 32px; font-weight: 700; text-transform: uppercase; }
.card-light h3 { color: var(--navy); }
.card-dark h3 { color: var(--gold); }
.card .sub { margin-top: 4px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.card-light .sub { color: var(--muted-foreground); }
.card-dark .sub { color: rgba(246,239,224,.7); }
.card ul.feat { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.card-light ul.feat { color: rgba(31,37,64,.8); }
.card-dark ul.feat { color: rgba(246,239,224,.85); }
.card ul.feat li { display: flex; gap: 8px; }
.card ul.feat svg { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; }
.card-light ul.feat svg { color: var(--gold); }
.card-dark ul.feat svg { color: var(--gold); }
.card .cta { margin-top: 32px; padding: 12px 24px; border-radius: var(--radius); font-size: 12px; font-weight: 600; }
.card-dark .cta { color: var(--gold); }

/* ===================================================================
   AGENTS + FORM
   =================================================================== */
.agents { background: var(--navy); padding: 80px 0; }
.agents .grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .agents .grid { grid-template-columns: 1fr 1fr; } }
.agents .eyebrow { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .25em; color: rgba(246,239,224,.8); }
.agents h2 { margin-top: 12px; font-size: 40px; font-weight: 700; text-transform: uppercase; color: var(--gold); }
@media (min-width: 640px) { .agents h2 { font-size: 48px; } }
.agents .sub { margin-top: 12px; font-size: 14px; color: rgba(246,239,224,.7); }
.agents ul.benefits { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (min-width: 640px) { .agents ul.benefits { grid-template-columns: repeat(4, 1fr); } }
.agents ul.benefits li { text-align: center; }
.agents ul.benefits span {
  margin: 0 auto; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.4); color: var(--gold);
}
.agents ul.benefits svg { width: 20px; height: 20px; }
.agents ul.benefits p { margin-top: 12px; font-size: 12px; line-height: 1.6; color: rgba(246,239,224,.75); }
.agents .agent-cta { margin-top: 40px; padding: 16px 32px; border-radius: var(--radius); font-size: 12px; }

/* form */
.agents form {
  border-radius: 8px; border: 1px solid rgba(201,162,74,.25);
  background: rgba(28,36,64,.7); padding: 32px;
}
.agents form h3 { text-align: center; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-family: "Be Vietnam Pro", sans-serif; }
.agents form .fields { margin-top: 24px; display: grid; gap: 16px; }
@media (min-width: 640px) { .agents form .fields { grid-template-columns: 1fr 1fr; } }
.agents form input,
.agents form textarea {
  border-radius: var(--radius); border: 1px solid rgba(201,162,74,.25);
  background: rgba(42,51,88,.6); padding: 12px 16px;
  font-size: 14px; color: var(--cream); font-family: inherit;
  width: 100%; outline: none;
}
.agents form input::placeholder, .agents form textarea::placeholder { color: rgba(246,239,224,.45); }
.agents form input:focus, .agents form textarea:focus { border-color: var(--gold); }
.agents form textarea { grid-column: 1 / -1; resize: vertical; }
.agents form button { margin-top: 24px; width: 100%; padding: 16px; border-radius: var(--radius); font-size: 12px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--navy-deep); padding-top: 64px; }
.site-footer .grid { display: grid; gap: 40px; padding-bottom: 48px; }
@media (min-width: 768px) { .site-footer .grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer h3 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-family: "Be Vietnam Pro", sans-serif; }
.site-footer p, .site-footer li { font-size: 12px; line-height: 1.6; color: rgba(246,239,224,.7); }
.site-footer .about p { margin-top: 16px; max-width: 320px; }
.site-footer .contact ul { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.site-footer .contact li { display: flex; gap: 8px; align-items: flex-start; }
.site-footer .contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.site-footer .social h3 { margin-bottom: 0; }
.site-footer .social .links { margin-top: 16px; display: flex; gap: 12px; }
.site-footer .social .links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.4); color: var(--gold);
  font-size: 10px; font-weight: 600; transition: background .2s;
}
.site-footer .social .links a:hover { background: rgba(201,162,74,.15); }
.site-footer .social .cert { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.site-footer .social .cert svg { width: 32px; height: 32px; color: var(--gold); }
.site-footer .social .cert p { font-size: 12px; font-weight: 600; text-transform: uppercase; line-height: 1.4; color: rgba(246,239,224,.85); }
.site-footer .copyright { border-top: 1px solid rgba(201,162,74,.15); padding: 20px 0; text-align: center; font-size: 12px; color: rgba(246,239,224,.55); }

/* ===================================================================
   MOBILE FIXES (<= 767px)
   =================================================================== */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; }

@media (max-width: 767px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Nav: brand 1 hàng, menu cuộn ngang, nút CTA full width */
  .nav { flex-wrap: nowrap; flex-direction: column; align-items: stretch; gap: 12px; padding: 16px 0; }
  .brand { justify-content: flex-start; }
  .brand .logo { width: 38px; height: 38px; }
  .brand .name b { font-size: 17px; }
  .brand .name span { font-size: 9px; letter-spacing: .28em; }

  .nav-menu {
    flex-wrap: nowrap; gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 4px;
    border-top: 1px solid rgba(201,162,74,.18);
    border-bottom: 1px solid rgba(201,162,74,.18);
    padding-top: 10px;
  }
  .nav-menu::-webkit-scrollbar { display: none; }
  .nav-menu a { white-space: nowrap; font-size: 11px; letter-spacing: .06em; }

  .nav-cta { width: 100%; padding: 12px 16px; }

  /* Hero */
  .hero { padding: 24px 0 48px; gap: 32px; }
  .hero-eyebrow { font-size: 15px; letter-spacing: .16em; }
  .hero h1 { font-size: 34px; letter-spacing: .01em; }
  .hero-tagline { font-size: 17px; margin-top: 16px; }
  .hero-features { margin-top: 32px; gap: 20px; }
  .hero-features .item span { width: 42px; height: 42px; }
  .hero-features .item h3 { font-size: 12px; margin-top: 12px; }
  .hero-features .item p { font-size: 11px; }
  .hero-bottles img { max-height: 260px; }
  .hero-bottles figure:nth-child(2) img { max-height: 230px; }

  /* Sections */
  .why h2, .products h2 { font-size: 26px; }
  .agents h2 { font-size: 28px; }
  .card { gap: 16px; }
  .site-footer .grid { gap: 28px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 29px; }
  .hero-features { grid-template-columns: 1fr; }
}

/* ===================================================================
   AGE GATE 18+  — popup xác nhận độ tuổi
   =================================================================== */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(16, 21, 40, .78);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.age-gate.is-open { opacity: 1; visibility: visible; }
/* hiện ngay từ lúc paint đầu tiên để không lộ nội dung trước khi JS chạy */
html.js:not(.age-verified) .age-gate { opacity: 1; visibility: visible; }
html.age-verified .age-gate { display: none; }
/* khoá cuộn cho tới khi xác nhận — chỉ ở trang có popup (trang chủ) */
html:not(.age-verified) body.has-age-gate { overflow: hidden; }

.age-gate-card {
  position: relative; overflow: hidden;
  width: 100%; max-width: 620px;
  padding: 48px 44px 44px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 74, .3);
  background: linear-gradient(160deg, #202948 0%, var(--navy-deep) 55%, #161d34 100%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .75);
  text-align: center;
  transform: translateY(14px) scale(.97);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.age-gate.is-open .age-gate-card { transform: translateY(0) scale(1); }

/* quầng sáng vàng phía sau logo */
.age-gate-glow {
  position: absolute; top: -46%; left: 50%; transform: translateX(-50%);
  width: 130%; height: 110%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(201, 162, 74, .34), rgba(201, 162, 74, .08) 55%, transparent 75%);
}

.age-gate-view { position: relative; }

.age-gate-logo {
  width: 96px; height: 96px; margin: 0 auto 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201, 162, 74, .5), 0 10px 30px -8px rgba(0, 0, 0, .65);
}

.age-gate-card h2 {
  font-size: 34px; line-height: 1.15; font-weight: 700; letter-spacing: .02em;
}

.age-gate-lead {
  margin-top: 16px; font-size: 15px;
  color: rgba(246, 239, 224, .82);
}
.age-gate-lead b { color: var(--gold-soft); }

.age-gate-ask {
  margin-top: 10px;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(201, 162, 74, .82);
}

.age-gate-actions {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.age-gate-btn {
  flex: 1 1 220px; max-width: 260px;
  padding: 15px 20px; border-radius: var(--radius);
  font-family: inherit; font-size: 12px; font-weight: 600;
}
.age-gate-btn.gold-outline { background: rgba(246, 239, 224, .04); }
.age-gate-btn.gold-outline:hover { background: rgba(201, 162, 74, .14); border-color: var(--gold); }
.age-gate-btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

@media (max-width: 767px) {
  .age-gate { padding: 16px; }
  .age-gate-card { padding: 36px 22px 30px; border-radius: 10px; }
  .age-gate-logo { width: 76px; height: 76px; margin-bottom: 18px; }
  .age-gate-card h2 { font-size: 25px; }
  .age-gate-lead { font-size: 14px; }
  .age-gate-ask { font-size: 10px; letter-spacing: .14em; }
  .age-gate-actions { margin-top: 26px; gap: 10px; }
  .age-gate-btn { flex: 1 1 100%; max-width: none; padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate, .age-gate-card { transition: none; }
}

/* ===================================================================
   TRANG CON — khung dùng chung (giới thiệu / sản phẩm / tin tức / liên hệ)
   =================================================================== */

/* ---------- hiệu ứng reveal khi cuộn ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal {
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- nav: trạng thái trang hiện tại ---------- */
.nav-menu a.is-active { color: var(--gold); position: relative; }
.nav-menu a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; background-image: var(--gradient-gold); border-radius: 2px;
}

/* ---------- hero trang con ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--navy-deep); }
.page-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero .overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(201,162,74,.2), transparent 65%),
    linear-gradient(180deg, rgba(28,36,64,.9) 0%, rgba(28,36,64,.78) 45%, rgba(28,36,64,.97) 100%);
}
.page-hero > .container { position: relative; }
.page-hero-inner { max-width: 780px; margin: 0 auto; padding: 52px 0 76px; text-align: center; }

.crumb { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,239,224,.55); }
.crumb a { color: rgba(201,162,74,.85); transition: color .2s; }
.crumb a:hover { color: var(--gold-soft); }
.crumb span[aria-hidden] { color: rgba(201,162,74,.5); }

.page-hero .eyebrow {
  margin-top: 26px; font-family: "Cormorant Garamond", serif;
  font-size: 19px; letter-spacing: .22em; color: var(--gold-soft);
}
.page-hero h1 {
  margin-top: 10px; font-size: 52px; font-weight: 700; line-height: 1.08;
  text-transform: uppercase; letter-spacing: .02em;
}
.page-hero .lead { margin-top: 20px; font-size: 15px; line-height: 1.8; color: rgba(246,239,224,.78); }
.page-hero .rule { margin: 26px auto 0; width: 120px; height: 2px; background-image: var(--gradient-gold); border-radius: 2px; }

/* ---------- khung section chung ---------- */
.section { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--navy { background: var(--navy); }
.section--navy-deep { background: var(--navy-deep); }

.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .25em;
  color: var(--gold);
}
.section-head h2 {
  margin-top: 12px; font-size: 40px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em; color: var(--navy);
}
.section-head p { margin-top: 16px; font-size: 15px; line-height: 1.8; color: var(--muted-foreground); }
.section--navy .section-head h2,
.section--navy-deep .section-head h2 { color: var(--gold); }
.section--navy .section-head p,
.section--navy-deep .section-head p { color: rgba(246,239,224,.72); }
.section--navy .section-head .eyebrow,
.section--navy-deep .section-head .eyebrow { color: rgba(246,239,224,.75); }

.section-head--left { margin-left: 0; text-align: left; }

/* ---------- dải CTA cuối trang ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy-deep); padding: 64px 0; text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 50% 0%, rgba(201,162,74,.22), transparent 70%);
}
.cta-band > .container { position: relative; }
.cta-band h2 { font-size: 36px; font-weight: 700; text-transform: uppercase; color: var(--gold); }
.cta-band p { margin: 14px auto 0; max-width: 560px; font-size: 14px; line-height: 1.8; color: rgba(246,239,224,.75); }
.cta-band .actions { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-band .actions a { padding: 15px 30px; border-radius: var(--radius); font-size: 12px; font-weight: 600; }

/* hàng nút canh giữa dưới một lưới nội dung (trang chủ) */
.section-actions {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.section-actions a {
  padding: 15px 30px; border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
}
@media (max-width: 767px) {
  .section-actions { margin-top: 32px; }
  .section-actions a { width: 100%; }
}

/* ===================================================================
   TRANG GIỚI THIỆU
   =================================================================== */
.story { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .story { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.story h2 { font-size: 38px; font-weight: 700; text-transform: uppercase; color: var(--navy); line-height: 1.15; }
.story .eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .25em; color: var(--gold); }
.story p { margin-top: 18px; font-size: 15px; line-height: 1.85; color: var(--muted-foreground); }
.story p strong { color: var(--navy); font-weight: 600; }
.story-figure { position: relative; }
.story-figure img { position: relative; z-index: 1; width: 100%; height: 420px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-soft); }
.story-figure::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: 0;
  border: 1px solid rgba(201,162,74,.55); border-radius: 10px;
}
.story-quote {
  position: absolute; z-index: 2; left: 24px; right: 24px; bottom: -34px;
  padding: 20px 24px; border-radius: 8px;
  background: var(--navy-deep); border: 1px solid rgba(201,162,74,.3);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,.6);
}
.story-quote p { margin: 0; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: var(--gold-soft); line-height: 1.5; }
.story-quote cite { display: block; margin-top: 8px; font-size: 11px; font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,239,224,.6); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(201,162,74,.28); border: 1px solid rgba(201,162,74,.28); border-radius: 10px; overflow: hidden; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div { background: var(--navy-deep); padding: 30px 18px; text-align: center; }
.stats b { display: block; font-family: "Cormorant Garamond", serif; font-size: 40px; font-weight: 700; line-height: 1; background-image: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats span { display: block; margin-top: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,239,224,.7); }

/* quy trình 12987 */
.process { display: grid; gap: 24px; }
@media (min-width: 640px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process .step {
  position: relative; padding: 30px 22px; border-radius: 10px;
  border: 1px solid rgba(201,162,74,.25); background: rgba(28,36,64,.55);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.process .step:hover { transform: translateY(-6px); border-color: rgba(201,162,74,.6); background: rgba(28,36,64,.85); }
.process .step b {
  display: block; font-family: "Cormorant Garamond", serif; font-size: 46px; line-height: 1;
  background-image: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process .step h3 { margin-top: 14px; font-family: "Be Vietnam Pro", sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); }
.process .step p { margin-top: 10px; font-size: 12.5px; line-height: 1.7; color: rgba(246,239,224,.7); }

/* giá trị cốt lõi */
.values { display: grid; gap: 24px; }
@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  padding: 32px 26px; border-radius: 10px; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(28,36,64,.55); }
.value-card .ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.5); color: var(--gold);
  background: rgba(201,162,74,.08);
}
.value-card .ico svg { width: 22px; height: 22px; }
.value-card h3 { margin-top: 20px; font-size: 22px; font-weight: 700; color: var(--navy); }
.value-card p { margin-top: 10px; font-size: 13.5px; line-height: 1.75; color: var(--muted-foreground); }

/* mốc thời gian */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(180deg, rgba(201,162,74,.1), rgba(201,162,74,.65), rgba(201,162,74,.1)); }
.timeline li { position: relative; padding-bottom: 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -28px; top: 6px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--navy-deep); border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,74,.14);
}
.timeline b { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--gold); }
.timeline p { margin-top: 6px; font-size: 14px; line-height: 1.8; color: rgba(246,239,224,.75); }

/* ===================================================================
   TRANG SẢN PHẨM
   =================================================================== */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.chip {
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--border); background: #fff;
  font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted-foreground); transition: all .25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--navy); }
.chip.is-active { background-image: var(--gradient-gold); border-color: transparent; color: var(--navy-deep); box-shadow: var(--shadow-gold); }

.prod-grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }

.prod {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 10px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.prod:hover { transform: translateY(-8px); border-color: rgba(201,162,74,.6); box-shadow: 0 32px 60px -30px rgba(28,36,64,.6); }
.prod-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 280px; padding: 26px;
  background: radial-gradient(70% 80% at 50% 30%, #fdfaf2, #efe7d3);
}
.prod--dark .prod-media { background: radial-gradient(70% 80% at 50% 30%, #2c3560, var(--navy-deep)); }
.prod-media img { max-height: 100%; width: auto; transition: transform .45s cubic-bezier(.22,1,.36,1); filter: drop-shadow(0 18px 22px rgba(0,0,0,.3)); }
.prod:hover .prod-media img { transform: scale(1.07) translateY(-4px); }
.prod-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; border-radius: 999px;
  background-image: var(--gradient-gold); color: var(--navy-deep);
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.prod-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.prod-body h3 { font-size: 25px; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.prod-body .sub { margin-top: 4px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-foreground); }
.prod-specs { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.prod-specs li {
  padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 500;
  border: 1px solid rgba(201,162,74,.4); color: #8a6f2f; background: rgba(201,162,74,.08);
}
.prod-body > p { margin-top: 16px; font-size: 13.5px; line-height: 1.75; color: var(--muted-foreground); }
.prod-foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod-price { font-family: "Cormorant Garamond", serif; font-size: 21px; font-weight: 600; color: var(--navy); }
.prod-price small { display: block; font-family: "Be Vietnam Pro", sans-serif; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-foreground); }
.prod-foot a { padding: 11px 20px; border-radius: var(--radius); font-size: 11px; font-weight: 600; }

.empty-note { text-align: center; padding: 40px 0; font-size: 14px; color: var(--muted-foreground); }

/* bảng so sánh */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid rgba(201,162,74,.28); }
table.compare { width: 100%; min-width: 560px; border-collapse: collapse; background: rgba(28,36,64,.5); }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; font-size: 13.5px; border-bottom: 1px solid rgba(201,162,74,.16); }
table.compare thead th { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); background: rgba(201,162,74,.08); }
table.compare tbody th { font-weight: 500; color: rgba(246,239,224,.65); width: 34%; }
table.compare td { color: rgba(246,239,224,.9); }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: 0; }

/* ===================================================================
   TRANG TIN TỨC
   =================================================================== */
.post-feature { display: grid; gap: 0; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-soft); background: var(--navy-deep); }
@media (min-width: 900px) { .post-feature { grid-template-columns: 1.1fr 1fr; } }
.post-feature .media { position: relative; min-height: 300px; }
.post-feature .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-feature .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(28,36,64,.85) 100%); }
.post-feature .body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.post-feature h3 { margin-top: 16px; font-size: 32px; line-height: 1.2; font-weight: 700; color: var(--gold-soft); }
.post-feature p { margin-top: 16px; font-size: 14px; line-height: 1.85; color: rgba(246,239,224,.75); }
.post-feature .more { margin-top: 26px; align-self: flex-start; padding: 13px 26px; border-radius: var(--radius); font-size: 11px; font-weight: 600; }

.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,239,224,.6); }
.post-meta .tag { padding: 5px 12px; border-radius: 999px; background: rgba(201,162,74,.16); border: 1px solid rgba(201,162,74,.4); color: var(--gold); font-weight: 600; }
.post-meta .dot { color: rgba(201,162,74,.5); }

.news-grid { margin-top: 40px; display: grid; gap: 26px; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.post {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 10px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.post:hover { transform: translateY(-8px); border-color: rgba(201,162,74,.6); box-shadow: 0 32px 60px -30px rgba(28,36,64,.6); }
.post .thumb { position: relative; height: 200px; overflow: hidden; background: var(--navy-deep); }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.post:hover .thumb img { transform: scale(1.08); }
.post .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(28,36,64,.75)); }
.post .thumb .tag {
  position: absolute; z-index: 1; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(28,36,64,.85); border: 1px solid rgba(201,162,74,.5);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.post .body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.post .date { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-foreground); }
.post h3 { margin-top: 10px; font-size: 22px; line-height: 1.25; font-weight: 700; color: var(--navy); transition: color .25s; }
.post:hover h3 { color: #8a6f2f; }
.post p { margin-top: 12px; font-size: 13.5px; line-height: 1.75; color: var(--muted-foreground); }
.post .more {
  margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.post .more svg { width: 15px; height: 15px; transition: transform .25s; }
.post:hover .more svg { transform: translateX(4px); }

.pager { margin-top: 48px; display: flex; justify-content: center; align-items: center; gap: 8px; }
.pager a, .pager span {
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: #fff;
  font-size: 12px; font-weight: 600; color: var(--muted-foreground); transition: all .25s ease;
}
.pager a:hover { border-color: var(--gold); color: var(--navy); }
.pager .is-current { background-image: var(--gradient-gold); border-color: transparent; color: var(--navy-deep); }

.newsletter { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .newsletter { grid-template-columns: 1fr 1fr; } }
.newsletter h2 { font-size: 32px; font-weight: 700; text-transform: uppercase; color: var(--gold); }
.newsletter p { margin-top: 12px; font-size: 14px; line-height: 1.8; color: rgba(246,239,224,.72); }
.newsletter form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter input {
  flex: 1 1 240px; border-radius: var(--radius); border: 1px solid rgba(201,162,74,.3);
  background: rgba(42,51,88,.6); padding: 15px 18px; font-family: inherit; font-size: 14px; color: var(--cream); outline: none;
}
.newsletter input::placeholder { color: rgba(246,239,224,.45); }
.newsletter input:focus { border-color: var(--gold); }
.newsletter button { padding: 15px 28px; border-radius: var(--radius); font-size: 12px; }

/* ===================================================================
   TRANG LIÊN HỆ
   =================================================================== */
.info-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  padding: 30px 24px; border-radius: 10px; text-align: center;
  border: 1px solid rgba(201,162,74,.28); background: rgba(28,36,64,.55);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.info-card:hover { transform: translateY(-6px); border-color: rgba(201,162,74,.65); background: rgba(28,36,64,.85); }
.info-card .ico {
  margin: 0 auto; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.45); color: var(--gold); background: rgba(201,162,74,.08);
}
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h3 { margin-top: 18px; font-family: "Be Vietnam Pro", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.info-card p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: rgba(246,239,224,.85); }
.info-card p a { transition: color .2s; }
.info-card p a:hover { color: var(--gold); }
.info-card small { display: block; margin-top: 8px; font-size: 11.5px; color: rgba(246,239,224,.55); }

.contact-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }

.contact-form { border-radius: 10px; border: 1px solid var(--border); background: #fff; padding: 34px; box-shadow: var(--shadow-soft); }
.contact-form h3 { font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.contact-form > p { margin-top: 8px; font-size: 13.5px; line-height: 1.7; color: var(--muted-foreground); }
.contact-form .fields { margin-top: 24px; display: grid; gap: 16px; }
@media (min-width: 640px) { .contact-form .fields { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  background: #fdfbf6; padding: 13px 15px; font-family: inherit; font-size: 14px; color: var(--foreground); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.14); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 22px; width: 100%; padding: 16px; border-radius: var(--radius); font-size: 12px; }
.form-note { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius); background: rgba(201,162,74,.12); border: 1px solid rgba(201,162,74,.4); font-size: 13px; color: #7d6328; }

.map-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); background: #fff; }
.map-card iframe { display: block; width: 100%; height: 330px; border: 0; }
.map-card .foot { padding: 22px 24px; }
.map-card .foot h3 { font-family: "Be Vietnam Pro", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.map-card .foot p { margin-top: 8px; font-size: 13.5px; line-height: 1.7; color: var(--muted-foreground); }
.map-card .foot .btn-gold { margin-top: 16px; padding: 12px 22px; border-radius: var(--radius); font-size: 11px; }

.quick-links { margin-top: 32px; display: grid; gap: 14px; }
@media (min-width: 640px) and (max-width: 1023px) { .quick-links { grid-template-columns: repeat(3, 1fr); } }
.quick-links a {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; transition: all .25s ease;
}
.quick-links a:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.quick-links .ico { width: 40px; height: 40px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(201,162,74,.12); color: var(--gold); }
.quick-links .ico svg { width: 18px; height: 18px; }
.quick-links b { display: block; font-size: 13.5px; color: var(--navy); }
.quick-links a > span:last-child { min-width: 0; }
.quick-links span { display: block; margin-top: 2px; font-size: 12px; color: var(--muted-foreground); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  border-radius: 10px; border: 1px solid rgba(201,162,74,.28);
  background: rgba(28,36,64,.55); transition: border-color .25s, background .25s;
}
.faq details[open] { border-color: rgba(201,162,74,.6); background: rgba(28,36,64,.85); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 500; color: var(--gold-soft);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,74,.5); color: var(--gold); font-size: 16px; line-height: 1;
  transition: transform .25s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq p { padding: 0 24px 22px; font-size: 14px; line-height: 1.85; color: rgba(246,239,224,.75); }

/* ===================================================================
   TRANG CON — MOBILE (<= 767px)
   =================================================================== */
@media (max-width: 767px) {
  .page-hero-inner { padding: 30px 0 48px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero .eyebrow { font-size: 15px; letter-spacing: .16em; margin-top: 18px; }
  .page-hero .lead { font-size: 14px; margin-top: 14px; }
  .crumb { font-size: 10px; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { font-size: 27px; }
  .section-head p { font-size: 14px; }

  .story { gap: 56px; }
  .story h2 { font-size: 26px; }
  .story-figure img { height: 260px; }
  .story-figure::after { inset: 12px -12px -12px 12px; }
  .story-quote { left: 12px; right: 12px; bottom: -28px; padding: 16px 18px; }
  .story-quote p { font-size: 16px; }

  .stats b { font-size: 31px; }
  .stats div { padding: 22px 12px; }

  .post-feature .body { padding: 28px 22px; }
  .post-feature h3 { font-size: 24px; }
  .post-feature .media { min-height: 200px; }

  .prod-media { height: 230px; }
  .prod-body { padding: 22px; }
  .prod-body h3 { font-size: 21px; }
  .prod-foot { flex-direction: column; align-items: stretch; }
  .prod-foot a { width: 100%; }

  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 25px; }
  .cta-band .actions a { width: 100%; }

  .contact-form { padding: 24px 20px; }
  .contact-form h3 { font-size: 22px; }
  .newsletter h2 { font-size: 24px; }
  .newsletter form { flex-direction: column; }
  .newsletter button { width: 100%; }

  .faq summary { padding: 16px 18px; font-size: 14px; }
  .faq p { padding: 0 18px 18px; font-size: 13.5px; }

  .timeline { padding-left: 22px; }
  .timeline li::before { left: -22px; }
}

/* ---------- ảnh minh hoạ trang trí cho bài viết (không cần file ảnh) ---------- */
.thumb--art { display: flex; align-items: center; justify-content: center; }
.thumb--art::before {
  content: ""; position: absolute; inset: 14px; border-radius: 8px;
  border: 1px solid rgba(201,162,74,.28);
}
.thumb--art .glyph {
  font-family: "Cormorant Garamond", serif; font-size: 104px; line-height: 1;
  background-image: var(--gradient-gold); -webkit-background-clip: text; background-clip: text;
  color: transparent; opacity: .85; transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.post:hover .thumb--art .glyph { transform: scale(1.1); }
.thumb--art.t1 { background: radial-gradient(90% 110% at 20% 0%, #2f3a66, var(--navy-deep)); }
.thumb--art.t2 { background: radial-gradient(90% 110% at 80% 10%, #33365f, #191f38); }
.thumb--art.t3 { background: radial-gradient(90% 110% at 50% 100%, #2b3459, #171d33); }
.thumb--art.t4 { background: radial-gradient(90% 110% at 10% 90%, #35304f, #1a1f36); }
.thumb--art.t5 { background: radial-gradient(90% 110% at 70% 30%, #2a3a62, #151b31); }

/* ===================================================================
   BỔ SUNG CHO BẢN LARAVEL (theme wire)
   =================================================================== */

/* liên kết trong thẻ sản phẩm / bài viết */
.prod-body h3 a, .post h3 a { color: inherit; transition: color .25s; }
.prod:hover .prod-body h3 a, .post:hover h3 a { color: #8a6f2f; }
a.prod-media, a.thumb { text-decoration: none; }

/* thanh tìm kiếm + sắp xếp trang sản phẩm */
.prod-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin: 0 0 36px; padding: 16px 18px;
  border-radius: 10px; border: 1px solid var(--border); background: #fff;
  box-shadow: var(--shadow-soft);
}
.prod-toolbar input[type="search"] { flex: 1 1 260px; }
.prod-toolbar input, .prod-toolbar select {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: #fdfbf6; padding: 12px 14px;
  font-family: inherit; font-size: 14px; color: var(--foreground); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.prod-toolbar input:focus, .prod-toolbar select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.14); }
.prod-toolbar button { padding: 12px 26px; border-radius: var(--radius); font-size: 12px; }

/* phân trang: trạng thái vô hiệu */
.pager span[aria-disabled] { opacity: .45; }

/* ---------- CHI TIẾT SẢN PHẨM ---------- */
.detail-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.detail-main {
  display: flex; align-items: center; justify-content: center;
  height: 460px; padding: 32px; border-radius: 12px;
  background: radial-gradient(70% 80% at 50% 30%, #fdfaf2, #efe7d3);
  border: 1px solid var(--border); box-shadow: var(--shadow-soft);
}
.detail-main img { max-height: 100%; width: auto; filter: drop-shadow(0 22px 26px rgba(0,0,0,.28)); }
.detail-thumbs { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; }
.detail-thumbs button {
  width: 78px; height: 78px; padding: 6px; cursor: pointer;
  border-radius: 8px; border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, transform .25s;
}
.detail-thumbs button:hover { transform: translateY(-3px); }
.detail-thumbs button.is-active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,162,74,.2); }
.detail-thumbs img { max-width: 100%; max-height: 100%; width: auto; }

.detail-info .eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .25em; color: var(--gold); }
.detail-info h2 { margin-top: 12px; font-size: 38px; font-weight: 700; line-height: 1.15; color: var(--navy); }
.detail-price {
  margin-top: 18px; font-family: "Cormorant Garamond", serif;
  font-size: 34px; font-weight: 700; color: var(--navy);
}
.detail-price del { margin-left: 12px; font-size: 20px; font-weight: 500; color: var(--muted-foreground); }
.detail-lead { margin-top: 16px; font-size: 15px; line-height: 1.85; color: var(--muted-foreground); }

.detail-specs { margin-top: 26px; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.detail-specs li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; background: #fff; font-size: 14px; }
.detail-specs span { color: var(--muted-foreground); }
.detail-specs b { color: var(--navy); font-weight: 600; text-align: right; }

.detail-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.detail-actions a { padding: 15px 30px; border-radius: var(--radius); font-size: 12px; font-weight: 600; }

.detail-trust { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-trust div { display: flex; align-items: center; gap: 10px; padding: 14px; border-radius: 10px; border: 1px solid var(--border); background: #fff; }
.detail-trust svg { width: 22px; height: 22px; flex: none; color: var(--gold); }
.detail-trust p { font-size: 12px; line-height: 1.5; color: var(--muted-foreground); }

/* ---------- NỘI DUNG GIÀU (content từ CKEditor) ---------- */
.rich { max-width: 820px; margin: 0 auto; font-size: 15.5px; line-height: 1.9; color: var(--foreground); }
.rich-title { margin-bottom: 24px; text-align: center; font-size: 32px; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.rich > * + * { margin-top: 18px; }
.rich h2, .rich h3, .rich h4 { margin-top: 34px; color: var(--navy); line-height: 1.25; }
.rich h2 { font-size: 30px; }
.rich h3 { font-size: 24px; }
.rich h4 { font-size: 20px; }
.rich p { color: rgba(31,37,64,.85); }
.rich a { color: #8a6f2f; text-decoration: underline; }
.rich img { margin: 24px auto; border-radius: 10px; box-shadow: var(--shadow-soft); }
.rich ul, .rich ol { margin-left: 20px; }
.rich ul { list-style: disc; }
.rich ol { list-style: decimal; }
.rich li { margin-top: 8px; }
.rich blockquote {
  margin: 28px 0; padding: 18px 24px;
  border-left: 3px solid var(--gold); background: rgba(201,162,74,.08);
  font-family: "Cormorant Garamond", serif; font-size: 19px; font-style: italic; color: var(--navy);
}
.rich table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.rich th, .rich td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; }
.rich th { background: rgba(201,162,74,.1); color: var(--navy); font-weight: 600; }
.rich iframe { max-width: 100%; border-radius: 10px; }

/* trong nền tối */
.section--navy .rich, .section--navy-deep .rich { color: rgba(246,239,224,.85); }
.section--navy .rich h2, .section--navy .rich h3, .section--navy .rich h4 { color: var(--gold-soft); }
.section--navy .rich p { color: rgba(246,239,224,.8); }

/* ---------- BÀI VIẾT CHI TIẾT ---------- */
.article { max-width: 860px; margin: 0 auto; }
.article-meta { justify-content: center; margin-bottom: 24px; color: var(--muted-foreground); }
.article-meta .tag { background: rgba(201,162,74,.14); border-color: rgba(201,162,74,.45); color: #8a6f2f; }
.article-cover { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-soft); margin-bottom: 36px; }
.article-foot {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
}
.article-foot a { padding: 13px 26px; border-radius: var(--radius); font-size: 12px; font-weight: 600; }

/* bản đồ nhúng từ Cấu hình CMS */
.map-card iframe, .map-card > iframe { display: block; width: 100%; height: 330px; border: 0; }

@media (max-width: 767px) {
  .prod-toolbar { padding: 14px; }
  .prod-toolbar input, .prod-toolbar select, .prod-toolbar button { flex: 1 1 100%; width: 100%; }

  .detail-main { height: 300px; padding: 20px; }
  .detail-thumbs button { width: 62px; height: 62px; }
  .detail-info h2 { font-size: 26px; }
  .detail-price { font-size: 27px; }
  .detail-actions a { width: 100%; }
  .detail-trust { grid-template-columns: 1fr; }

  .rich { font-size: 15px; }
  .rich-title { font-size: 24px; }
  .rich h2 { font-size: 23px; }
  .rich h3 { font-size: 20px; }

  .article-cover { height: 220px; margin-bottom: 24px; }
  .article-foot a { width: 100%; }
}

/* thông báo form khi nằm trên nền tối (form đăng ký đại lý ở trang chủ) */
.agents form .form-note,
.section--navy .form-note,
.section--navy-deep .form-note {
  background: rgba(201,162,74,.16);
  border-color: rgba(201,162,74,.5);
  color: var(--gold-soft);
}
.form-note--error { background: rgba(190,60,60,.12); border-color: rgba(190,60,60,.45); color: #a33; }
.agents form .form-note--error,
.section--navy .form-note--error,
.section--navy-deep .form-note--error {
  background: rgba(220,90,90,.18); border-color: rgba(220,110,110,.55); color: #ffb4b4;
}
