:root {
  --primary: #e8281a;
  --secondary: #f6a623;
  --dark: #1a1a1a;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --cg-light-ivory: #fffdf7;
  --cg-light-gold: #fff7e6;
  --cg-light-surface: #fffefb;
  --cg-gold-wash: rgba(213, 161, 58, 0.14);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
}

html[lang="th"] body,
html[lang="th"] button,
html[lang="th"] input,
html[lang="th"] select,
html[lang="th"] textarea {
  font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, sans-serif;
}

html[lang="my"] body,
html[lang="my"] button,
html[lang="my"] input,
html[lang="my"] select,
html[lang="my"] textarea {
  font-family: "Noto Sans Myanmar", "Myanmar Text", "Nirmala UI", sans-serif;
}

html[lang="lo"] body,
html[lang="lo"] button,
html[lang="lo"] input,
html[lang="lo"] select,
html[lang="lo"] textarea {
  font-family: "Noto Sans Lao", "Lao UI", "Leelawadee UI", sans-serif;
}

html[lang="km"] body,
html[lang="km"] button,
html[lang="km"] input,
html[lang="km"] select,
html[lang="km"] textarea {
  font-family: "Noto Sans Khmer", "Khmer UI", "Nirmala UI", sans-serif;
}

html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] h3,
html[lang="th"] h4,
html[lang="th"] h5,
html[lang="th"] .stitle,
html[lang="th"] .slbl,
html[lang="th"] .contact-title,
html[lang="th"] .contact-body strong,
html[lang="th"] .ftit,
html[lang="th"] [class~="testimonial-title"],
html[lang="my"] h1,
html[lang="my"] h2,
html[lang="my"] h3,
html[lang="my"] h4,
html[lang="my"] h5,
html[lang="my"] .stitle,
html[lang="my"] .slbl,
html[lang="my"] .contact-title,
html[lang="my"] .contact-body strong,
html[lang="my"] .ftit,
html[lang="my"] [class~="testimonial-title"],
html[lang="lo"] h1,
html[lang="lo"] h2,
html[lang="lo"] h3,
html[lang="lo"] h4,
html[lang="lo"] h5,
html[lang="lo"] .stitle,
html[lang="lo"] .slbl,
html[lang="lo"] .contact-title,
html[lang="lo"] .contact-body strong,
html[lang="lo"] .ftit,
html[lang="lo"] [class~="testimonial-title"],
html[lang="km"] h1,
html[lang="km"] h2,
html[lang="km"] h3,
html[lang="km"] h4,
html[lang="km"] h5,
html[lang="km"] .stitle,
html[lang="km"] .slbl,
html[lang="km"] .contact-title,
html[lang="km"] .contact-body strong,
html[lang="km"] .ftit,
html[lang="km"] [class~="testimonial-title"] {
  font-family: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===================== TOP BAR ===================== */
#topbar {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}

#topbar span {
  color: #aaa;
  margin-right: 16px;
}

#topbar span i {
  color: var(--secondary);
  margin-right: 5px;
}

#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}

#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}

.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}

#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}

.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}

.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}

.bname span {
  color: var(--primary);
}

.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}

.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-icon-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  margin-left: 6px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 40, 26, 0.4);
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}

.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.stitle {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.stitle span {
  color: var(--primary);
}

.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}

.sline.lft {
  margin-left: 0;
}

.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}

.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ===================== HERO ===================== */
#hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.hs {
  position: absolute;
  border-radius: 50%;
}

.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 40, 26, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}

.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle,
      rgba(246, 166, 35, 0.09),
      transparent 70%);
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}

@keyframes fsh {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-28px);
  }
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}

.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}

.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}

.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(232, 40, 26, 0.14);
  border-radius: 4px;
  z-index: -1;
}

.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}

/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}

.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}

.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.btn-play:hover {
  color: var(--primary);
}

.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}

.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}

.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}

.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff8f0, #ffe5c8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(232, 40, 26, 0.14);
}

.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}

.fcard {
  position: absolute;
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}

.fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}

.fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}

.fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}

@keyframes fltc {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.fcoi.r {
  background: rgba(232, 40, 26, 0.11);
  color: var(--primary);
}

.fcoi.y {
  background: rgba(246, 166, 35, 0.14);
  color: var(--secondary);
}

.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}

.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}

.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}

.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}

.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}

.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}

@keyframes mqrun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}

.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}

.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(232, 40, 26, 0.14);
  border-color: var(--primary);
}

.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}

.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}

.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
}

.astack {
  position: relative;
}

.amain {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.amain img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.4);
}

.aexp .anum {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}

.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}

.ftico.r {
  background: rgba(232, 40, 26, 0.1);
  color: var(--primary);
}

.ftico.y {
  background: rgba(246, 166, 35, 0.11);
  color: var(--secondary);
}

.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}

.fti:hover .ftico {
  transform: scale(1.1);
}

.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}

.fti p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#menu {
  background: var(--light);
}

/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}

.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}

.mwrap {
  transition: 0.35s;
}

.mwrap.gone {
  display: none !important;
}

.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}

.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}

.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.mcard:hover .mimg img {
  transform: scale(1.09);
}

.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mbdg.new {
  background: var(--green);
}

.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}

/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}

.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}

.mbody {
  padding: 18px;
}

.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}

.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}

.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}

/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}

.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  position: relative;
  overflow: hidden;
}

.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(45deg,
      #fff 0,
      #fff 1px,
      transparent 0,
      transparent 50%);
  background-size: 40px 40px;
}

.sptag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.sptitle span {
  color: var(--secondary);
}

.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}

.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}

.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}

.cdnum {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}

.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}

.spimgw {
  position: relative;
  text-align: center;
}

.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(246, 166, 35, 0.24),
      transparent 70%);
}

.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(246, 166, 35, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}

@keyframes fltimg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-17px);
  }
}

.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}

@keyframes plsbdg {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(232, 40, 26, 0.7);
  }
}

.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}

.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 312px);
  gap: 22px;
}

.gitem {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gphoto {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(160deg, #f6efe1, #efe6d2);
}

.gphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gitem:hover .gphoto img {
  transform: scale(1.06);
}

.gfoot {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: linear-gradient(135deg, #0b2f5b, #0a233f);
}

.gbadge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border: 1.6px solid var(--secondary);
  background: rgba(213, 161, 58, 0.08);
  font-size: 1rem;
  transition: 0.35s;
}

.gitem:hover .gbadge {
  background: var(--secondary);
  color: #0a233f;
  transform: scale(1.08);
}

.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gitem:hover .gover {
  opacity: 1;
}

.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

.gover i {
  color: var(--secondary);
  margin-right: 5px;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}

.timeline {
  position: relative;
  padding: 18px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}

/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}

.tl-left {
  padding-right: 32px;
  text-align: right;
}

.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.tl-right {
  padding-left: 32px;
  text-align: left;
}

/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}

/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}

.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.3);
  flex-shrink: 0;
}

.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}

.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}

.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }

  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }

  .tl-left {
    display: none;
  }

  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }

  .tl-center {
    padding-top: 5px;
  }

  .tli:nth-child(even) .tl-left {
    display: none;
  }

  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}

.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}

.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}

.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}

.chcard:hover .chimg img {
  transform: scale(1.05);
}

.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.chcard:hover .chsoc {
  bottom: 0;
}

.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}

.chsoc a:hover {
  background: var(--primary);
}

.chbody {
  padding: 18px;
  text-align: center;
}

.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== HOURS ===================== */
#hours {
  background: linear-gradient(135deg, var(--green), #1a4a35);
  position: relative;
  overflow: hidden;
}

.hrsbg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(45deg,
      #fff 0,
      #fff 1px,
      transparent 0,
      transparent 50%);
  background-size: 28px 28px;
}

.hrscard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}

.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hrsrow:last-child {
  border: none;
}

.hrsday {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}

.hrstime {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}

.hdot.off {
  background: #ff6b6b;
}

.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(232, 40, 26, 0.4);
}

.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}

.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}

.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: #fff;
}

.tescard {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.tescard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tesq {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  color: rgba(232, 40, 26, 0.07);
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.tess {
  color: var(--secondary);
  font-size: 0.83rem;
  margin-bottom: 12px;
}

.testxt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}

.tesauth {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tesauth img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.tesnm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}

.tesrl {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}

.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(232, 40, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}

.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
}

.fctrl:focus {
  border-color: var(--primary);
}

.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}

.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}

.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
}

.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blcard:hover .blimg img {
  transform: scale(1.06);
}

.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
}

.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}

.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blbody {
  padding: 20px;
}

.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}

.bltit a {
  color: var(--dark);
}

.bltit a:hover {
  color: var(--primary);
}

.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
}

.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}

.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blmore i {
  transition: 0.3s;
}

.blmore:hover {
  color: var(--dark);
}

.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: linear-gradient(135deg, var(--primary), #8b0000);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.nlbg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='.4' opacity='.1'/%3E%3C/svg%3E");
  background-size: 75px;
}

.nlw {
  position: relative;
  z-index: 2;
}

.nlw h2 {
  color: #fff;
  font-size: 2.1rem;
}

/* Newsletter form â€” fixed layout */
.nl-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}

.nlinput {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.nlbtn {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.nlbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 540px) {
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 10px;
  }

  .nlinput {
    width: 100%;
    border-radius: 12px;
  }

  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}

.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}

.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}

.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}

.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}

.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}

.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}

.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}

.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}

.fnm span {
  color: var(--primary);
}

.fdesc {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}

.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}

.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.flinks li {
  list-style: none;
  margin-bottom: 9px;
}

.flinks a {
  color: #777;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}

.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.fci:hover .fciinfo span {
  color: var(--secondary);
}

a.fci:hover .fciico {
  background: rgba(213, 161, 58, 0.22);
}

.fciico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(213, 161, 58, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fciinfo {
  color: #777;
  font-size: 0.83rem;
  line-height: 1.6;
}

.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}

.fbot p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}

.fbot span {
  color: var(--primary);
}

.fbot a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}

.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(232, 40, 26, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s,
    box-shadow 0.25s ease;
}

#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#btt:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 26px rgba(232, 40, 26, 0.52);
}

#btt:active {
  transform: translateY(-1px) scale(0.97) !important;
}

.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(246, 166, 35, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.cartfl:hover {
  transform: translateY(-4px);
}

.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}

#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

@keyframes fadeov {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}

#searchOv .sovclose:hover {
  background: var(--primary);
}

.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}

.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}

.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.sovinput button:hover {
  background: #c01e12;
}

.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}

.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}

.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.sovtrend {
  text-align: center;
  margin-top: 26px;
}

.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}

.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 166, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}

.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.mpbox::-webkit-scrollbar {
  width: 3px;
}

.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.mpbox .mpimg {
  width: 44%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}

.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}

.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}

.mpclose:hover {
  background: var(--primary);
  color: #fff;
}

#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}

#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}

#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}

#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}

.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}

.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}

.mpml {
  font-size: 0.68rem;
  color: #bbb;
}

.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}

.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}

.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}

.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.mptag {
  background: rgba(246, 166, 35, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}

.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.38);
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}

.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}

.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}

.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gpclose:hover {
  background: var(--primary);
}

.gpcap {
  color: #fff;
  margin-top: 18px;
}

.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}

.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}

.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}

.mfp-close {
  color: #fff !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hcircle {
    width: 320px;
    height: 320px;
  }

  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }

  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gitem:first-child {
    grid-row: span 1;
  }

  .asm {
    display: none;
  }

  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }

  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }

  .mpbox .mpbody {
    padding: 22px 18px;
  }

  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }

  .tli {
    grid-template-columns: 32px 1fr !important;
  }

  .tl-left {
    display: none !important;
  }

  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }

  .tl-center {
    padding-top: 5px;
  }

  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}

@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }

  #topbar .top-contact span:last-child {
    display: none;
  }

  .hcircle {
    width: 260px;
    height: 260px;
  }

  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }

  .hstats {
    display: none !important;
  }

  .ggrid {
    grid-template-columns: 1fr 1fr;
  }

  .cdwrap {
    gap: 8px;
  }

  .cditem {
    min-width: 56px;
    padding: 9px;
  }

  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }

  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }

  .fcard {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }

  .htitle {
    font-size: 2.4rem;
  }

  .stitle {
    font-size: 1.8rem;
  }
}

/* ===================== CALCIUM GOLD LANDING OVERRIDES ===================== */
:root {
  --primary: #0b2f5b;
  --secondary: #d5a13a;
  --dark: #081d35;
  --green: #2e7d55;
  --cream: #f7f8fb;
  --cream2: #fff7e5;
  --light: #f8fafc;
  --shadow: 0 12px 38px rgba(8, 29, 53, 0.11);
  --shadow-lg: 0 24px 70px rgba(8, 29, 53, 0.2);
}

body[data-page="calcium-gold"] {
  color: #334155;
  background: #fff;
}

body[data-page="calcium-gold"] h1,
body[data-page="calcium-gold"] h2,
body[data-page="calcium-gold"] h3,
body[data-page="calcium-gold"] h4,
body[data-page="calcium-gold"] h5 {
  color: var(--dark);
}

body[data-page="calcium-gold"] #topbar {
  background: #07192d;
}

body[data-page="calcium-gold"] #nav {
  background: linear-gradient(135deg, #07192d 0%, #0b2f5b 58%, #081d35 100%);
  border-bottom: 1px solid rgba(213, 161, 58, 0.24);
  box-shadow: 0 12px 34px rgba(8, 29, 53, 0.2);
  padding: 0;
}

body[data-page="calcium-gold"] #nav.scrolled {
  box-shadow: 0 16px 42px rgba(8, 29, 53, 0.28);
}

body[data-page="calcium-gold"] #nav .container {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  max-width: 1340px;
  padding-left: 24px;
  padding-right: 24px;
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

body[data-page="calcium-gold"] #nav .navbar-collapse {
  visibility: visible !important;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
}

body[data-page="calcium-gold"] .blogo {
  position: relative;
  gap: 10px;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  width: clamp(118px, 9.4vw, 142px);
  height: 66px;
  padding: 0;
}

body[data-page="calcium-gold"] .brand-logo-img {
  max-width: 100%;
  max-height: 64px;
  filter:
    brightness(1.12)
    contrast(1.08)
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

body[data-page="calcium-gold"] .bico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  font-size: 1.08rem;
}

body[data-page="calcium-gold"] .bname {
  color: #fff;
  font-size: 1.36rem;
  line-height: 1.05;
}

body[data-page="calcium-gold"] .bsub {
  line-height: 1;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link,
body[data-page="calcium-gold"] .nav-icon-btn {
  color: rgba(255, 255, 255, 0.82) !important;
}

body[data-page="calcium-gold"] .navbar-nav {
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  min-height: 44px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 8px;
  padding: 0 8px !important;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

body[data-page="calcium-gold"] .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-left: 0;
  white-space: nowrap;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  background: var(--secondary);
  bottom: 5px;
  height: 2px;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active,
body[data-page="calcium-gold"] .nav-icon-btn:hover {
  color: #fff !important;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .nav-icon-btn {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

body[data-page="calcium-gold"] .nav-icon-btn:hover {
  background: rgba(213, 161, 58, 0.18);
  border-color: rgba(213, 161, 58, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .cart-link {
  order: 1;
  color: #ffe7a6 !important;
  background: rgba(213, 161, 58, 0.18);
  border-color: rgba(213, 161, 58, 0.48);
}

body[data-page="calcium-gold"] .cart-dot {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid #07192d;
  border-radius: 999px;
  background: #ef6c14;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

body[data-page="calcium-gold"] .cart-link.has-items .cart-dot {
  display: flex;
}

body[data-page="calcium-gold"] .language-btn {
  order: 3;
  margin-left: 0;
}

body[data-page="calcium-gold"] .language-switcher {
  position: relative;
  order: 3;
  z-index: 20;
}

body[data-page="calcium-gold"] .language-switcher .language-btn {
  width: auto;
  min-width: 62px;
  gap: 6px;
  padding: 0 10px;
  font-weight: 800;
}

body[data-page="calcium-gold"] .language-btn [data-current-language] {
  color: inherit;
  font-size: 0.75rem;
  line-height: 1;
}

body[data-page="calcium-gold"] .language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: 188px;
  overflow: hidden;
  border: 1px solid rgba(213, 161, 58, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(7, 29, 53, 0.16);
}

body[data-page="calcium-gold"] .language-switcher.open .language-menu {
  display: grid;
}

body[data-page="calcium-gold"] .language-menu button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid rgba(7, 29, 53, 0.06);
  background: transparent;
  color: #0b223d;
  text-align: left;
  cursor: pointer;
}

body[data-page="calcium-gold"] .language-menu button:last-child {
  border-bottom: 0;
}

body[data-page="calcium-gold"] .language-menu button:hover,
body[data-page="calcium-gold"] .language-menu button.active {
  background: rgba(213, 161, 58, 0.12);
}

body[data-page="calcium-gold"] .language-menu b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  border-radius: 999px;
  background: #07192d;
  color: #f1c867;
  font-size: 0.68rem;
  letter-spacing: 0;
}

body[data-page="calcium-gold"] .language-menu span {
  min-width: 0;
  color: #243b55;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.google-translate-shell,
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
iframe.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-gadget {
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body[data-page="calcium-gold"],
body.skiptranslate,
html.skiptranslate,
html {
  top: 0 !important;
}

body[data-page="calcium-gold"] .navbar-toggler i {
  color: #fff !important;
}

body[data-page="calcium-gold"] .ttag,
body[data-page="calcium-gold"] .btn-red,
body[data-page="calcium-gold"] .nav-cta,
body[data-page="calcium-gold"] .mqsec {
  background: linear-gradient(135deg, var(--primary), #07192d);
}

body[data-page="calcium-gold"] .btn-red,
body[data-page="calcium-gold"] .nav-cta {
  box-shadow: 0 10px 24px rgba(11, 47, 91, 0.24);
}

body[data-page="calcium-gold"] .nav-cta {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-weight: 800 !important;
  min-height: 40px;
  margin-left: 0;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #d5a13a 0%, #f0d27a 45%, #b98220 100%);
  color: #07192d !important;
  box-shadow: 0 12px 30px rgba(213, 161, 58, 0.34);
}

body[data-page="calcium-gold"] .btn-red:hover,
body[data-page="calcium-gold"] .nav-cta:hover {
  box-shadow: 0 16px 36px rgba(11, 47, 91, 0.32);
}

body[data-page="calcium-gold"] .nav-cta:hover {
  color: #07192d !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(213, 161, 58, 0.45);
}

body[data-page="calcium-gold"] .nav-cta:hover i {
  animation: phoneShake 0.42s linear 0s 3 both;
  transform-origin: 50% 55%;
}

@media (min-width: 1200px) and (max-width: 1320px) {
  body[data-page="calcium-gold"] #nav .container {
    gap: 16px;
    max-width: 100%;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    gap: 14px;
  }

  body[data-page="calcium-gold"] .bico {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  body[data-page="calcium-gold"] .bname {
    font-size: 1.24rem;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 110px;
    height: 58px;
    padding: 0;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-height: 56px;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    gap: 1px;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    font-size: 0.81rem;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  body[data-page="calcium-gold"] .nav-actions {
    gap: 8px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 38px;
    height: 38px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-height: 38px;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav .container {
    position: relative;
    min-height: 68px;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 104px;
    height: 54px;
    padding: 0;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-height: 52px;
  }

  body[data-page="calcium-gold"] .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
  }

  body[data-page="calcium-gold"] .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(213, 161, 58, 0.28);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    z-index: 1000;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(213, 161, 58, 0.24);
    border-radius: 14px;
    background: linear-gradient(135deg, #07192d 0%, #0b2f5b 68%, #081d35 100%);
    box-shadow: 0 22px 42px rgba(8, 29, 53, 0.32);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 12px !important;
    font-size: 0.94rem;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
    display: none;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
  }

  body[data-page="calcium-gold"] .nav-actions {
    display: grid;
    grid-template-columns: 42px minmax(150px, 1fr) 42px;
    gap: 8px;
    width: 100%;
    margin: 2px 0 0;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .nav-cta {
    min-height: 42px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 42px;
    height: 42px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    width: 100%;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav .container {
    min-height: 64px;
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-page="calcium-gold"] .blogo {
    gap: 8px;
  }

  body[data-page="calcium-gold"] .bico {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  body[data-page="calcium-gold"] .bname {
    font-size: 1.08rem;
  }

  body[data-page="calcium-gold"] .bsub {
    font-size: 0.52rem;
    letter-spacing: 1.6px;
  }

  body[data-page="calcium-gold"] .navbar-toggler {
    width: 38px;
    height: 38px;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    min-height: 40px;
    padding-left: 11px !important;
    padding-right: 11px !important;
    font-size: 0.9rem;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 7px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .nav-cta {
    min-height: 40px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 40px;
    height: 40px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 0.8rem !important;
  }
}

@keyframes phoneShake {

  0%,
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }

  8% {
    transform: translateX(-2px) rotate(-26deg) scale(1.12);
  }

  16% {
    transform: translateX(2px) rotate(25deg) scale(1.12);
  }

  24% {
    transform: translateX(-3px) rotate(-30deg) scale(1.14);
  }

  32% {
    transform: translateX(3px) rotate(29deg) scale(1.14);
  }

  40% {
    transform: translateX(-2px) rotate(-24deg) scale(1.12);
  }

  52% {
    transform: translateX(2px) rotate(22deg) scale(1.1);
  }

  64% {
    transform: translateX(-1px) rotate(-18deg) scale(1.08);
  }

  78% {
    transform: translateX(1px) rotate(14deg) scale(1.06);
  }
}

body[data-page="calcium-gold"] .slbl,
body[data-page="calcium-gold"] .stitle span,
body[data-page="calcium-gold"] .bname span,
body[data-page="calcium-gold"] .fnm span {
  color: var(--secondary);
}

body[data-page="calcium-gold"] .sline,
body[data-page="calcium-gold"] .bico {
  background: linear-gradient(90deg, var(--secondary), #f0d27a);
}

body[data-page="calcium-gold"] #hero {
  background:
    radial-gradient(circle at 70% 20%, rgba(213, 161, 58, 0.26), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #fff7e5 100%);
  min-height: 88dvh;
}

body[data-page="calcium-gold"] #hero.banner-hero {
  width: 100%;
  aspect-ratio: 2559 / 1258;
  max-height: calc(100dvh - 94px);
  min-height: 0;
  padding: 0;
  background: #f8fafc;
  display: block;
  overflow: hidden;
  position: relative;
}

body[data-page="calcium-gold"] #hero.banner-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='128' viewBox='0 0 1440 128' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='goldWave' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23fff0a8'/%3E%3Cstop offset='.34' stop-color='%23e7b33c'/%3E%3Cstop offset='1' stop-color='%23b87414'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 58C120 32 240 32 360 58C480 84 600 84 720 58C840 32 960 32 1080 58C1200 84 1320 84 1440 58' fill='none' stroke='%23fff3bf' stroke-width='5' stroke-linecap='round' opacity='.7'/%3E%3Cpath d='M0 58C120 32 240 32 360 58C480 84 600 84 720 58C840 32 960 32 1080 58C1200 84 1320 84 1440 58V128H0Z' fill='url(%23goldWave)' fill-opacity='.98'/%3E%3C/svg%3E") repeat-x left bottom / 1440px 118px;
  animation: heroWaveDrift 9s linear infinite;
}

@keyframes heroWaveDrift {
  from {
    background-position: 0 bottom;
  }

  to {
    background-position: -1440px bottom;
  }
}

.bannerSwiper {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #f8fafc;
}

.bannerSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 0;
}

.bannerSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.banner-pagination.swiper-pagination {
  z-index: 3;
}

.bannerSwiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(11, 47, 91, 0.32);
  opacity: 1;
}

.bannerSwiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--secondary);
}

.hero-row {
  min-height: 82dvh;
}

body[data-page="calcium-gold"] .hbgtxt {
  color: rgba(11, 47, 91, 0.05);
}

body[data-page="calcium-gold"] .htitle {
  color: var(--primary);
  line-height: 1.04;
}

body[data-page="calcium-gold"] .hdesc,
body[data-page="calcium-gold"] .sdesc,
body[data-page="calcium-gold"] .copy-block p {
  color: #475569;
}

.hero-product-wrap {
  position: relative;
  text-align: center;
}

body[data-page="calcium-gold"] .hcircle {
  background: radial-gradient(circle, #fff 0%, #fff8df 58%, #e6bb5a 100%);
  box-shadow: 0 28px 70px rgba(11, 47, 91, 0.16);
}

body[data-page="calcium-gold"] .hcircle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-empty {
  display: none !important;
}

.section-soft {
  background: #f8fafc;
}

.section-navy {
  background:
    linear-gradient(135deg, rgba(7, 25, 45, 0.96), rgba(11, 47, 91, 0.96)),
    #07192d;
}

.section-navy .stitle,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: #fff !important;
}

.section-navy .sdesc,
.section-navy .copy-block p {
  color: rgba(255, 255, 255, 0.74) !important;
}

.video-intro-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 25, 45, 0.96), rgba(11, 47, 91, 0.96)), rgb(7, 25, 45);
}

.video-intro-section::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 182, 232, 0.34), transparent);
  pointer-events: none;
}

.video-intro-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 112, 180, 0.16), transparent 68%);
  pointer-events: none;
}

.video-intro-section .container {
  position: relative;
  z-index: 1;
}

.video-intro-section .row {
  position: relative;
  z-index: 1;
}

/* Chữ Calcium Gold cỡ lớn mờ làm watermark sau nền */
.video-intro-section .section-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin: 0;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(5rem, 17vw, 17rem);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  color: transparent;
  background: linear-gradient(180deg, rgba(220, 236, 255, 0.09), rgba(220, 236, 255, 0.015));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

@media (max-width: 991px) {
  .video-intro-section .section-watermark {
    font-size: clamp(4rem, 26vw, 9rem);
  }
}

.video-intro-copy .slbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(132, 182, 232, 0.3);
  border-radius: 999px;
  padding: 8px 15px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.video-intro-copy .slbl::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d98d, #8ec5ff);
  box-shadow: 0 0 0 5px rgba(142, 197, 255, 0.12);
}

@media (min-width: 992px) {
  .video-intro-copy {
    position: relative;
    top: -12px;
  }
}

.video-intro-copy .stitle {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.14;
  margin-top: 18px;
  letter-spacing: 0.4px;
  text-wrap: balance;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 14px 34px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(255, 255, 255, 0.12);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease;
}

.video-intro-copy .sline {
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dcecff, #4f8fca, transparent);
}

.video-intro-copy .sdesc {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem;
  line-height: 1.85;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.14s, opacity 0.85s ease 0.14s;
}

.video-intro-copy[data-aos] .slbl,
.video-intro-copy[data-aos] .stitle,
.video-intro-copy[data-aos] .sdesc,
.video-intro-copy[data-aos] .sline {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.video-intro-copy[data-aos] .slbl {
  transition-delay: 0s;
}

.video-intro-copy[data-aos] .sline {
  transition-delay: 0.08s;
}

.video-intro-copy.aos-animate .stitle,
.video-intro-copy.aos-animate .slbl,
.video-intro-copy.aos-animate .sdesc,
.video-intro-copy.aos-animate .sline {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.video-intro-media {
  position: relative;
}

.video-intro-media::before {
  content: "";
  position: absolute;
  inset: 10% -5% -8% 18%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(79, 143, 202, 0.2), rgba(255, 255, 255, 0.06));
  filter: blur(28px);
  pointer-events: none;
}

.video-intro-section .video-shell {
  position: relative;
  z-index: 1;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(132, 182, 232, 0.26);
  border-radius: 32px;
  background:
    linear-gradient(#06172a, #06172a) padding-box,
    linear-gradient(135deg, rgba(220, 236, 255, 0.58), rgba(79, 143, 202, 0.24), rgba(255, 255, 255, 0.08)) border-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(79, 143, 202, 0.08)),
    #020b16;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 16px 14px 14px;
  overflow: hidden;
}

.video-intro-section .video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 197, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(247, 217, 141, 0.14), transparent 26%);
  pointer-events: none;
}

.video-shell-chrome {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  gap: 7px;
}

.video-shell-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(220, 236, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.video-shell-chrome span:first-child {
  background: #f6a623;
}

.video-shell-chrome span:nth-child(2) {
  background: #8ec5ff;
}

.video-shell-chrome span:last-child {
  background: #ffffff;
}

.video-shell-badge {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 23, 42, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
}

.video-shell-badge i {
  color: #f7d98d;
}

.video-shell-orbit {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(142, 197, 255, 0.18);
  box-shadow: 0 0 0 18px rgba(142, 197, 255, 0.05), 0 0 0 42px rgba(142, 197, 255, 0.025);
  pointer-events: none;
}

.video-shell-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #020b16;
}

.video-intro-section .video-shell video,
.video-intro-section .video-poster,
.video-intro-section .video-poster img,
.video-shell-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  object-fit: cover;
  background: #020b16;
}

.video-intro-section .intro-autoplay-video {
  outline: 0;
}

.video-intro-section .empty-media-slot {
  min-height: 410px;
  border: 1px solid rgba(132, 182, 232, 0.22);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 143, 202, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(8, 28, 49, 0.96), rgba(2, 8, 18, 0.98));
  position: relative;
}

.video-intro-section .empty-media-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(247, 217, 141, 0.22);
  pointer-events: none;
}

.video-intro-section .empty-media-slot i,
.video-intro-section .video-play {
  background: linear-gradient(135deg, #dcecff, #6fa6dc);
  color: #020b16;
}

/* ===== Video intro – khung kỹ thuật + chuyển động ===== */
.video-intro-copy .video-meta-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.video-intro-copy .video-meta-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 18px 12px 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(213, 161, 58, 0.45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 161, 58, 0.18), rgba(213, 161, 58, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 227, 163, 0.12);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.video-intro-copy .video-meta-list li:hover {
  border-color: rgba(255, 210, 122, 0.75);
  background: linear-gradient(135deg, rgba(213, 161, 58, 0.28), rgba(213, 161, 58, 0.1));
  transform: translateX(4px);
}

.video-intro-copy .video-meta-list li i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 50%;
  color: #3a2706;
  background: linear-gradient(135deg, #ffe7a6, #d5a13a);
  box-shadow: 0 6px 16px rgba(213, 161, 58, 0.45);
}


/* ===== Khung video kiểu media-panel (thanh chrome trên) ===== */
.video-panel {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(132, 182, 232, 0.26);
  background: linear-gradient(180deg, rgba(13, 38, 66, 0.96), rgba(6, 19, 38, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: vfFloat 7s ease-in-out infinite;
}

/* Viền sáng chạy quanh panel */
.video-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(220, 236, 255, 0.6), rgba(79, 143, 202, 0.12) 45%, rgba(220, 236, 255, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  animation: vfGlow 4.5s ease-in-out infinite;
}

/* Màn hình video bên trong panel: phẳng, bo theo panel */
.video-panel .video-shell {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  background: #020b16;
}

.video-panel .video-shell video,
.video-panel .video-poster,
.video-panel .video-poster img,
.video-panel .empty-media-slot {
  border-radius: 0;
}

/* Vệt sáng quét chéo qua màn hình */
.video-panel .video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(220, 236, 255, 0.16) 50%, transparent 60%);
  background-size: 250% 250%;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
  animation: vfShine 6.5s ease-in-out infinite;
}

/* Nút play có vòng sóng lan toả */
.video-intro-section .video-play {
  animation: playPulse 2.6s ease-out infinite;
}

@keyframes vfFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes vfGlow {

  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }
}

@keyframes vfShine {
  0% {
    background-position: 150% 0;
  }

  55%,
  100% {
    background-position: -50% 0;
  }
}

@keyframes playPulse {
  0% {
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(220, 236, 255, 0.45);
  }

  70% {
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25), 0 0 0 22px rgba(220, 236, 255, 0);
  }

  100% {
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(220, 236, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .video-panel,
  .video-panel::before,
  .video-panel .video-shell::after,
  .video-intro-section .video-play {
    animation: none;
  }
}

/* ===== Section 4: Gioi thieu san pham – sang trong ===== */
.product-intro-section {
  position: relative;
  overflow: hidden;
}

.product-intro-section::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 161, 58, 0.4), transparent);
  pointer-events: none;
}

.product-intro-section::after {
  content: none;
}

.pi-watermark {
  position: absolute;
  right: -1%;
  bottom: -6%;
  z-index: 0;
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: clamp(6rem, 17vw, 16rem);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: transparent;
  background: linear-gradient(180deg, rgba(213, 161, 58, 0.12), rgba(213, 161, 58, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
}

.product-intro-section .container {
  position: relative;
  z-index: 1;
}

/* Nhan chu ky vang noi bat */
.product-intro-section .slbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffd884;
  margin-bottom: 6px;
}

.product-intro-section .slbl i {
  font-size: 0.95rem;
  color: #d5a13a;
}

.product-intro-copy .stitle {
  color: #fff !important;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0.3px;
  margin-top: 6px;
  text-wrap: balance;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.42),
    0 14px 32px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(213, 161, 58, 0.2);
}

.product-intro-copy .sline {
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe7a6, #d5a13a, transparent);
}

.product-intro-copy .copy-block {
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
}

.product-intro-copy .copy-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd884, rgba(213, 161, 58, 0.08));
}

.product-intro-copy .copy-block p {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 1.04rem;
  line-height: 1.92;
}

/* Khung anh sang trong */
.intro-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  animation: vfFloat 7s ease-in-out infinite;
}

.intro-visual-mobile {
  display: none;
}

@media (max-width: 991px) {
  .product-intro-section .col-lg-5 {
    display: none;
  }

  .intro-visual-mobile {
    display: block;
    max-width: 360px;
    margin: 20px auto 22px;
  }
}

.intro-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(#06172a, #06172a) padding-box,
    linear-gradient(135deg, #ffe7a6, #d5a13a 52%, #a9781f) border-box;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.46);
}

.intro-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* Goc trang tri */
.iv-corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(213, 161, 58, 0.75);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(213, 161, 58, 0.45));
}

.iv-corner.tl {
  top: -10px;
  left: -10px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 14px;
}

.iv-corner.br {
  bottom: -10px;
  right: -10px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 14px;
}

/* Con dau 100% Chinh hang */
.intro-seal {
  position: absolute;
  right: -16px;
  bottom: 30px;
  z-index: 4;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3a2706;
  text-align: center;
  background: radial-gradient(circle at 35% 28%, #fff3cf, #ffd884 38%, #d5a13a 78%, #b9821f);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 32px rgba(213, 161, 58, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: sealFloat 5s ease-in-out infinite;
}

.intro-seal i {
  font-size: 1rem;
  margin-bottom: 1px;
}

.intro-seal b {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.intro-seal small {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes sealFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

/* Badge vang */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(213, 161, 58, 0.45);
  color: #fff;
  background: linear-gradient(135deg, rgba(213, 161, 58, 0.18), rgba(213, 161, 58, 0.05));
  border-radius: 999px;
  padding: 9px 16px 9px 11px;
  font-size: 0.88rem;
  font-weight: 600;
}

.intro-badge i {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  border-radius: 50%;
  color: #3a2706;
  background: linear-gradient(135deg, #ffe7a6, #d5a13a);
}

/* Hieu ung hien badge lan luot */
.product-intro-copy[data-aos] .intro-badge {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease;
}

.product-intro-copy.aos-animate .intro-badge {
  opacity: 1;
  transform: translateY(0);
}

.product-intro-copy.aos-animate .intro-badge:nth-child(1) {
  transition-delay: 0.25s;
}

.product-intro-copy.aos-animate .intro-badge:nth-child(2) {
  transition-delay: 0.35s;
}

.product-intro-copy.aos-animate .intro-badge:nth-child(3) {
  transition-delay: 0.45s;
}

.product-intro-copy.aos-animate .intro-badge:nth-child(4) {
  transition-delay: 0.55s;
}

.product-intro-copy .intro-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 122, 0.8);
  background: linear-gradient(135deg, rgba(213, 161, 58, 0.3), rgba(213, 161, 58, 0.1));
}

@media (prefers-reduced-motion: reduce) {

  .intro-visual,
  .intro-seal {
    animation: none;
  }
}

/* ===== Huy chuong "DA KIEM DINH" – muc Giay to/Chung nhan ===== */
.cert-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cert-medal {
  position: relative;
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: sealFloat 5s ease-in-out infinite;
}

.cert-medal .cm-disc {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3a2706;
  background: radial-gradient(circle at 35% 28%, #fff3cf, #ffd884 40%, #d5a13a 80%, #b9821f);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 32px rgba(213, 161, 58, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cert-medal .cm-disc i {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.cert-medal .cm-disc b {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.cert-medal .cm-disc small {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.cert-medal .cm-ribbon {
  position: absolute;
  bottom: -16px;
  width: 18px;
  height: 40px;
  background: linear-gradient(180deg, #d5a13a, #a9781f);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.cert-medal .cm-ribbon.l {
  left: 32px;
  transform: rotate(12deg);
}

.cert-medal .cm-ribbon.r {
  right: 32px;
  transform: rotate(-12deg);
}

/* ===== Ruy bang "Uu dai" – muc Combo ===== */
.combo-section {
  position: relative;
  overflow: hidden;
}

.combo-ribbon {
  position: absolute;
  top: 30px;
  left: -62px;
  z-index: 4;
  width: 230px;
  text-align: center;
  transform: rotate(-45deg);
  padding: 9px 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #3a2706;
  background: linear-gradient(135deg, #ffe7a6, #d5a13a 55%, #c08a26);
  box-shadow: 0 10px 24px rgba(213, 161, 58, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(120, 84, 18, 0.5);
}

.combo-ribbon::before,
.combo-ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: #8a6315;
}

.combo-ribbon::before {
  left: 14px;
}

.combo-ribbon::after {
  right: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .cert-medal {
    animation: none;
  }
}

@media (max-width: 991px) {
  .cert-cta {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .combo-ribbon {
    top: 22px;
    left: -66px;
    width: 210px;
    font-size: 0.76rem;
  }
}

/* ===== Section Thanh phan & Cong dung: nen trang-xanh + cau 3D ===== */
.section-aqua {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(219, 232, 246, 0.42), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(236, 244, 251, 0.72), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 46%, #fcfdff 100%);
  padding: 78px 0 24px;
}

.section-aqua .container {
  position: relative;
  z-index: 1;
}

.section-aqua .container::before,
.section-aqua .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.section-aqua .container::before {
  left: -220px;
  top: -92px;
  width: 660px;
  height: 660px;
  border: 4px solid rgba(231, 190, 88, 0.44);
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.84),
    inset 0 0 0 26px rgba(241, 199, 96, 0.12);
}

.section-aqua .container::after {
  right: -146px;
  top: -84px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(239, 243, 248, 0.95);
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.78),
    inset 0 0 0 17px rgba(233, 196, 100, 0.1);
}

.section-aqua::before,
.section-aqua::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.section-aqua::before {
  left: -8%;
  top: 0;
  width: 56%;
  height: 100%;
  background:
    linear-gradient(132deg, rgba(240, 193, 82, 0.22) 0%, rgba(240, 193, 82, 0.1) 10%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(136deg, rgba(243, 208, 126, 0.16) 6%, rgba(243, 208, 126, 0.08) 12%, rgba(255, 255, 255, 0) 20%),
    linear-gradient(141deg, rgba(250, 228, 170, 0.12) 10%, rgba(250, 228, 170, 0.04) 15%, rgba(255, 255, 255, 0) 24%);
  opacity: 0.9;
}

.section-aqua::after {
  right: -12%;
  top: -4%;
  width: 42%;
  height: 44%;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 239, 196, 0.56), rgba(255, 239, 196, 0.1) 30%, rgba(255, 255, 255, 0) 54%);
  filter: blur(2px);
  opacity: 0.58;
}

/* Lop do hoa cau thuy tinh 3D troi nhe */
.aqua-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aqua-deco i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #ffffff 0%, #edf4fb 34%, #b7d0ea 72%, #88b2da 100%);
  box-shadow:
    0 34px 64px rgba(174, 198, 223, 0.26),
    inset 0 -10px 18px rgba(123, 164, 204, 0.16),
    inset 0 10px 18px rgba(255, 255, 255, 0.84);
  opacity: 0.46;
  will-change: transform;
}

.aqua-deco .o1 {
  width: 128px;
  height: 128px;
  top: 258px;
  left: 174px;
  animation: aquaFloat 9s ease-in-out infinite;
}

.aqua-deco .o2 {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -12px;
  opacity: 0.28;
  animation: aquaFloat 11s ease-in-out infinite 0.6s;
}

.aqua-deco .o3 {
  width: 170px;
  height: 170px;
  right: 36px;
  top: 86px;
  opacity: 0.18;
  animation: aquaFloat 7.5s ease-in-out infinite 1.1s;
}

.aqua-deco.alt .o1 {
  left: 174px;
  right: auto;
  top: 258px;
}

.aqua-deco.alt .o2 {
  right: -120px;
  left: auto;
  bottom: -12px;
}

.aqua-deco.alt .o3 {
  right: 36px;
  left: auto;
  top: 86px;
}

@keyframes aquaFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -26px, 0) scale(1.04);
  }
}

/* Card kinh mem + icon cau xanh 3D */
.benefits-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "doctor copy"
    "marquee marquee";
  align-items: start;
  gap: 28px 34px;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}

.benefits-doctor {
  position: relative;
  align-self: stretch;
  grid-area: doctor;
}

.benefits-doctor-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 0 0;
  min-height: 620px;
}

.benefits-doctor-frame::before {
  content: "";
  position: absolute;
  left: -4%;
  right: 8%;
  bottom: 28px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 238, 249, 0.95), rgba(228, 238, 249, 0.2) 52%, transparent 74%);
  filter: blur(8px);
  pointer-events: none;
}

.benefits-doctor-frame::after {
  content: "";
  position: absolute;
  inset: 34px auto auto 44px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 219, 230, 0.75), rgba(210, 219, 230, 0.08) 58%, transparent 74%);
  pointer-events: none;
}

.benefits-doctor-glow {
  position: absolute;
  inset: -10px auto auto -10px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 248, 253, 0.96), rgba(242, 248, 253, 0.18) 58%, transparent 76%);
  filter: blur(2px);
  pointer-events: none;
}

.benefits-doctor img {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  height: auto;
  object-fit: contain;
  transform: translate(-16px, 0);
  filter: drop-shadow(0 30px 32px rgba(192, 207, 227, 0.55));
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  transform-origin: center bottom;
}

.benefits-doctor:hover img {
  transform: translate(-16px, -4px) scale(1.035);
  filter: drop-shadow(0 36px 38px rgba(192, 207, 227, 0.62));
}

.benefits-marquee-bottom {
  grid-area: marquee;
  width: 100%;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.benefits-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 28px;
  background:
    linear-gradient(90deg, #061b43 0%, #0c2b63 45%, #0c2b63 55%, #061b43 100%);
  border: 2px solid rgba(225, 178, 58, 0.78);
  box-shadow:
    0 18px 30px rgba(7, 25, 45, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -12px 22px rgba(4, 18, 40, 0.36);
}

.benefits-marquee {
  outline: 1px solid rgba(255, 228, 154, 0.28);
}

.benefits-marquee::before,
.benefits-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.benefits-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 27, 67, 1), rgba(6, 27, 67, 0));
}

.benefits-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 27, 67, 1), rgba(6, 27, 67, 0));
}

.benefits-marquee::selection,
.benefits-marquee *::selection {
  background: transparent;
}

.benefits-marquee-track::before,
.benefits-marquee-track::after {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid rgba(248, 214, 122, 0.5);
  box-shadow: inset 0 0 0 4px rgba(248, 214, 122, 0.08);
}

.benefits-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 14px 36px;
  animation: mqrun 21s linear infinite;
}

.benefit-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f6d675;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(4, 24, 52, 0.22);
}

.benefit-marquee-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 46px;
  filter: drop-shadow(0 6px 10px rgba(5, 22, 48, 0.3));
}

.benefit-marquee-sep {
  color: rgba(255, 214, 122, 0.98);
  font-size: 1.06rem;
  font-weight: 800;
}

.benefits-copy {
  grid-area: copy;
  min-width: 0;
  align-self: center;
  transform: translateY(-86px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.section-aqua .nutrient-card,
.section-aqua .benefit-card {
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid rgba(125, 182, 234, 0.32);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(45, 95, 156, 0.12);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.section-aqua .benefit-card:hover,
.section-aqua .nutrient-card:hover {
  transform: translateY(-10px);
  border-color: rgba(61, 130, 196, 0.55);
  box-shadow: 0 30px 64px rgba(45, 95, 156, 0.24);
}

.section-aqua .benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 20px;
  overflow: hidden;
  min-height: 252px;
  border-color: rgba(233, 193, 81, 0.68);
  border-radius: 22px;
  box-shadow:
    0 18px 34px rgba(214, 226, 240, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform-origin: center bottom;
  will-change: transform, box-shadow, opacity;
}

.section-aqua .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at right top, rgba(255, 235, 186, 0.14), transparent 38%);
  opacity: 1;
  pointer-events: none;
}

.section-aqua .benefit-card>* {
  position: relative;
  z-index: 1;
}

.section-aqua .benefit-card[data-aos] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.section-aqua .benefit-card[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.section-aqua .nutrient-icon,
.section-aqua .benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 34% 26%, #aed5f5 0%, #4f93d2 55%, #2a5f9c 100%);
  box-shadow:
    0 14px 26px rgba(45, 95, 156, 0.42),
    inset 0 -6px 12px rgba(20, 60, 110, 0.45),
    inset 0 5px 10px rgba(255, 255, 255, 0.6);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-aqua .nutrient-card:hover .nutrient-icon,
.section-aqua .benefit-card:hover .benefit-icon {
  transform: translateY(-4px) scale(1.06) rotate(-4deg);
}

.section-aqua .benefit-icon {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 14px 18px rgba(168, 125, 16, 0.18));
  margin-top: 2px;
}

.benefit-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 0;
  justify-content: flex-start;
  min-height: 0;
}

.benefit-copy h4,
.benefit-copy p {
  margin: 0;
}

.benefit-copy h4 {
  color: #0b2f5b;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.16;
  max-width: 14ch;
}

.benefit-copy p {
  font-size: 0.94rem;
  line-height: 1.62;
  color: #4d5f79;
  max-width: 27ch;
}

.benefit-copy h4::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 8px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 194, 82, 0.95), rgba(235, 194, 82, 0.14));
}

.section-aqua .stitle span {
  color: #3d82c4;
}

.section-aqua .text-center.mb-5 {
  margin-bottom: 2.6rem !important;
  position: relative;
  z-index: 1;
}

.section-aqua .slbl {
  color: #c9962d;
}

.section-aqua .stitle {
  color: #0a2f5f;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.2px;
}

.section-aqua .sline {
  width: 170px;
  height: 6px;
  background:
    linear-gradient(90deg, rgba(235, 194, 82, 0) 0%, rgba(235, 194, 82, 0.86) 28%, rgba(235, 194, 82, 1) 50%, rgba(235, 194, 82, 0.86) 72%, rgba(235, 194, 82, 0) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .aqua-deco i {
    animation: none;
  }
}

@media (max-width: 767px) {
  .aqua-deco .o1 {
    width: 180px;
    height: 180px;
  }

  .aqua-deco .o2 {
    width: 120px;
    height: 120px;
  }

  .aqua-deco .o3 {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-aqua {
    padding: 64px 0 18px;
  }

  .benefits-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "doctor"
      "marquee"
      "copy";
    gap: 14px;
  }

  .benefits-doctor {
    order: 1;
  }

  .benefits-copy {
    order: 3;
    transform: none;
  }

  .benefits-doctor-frame {
    max-width: 520px;
    margin: 0 auto;
    min-height: 500px;
    padding-top: 0;
  }

  .benefits-doctor img {
    width: min(100%, 430px);
    transform: none;
  }

  .benefits-marquee-bottom {
    order: 2;
    margin-top: -26px;
  }

  .benefits-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .benefits-grid {
    gap: 20px;
  }

  .section-aqua .benefit-card {
    min-height: 0;
    padding: 20px 20px 18px;
  }

  .section-aqua .benefit-icon {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
}

@media (max-width: 767px) {
  .section-aqua {
    padding: 52px 0 16px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .section-aqua .benefit-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: 100%;
    padding: 15px 14px 14px;
    min-height: 220px;
  }

  .section-aqua .benefit-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    padding: 0;
    margin-top: 0;
    margin-bottom: 2px;
  }

  .benefits-doctor-frame {
    min-height: 390px;
    padding-bottom: 0;
  }

  .benefits-doctor-frame::after {
    inset: 26px auto auto 24px;
    width: 96px;
    height: 96px;
  }

  .benefits-doctor-glow {
    width: 150px;
    height: 150px;
    top: 26px;
    left: 10px;
  }

  .benefits-doctor img {
    width: min(100%, 320px);
    transform: translateY(0);
  }

  .benefits-doctor:hover img {
    transform: translateY(-2px) scale(1.02);
  }

  .benefits-marquee-bottom {
    margin-top: -18px;
  }

  .benefits-marquee-track {
    gap: 22px;
    padding: 12px 22px;
  }

  .benefit-marquee-item {
    gap: 10px;
    font-size: 0.74rem;
  }

  .benefit-marquee-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .benefits-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 20px;
  }

  .benefits-copy {
    transform: none;
  }

  .benefit-copy h4 {
    font-size: 0.9rem;
    line-height: 1.1;
    max-width: none;
  }

  .benefit-copy p {
    font-size: 0.78rem;
    line-height: 1.34;
    max-width: none;
  }

  .benefit-copy h4::after {
    width: 52px;
    height: 3px;
    margin-top: 6px;
    margin-bottom: 0;
  }

  .benefits-marquee-track::before,
  .benefits-marquee-track::after {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .section-aqua .stitle {
    font-size: 2rem;
  }

  .section-aqua .sline {
    width: 120px;
  }
}

@media (max-width: 767px) {
  html[data-cg-language="my"] .section-aqua .benefit-card {
    gap: 5px;
    min-height: 220px;
    padding: 12px;
  }

  html[data-cg-language="my"] .section-aqua .benefit-icon {
    width: 44px;
    height: 44px;
  }

  html[data-cg-language="my"] .benefit-copy {
    gap: 5px;
  }

  html[data-cg-language="my"] .benefit-copy h4 {
    font-size: 0.84rem;
    line-height: 1.02;
  }

  html[data-cg-language="my"] .benefit-copy p {
    font-size: 0.73rem;
    line-height: 1.22;
  }

  html[data-cg-language="my"] .benefit-copy h4::after {
    width: 48px;
    height: 3px;
    margin-top: 4px;
  }
}

/* ===== Thanh phan: danh sach danh so kieu UniGrow (navy-gold) ===== */
.ingredients-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.ingredients-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 161, 58, 0.08), transparent 70%);
  pointer-events: none;
}

.ingredients-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 47, 91, 0.05), transparent 70%);
  pointer-events: none;
}

.ingredients-section .container {
  position: relative;
  z-index: 1;
}

/* Bo cuc: desktop = item | emblem | item (doi xung); mobile = doc */
.ingredients-masonry {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 300px) 1fr;
  grid-template-areas:
    "list1 tri    list2"
    "list1 shield list2";
  align-items: center;
  gap: 26px 40px;
}

.ingredients-masonry .ingredient-graphic.tri {
  grid-area: tri;
}

.ingredients-masonry .ingredient-graphic.shield {
  grid-area: shield;
}

#ingredientGridLeft {
  grid-area: list1;
}

#ingredientGridRight {
  grid-area: list2;
}

.im-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-self: start;
}

.ingredient-cluster {
  display: contents;
}

@media (max-width: 991px) {

  .ingredients-masonry {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 220px) minmax(0, 1fr) !important;
    grid-template-areas:
      "list1 tri list2"
      "list1 shield list2" !important;
    align-items: start;
    gap: 16px 14px;
  }

  .im-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    align-self: stretch;
  }

  .nutri-step {
    min-width: 0;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .ingredient-cluster {
    display: grid;
    gap: 14px;
    align-content: start;
  }

  .ingredients-masonry .ingredient-graphic.tri,
  .ingredients-masonry .ingredient-graphic.shield {
    align-self: center;
    margin: 0 auto;
  }

  .ingredients-masonry .ingredient-graphic.tri {
    max-width: 180px;
  }

  .ingredients-masonry .ingredient-graphic.shield {
    max-width: 156px;
  }
}

.ingredient-visuals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.ingredient-graphic {
  position: relative;
  width: 100%;
  align-self: center;
  margin: 0 auto;
}

.ingredient-graphic img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(8, 29, 53, 0.34));
}

.ingredient-graphic.tri {
  max-width: 320px;
  animation: vfFloat 7s ease-in-out infinite;
}

.ingredient-graphic.shield {
  max-width: 280px;
  animation: vfFloat 6s ease-in-out infinite 0.5s;
}

.ingredient-graphic .ig-empty {
  display: none;
}

.ingredient-graphic.is-empty .ig-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1 / 1;
  border: 2px dashed rgba(11, 47, 91, 0.3);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(11, 47, 91, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.ingredient-graphic.is-empty .ig-empty i {
  font-size: 1.9rem;
  color: #d5a13a;
}

.nutri-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 124px;
  padding: 16px 22px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #eef1f6;
  box-shadow: 0 14px 34px rgba(8, 29, 53, 0.1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.nutri-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #ffd884, #d5a13a);
}

.nutri-step:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 161, 58, 0.65);
  box-shadow: 0 22px 44px rgba(8, 29, 53, 0.16);
}

.ns-head {
  display: flex;
  align-items: center;
}

/* Bong bong nguyen to 3D bong kinh */
.ns-num {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0b2f5b;
  background: radial-gradient(circle at 36% 26%, #ffffff 0%, #ffffff 40%, #e9f2fc 70%, #cfe0f3 100%);
  box-shadow:
    0 14px 26px rgba(11, 47, 91, 0.2),
    inset 0 -7px 13px rgba(11, 47, 91, 0.14),
    inset 0 6px 11px rgba(255, 255, 255, 0.95);
  animation: bubblePulse 2.4s ease-in-out infinite;
  transition: box-shadow 0.4s ease;
}

.ns-num i {
  position: relative;
  z-index: 2;
  font-size: 1.55rem;
  line-height: 1;
  color: #0b2f5b;
  filter: drop-shadow(0 2px 2px rgba(11, 47, 91, 0.18));
}

/* Vet sang gloss */
.ns-num::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 14px;
  width: 24px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(-20deg);
  filter: blur(0.5px);
  pointer-events: none;
}

/* Hat bong bong vang lap lanh */
.ns-num::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff3cf, #d5a13a 75%);
  box-shadow: 0 3px 7px rgba(213, 161, 58, 0.5);
  animation: dotTwinkle 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* Khi dung anh PNG giot duong chat: bo nen bong bong CSS, anh tu co gloss */
.ns-num.ns-num-img {
  width: 76px;
  height: 76px;
  background: none;
  box-shadow: none;
}

.ns-num.ns-num-img::before,
.ns-num.ns-num-img::after {
  display: none;
}

.ns-num-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(11, 47, 91, 0.2));
}

.nutri-step:nth-child(1) .ns-num {
  animation-delay: 0s;
}

.nutri-step:nth-child(2) .ns-num {
  animation-delay: 0.22s;
}

.nutri-step:nth-child(3) .ns-num {
  animation-delay: 0.44s;
}

.nutri-step:nth-child(4) .ns-num {
  animation-delay: 0.66s;
}

.ns-pill {
  flex: 0 1 auto;
  margin-left: -22px;
  padding: 11px 22px 11px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(135deg, #0b2f5b, #14457f);
  border: 1px solid rgba(213, 161, 58, 0.45);
  box-shadow: 0 10px 22px rgba(8, 29, 53, 0.22);
  transition: box-shadow 0.4s ease;
}

.nutri-step:hover .ns-pill {
  box-shadow: 0 14px 28px rgba(8, 29, 53, 0.3);
}

.nutri-step:hover .ns-num:not(.ns-num-img) {
  box-shadow:
    0 20px 34px rgba(11, 47, 91, 0.3),
    inset 0 -7px 13px rgba(11, 47, 91, 0.14),
    inset 0 6px 11px rgba(255, 255, 255, 0.95);
}

@keyframes bubblePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.13);
  }
}

@keyframes dotTwinkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.7);
    opacity: 0.6;
  }
}

.ns-desc {
  margin: 12px 0 0 8px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {

  .ingredient-graphic.tri,
  .ingredient-graphic.shield,
  .ns-num,
  .ns-num::after {
    animation: none;
  }
}

@media (max-width: 767px) {
  .ingredients-masonry {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) !important;
    gap: 6px 5px;
  }

  .ingredients-masonry .ingredient-graphic.tri {
    max-width: 80px;
  }

  .ingredients-masonry .ingredient-graphic.shield {
    max-width: 74px;
  }

  .im-list {
    gap: 6px;
  }

  .nutri-step {
    min-height: 0;
    padding: 8px 7px 10px;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(8, 29, 53, 0.08);
  }

  .ingredient-cluster {
    gap: 6px;
  }

  .ns-num.ns-num-img {
    width: 34px;
    height: 34px;
  }

  .ns-head {
    gap: 5px;
  }

  .ns-pill {
    flex: 1 1 auto;
    width: auto;
    max-width: 100%;
    margin-left: 0;
    padding: 6px 7px;
    border-radius: 12px;
    font-size: 0.58rem;
    line-height: 1.1;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ns-desc {
    margin: 6px 0 0;
    font-size: 0.58rem;
    line-height: 1.28;
  }
}

@media (max-width: 400px) {
  .ingredients-masonry .ingredient-graphic.tri {
    max-width: 74px;
  }

  .ingredients-masonry .ingredient-graphic.shield {
    max-width: 68px;
  }

  .ns-num.ns-num-img {
    width: 30px;
    height: 30px;
  }

  .ns-pill {
    font-size: 0.52rem;
    padding: 5px 6px;
  }

  .ns-desc {
    font-size: 0.54rem;
  }
}

.video-shell {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #0b2f5b;
  box-shadow: var(--shadow-lg);
}

.video-shell video,
.video-poster,
.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.video-poster {
  position: relative;
  background: linear-gradient(135deg, #0b2f5b, #07192d);
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--secondary);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.empty-media-slot {
  min-height: 210px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(11, 47, 91, 0.92), rgba(7, 25, 45, 0.92)),
    #0b2f5b;
  border: 1px dashed rgba(213, 161, 58, 0.42);
  border-radius: 14px;
  padding: 24px;
}

.empty-media-slot i {
  color: var(--secondary);
  font-size: 2.2rem;
}

.cat-icon,
.nutrient-icon,
.benefit-icon,
.activity-icon,
.certificate-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(213, 161, 58, 0.16);
  font-size: 1.45rem;
  margin-bottom: 16px;
}

#problems .stitle {
  max-width: 760px;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  padding-top: 0.05em;
  padding-bottom: 0.06em;
  text-wrap: balance;
  overflow: visible;
}

#problems .sdesc {
  max-width: 690px;
  font-size: 1rem;
  line-height: 1.8;
  color: #52627a;
}

#problemCards {
  margin-top: 10px;
}

.problems-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  grid-template-areas:
    "copy visual"
    "cards visual";
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

/* Nền trắng + chữ "Calcium Gold" xám cỡ lớn làm watermark phía sau */
#problems .container {
  position: relative;
  z-index: 1;
}

#problems .section-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin: 0;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4.5rem, 16vw, 16rem);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  color: rgba(38, 50, 66, 0.08);
}

/* Bỏ nền trắng đặc của khối ảnh để watermark hiện xuyên qua */
#problems .problem-visual,
#problems .problem-visual::before {
  background: transparent;
}

@media (max-width: 991px) {
  #problems .section-watermark {
    font-size: clamp(3.5rem, 24vw, 8rem);
  }
}

.problems-copy {
  grid-area: copy;
  min-width: 0;
}

.problem-cards-wrap {
  grid-area: cards;
}

.problem-visual {
  grid-area: visual;
  position: relative;
  width: min(100%, 620px);
  max-width: 1924px;
  justify-self: end;
  perspective: 1000px;
  background: #fff;
  overflow: hidden;
}

.problem-visual::before,
.problem-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.problem-visual::before {
  inset: 0;
  z-index: 0;
  background: #fff;
}

.problem-visual::after {
  width: 58%;
  height: 58%;
  right: 14%;
  bottom: 13%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 231, 137, 0.48), rgba(213, 161, 58, 0.18) 46%, transparent 72%);
  filter: blur(26px);
  opacity: 0.9;
}

.problem-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 1924px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  transform: translateZ(0) rotateY(-4deg) rotateX(2deg) scale(1.03);
  transform-origin: 52% 58%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
  filter: brightness(1.035) saturate(1.08) contrast(1.06);
  will-change: transform;
}

.problem-visual:hover img {
  transform: translateY(-8px) rotateY(-1deg) rotateX(1deg) scale(1.07);
  filter: brightness(1.045) saturate(1.12) contrast(1.08);
}

.cg-problem-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  height: 100%;
  display: grid;
  align-items: end;
  justify-items: start;
  justify-content: stretch;
  align-content: end;
  border: 0;
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  background-color: #10243d;
  box-shadow:
    0 18px 42px rgba(8, 29, 53, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.58s ease,
    filter 0.58s ease;
  contain: paint;
}

.cg-problem-card::before,
.cg-problem-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cg-problem-card::before {
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  border: 1px solid rgba(8, 29, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.12));
  opacity: 0.78;
  transition: border-color 0.58s ease, opacity 0.58s ease;
}

.cg-problem-card::after {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 25, 45, 0.04) 0%, rgba(7, 25, 45, 0.34) 48%, rgba(7, 25, 45, 0.82) 100%),
    radial-gradient(circle at 18% 84%, rgba(213, 161, 58, 0.14), transparent 46%);
}

.cg-problem-card .problem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--problem-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  will-change: transform;
}

.cg-problem-card:hover,
.cg-problem-card:focus-visible,
.cg-problem-card:active {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 24px 56px rgba(8, 29, 53, 0.16),
    inset 0 0 0 1px rgba(255, 231, 166, 0.16);
  filter: saturate(1.05) contrast(1.02);
}

.cg-problem-card:hover .problem-bg,
.cg-problem-card:focus-visible .problem-bg,
.cg-problem-card:active .problem-bg {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.04);
}

.cg-problem-card:hover::before,
.cg-problem-card:focus-visible::before,
.cg-problem-card:active::before {
  border-color: rgba(255, 231, 166, 0.28);
  opacity: 0.86;
}

.cg-problem-card .catnm {
  position: relative;
  z-index: 3;
  align-self: end;
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 24ch);
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  background: rgba(7, 25, 45, 0.34);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 800;
  line-height: 1.34;
  min-width: 0;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  transition: transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.cg-problem-card:hover .catnm,
.cg-problem-card:focus-visible .catnm,
.cg-problem-card:active .catnm {
  transform: translateY(-3px);
}

.problem-tone-1 {
  --problem-accent: #d5a13a;
  --problem-deep: #8d5f08;
  --problem-glow: rgba(213, 161, 58, 0.2);
  --problem-shadow: rgba(213, 161, 58, 0.28);
}

.problem-tone-2 {
  --problem-accent: #0b78a8;
  --problem-deep: #0b2f5b;
  --problem-glow: rgba(11, 120, 168, 0.17);
  --problem-shadow: rgba(11, 120, 168, 0.23);
}

.problem-tone-3 {
  --problem-accent: #2e7d55;
  --problem-deep: #0f3d30;
  --problem-glow: rgba(46, 125, 85, 0.16);
  --problem-shadow: rgba(46, 125, 85, 0.22);
}

.problem-tone-4 {
  --problem-accent: #b14d72;
  --problem-deep: #60244b;
  --problem-glow: rgba(177, 77, 114, 0.15);
  --problem-shadow: rgba(177, 77, 114, 0.2);
}

.nutrient-card,
.benefit-card,
.certificate-card,
.activity-card,
.combo-card,
.order-card,
.contact-mini {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(8, 29, 53, 0.06);
  height: 100%;
}

.nutrient-card h4,
.benefit-card h4,
.certificate-card h4,
.activity-card h4,
.combo-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.nutrient-card p,
.benefit-card p,
.certificate-card p,
.activity-card p,
.combo-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.benefit-card:hover,
.nutrient-card:hover,
.combo-card:hover,
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.reportageSwiper .swiper-slide-active .reportage-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.certificate-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 161, 58, 0.42);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.certificate-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92)),
    #fff;
}

.certificate-preview img {
  width: 100%;
  max-width: 300px;
  max-height: 285px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 29, 53, 0.18);
}

.certificate-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 29, 53, 0.18);
}

.certificate-badge i {
  color: var(--secondary);
}

.certificate-body {
  position: relative;
  padding: 26px 28px 28px;
}

.certificate-card p {
  color: rgba(255, 255, 255, 0.72);
}

.certificate-card .certificate-icon {
  background: rgba(213, 161, 58, 0.16);
  color: var(--secondary);
}

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

.mini-link:hover {
  color: #f0d27a;
}

.ggrid {
  align-items: stretch;
}

.gallery-empty {
  background: #f8fafc;
  min-height: 250px;
}

.gallery-empty .empty-media-slot {
  min-height: 100%;
  color: #64748b;
  background: #f8fafc;
  border-color: #dbe3ef;
}

.gallery-empty .empty-media-slot i {
  color: #94a3b8;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.activity-carousel {
  position: relative;
  max-width: min(100%, 1480px);
  margin-inline: auto;
}

.activitySwiper,
.reportageSwiper {
  overflow: hidden;
  padding: 8px 8px 48px;
}

.activitySwiper .swiper-wrapper,
.reportageSwiper .swiper-wrapper {
  align-items: stretch;
}

.activitySwiper .swiper-slide,
.reportageSwiper .swiper-slide {
  height: auto;
  overflow: hidden;
}

.activitySwiper .activity-card,
.reportageSwiper .activity-card {
  min-height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.activity-card-featured {
  border-color: rgba(213, 161, 58, 0.55);
  box-shadow:
    0 32px 86px rgba(101, 67, 12, 0.22),
    0 0 0 1px rgba(213, 161, 58, 0.18);
}

.activity-card-featured .activity-video-shell {
  box-shadow:
    0 22px 54px rgba(8, 29, 53, 0.22),
    0 0 0 2px rgba(213, 161, 58, 0.28);
}

@media (max-width: 767px) {
  body[data-page="calcium-gold"] .blogo {
    width: 92px;
    height: 48px;
    padding: 0;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: auto;
    height: auto;
    max-height: 46px;
  }

  .activitySwiper,
  .reportageSwiper {
    padding: 8px 8px 48px;
  }
}

.activity-pagination,
.reportage-pagination {
  position: static;
  margin-top: 24px;
}

.activity-pagination .swiper-pagination-bullet,
.reportage-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(213, 161, 58, 0.55);
  opacity: 1;
}

.activity-pagination .swiper-pagination-bullet-active,
.reportage-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: #d5a13a;
}

.activity-nav {
  position: absolute;
  top: 47%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  box-shadow: 0 16px 34px rgba(8, 29, 53, 0.16);
}

.activity-prev {
  left: 14px;
}

.activity-next {
  right: 14px;
}

.reportage-carousel .activity-nav {
  top: 47%;
  z-index: 6;
  color: #9b6a12;
  background: #fffef9;
  border: 1px solid rgba(213, 161, 58, 0.26);
  box-shadow:
    0 18px 42px rgba(8, 29, 53, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.66);
}

.reportage-carousel .reportage-prev {
  left: 18px;
}

.reportage-carousel .reportage-next {
  right: 18px;
}

.reportage-carousel.is-compact {
  max-width: min(100%, 1240px);
}

.reportage-carousel.is-single {
  max-width: min(100%, 760px);
}

.reportage-carousel.is-single .activity-nav,
.reportage-carousel.is-single .reportage-pagination {
  display: none;
}

@media (min-width: 1024px) {
  .activity-pagination,
  .reportage-pagination {
    display: none;
  }
}

@media (max-width: 767px) {
  .activity-nav {
    display: none;
  }
}

.activity-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 20% 18%, rgba(213, 161, 58, 0.24), transparent 34%),
    linear-gradient(135deg, #07192d 0%, #0b2f5b 52%, #030711 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(8, 29, 53, 0.14);
}

.activity-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #030711;
}

.activity-video:fullscreen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}

.activity-video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}

.activity-video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 30%, rgba(213, 161, 58, 0.2), transparent 38%),
    rgba(3, 7, 17, 0.74);
}

.activity-video-fallback-icon {
  font-size: 2rem;
  color: var(--secondary);
}

.activity-video-shell.is-error .activity-video,
.activity-video-shell.is-error .activity-play-badge {
  display: none;
}

.activity-video-shell.is-error .activity-video-fallback {
  display: flex;
}

.activity-play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary);
  box-shadow: 0 10px 24px rgba(8, 29, 53, 0.18);
  pointer-events: none;
}

.activity-video-shell.is-ready .activity-play-badge {
  opacity: 0;
}

.video-youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.65rem;
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.video-youtube-link:hover {
  color: #dc2626;
  text-decoration: underline;
}

.video-feedback-card {
  background: #fff;
}

.feedback-media {
  position: relative;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2f5b, #07192d);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-icon {
  color: rgba(255, 255, 255, 0.82);
  font-size: 3rem;
}

.feedback-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--secondary);
}

/* ===================== CÁCH PHA — HERO + 4 THẺ BƯỚC NGANG ===================== */
.usage-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 132px;
  background:
    radial-gradient(circle at 4% 28%, rgba(213, 161, 58, 0.11), transparent 18%),
    radial-gradient(circle at 96% 68%, rgba(11, 47, 91, 0.07), transparent 20%),
    #ffffff;
}

.usage-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(213, 161, 58, 0.26) 1.4px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 22%, transparent 78%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 22%, transparent 78%, #000);
}

.usage-section .container {
  position: relative;
  z-index: 1;
}

.usage-ambient {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 210px;
  pointer-events: none;
}

.usage-ambient-left {
  top: 18%;
  left: max(14px, calc(50% - 960px));
}

.usage-ambient-right {
  right: max(14px, calc(50% - 960px));
  bottom: 22%;
}

.usage-orbit {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(213, 161, 58, 0.52);
  border-radius: 50%;
  animation: usageOrbitSpin 18s linear infinite;
}

.usage-orbit::before,
.usage-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8df, #d5a13a);
  box-shadow: 0 8px 20px rgba(213, 161, 58, 0.28);
}

.usage-orbit::before {
  width: 15px;
  height: 15px;
  top: 13px;
  left: 22px;
}

.usage-orbit::after {
  width: 10px;
  height: 10px;
  right: 17px;
  bottom: 31px;
}

.usage-measure-chip {
  --chip-rotate: -6deg;
  position: absolute;
  top: 52px;
  left: 42px;
  width: 132px;
  min-height: 92px;
  padding: 17px 14px;
  border: 1px solid rgba(213, 161, 58, 0.34);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 9px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(8, 29, 53, 0.1);
  backdrop-filter: blur(8px);
  animation: usageChipFloat 5.2s ease-in-out infinite;
}

.usage-ambient-right .usage-measure-chip {
  --chip-rotate: 6deg;
}

.usage-measure-chip i {
  grid-row: 1 / 3;
  font-size: 1.35rem;
  color: var(--secondary);
}

.usage-measure-chip b {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.usage-measure-chip small {
  color: #64748b;
  font-size: 0.66rem;
  line-height: 1.2;
}

.usage-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(213, 161, 58, 0.32);
  background: rgba(255, 248, 223, 0.8);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  animation: usageBubbleDrift 4.8s ease-in-out infinite;
}

.usage-bubble-one {
  width: 27px;
  height: 27px;
  top: 5px;
  right: 35px;
}

.usage-bubble-two {
  width: 17px;
  height: 17px;
  left: 12px;
  bottom: 38px;
  animation-delay: 1.1s;
}

.usage-offer-ribbon {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 30px;
  left: 0;
  width: min(760px, calc(100% - 36px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.uor-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 161, 58, 0.72));
}

.uor-line:last-child {
  background: linear-gradient(90deg, rgba(213, 161, 58, 0.72), transparent);
}

.uor-copy {
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(213, 161, 58, 0.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(8, 29, 53, 0.09);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.uor-copy i {
  color: var(--secondary);
}

.uor-copy b {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
}

.uor-copy span {
  color: #7a5a17;
  font-size: 0.8rem;
  font-weight: 600;
}

.uor-copy em {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
}

@keyframes usageOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes usageChipFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--chip-rotate));
  }

  50% {
    transform: translateY(-10px) rotate(var(--chip-rotate));
  }
}

@keyframes usageBubbleDrift {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

/* Ảnh hero cột trái */
.usage-hero {
  position: relative;
  margin: 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-hero-mobile,
.usage-responsive-layout {
  display: none;
}

.usage-hero img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(8, 29, 53, 0.18));
  animation: usageHeroFloat 4.6s ease-in-out infinite;
}

@keyframes usageHeroFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(-0.6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .usage-hero img {
    animation: none;
  }
}

.usage-hero:not(.has-image) img {
  display: none;
}

/* Giọt sữa bắn trang trí — thẳng cột với Bước 4, nổi ở khoảng trống phía trên */
.usage-section .usage-splash {
  position: absolute;
  top: 34px;
  right: max(-96px, calc((100vw - 1320px) / 2 - 170px));
  width: clamp(138px, 13vw, 240px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  filter: drop-shadow(0 14px 26px rgba(8, 29, 53, 0.14));
  transform-origin: center;
  animation: usageSplashPulse 5.2s ease-in-out infinite;
}

@keyframes usageSplashPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.36;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.52;
  }
}

@media (max-width: 991px) {
  .usage-section .usage-splash {
    width: 112px;
    top: 18px;
    right: -60px;
    opacity: 0.32;
  }
}

@media (max-width: 575px) {
  .usage-section .usage-splash {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usage-section .usage-splash {
    animation: none;
  }
}

.usage-hero-empty {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px dashed rgba(213, 161, 58, 0.5);
  background:
    radial-gradient(circle at 50% 38%, rgba(213, 161, 58, 0.1), transparent 60%),
    #fbf6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
  color: #a98b53;
  font-size: 0.9rem;
}

.usage-hero-empty i {
  font-size: 2.6rem;
  color: var(--secondary);
}

.usage-hero.has-image .usage-hero-empty {
  display: none;
}

/* Header trang trí (vạch vàng + icon sách + nhãn) */
.usage-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 14px;
}

.usage-head .uh-line {
  flex: 0 0 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}

.usage-head .uh-line:last-child {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.usage-head i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.usage-head .uh-label {
  color: #b58a32;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.usage-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-align: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.usage-title span {
  color: var(--secondary);
}

.usage-sub {
  text-align: center;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 30px;
}

/* 4 thẻ bước nằm ngang */
.usteps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ustep-card2 {
  position: relative;
  background: #fff;
  border: 1px solid rgba(213, 161, 58, 0.28);
  border-radius: 18px;
  padding: 34px 16px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(8, 29, 53, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}

.ustep-card2:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 161, 58, 0.6);
  box-shadow: 0 20px 46px rgba(8, 29, 53, 0.12);
}

/* Thẻ là ảnh nguyên khối (đã tách nền) — bỏ chrome, chỉ giữ ảnh + hover nổi */
.ustep-card2.is-image {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.ustep-card2.is-image:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.ustep-fullimg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(8, 29, 53, 0.12));
  transition: filter 0.4s ease;
}

.ustep-card2.is-image:hover .ustep-fullimg {
  filter: drop-shadow(0 22px 38px rgba(213, 161, 58, 0.28));
}

.ustep-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: radial-gradient(circle at 35% 28%, #f0c468, #d5a13a 75%);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(213, 161, 58, 0.45);
}

.ustep-ic {
  width: 84px;
  height: 84px;
  margin: 6px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ustep-ic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ustep-ic.is-empty i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.85;
}

.ustep-t {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.ustep-d {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.combo-card {
  position: relative;
  overflow: hidden;
}

.combo-card.featured {
  border-color: rgba(213, 161, 58, 0.5);
  box-shadow: 0 20px 54px rgba(213, 161, 58, 0.18);
}

.combo-gift {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--dark);
  background: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.combo-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 18px;
}

.order-card {
  position: relative;
}

.flbl {
  color: #334155;
}

.fctrl {
  font-size: 1rem;
}

.ctdark {
  background: linear-gradient(135deg, #07192d, #0b2f5b);
}

#order-form {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(235, 197, 101, 0.74), transparent 20%),
    radial-gradient(circle at 26% 8%, rgba(247, 224, 164, 0.34), transparent 18%),
    radial-gradient(circle at 94% 18%, rgba(240, 244, 248, 0.86), transparent 14%),
    linear-gradient(180deg, #fffaf0 0%, #fffefb 26%, #ffffff 56%, #fcfdff 100%);
  padding: 52px 0 14px;
}

#order-form::before,
#order-form::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#order-form::before {
  left: -140px;
  top: -26px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px solid rgba(232, 193, 99, 0.36);
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.78),
    inset 0 0 0 18px rgba(232, 193, 99, 0.08);
}

#order-form::after {
  right: -98px;
  top: 12px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(241, 226, 186, 0.88);
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.8),
    inset 0 0 0 30px rgba(241, 226, 186, 0.08);
}

#order-form .container {
  position: relative;
  z-index: 1;
}

#order-form .container::before,
#order-form .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#order-form .container::before {
  left: -160px;
  top: -28px;
  width: 430px;
  height: 520px;
  border-radius: 0 0 340px 0;
  background:
    linear-gradient(122deg, rgba(224, 173, 45, 0.52) 0%, rgba(224, 173, 45, 0.18) 12%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(126deg, rgba(245, 213, 132, 0.4) 4%, rgba(245, 213, 132, 0.14) 14%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(132deg, rgba(252, 236, 192, 0.26) 10%, rgba(252, 236, 192, 0.06) 20%, rgba(255, 255, 255, 0) 31%);
  opacity: 1;
}

#order-form .container::after {
  right: -148px;
  top: 44px;
  width: 300px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 14%, rgba(245, 229, 191, 0.56), rgba(245, 229, 191, 0.12) 28%, rgba(255, 255, 255, 0) 60%);
  opacity: 0.5;
}

.order-hero {
  max-width: 900px;
  margin: 0 auto 16px;
}

.order-hero .slbl {
  color: #d1a03a;
}

.order-hero .stitle {
  color: #0a2f5f;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.2px;
}

.order-hero .sdesc {
  max-width: 660px;
  color: #596b83;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.order-hero-divider {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 8px;
}

.order-hero-divider span {
  width: clamp(72px, 8vw, 130px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 193, 99, 0.08), rgba(232, 193, 99, 0.96), rgba(232, 193, 99, 0.08));
}

.order-hero-divider i {
  font-size: 1.35rem;
  color: #d9aa48;
  filter: drop-shadow(0 4px 12px rgba(232, 193, 99, 0.24));
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: stretch;
}

.order-aside,
.order-main {
  min-width: 0;
}

.order-aside-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 12px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 220, 122, 0.24), transparent 28%),
    linear-gradient(160deg, #081d3d 0%, #0b2957 55%, #07182f 100%);
  border: 1px solid rgba(232, 193, 99, 0.34);
  box-shadow:
    0 26px 60px rgba(9, 29, 57, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.52s ease,
    border-color 0.52s ease;
  will-change: transform, box-shadow;
}

.order-aside-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 207, 117, 0.54);
  box-shadow:
    0 34px 70px rgba(9, 29, 57, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.order-aside-top {
  text-align: center;
}

.order-aside-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #f3c75c;
  background: radial-gradient(circle at 30% 28%, rgba(255, 239, 198, 0.2), rgba(255, 239, 198, 0.02) 68%);
}

.order-aside-card h4 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 1.55rem;
  line-height: 1.18;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 14px rgba(4, 20, 42, 0.24),
    1px 1px 0 rgba(241, 194, 79, 0.34);
}

.order-aside-card .order-safe-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(4, 20, 42, 0.28) !important;
}

.order-aside-card .order-safe-title::before {
  content: none !important;
}

.order-aside-card h4::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  transform: translate(1px, 2px);
  color: rgba(244, 203, 97, 0.34);
  z-index: -1;
  filter: blur(0.2px);
}

.order-aside-card .ctsub {
  color: rgba(250, 251, 255, 0.94);
  font-size: 0.9rem;
  line-height: 1.52;
  margin: 0 auto;
  max-width: 250px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(4, 20, 42, 0.2);
}

.order-aside-top::after {
  content: "";
  display: block;
  width: 116px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 198, 88, 0), rgba(240, 198, 88, 1), rgba(240, 198, 88, 0));
  box-shadow: 0 0 14px rgba(240, 198, 88, 0.34);
}

.order-aside-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 14px;
}

.order-aside-divider span {
  flex: 1 1 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 193, 99, 0), rgba(232, 193, 99, 0.65), rgba(232, 193, 99, 0));
}

.order-aside-divider i {
  color: #ffe29a;
  font-size: 0.95rem;
}

#order-form #commitmentList {
  display: grid;
  gap: 4px;
}

#order-form .ctitem {
  gap: 14px;
  margin: 0;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

#order-form .ctitem:last-child {
  border-bottom: 0;
}

#order-form .cticon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #f1c14f;
  background: rgba(255, 209, 95, 0.08);
  border: 1px solid rgba(255, 209, 95, 0.32);
}

#order-form .ctinfo strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.order-aside-visual {
  position: relative;
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  justify-content: center;
}

.order-aside-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 164px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 204, 99, 0.98), rgba(248, 204, 99, 0.18) 46%, rgba(248, 204, 99, 0.02) 70%);
  filter: blur(2px);
}

.order-aside-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 220px;
  height: 56px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(248, 204, 99, 0.34);
  box-shadow:
    0 0 22px rgba(248, 204, 99, 0.12),
    inset 0 0 0 12px rgba(248, 204, 99, 0.08);
}

.order-aside-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 132px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(5, 22, 48, 0.28));
  transition: transform 0.76s cubic-bezier(0.16, 1, 0.3, 1), filter 0.76s ease;
}

.order-aside-card:hover .order-aside-visual img {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 22px 30px rgba(5, 22, 48, 0.34));
}

#order-form .order-card {
  border: 1px solid rgba(232, 193, 99, 0.55);
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow:
    0 22px 52px rgba(188, 203, 221, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.52s ease,
    border-color 0.52s ease;
  will-change: transform, box-shadow;
}

#order-form .order-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 193, 99, 0.72);
  box-shadow:
    0 30px 60px rgba(188, 203, 221, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

#order-form #orderForm {
  flex: 1 1 auto;
  align-content: start;
}

#order-form .flbl {
  display: block;
  margin-bottom: 6px;
  color: #17365e;
  font-size: 0.92rem;
  font-weight: 700;
}

#order-form .flbl span {
  color: #d6a340;
}

.order-field {
  position: relative;
}

.order-field>i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #d6a340;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 2;
  transition: color 0.35s ease, transform 0.35s ease;
}

.order-field-textarea>i {
  top: 20px;
  transform: none;
}

#order-form .fctrl {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  padding: 12px 16px 12px 54px;
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  background: #fff;
  color: #334155;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(15, 33, 58, 0.04);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background-color 0.35s ease;
}

#order-form .fctrl:hover {
  border-color: rgba(214, 163, 64, 0.44);
  box-shadow: 0 14px 24px rgba(15, 33, 58, 0.06);
}

#order-form .order-field:hover>i,
#order-form .order-field:focus-within>i {
  color: #c7901f;
}

#order-form .order-field:focus-within>i {
  transform: translateY(-50%) scale(1.04);
}

#order-form .order-field-textarea:focus-within>i {
  transform: scale(1.04);
}

#order-form textarea.fctrl {
  min-height: 98px;
  resize: vertical;
}

#order-form select.fctrl {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 58px;
  background-image:
    linear-gradient(135deg, transparent 0 48%, #173d74 49% 51%, transparent 52%),
    linear-gradient(225deg, transparent 0 48%, #173d74 49% 51%, transparent 52%),
    radial-gradient(circle at center, rgba(244, 207, 117, 0.2), rgba(244, 207, 117, 0.02) 68%);
  background-size: 10px 10px, 10px 10px, 36px 36px;
  background-position: calc(100% - 24px) 50%, calc(100% - 18px) 50%, calc(100% - 22px) 50%;
  background-repeat: no-repeat;
}

#order-form select.fctrl:hover,
#order-form select.fctrl:focus {
  background-image:
    linear-gradient(135deg, transparent 0 48%, #0b2f5b 49% 51%, transparent 52%),
    linear-gradient(225deg, transparent 0 48%, #0b2f5b 49% 51%, transparent 52%),
    radial-gradient(circle at center, rgba(244, 207, 117, 0.26), rgba(244, 207, 117, 0.06) 68%);
}

#order-form .fctrl:focus {
  outline: none;
  border-color: rgba(214, 163, 64, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 163, 64, 0.12);
  transform: translateY(-1px);
}

.order-submit {
  min-height: 54px;
  border-radius: 18px;
  font-size: 0.98rem;
  margin-top: 10px;
  background: linear-gradient(90deg, #081d43, #123468);
  box-shadow:
    0 18px 34px rgba(8, 29, 67, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.order-submit:hover {
  background: linear-gradient(90deg, #0a2555, #173d74);
  transform: translateY(-2px);
  box-shadow:
    0 22px 38px rgba(8, 29, 67, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.order-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

#order-form .sucmsg {
  margin-top: 10px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px dashed rgba(214, 163, 64, 0.42);
}

#order-form [data-aos="fade-up"],
#order-form [data-aos="fade-left"],
#order-form [data-aos="fade-right"] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-duration: 820ms !important;
}

#order-form .order-hero[data-aos] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

#order-form .order-hero[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#order-form .order-aside[data-aos],
#order-form .order-main[data-aos] {
  opacity: 0;
}

#order-form .order-aside[data-aos] {
  transform: translate3d(-30px, 24px, 0) scale(0.985);
}

#order-form .order-main[data-aos] {
  transform: translate3d(30px, 24px, 0) scale(0.985);
}

#order-form .order-aside[data-aos].aos-animate,
#order-form .order-main[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 991px) {
  .order-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #order-form::before {
    left: -180px;
    top: -26px;
    width: 420px;
    height: 420px;
  }

  #order-form::after {
    right: -120px;
    width: 240px;
    height: 240px;
  }

  #order-form .container::before {
    left: -186px;
    top: -30px;
    width: 340px;
    height: 380px;
  }

  #order-form .container::after {
    right: -120px;
    top: 70px;
    width: 220px;
    height: 420px;
  }

  .order-aside-card {
    padding: 18px 18px 12px;
  }

  .order-aside-visual img {
    width: min(100%, 126px);
  }

  #order-form .order-card {
    padding: 18px 18px 16px;
  }
}

@media (max-width: 767px) {
  #order-form {
    padding: 46px 0 10px;
  }

  #order-form::before {
    left: -200px;
    top: -40px;
    width: 340px;
    height: 340px;
  }

  #order-form::after {
    right: -110px;
    top: 30px;
    width: 180px;
    height: 180px;
  }

  #order-form .container::before {
    left: -150px;
    top: -18px;
    width: 250px;
    height: 260px;
  }

  #order-form .container::after {
    right: -84px;
    top: 84px;
    width: 150px;
    height: 260px;
  }

  .order-hero {
    margin-bottom: 14px;
  }

  .order-hero .stitle {
    font-size: 2rem;
  }

  .order-hero-divider {
    gap: 10px;
  }

  .order-hero-divider span {
    width: 72px;
  }

  .order-aside-card h4 {
    font-size: 1.35rem;
  }

  .order-aside-card h4::before {
    transform: translate(1px, 1px);
  }

  .order-aside-top::after {
    width: 96px;
    margin-top: 12px;
  }

  #order-form .order-card {
    border-radius: 20px;
    padding: 16px 14px 14px;
  }

  #order-form .fctrl {
    min-height: 54px;
    padding: 14px 14px 14px 52px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  #order-form textarea.fctrl {
    min-height: 96px;
  }

  .order-field>i {
    left: 16px;
    font-size: 1.1rem;
  }

  .order-submit {
    min-height: 54px;
    border-radius: 16px;
    margin-top: 8px;
  }

}

.faq-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 20px 24px 10px;
  background:
    radial-gradient(circle at top center, rgba(245, 173, 41, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border: 1px solid rgba(228, 176, 71, 0.42);
  box-shadow: 0 24px 64px rgba(198, 153, 52, 0.12);
}

.faq-shell::before,
.faq-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  pointer-events: none;
}

.faq-shell::before {
  border: 1px solid rgba(233, 196, 110, 0.32);
}

.faq-shell::after {
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(238, 197, 101, 0.18);
  border-radius: 50%;
}

.faq-shell-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid rgba(238, 197, 101, 0.35);
}

.faq-shell-ring-left {
  top: -240px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.faq-shell-ring-right {
  right: -210px;
  top: -150px;
  width: 460px;
  height: 460px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.7;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.faq-visual,
.faq-content {
  min-width: 0;
}

.faq-visual-shell {
  position: sticky;
  top: 108px;
  min-height: 480px;
  padding: 0;
  overflow: visible;
}

.faq-wave {
  position: relative;
  display: block;
  width: min(100%, 548px);
  max-width: none;
  margin: -26px auto 0;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 24px 26px rgba(226, 151, 32, 0.18));
  animation: faqWaveFloat 6.6s ease-in-out infinite;
}

.faq-drop {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
}

.faq-drop-top {
  top: 92px;
  left: 48px;
  width: clamp(100px, 10.8vw, 148px);
  animation: faqDropPulse 4.2s ease-in-out infinite;
}

.faq-drop-bottom {
  right: 26px;
  bottom: 94px;
  left: auto;
  width: clamp(90px, 9.8vw, 138px);
  animation: faqDropPulse 4.8s ease-in-out infinite 0.6s;
}

@keyframes faqDropPulse {

  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.1) translateY(7px);
  }
}

@keyframes faqWaveFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.04);
  }
}

.faq-head {
  margin-bottom: 8px;
  text-align: center;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 8px;
  color: #c28c1a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.faq-kicker::before,
.faq-kicker::after {
  content: "";
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(194, 140, 26, 0.1), rgba(194, 140, 26, 0.9), rgba(194, 140, 26, 0.1));
}

.faq-head .stitle {
  margin-bottom: 8px;
  color: #092b61;
}

.faq-head .sdesc {
  max-width: 620px;
  margin: 0 auto;
  color: #5d708e;
}

.faq-list {
  max-width: none;
  margin: 0;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(227, 189, 102, 0.34);
  border-radius: 28px;
  margin-bottom: 12px;
  box-shadow: 0 16px 34px rgba(11, 38, 76, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 38, 76, 0.12);
  border-color: rgba(227, 189, 102, 0.56);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  cursor: pointer;
  color: #0d2b62;
  font-weight: 800;
  padding: 18px 20px;
  line-height: 1.55;
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-item.open .faq-summary {
  background: linear-gradient(180deg, #0d2b62 0%, #082657 100%);
  color: #fff;
}

.faq-summary-icon {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #f0b12e;
  color: #f0b12e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  background: #fffef9;
}

.faq-item.open .faq-summary-icon {
  background: #f7c54b;
  color: #0d2b62;
}

.faq-icon-close,
.faq-item.open .faq-icon-open {
  display: none;
}

.faq-item.open .faq-icon-close {
  display: inline;
}

.faq-summary-text {
  flex: 1;
  min-width: 0;
}

.faq-summary-arrow {
  flex: 0 0 auto;
  color: #f0b12e;
  font-size: 2rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.24s ease;
}

.faq-item.open .faq-summary-arrow {
  transform: rotate(180deg);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, opacity 0.28s ease;
  opacity: 0;
}

.faq-item.open .faq-answer-wrap {
  opacity: 1;
}

.faq-answer {
  padding: 16px 20px 20px 78px;
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-8px);
  transition: transform 0.42s ease;
}

.faq-item.open .faq-answer {
  transform: translateY(0);
}

.faq-answer p {
  color: #5d708e;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .faq-shell {
    padding: 14px 16px 8px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
  }

  .faq-visual-shell {
    min-height: 420px;
  }
}

@media (max-width: 991.98px) {
  #faqs {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .faq-shell {
    border-radius: 28px;
    padding: 14px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-visual {
    display: none;
  }

  .faq-visual-shell {
    position: relative;
    top: auto;
    min-height: 270px;
    padding: 0;
  }

  .faq-wave {
    width: min(100%, 348px);
    margin-top: -12px;
  }

  .faq-drop-top {
    top: 38px;
    left: 18px;
    width: 92px;
  }

  .faq-drop-bottom {
    right: 14px;
    bottom: 36px;
    width: 88px;
  }

  .faq-head {
    margin-bottom: 10px;
  }

  .faq-head .stitle {
    font-size: 2rem;
  }

  .faq-head .sdesc {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .faq-list {
    display: grid;
    gap: 8px;
  }

  .faq-item {
    margin-bottom: 0;
    border-radius: 18px;
  }

  .faq-summary {
    gap: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .faq-summary-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    border-width: 2px;
    font-size: 0.8rem;
  }

  .faq-summary-arrow {
    font-size: 1.25rem;
  }

  .faq-answer {
    padding: 10px 14px 14px;
  }

  .faq-answer p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

@media (max-width: 575.98px) {
  #faqs {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .faq-shell {
    padding: 10px;
    border-radius: 18px;
  }

  .faq-shell::before {
    display: none;
  }

  .faq-kicker {
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

  .faq-kicker::before,
  .faq-kicker::after {
    width: 20px;
  }

  .faq-head .stitle {
    font-size: 1.45rem;
    margin-bottom: 5px;
  }

  .faq-head .sdesc {
    font-size: 0.76rem;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-item summary {
    gap: 8px;
    padding: 9px 10px;
  }

  .faq-summary-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.68rem;
  }

  .faq-summary-arrow {
    font-size: 1rem;
  }

  .faq-summary-text {
    font-size: 0.76rem;
  }

  .faq-answer {
    padding: 8px 10px 10px;
  }

  .faq-answer p {
    font-size: 0.7rem;
    line-height: 1.35;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.contact-ico {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(213, 161, 58, 0.16);
  color: var(--secondary);
  font-size: 1.25rem;
}

.contact-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-body strong {
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
}

.contact-body span {
  color: #64748b;
  word-break: break-word;
}

.contact-mini.is-disabled,
.fci.is-disabled {
  pointer-events: none;
  cursor: default;
}

.cg-pop {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 25, 45, 0.72);
  padding: 20px;
}

.cg-pop.open {
  display: flex;
}

.cg-pop-box {
  position: relative;
  width: min(760px, 100%);
  max-height: 86dvh;
  overflow: auto;
  border-radius: 20px;
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.cg-pop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
}

.composition-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.composition-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
}

.composition-row strong {
  color: var(--primary);
}

.composition-row span {
  color: #64748b;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 991px) {
  .usage-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .usage-offer-ribbon {
    display: none;
  }

  #certificateGrid {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  #certificateGrid > * {
    width: 50%;
  }

  .certificates-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .certificates-section .row.align-items-end {
    margin-bottom: 20px !important;
  }

  .certificates-section .sdesc {
    margin-bottom: 0;
  }

  .cert-cta {
    display: none;
  }

  .certificate-card {
    min-height: 100%;
    padding: 0;
    border-radius: 14px;
  }

  .certificate-preview {
    min-height: 180px;
    padding: 14px;
  }

  .certificate-preview img {
    max-width: 160px;
    max-height: 148px;
    border-radius: 6px;
  }

  .certificate-badge {
    left: 10px;
    bottom: 10px;
    gap: 5px;
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .certificate-body {
    padding: 14px;
  }

  .certificate-card .certificate-icon {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .certificate-card h4 {
    font-size: 0.86rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .certificate-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .certificate-card .mini-link {
    margin-top: 9px;
    font-size: 0.72rem;
  }

  .usage-section .col-lg-5 {
    display: none;
  }

  .usage-responsive-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.92fr) minmax(190px, 0.78fr);
    align-items: start;
    gap: 14px;
  }

  .usage-hero-mobile {
    display: flex;
    min-height: 0;
    max-width: 360px;
    margin: 0;
    align-self: center;
  }

  .usteps-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .usage-hero {
    margin-bottom: 18px;
  }

  .video-intro-copy .sdesc {
    max-width: 100%;
  }

  /* Khi xếp chồng: căn giữa toàn bộ cho cân đối */
  .video-intro-copy {
    text-align: center;
  }

  .video-intro-copy .sline,
  .video-intro-copy .sline.lft {
    margin-left: auto;
    margin-right: auto;
  }

  .video-intro-copy .video-meta-list {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-intro-media {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Quầng sáng về giữa thay vì lệch phải */
  .video-intro-media::before {
    inset: 8% 4% -6%;
  }

  .video-intro-section .video-shell {
    min-height: 0;
  }

  .video-shell-badge {
    right: 14px;
    top: 14px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .video-shell-orbit {
    width: 150px;
    height: 150px;
    right: -52px;
    bottom: -52px;
  }

  .video-intro-section .video-shell video,
  .video-intro-section .video-poster,
  .video-intro-section .video-poster img,
  .video-shell-media,
  .video-intro-section .empty-media-slot {
    min-height: 0;
  }

  .problems-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "cards";
  }

  .problem-visual {
    width: min(100%, 560px);
    justify-self: center;
  }

  .hero-row {
    min-height: auto;
    padding: 70px 0;
  }

  body[data-page="calcium-gold"] .nav-actions {
    margin: 2px 0 0;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    font-size: 0.94rem;
    padding: 0 12px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #certificateGrid {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }

  .certificates-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .certificates-section .row.align-items-end {
    margin-bottom: 16px !important;
  }

  .certificates-section .slbl {
    font-size: 1rem;
  }

  .certificates-section .stitle {
    font-size: 1.65rem;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .certificates-section .sline {
    margin-bottom: 10px;
  }

  .certificates-section .sdesc {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .certificate-card {
    border-radius: 11px;
  }

  .certificate-preview {
    min-height: 112px;
    padding: 8px;
  }

  .certificate-preview img {
    max-width: 96px;
    max-height: 96px;
    border-radius: 5px;
    box-shadow: 0 10px 22px rgba(8, 29, 53, 0.16);
  }

  .certificate-badge,
  .certificate-card .certificate-icon {
    display: none;
  }

  .certificate-body {
    padding: 9px 8px 10px;
  }

  .certificate-card h4 {
    font-size: 0.68rem;
    line-height: 1.18;
    margin-bottom: 4px;
  }

  .certificate-card p {
    font-size: 0.55rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  .certificate-card .mini-link {
    margin-top: 6px;
    gap: 4px;
    font-size: 0.56rem;
  }

  .usage-responsive-layout {
    grid-template-columns: minmax(160px, 0.86fr) minmax(150px, 0.74fr);
    gap: 8px;
    align-items: center;
  }

  .usage-hero-mobile {
    max-width: 240px;
  }

  .video-intro-copy .stitle {
    font-size: 2rem;
  }

  .video-intro-section .video-shell {
    border-radius: 20px;
    padding: 7px;
  }

  .video-shell-badge {
    left: 14px;
    right: auto;
    top: auto;
    bottom: 14px;
  }

  .video-shell-orbit {
    width: 118px;
    height: 118px;
    right: -34px;
    bottom: -34px;
    box-shadow: 0 0 0 12px rgba(142, 197, 255, 0.05), 0 0 0 28px rgba(142, 197, 255, 0.025);
  }

  .video-intro-section .video-shell video,
  .video-intro-section .video-poster,
  .video-intro-section .video-poster img,
  .video-shell-media,
  .video-intro-section .empty-media-slot {
    border-radius: 15px;
  }

  .video-panel {
    border-radius: 16px;
  }

  .video-panel::before {
    border-radius: 16px;
  }

  .video-intro-copy .video-meta-list {
    margin-top: 22px;
    gap: 10px;
  }

  .video-intro-copy .video-meta-list li {
    padding: 13px 14px;
    font-size: 0.92rem;
    gap: 11px;
    border-radius: 16px;
  }

  .video-intro-copy .video-meta-list li i {
    width: 25px;
    height: 25px;
    font-size: 0.78rem;
  }

  body[data-page="calcium-gold"] {
    padding-bottom: 62px;
  }

  .video-shell,
  .video-shell video,
  .video-poster,
  .video-poster img {
    min-height: 260px;
  }

  .usteps-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ustep-ic {
    width: 14px;
    height: 14px;
    margin: 0;
    grid-area: icon;
    justify-self: center;
    align-self: center;
  }

  .ustep-ic.is-empty i {
    font-size: 1rem;
  }

  .ustep-card2 {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon desc";
    align-items: center;
    column-gap: 7px;
    min-height: 52px;
    padding: 7px 10px 7px 8px;
    border-radius: 8px;
    text-align: left;
  }

  .ustep-t {
    font-size: 0.56rem;
    line-height: 1.05;
    grid-area: title;
    margin: 0;
  }

  .ustep-d {
    font-size: 0.45rem;
    line-height: 1.14;
    grid-area: desc;
    margin: 1px 0 0;
  }

  .ustep-badge {
    top: -8px;
    width: 17px;
    height: 17px;
    font-size: 0.5rem;
  }

  .composition-row {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1200;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgba(8, 29, 53, 0.22);
  }

  .mobile-action-bar a:first-child {
    background: var(--secondary);
    color: var(--dark);
  }
}

@media (max-width: 767px) {
  .problems-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-intro-section .slbl {
    font-size: 1.4rem;
  }

  .product-intro-copy .stitle {
    font-size: 1.8rem;
  }

  .intro-visual {
    max-width: 340px;
  }

  .intro-seal {
    width: 80px;
    height: 80px;
    right: -8px;
    bottom: 18px;
  }

  .iv-corner {
    width: 36px;
    height: 36px;
  }

  .problem-visual {
    width: min(108%, 500px);
    justify-self: center;
  }

  .problem-visual img {
    transform: translateZ(0) scale(1.02);
  }

  #problems .stitle {
    font-size: 2rem;
    line-height: 1.12;
  }

  .cg-problem-card {
    min-height: 152px;
    border-radius: 16px;
    padding: 10px;
  }

  .cg-problem-card .catnm {
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.28;
    max-width: 100%;
  }

  #problemCards {
    --bs-gutter-x: 0.6rem;
    --bs-gutter-y: 0.6rem;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    max-height: calc(100svh - 74px);
    min-height: 0;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::after {
    height: 66px;
    background-size: 960px 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="calcium-gold"] #hero.banner-hero::after {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    min-height: 40px;
    padding-left: 11px !important;
    padding-right: 11px !important;
    font-size: 0.9rem;
  }
}

/* ===================== PRODUCT GALLERY — NAVY REDESIGN ===================== */
/* Section nền navy + đồ hoạ chuyển động vàng tiết chế (motion có chủ đích:   */
/* orbs = chiều sâu, dot-grid = kết cấu, shimmer = báo ô ảnh đang cập nhật).  */
.gallery-navy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Lớp kết cấu: lưới chấm mờ, mờ dần ra rìa để không gây rối */
.gallery-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(213, 161, 58, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 80%);
  opacity: 0.7;
  z-index: -2;
  pointer-events: none;
}

/* Orbs vàng nổi nhẹ tạo chiều sâu */
.gallery-deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.gd-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}

.gd-orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(213, 161, 58, 0.55), transparent 65%);
  animation: gOrbFloat 14s ease-in-out infinite;
}

.gd-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -130px;
  right: -80px;
  background: radial-gradient(circle, rgba(79, 143, 202, 0.5), transparent 65%);
  animation: gOrbFloat 18s ease-in-out infinite reverse;
}

@keyframes gOrbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(34px, 28px) scale(1.12);
  }
}

.gallery-navy .container {
  position: relative;
  z-index: 1;
}

/* Thẻ ảnh dạng kính (glass tile) — viền vàng mảnh, nâng nhẹ khi hover */
.gallery-navy .gitem {
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(2, 8, 18, 0.45);
  background: #fff;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease, box-shadow 0.45s ease;
}

.gallery-navy .gitem:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: 0 22px 60px rgba(2, 8, 18, 0.6),
    0 0 0 1px rgba(213, 161, 58, 0.35);
}

/* Overlay tên ảnh dùng dải vàng cho nhãn để đồng bộ accent */
.gallery-navy .gover i {
  color: var(--secondary);
}

/* Ô ảnh chưa có — kính tối, viền vàng nét đứt, có vệt sáng quét (đang cập nhật) */
.gallery-navy .gallery-empty,
.gallery-navy .gallery-empty .empty-media-slot {
  background:
    radial-gradient(circle at 50% 30%, rgba(79, 143, 202, 0.16), transparent 55%),
    linear-gradient(135deg, rgba(11, 47, 91, 0.55), rgba(7, 25, 45, 0.7)) !important;
  border: 1px dashed rgba(213, 161, 58, 0.4);
  color: rgba(255, 255, 255, 0.78) !important;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-navy .gallery-empty .empty-media-slot i {
  color: var(--secondary) !important;
  position: relative;
  z-index: 1;
}

.gallery-navy .gallery-empty .empty-media-slot span {
  position: relative;
  z-index: 1;
}

.gallery-navy .gallery-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(213, 161, 58, 0.18) 50%, transparent 58%);
  background-size: 250% 250%;
  animation: gShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gShine {
  0% {
    background-position: 150% 0;
  }

  60%,
  100% {
    background-position: -50% 0;
  }
}

/* Đốm sáng lấp lánh — ngôi sao 4 cánh vàng, nhấp nháy lệch pha tạo cảm giác sang */
.gd-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #fff3cf, #d5a13a);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 6px rgba(213, 161, 58, 0.7));
  opacity: 0;
  animation: gTwinkle 4s ease-in-out infinite;
}

.gd-spark-1 {
  top: 16%;
  left: 10%;
  width: 16px;
  height: 16px;
  animation-delay: 0s;
}

.gd-spark-2 {
  top: 28%;
  right: 12%;
  animation-delay: 1.1s;
}

.gd-spark-3 {
  bottom: 22%;
  left: 16%;
  width: 11px;
  height: 11px;
  animation-delay: 2s;
}

.gd-spark-4 {
  top: 52%;
  right: 8%;
  width: 12px;
  height: 12px;
  animation-delay: 0.6s;
}

.gd-spark-5 {
  bottom: 14%;
  right: 24%;
  width: 10px;
  height: 10px;
  animation-delay: 2.7s;
}

@keyframes gTwinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }

  50% {
    opacity: 0.95;
    transform: scale(1) rotate(45deg);
  }
}

/* Hàng huy chương niềm tin — tái dùng hình huy chương vàng của mục chứng nhận */
.gallery-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 46px;
  margin-top: 30px;
}

.g-medal {
  position: relative;
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: sealFloat 5s ease-in-out infinite;
}

.g-medal:nth-child(2) {
  animation-delay: 0.6s;
}

.g-medal:nth-child(3) {
  animation-delay: 1.2s;
}

.g-medal:nth-child(4) {
  animation-delay: 1.8s;
}

.g-medal .cm-disc {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3a2706;
  background: radial-gradient(circle at 35% 28%, #fff3cf, #ffd884 40%, #d5a13a 80%, #b9821f);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 32px rgba(213, 161, 58, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.g-medal .cm-disc i {
  font-size: 1rem;
  margin-bottom: 3px;
}

.g-medal .cm-disc b {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.g-medal .cm-disc small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.g-medal .cm-ribbon {
  position: absolute;
  bottom: -14px;
  width: 16px;
  height: 36px;
  background: linear-gradient(180deg, #d5a13a, #a9781f);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.g-medal .cm-ribbon.l {
  left: 28px;
  transform: rotate(12deg);
}

.g-medal .cm-ribbon.r {
  right: 28px;
  transform: rotate(-12deg);
}

/* Tôn trọng người dùng tắt hiệu ứng chuyển động */
@media (prefers-reduced-motion: reduce) {

  .gd-orb,
  .g-medal,
  .gd-spark,
  .gallery-navy .gallery-empty::after {
    animation: none;
  }

  .gd-spark {
    opacity: 0.6;
  }
}

/* ===================== GALLERY — LIGHT POSTER THEME ===================== */
/* Nền sáng cream→trắng, tiêu đề navy, huy hiệu tròn navy, dải lượn + khiên số 1 */
.gallery-light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 110px;
  background:
    radial-gradient(125% 95% at 10% 0%, #f6efe1 0%, #fbf7ef 36%, #ffffff 72%);
}

.gallery-light .container {
  position: relative;
  z-index: 1;
}

/* Eyebrow + tiêu đề + gạch chân theo tông navy/vàng của ảnh mẫu */
.gallery-light .slbl {
  color: var(--secondary);
}

.gallery-light .stitle {
  color: #0b2f5b;
}

.gallery-light .sline {
  background: linear-gradient(90deg, var(--secondary), #d5a13a);
}

/* Dải lượn navy ở chân section */
.gallery-light .gl-deco {
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  z-index: 0;
  pointer-events: none;
}

.gallery-light .gl-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-light .gl-wave-svg path {
  fill: #0a2747;
}

/* Huy hiệu tròn navy với icon vàng */
.gallery-light .gallery-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin-top: 26px;
}

.gallery-light .gl-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  background: linear-gradient(135deg, #0b2f5b, #0a233f);
  border: 2px solid rgba(213, 161, 58, 0.42);
  box-shadow: 0 10px 22px rgba(10, 39, 71, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-light .gl-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(10, 39, 71, 0.3);
}

/* Thẻ ảnh sáng — viền mảnh, đổ bóng nhẹ; chân thẻ navy + icon vàng đã có sẵn */
.gallery-light .gitem {
  background: #fff;
  border: 1px solid rgba(10, 39, 71, 0.1);
  box-shadow: 0 14px 34px rgba(10, 39, 71, 0.1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease, box-shadow 0.45s ease;
}

.gallery-light .gitem:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 161, 58, 0.5);
  box-shadow: 0 22px 50px rgba(10, 39, 71, 0.16);
}

.gallery-light .gphoto {
  background: linear-gradient(160deg, #f6efe1, #efe6d2);
}

/* Khiên vàng số "1" đặt giữa chân dải lượn */
.gallery-light .gl-shield {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 48px;
  height: 56px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0, 100% 16%, 100% 60%, 50% 100%, 0 60%, 0 16%);
  background: linear-gradient(135deg, #f6dd97, #d5a13a 70%, #b9821f);
  box-shadow: 0 8px 18px rgba(10, 39, 71, 0.4);
}

.gallery-light .gl-shield span {
  color: #0a2747;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: -2px;
}

/* Ô ảnh trống (nếu có) — nền sáng, viền nét đứt vàng */
.gallery-light .gallery-empty,
.gallery-light .gallery-empty .empty-media-slot {
  background: linear-gradient(160deg, #f6efe1, #efe6d2) !important;
  border: 1px dashed rgba(213, 161, 58, 0.5);
  color: #0b2f5b !important;
  border-radius: 14px;
}

.gallery-light .gallery-empty .empty-media-slot i {
  color: var(--secondary) !important;
}

@media (max-width: 575px) {
  .gallery-light .gl-deco {
    height: 110px;
  }

  .gallery-light .gl-badge {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

/* ===================== ƯU ĐÃI — SHELL + PROMO + CAROUSEL ===================== */
.combo-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 112px;
  background:
    radial-gradient(circle at 5% 24%, rgba(213, 161, 58, 0.14), transparent 20%),
    radial-gradient(circle at 96% 76%, rgba(11, 47, 91, 0.08), transparent 19%),
    #faf6ef;
}

.combo-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(135deg, rgba(213, 161, 58, 0.16) 1px, transparent 1px),
    linear-gradient(45deg, rgba(213, 161, 58, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
}

.combo-section .container {
  position: relative;
  z-index: 2;
}

.combo-ambient {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  pointer-events: none;
}

.combo-ambient-left {
  top: 24%;
  left: max(12px, calc(50% - 970px));
}

.combo-ambient-right {
  right: max(12px, calc(50% - 970px));
  bottom: 20%;
}

.combo-ambient-ring {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(213, 161, 58, 0.58);
  border-radius: 38% 62% 45% 55% / 57% 40% 60% 43%;
  animation: comboAmbientSpin 20s linear infinite;
}

.combo-ambient i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(213, 161, 58, 0.38);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.1rem;
  background: linear-gradient(145deg, #f2cb72, #c88d24);
  box-shadow: 0 22px 46px rgba(139, 94, 17, 0.24);
  animation: comboAmbientFloat 5s ease-in-out infinite;
}

.combo-ambient-left i {
  --ambient-rotate: -12deg;
}

.combo-ambient-right i {
  --ambient-rotate: 12deg;
}

.combo-spark {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: #d5a13a;
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(213, 161, 58, 0.54);
  animation: comboSparkPulse 2.8s ease-in-out infinite;
}

.combo-spark-one {
  top: 18px;
  right: 28px;
}

.combo-spark-two {
  bottom: 22px;
  left: 18px;
  width: 8px;
  height: 8px;
  animation-delay: 0.8s;
}

@keyframes comboAmbientSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes comboAmbientFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(var(--ambient-rotate));
  }

  50% {
    transform: translate(-50%, -50%) translateY(-11px) rotate(var(--ambient-rotate));
  }
}

@keyframes comboSparkPulse {

  0%,
  100% {
    opacity: 0.35;
    transform: rotate(45deg) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.15);
  }
}

.combo-shell {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding: 56px 28px 32px;
  border-radius: 26px;
  border: 1px solid rgba(213, 161, 58, 0.35);
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 161, 58, 0.08), transparent 40%),
    linear-gradient(180deg, #fffdf8, #fbf4e6);
  box-shadow: 0 30px 70px rgba(8, 29, 53, 0.08);
}

.combo-shell::before,
.combo-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 76px;
  width: 150px;
  height: 42px;
  pointer-events: none;
  opacity: 0.62;
  background: linear-gradient(90deg, #c88d24, #f3d489);
  clip-path: polygon(0 0, 100% 12%, 86% 50%, 100% 88%, 0 100%, 10% 50%);
}

.combo-shell::before {
  left: -92px;
  transform: rotate(-8deg);
}

.combo-shell::after {
  right: -92px;
  transform: rotate(188deg);
}

/* Thanh pill nhô lên đỉnh */
.combo-topbar {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  width: max-content;
  max-width: calc(100% - 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, #e7c067, #d5a13a);
  box-shadow: 0 14px 30px rgba(213, 161, 58, 0.4);
  white-space: nowrap;
  z-index: 3;
}

.combo-topbar .ct-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3a2706;
  font-weight: 700;
  font-size: 0.92rem;
}

.combo-topbar .ct-item i {
  color: #fff;
}

.combo-topbar .ct-sep {
  width: 1px;
  height: 20px;
  background: rgba(58, 39, 6, 0.3);
}

.combo-topbar .ct-timer {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.combo-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: stretch;
}

/* Panel promo trái */
.combo-promo {
  position: relative;
  border-radius: 20px;
  padding: 30px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 92%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(160deg, #f6d98a, #e6b54e 55%, #d29a32);
  display: flex;
  flex-direction: column;
}

.combo-promo-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 12px;
}

.combo-promo-sub {
  color: #4a3608;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.combo-promo-link {
  align-self: flex-start;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: gap 0.3s ease;
}

.combo-promo-link:hover {
  gap: 12px;
}

.combo-promo-img {
  position: relative;
  margin: auto 0 0;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 18px;
}

.combo-promo-img img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(120, 80, 10, 0.3));
}

.combo-promo-img:not(.has-image) img {
  display: none;
}

.combo-promo-empty {
  width: 100%;
  min-height: 180px;
  border: 1px dashed rgba(58, 39, 6, 0.4);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5a4310;
  font-size: 0.86rem;
  text-align: center;
  padding: 18px;
}

.combo-promo-empty i {
  font-size: 2rem;
}

.combo-promo-img.has-image .combo-promo-empty {
  display: none;
}

/* Carousel phải */
.combo-carousel {
  position: relative;
  min-width: 0;
}

.combo-carousel .comboSwiper {
  padding: 6px 2px 4px;
}

.combo-nav {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(213, 161, 58, 0.4);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(8, 29, 53, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.combo-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.combo-nav.prev {
  left: -16px;
}

.combo-nav.next {
  right: -16px;
}

.combo-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.combo-dots {
  position: static;
  margin-top: 16px;
}

/* Thẻ combo */
.combo-card2 {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #eee3cc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 29, 53, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}

.combo-card2:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 161, 58, 0.55);
  box-shadow: 0 22px 48px rgba(213, 161, 58, 0.2);
}

.cc-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(11, 47, 91, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 8px;
}

.cc-save {
  position: absolute;
  top: 46px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.cc-save-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
}

.cc-save-amt {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary);
}

.cc-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 82%, rgba(213, 161, 58, 0.14), transparent 60%),
    linear-gradient(180deg, #fff8ea, #fdedcf);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.cc-img img {
  max-width: 78%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(120, 80, 10, 0.25));
}

.cc-img.is-empty i {
  font-size: 2.6rem;
  color: rgba(213, 161, 58, 0.7);
}

.cc-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  font-size: 0.62rem;
  font-weight: 800;
  color: #2a1c04;
  background: radial-gradient(circle at 35% 28%, #fff3cf, #d5a13a 80%);
  box-shadow: 0 6px 14px rgba(213, 161, 58, 0.4);
}

.cc-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cc-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.cc-desc {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.cc-stars {
  color: var(--secondary);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cc-price-label {
  font-size: 0.82rem;
  color: #64748b;
}

.cc-price-now {
  font-size: 1.35rem;
  font-weight: 900;
  color: #e11d2a;
}

.cc-price-old {
  font-size: 0.9rem;
  color: #9aa3b2;
  text-decoration: line-through;
}

.cc-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, filter 0.3s ease;
}

.cc-btn.outline {
  color: var(--primary);
  border: 1px solid rgba(213, 161, 58, 0.6);
  background: #fff;
}

.cc-btn.outline:hover {
  background: rgba(213, 161, 58, 0.1);
}

.cc-btn.solid {
  color: #2a1c04;
  background: linear-gradient(90deg, #f0c468, #d5a13a);
  box-shadow: 0 8px 18px rgba(213, 161, 58, 0.4);
}

.cc-btn.solid:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .combo-body {
    grid-template-columns: 1fr;
  }

  .combo-topbar {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 12px 16px;
  }

  .combo-nav.prev {
    left: 4px;
  }

  .combo-nav.next {
    right: 4px;
  }
}

@media (max-width: 575px) {
  .combo-shell {
    margin-top: 0;
    padding: 22px 14px 24px;
  }

  .combo-topbar {
    position: static;
    transform: none;
    width: auto;
    margin: 0 auto 18px;
    white-space: normal;
    justify-content: center;
  }

  .combo-topbar .ct-item {
    font-size: 0.82rem;
  }

  .combo-topbar .ct-sep {
    display: none;
  }
}

/* ===================== POPUP CHI TIẾT COMBO ===================== */
@media (max-width: 1499px) {

  .usage-ambient,
  .combo-ambient {
    opacity: 0.58;
  }

  .usage-ambient-left,
  .combo-ambient-left {
    left: -52px;
  }

  .usage-ambient-right,
  .combo-ambient-right {
    right: -52px;
  }
}

@media (max-width: 1199px) {

  .usage-ambient,
  .combo-ambient {
    display: none;
  }

  .combo-shell::before,
  .combo-shell::after {
    opacity: 0.3;
  }
}

@media (max-width: 575px) {
  .usage-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .usage-offer-ribbon {
    bottom: 18px;
  }

  .uor-line,
  .uor-copy em,
  .uor-copy span {
    display: none;
  }

  .uor-copy {
    margin-inline: auto;
  }

  .combo-section {
    padding-top: 88px;
  }

  .combo-shell::before,
  .combo-shell::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .usage-orbit,
  .usage-measure-chip,
  .usage-bubble,
  .combo-ambient-ring,
  .combo-ambient i,
  .combo-spark {
    animation: none;
  }
}

.cg-pop-wide {
  width: min(900px, 100%);
  padding: 0;
  overflow: hidden;
}

.cg-pop-wide .cg-pop-close {
  z-index: 5;
}

.cp-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.cp-media {
  position: relative;
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 80%, rgba(213, 161, 58, 0.16), transparent 60%),
    linear-gradient(180deg, #fff8ea, #fbeed0);
}

.cp-img {
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-img img {
  max-width: 86%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(120, 80, 10, 0.28));
}

.cp-img.is-empty i {
  font-size: 3.4rem;
  color: rgba(213, 161, 58, 0.7);
}

.cp-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7a5c14;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(213, 161, 58, 0.35);
  padding: 6px 11px;
  border-radius: 999px;
}

.cp-trust-item i {
  color: var(--secondary);
}

.cp-info {
  padding: 40px 36px 34px;
  display: flex;
  flex-direction: column;
}

.cp-tag {
  align-self: flex-start;
  background: rgba(11, 47, 91, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.cp-name {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 8px;
}

.cp-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.cp-stars-txt {
  color: #94a3b8;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.cp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cp-price-now {
  font-size: 1.8rem;
  font-weight: 900;
  color: #e11d2a;
}

.cp-price-old {
  font-size: 1rem;
  color: #9aa3b2;
  text-decoration: line-through;
}

.cp-price-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a8a4a;
  background: rgba(26, 138, 74, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

.cp-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cp-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.cp-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #334155;
  background: #f4f7fb;
  border: 1px solid #e3e9f2;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: default;
}

.cp-chip i {
  color: #1a8a4a;
  font-size: 0.72rem;
}

.cp-buy {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  color: #2a1c04;
  background: linear-gradient(90deg, #f0c468, #d5a13a);
  box-shadow: 0 14px 30px rgba(213, 161, 58, 0.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cp-buy:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

@media (max-width: 767px) {
  .cp-detail {
    grid-template-columns: 1fr;
  }

  .cp-media {
    padding: 30px 20px 18px;
  }

  .cp-img {
    min-height: 180px;
  }

  .cp-img img {
    max-height: 220px;
  }

  .cp-info {
    padding: 26px 22px 26px;
  }

  .cp-name {
    font-size: 1.35rem;
  }
}

.cp-desc p {
  margin: 0 0 9px;
}

.cp-desc p:last-child {
  margin-bottom: 0;
}

/* ===================== GIỎ HÀNG (CART DRAWER) ===================== */
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #0b2f5b, #14437e);
  box-shadow: 0 14px 30px rgba(8, 29, 53, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-fab:hover {
  transform: scale(1.08);
}

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef6c14;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(7, 25, 45, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1310;
  width: min(390px, 100%);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 50px rgba(8, 29, 53, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #eef1f6;
}

.cart-head h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary);
}

.cart-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f4f6fa;
  color: #475569;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-close:hover {
  background: #e7ebf2;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: #94a3b8;
}

.cart-empty i {
  font-size: 2.6rem;
  color: #cbd5e1;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr 22px;
  gap: 12px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid #f0f2f6;
}

.cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #faf6ee;
}

.cart-item-mid {
  min-width: 0;
}

.cart-item-name {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e3e9f2;
  border-radius: 8px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: #f4f6fa;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}

.cart-qty-btn:hover {
  background: #e7ebf2;
}

.cart-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: #e11d2a;
}

.cart-item-remove {
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  color: #e11d2a;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  align-self: flex-start;
}

.cart-foot {
  border-top: 1px solid #eef1f6;
  padding: 16px 20px 20px;
  background: #fff;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-total-row span {
  color: #64748b;
  font-size: 0.95rem;
}

.cart-total-row b {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.cart-checkout,
.cart-continue {
  width: 100%;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.cart-checkout {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #f5811f, #e96a0c);
  box-shadow: 0 12px 26px rgba(233, 106, 12, 0.35);
  margin-bottom: 10px;
}

.cart-checkout:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.cart-continue {
  border: 1.5px solid #f0a35a;
  background: #fff;
  color: #e96a0c;
}

.cart-continue:hover {
  background: #fff6ee;
}

/* Ô sản phẩm đã chọn trong form đặt hàng */
.order-items {
  border: 1px solid #e8edf4;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f9fbfe;
}

.order-item-row,
.order-item-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  padding: 5px 0;
}

.order-item-row {
  color: #475569;
  border-bottom: 1px dashed #e3e9f2;
}

.order-item-total {
  padding-top: 9px;
  font-weight: 800;
  color: var(--primary);
}

.order-item-total b {
  color: #e11d2a;
  font-size: 1.05rem;
}

@media (max-width: 575px) {
  .cart-fab {
    bottom: 84px;
  }

  .cart-overlay {
    z-index: 1800;
  }

  .cart-drawer {
    z-index: 1810;
    top: 0;
    right: 0;
    left: auto;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }

  .cart-head {
    flex: 0 0 auto;
    padding: 16px 16px 14px;
  }

  .cart-head h3 {
    font-size: 1.35rem;
  }

  .cart-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 12px 14px;
  }

  .cart-foot {
    flex: 0 0 auto;
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 12px 0;
  }

  .cart-item-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

/* ===================== UNIFIED LIGHT SECTIONS + FAQ MOTION ===================== */
body[data-page="calcium-gold"] {
  background: var(--cg-light-ivory);
}

body[data-page="calcium-gold"] .section-light {
  position: relative;
}

body[data-page="calcium-gold"] #problems.section-light-ivory,
body[data-page="calcium-gold"] #benefits.section-light-ivory,
body[data-page="calcium-gold"] #testimonials.section-light-ivory,
body[data-page="calcium-gold"] #combo-offers.section-light-ivory,
body[data-page="calcium-gold"] #faqs.section-light-ivory {
  background:
    radial-gradient(circle at 8% 16%, rgba(213, 161, 58, 0.12), transparent 22%),
    radial-gradient(circle at 92% 78%, rgba(240, 210, 142, 0.12), transparent 21%),
    linear-gradient(180deg, #fffefb 0%, var(--cg-light-ivory) 52%, #fffaf0 100%);
}

/* Mục "Vấn đề xương khớp" — nền trắng phẳng theo yêu cầu */
body[data-page="calcium-gold"] #problems.section-light-ivory {
  background: #ffffff;
  overflow: hidden;
  /* cắt watermark "Calcium Gold" để không tràn ngang gây vỡ responsive */
}

body[data-page="calcium-gold"] #ingredients.section-light-gold,
body[data-page="calcium-gold"] #brand-activities.section-light-gold,
body[data-page="calcium-gold"] #usage-guide.section-light-gold,
body[data-page="calcium-gold"] #order-form.section-light-gold,
body[data-page="calcium-gold"] #contact-section.section-light-gold {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 188, 86, 0.18), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(213, 161, 58, 0.1), transparent 22%),
    linear-gradient(180deg, #fff9eb 0%, var(--cg-light-gold) 48%, #fffdf7 100%);
}

body[data-page="calcium-gold"] .section-light+.section-light {
  box-shadow: inset 0 1px 0 rgba(213, 161, 58, 0.12);
}

@media (max-width: 1199px) {
  body[data-page="calcium-gold"] .brand-logo-img {
    width: auto;
    height: auto;
  }
}

body[data-page="calcium-gold"] .nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: "Nunito", "Poppins", sans-serif;
}

body[data-page="calcium-gold"] .nav-cta::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -55%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      rgba(255, 249, 218, 0.9),
      rgba(255, 255, 255, 0.2),
      transparent);
  filter: blur(0.5px);
  transform: skewX(-24deg);
  animation: navConsultSweep 4.8s ease-in-out infinite;
}

@keyframes navConsultSweep {

  0%,
  64% {
    left: -55%;
    opacity: 0;
  }

  70% {
    opacity: 0.95;
  }

  88% {
    left: 125%;
    opacity: 0.75;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

body[data-page="calcium-gold"] #faqs .faq-shell {
  background:
    radial-gradient(circle at 38% 0%, rgba(239, 194, 92, 0.2), transparent 36%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 235, 0.96));
  box-shadow:
    0 28px 72px rgba(158, 111, 22, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.faq-visual-shell::before,
.faq-visual-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.faq-visual-shell::before {
  z-index: 0;
  inset: 9% 8% 7%;
  border: 1px dashed rgba(213, 161, 58, 0.34);
  box-shadow:
    0 0 0 18px rgba(213, 161, 58, 0.035),
    0 0 0 42px rgba(213, 161, 58, 0.018);
  animation: faqOrbitSpin 26s linear infinite;
}

.faq-visual-shell::after {
  z-index: 2;
  top: 18%;
  right: 13%;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: linear-gradient(135deg, #fff7d9, #d5a13a);
  box-shadow:
    -320px 190px 0 -3px rgba(213, 161, 58, 0.64),
    -250px -42px 0 -4px rgba(213, 161, 58, 0.72),
    0 0 18px rgba(213, 161, 58, 0.68);
  transform: rotate(45deg);
  animation: faqSparkPulse 3.6s ease-in-out infinite;
}

.faq-shell-ring-left {
  animation: faqRingDrift 12s ease-in-out infinite;
}

.faq-shell-ring-right {
  animation: faqRingDrift 15s ease-in-out infinite reverse;
}

.faq-content,
.faq-summary,
.faq-answer p {
  font-family: "Nunito", "Poppins", sans-serif;
}

.faq-summary-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.faq-head .sdesc,
.faq-answer p {
  font-weight: 600;
}

body[data-page="calcium-gold"] #faqs .faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 240, 0.98));
  box-shadow:
    0 15px 34px rgba(11, 38, 76, 0.075),
    0 2px 8px rgba(213, 161, 58, 0.06);
}

body[data-page="calcium-gold"] #faqs .faq-answer {
  background: rgba(255, 253, 247, 0.98);
}

@keyframes faqOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes faqSparkPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: rotate(45deg) scale(0.72);
  }

  50% {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
  }
}

@keyframes faqRingDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(18px, 10px, 0) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  body[data-page="calcium-gold"] .nav-cta::before,
  .faq-visual-shell::before,
  .faq-visual-shell::after,
  .faq-shell-ring-left,
  .faq-shell-ring-right,
  .faq-wave,
  .faq-drop {
    animation: none;
  }
}

/* ===================== CONTACT + FOOTER PREMIUM SHOWCASE ===================== */
.contact-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0 92px;
  background:
    radial-gradient(circle at 82% 12%, rgba(213, 161, 58, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
}

.contact-showcase::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 47, 91, 0.04) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%, #000 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40%, #000 80%, transparent);
  opacity: 0.38;
}

.contact-showcase-inner {
  position: relative;
  z-index: 2;
}

.contact-copy {
  position: relative;
  padding-top: 4px;
}

.contact-kicker {
  display: block;
  color: var(--secondary);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
}

.contact-kicker-line,
.contact-title-line {
  position: relative;
  display: block;
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c98e23, #f0c563);
}

.contact-kicker-line {
  margin-bottom: 20px;
}

.contact-kicker-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #e0aa3d;
  transform: translateY(-50%) rotate(45deg);
}

.contact-title {
  max-width: 520px;
  margin: 0 0 16px;
  color: #071d35;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: clamp(2.05rem, 3.2vw, 2.95rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.12;
  text-wrap: balance;
}

.contact-title-line {
  width: 58px;
  margin-bottom: 22px;
}

.contact-title-line::before,
.contact-title-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #fff4ce, #e2a93a);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 7px rgba(213, 161, 58, 0.42));
}

.contact-title-line::before {
  right: -68px;
}

.contact-title-line::after {
  right: -87px;
  width: 8px;
  height: 8px;
  opacity: 0.7;
}

.contact-description {
  max-width: 500px;
  margin: 0;
  color: #536b86;
  font-size: 0.97rem;
  line-height: 1.72;
}

.contact-showcase .contact-grid {
  gap: 16px 18px;
}

.contact-showcase .contact-mini {
  position: relative;
  min-height: 128px;
  gap: 18px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(11, 47, 91, 0.06);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 16%, rgba(213, 161, 58, 0.06), transparent 32%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 15px 34px rgba(7, 29, 52, 0.075),
    0 2px 8px rgba(7, 29, 52, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-showcase .contact-mini::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 54px;
  height: 2px;
  border-radius: 999px 18px 0 0;
  background: linear-gradient(90deg, transparent, #d7a33c);
}

.contact-showcase .contact-mini::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(213, 161, 58, 0.13);
  border-radius: 50%;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.contact-showcase .contact-mini:hover {
  border-color: rgba(213, 161, 58, 0.3);
  box-shadow:
    0 22px 45px rgba(7, 29, 52, 0.12),
    0 6px 18px rgba(213, 161, 58, 0.08);
  transform: translateY(-6px);
}

.contact-showcase .contact-mini:hover::after {
  border-color: rgba(213, 161, 58, 0.42);
  transform: scale(1.12);
}

.contact-showcase .contact-ico {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(213, 161, 58, 0.18);
  color: #d79c29;
  font-size: 1.45rem;
  background:
    radial-gradient(circle at 36% 28%, #ffffff 0%, #fff9ec 54%, #f9edcf 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(213, 161, 58, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-showcase .contact-mini:hover .contact-ico {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(213, 161, 58, 0.22);
  transform: rotate(-5deg) scale(1.06);
}

.contact-showcase .contact-ico-tiktok {
  font-family: "Poppins", sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
}

.contact-showcase .contact-body {
  position: relative;
  z-index: 1;
  gap: 5px;
  font-family: "Nunito", "Poppins", sans-serif;
}

.contact-showcase .contact-body strong {
  color: #071d35;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact-showcase .contact-body span {
  color: #61748b;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.contact-wave {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(17deg);
}

.contact-wave-one {
  left: -390px;
  bottom: -252px;
  width: 760px;
  height: 430px;
  border: 1px solid rgba(213, 161, 58, 0.42);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0) 36%, rgba(243, 202, 112, 0.44) 73%, rgba(213, 161, 58, 0.18));
  box-shadow:
    0 -18px 0 -17px rgba(213, 161, 58, 0.34),
    0 -40px 0 -39px rgba(213, 161, 58, 0.18);
}

.contact-wave-two {
  left: -320px;
  bottom: -292px;
  width: 800px;
  height: 420px;
  border: 1px solid rgba(213, 161, 58, 0.2);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 22% 44%, rgba(25, 79, 133, 0.22), transparent 35%),
    radial-gradient(circle at 88% 35%, rgba(18, 65, 111, 0.17), transparent 30%),
    linear-gradient(135deg, #061b31 0%, #071f39 48%, #04162a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 0 100%, transparent 0 14px, rgba(213, 161, 58, 0.08) 15px 16px),
    repeating-radial-gradient(circle at 100% 0, transparent 0 12px, rgba(213, 161, 58, 0.055) 13px 14px);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 28%, transparent 72%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 28%, transparent 72%, #000);
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000, transparent 78%);
  opacity: 0.16;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding-top: 52px;
  padding-bottom: 42px;
}

.site-footer .footer-column {
  min-height: 245px;
  padding: 0 40px;
}

.site-footer .footer-column:first-child {
  padding-left: 0;
  padding-right: 54px;
}

.site-footer .footer-column+.footer-column {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer .fnm {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.site-footer .fnm span {
  margin-left: 8px;
  color: #e0a93d;
}

.site-footer .fnm>i {
  position: absolute;
  top: -5px;
  right: -20px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #fff0bd, #d5a13a);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 7px rgba(213, 161, 58, 0.7));
}

.site-footer .fdesc {
  max-width: 360px;
  margin-top: 20px;
  color: rgba(220, 230, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.85;
}

.site-footer .fsoc {
  gap: 11px;
  margin-top: 24px;
}

.site-footer .fsoc a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(213, 161, 58, 0.72);
  border-radius: 50%;
  color: #dfa83b;
  font-size: 0.96rem;
  background: rgba(213, 161, 58, 0.035);
}

.site-footer .fsoc a:hover {
  color: #071d35;
  background: #dda83e;
  box-shadow: 0 10px 24px rgba(213, 161, 58, 0.25);
}

.site-footer .ftit {
  position: relative;
  margin-bottom: 25px;
  padding: 0 0 14px;
  border: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer .ftit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: #d5a13a;
  box-shadow: 0 0 12px rgba(213, 161, 58, 0.38);
}

.site-footer .flinks li {
  margin-bottom: 14px;
}

.site-footer .flinks a {
  gap: 11px;
  color: rgba(228, 235, 242, 0.78);
  font-size: 0.88rem;
}

.site-footer .flinks a i {
  color: #d7a238;
  font-size: 0.58rem;
}

.site-footer .flinks a:hover {
  color: #fff;
}

.site-footer .fci {
  gap: 14px;
  margin-bottom: 14px;
}

.site-footer .fciico {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(213, 161, 58, 0.74);
  color: #dca73d;
  background: rgba(213, 161, 58, 0.035);
}

.site-footer .fciinfo {
  color: rgba(228, 235, 242, 0.72);
  font-size: 0.85rem;
  line-height: 1.45;
}

.site-footer .fciinfo strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.84rem;
}

.site-footer a.fci:hover .fciico {
  color: #071d35;
  background: #dca73d;
}

.site-footer a.fci:hover .fciinfo span {
  color: #fff;
}

.site-footer .fbot {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(213, 161, 58, 0.62);
}

.site-footer .fbot p,
.site-footer .fbot a {
  color: rgba(228, 235, 242, 0.74);
  font-size: 0.8rem;
}

.site-footer .fbot span {
  color: #dfa83b;
}

.site-footer .footer-bottom-links a+a {
  position: relative;
  margin-left: 42px;
}

.site-footer .footer-bottom-links a+a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 1px;
  height: 16px;
  background: rgba(213, 161, 58, 0.72);
  transform: translateY(-50%);
}

.footer-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 360px;
  height: 210px;
  border: 1px solid rgba(213, 161, 58, 0.45);
  border-radius: 50%;
}

.footer-deco-left {
  left: -220px;
  bottom: -90px;
  transform: rotate(18deg);
  box-shadow:
    0 -18px 0 -17px rgba(213, 161, 58, 0.2),
    0 -38px 0 -37px rgba(213, 161, 58, 0.12);
}

.footer-deco-right {
  top: -130px;
  right: -190px;
  width: 430px;
  height: 300px;
  transform: rotate(24deg);
  box-shadow:
    0 18px 0 -17px rgba(213, 161, 58, 0.15),
    0 40px 0 -39px rgba(213, 161, 58, 0.09);
}

@media (max-width: 1199px) {
  .contact-showcase {
    padding: 76px 0 82px;
  }

  .contact-showcase .contact-mini {
    min-height: 136px;
    padding: 22px;
  }

  .contact-showcase .contact-ico {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }

  .site-footer .footer-column,
  .site-footer .footer-column:first-child {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-footer .footer-column:first-child {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .contact-showcase {
    padding: 54px 0 58px;
  }

  .contact-showcase .row {
    --bs-gutter-y: 1.25rem;
  }

  .contact-copy {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
  }

  .contact-kicker-line,
  .contact-title-line {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-description,
  .contact-title {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-showcase .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
    gap: 12px;
  }

  .contact-showcase .contact-mini {
    min-height: 104px;
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  .contact-showcase .contact-ico {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .contact-kicker {
    margin-bottom: 8px;
  }

  .contact-kicker-line {
    margin-bottom: 12px;
  }

  .contact-title-line {
    margin-bottom: 12px;
  }

  .contact-description {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .site-footer .footer-column,
  .site-footer .footer-column:first-child {
    min-height: 0;
    padding: 0 32px 38px;
    border-left: 0;
  }

  .site-footer .footer-column:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-footer .footer-brand {
    padding-left: 0;
  }

  .site-footer .footer-contact {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 767px) {
  .contact-showcase {
    padding: 42px 0 46px;
  }

  .contact-showcase .row {
    --bs-gutter-y: 0.9rem;
  }

  .contact-showcase .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .contact-showcase .contact-mini {
    min-height: 74px;
    padding: 9px 8px;
    gap: 7px;
    align-items: flex-start;
  }

  .contact-wave-one {
    left: -500px;
    opacity: 0.6;
  }

  .contact-wave-two {
    opacity: 0.5;
  }

  .footer-main {
    padding-top: 44px;
    padding-bottom: 12px;
  }

  .site-footer .footer-column,
  .site-footer .footer-column:first-child,
  .site-footer .footer-column:nth-child(3),
  .site-footer .footer-contact {
    padding: 0 0 34px;
    border-left: 0;
    border-top: 0;
  }

  .site-footer .footer-column+.footer-column {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .site-footer .fbot .d-flex {
    justify-content: center !important;
    text-align: center;
  }

  .site-footer .footer-bottom-links {
    width: 100%;
  }

  .site-footer .fbot a:first-child {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .contact-title {
    font-size: 1.45rem;
  }

  .contact-showcase .contact-mini {
    gap: 6px;
    min-height: 66px;
    padding: 7px 7px;
    border-radius: 9px;
  }

  .contact-showcase .contact-ico {
    width: 26px;
    height: 26px;
    font-size: 0.66rem;
  }

  .contact-showcase .contact-body strong {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .contact-showcase .contact-body span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.5rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .site-footer .fnm {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact-showcase .contact-mini,
  .contact-showcase .contact-ico {
    transition: none;
  }
}

/* ===================== VIDEO FEEDBACK SHOWCASE ===================== */
body[data-page="calcium-gold"] #testimonials.testimonial-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 78px;
  padding: 88px 0 94px;
  background:
    radial-gradient(circle at 3% 3%, rgba(249, 218, 145, 0.58), transparent 19%),
    radial-gradient(circle at 96% 92%, rgba(238, 190, 83, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fff9eb 54%, #fffdf7 100%);
}

.testimonial-showcase::before,
.testimonial-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.testimonial-showcase::before {
  top: -360px;
  left: -260px;
  width: 880px;
  height: 620px;
  border: 2px solid rgba(213, 161, 58, 0.4);
  box-shadow:
    0 20px 0 -18px rgba(213, 161, 58, 0.18),
    0 42px 0 -40px rgba(213, 161, 58, 0.12);
  transform: rotate(-15deg);
}

.testimonial-showcase::after {
  right: -430px;
  bottom: -500px;
  width: 900px;
  height: 900px;
  border: 2px solid rgba(213, 161, 58, 0.34);
  box-shadow:
    0 22px 0 -20px rgba(213, 161, 58, 0.16),
    0 48px 0 -46px rgba(213, 161, 58, 0.08);
}

.testimonial-inner {
  position: relative;
  z-index: 2;
}

.testimonial-orbit {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(213, 161, 58, 0.24);
  border-radius: 50%;
}

.testimonial-orbit-left {
  left: -160px;
  bottom: 80px;
  animation: testimonialOrbit 24s linear infinite;
}

.testimonial-orbit-right {
  top: 190px;
  right: -190px;
  width: 340px;
  height: 340px;
  animation: testimonialOrbit 30s linear infinite reverse;
}

.testimonial-spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #fff8db, #d5a13a);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 8px rgba(213, 161, 58, 0.62));
  animation: testimonialTwinkle 3.8s ease-in-out infinite;
}

.testimonial-spark-one {
  top: 112px;
  left: 10%;
}

.testimonial-spark-two {
  right: 8%;
  bottom: 170px;
  width: 10px;
  height: 10px;
  animation-delay: 1.2s;
}

.testimonial-head {
  max-width: 980px;
  margin: 0 auto 34px;
  font-family: "Nunito", "Poppins", sans-serif;
  text-align: center;
}

.testimonial-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  color: #c88e22;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-kicker::before,
.testimonial-kicker::after {
  content: "";
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 161, 58, 0.88));
}

.testimonial-kicker::after {
  transform: rotate(180deg);
}

.testimonial-title {
  max-width: 920px;
  margin: 0 auto 14px;
  color: #071d35;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.testimonial-title-mark {
  position: relative;
  display: block;
  width: 82px;
  height: 1px;
  margin: 20px auto 18px;
  background: linear-gradient(90deg, transparent, #d5a13a, transparent);
}

.testimonial-title-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #f7dc9d, #c98d20);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 7px #fffaf0;
}

.testimonial-note {
  max-width: 660px;
  margin: 0 auto;
  color: #65768c;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.testimonial-swiper {
  overflow: hidden;
  padding: 8px 8px 48px;
}

.testimonial-inner {
  position: relative;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.video-feedback-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  padding: 28px 28px 30px;
  border: 1px solid rgba(213, 161, 58, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 100%, rgba(242, 212, 145, 0.18), transparent 29%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.98));
  box-shadow:
    0 20px 52px rgba(101, 67, 12, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.video-feedback-card::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: 74px;
  width: 260px;
  height: 100px;
  border-top: 1px solid rgba(213, 161, 58, 0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.video-feedback-card:hover {
  border-color: rgba(213, 161, 58, 0.42);
  box-shadow:
    0 28px 64px rgba(101, 67, 12, 0.16),
    0 5px 18px rgba(213, 161, 58, 0.08);
  transform: translateY(-7px);
}

.feedback-quote {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 20px;
  color: rgba(213, 161, 58, 0.42);
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.feedback-video-shell {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid #d5a13a;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(79, 132, 190, 0.34), transparent 25%),
    linear-gradient(155deg, #123f72, #061c36 76%);
  box-shadow:
    0 18px 36px rgba(7, 29, 53, 0.22),
    0 0 0 5px rgba(213, 161, 58, 0.055);
}

.feedback-video {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #071d35;
  cursor: pointer;
}

.feedback-video-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: linear-gradient(155deg, #123f72, #061c36 76%);
}

.feedback-video-shell.is-error .feedback-video {
  display: none;
}

.feedback-video-shell.is-error .feedback-video-fallback {
  display: flex;
}

.feedback-video-fallback .feedback-icon {
  color: rgba(255, 255, 255, 0.65);
  font-size: 3.4rem;
}

.feedback-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 10px;
  color: #d5a13a;
}

.feedback-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 161, 58, 0.74));
}

.feedback-divider span:last-child {
  transform: rotate(180deg);
}

.feedback-divider i {
  font-size: 1rem;
  filter: drop-shadow(0 3px 5px rgba(213, 161, 58, 0.3));
}

.feedback-name {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  color: #09264a;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.feedback-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  color: #d9a33a;
  font-size: 0.78rem;
}

.feedback-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #334a65;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
  white-space: pre-line;
}

.testimonial-pagination {
  position: static;
  margin-top: 24px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(213, 161, 58, 0.55);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: #d5a13a;
}

.testimonial-nav {
  position: absolute;
  top: 47%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  box-shadow: 0 16px 34px rgba(8, 29, 53, 0.16);
}

.testimonial-prev {
  left: -24px;
}

.testimonial-next {
  right: -24px;
}

.testimonial-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

@keyframes testimonialOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes testimonialTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.7) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.12) rotate(45deg);
  }
}

@media (min-width: 1024px) {
  .testimonial-pagination {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial-nav {
    display: none;
  }
}

@media (max-width: 991px) {
  body[data-page="calcium-gold"] #testimonials.testimonial-showcase {
    padding: 72px 0 78px;
  }

  .testimonial-title {
    font-size: clamp(2.35rem, 7vw, 3.4rem);
  }

  .video-feedback-card {
    min-height: 620px;
  }
}

@media (max-width: 575px) {
  body[data-page="calcium-gold"] #testimonials.testimonial-showcase {
    padding: 58px 0 68px;
  }

  .testimonial-head {
    margin-bottom: 24px;
  }

  .testimonial-kicker {
    gap: 10px;
    font-size: 0.8rem;
  }

  .testimonial-kicker::before,
  .testimonial-kicker::after {
    width: 32px;
  }

  .testimonial-title {
    font-size: 2.25rem;
  }

  .testimonial-note {
    font-size: 0.9rem;
  }

  .testimonial-swiper {
    padding-right: 12px;
    padding-left: 12px;
  }

  .video-feedback-card {
    min-height: 0;
    padding: 24px 20px 26px;
    border-radius: 22px;
  }

  .feedback-video-shell {
    width: min(100%, 214px);
  }

  .feedback-copy {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .testimonial-orbit,
  .testimonial-spark {
    animation: none;
  }

  .video-feedback-card {
    transition: none;
  }
}

/* ===== Landing i18n/layout fixes after develop merge ===== */
body[data-page="calcium-gold"] .product-intro-section {
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 236, 190, 0.76), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(213, 161, 58, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff8ea 100%);
  color: #0b2f5b;
}

body[data-page="calcium-gold"] .product-intro-section .slbl {
  color: #b77712;
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

body[data-page="calcium-gold"] .product-intro-copy .stitle {
  color: #071d35 !important;
  text-shadow: none;
}

body[data-page="calcium-gold"] .product-intro-copy .copy-block p {
  color: #40536b !important;
}

body[data-page="calcium-gold"] .intro-image-frame {
  background:
    linear-gradient(#fffaf0, #fffaf0) padding-box,
    linear-gradient(135deg, #ffe7a6, #d5a13a 52%, #a9781f) border-box;
  box-shadow: 0 26px 62px rgba(101, 67, 12, 0.16);
}

body[data-page="calcium-gold"] .intro-badge {
  color: #0b2f5b;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(101, 67, 12, 0.08);
}

body[data-page="calcium-gold"] .gfoot {
  flex-basis: 48px;
  justify-content: center;
  background: linear-gradient(180deg, #fffaf0, #fff3dc);
  border-top: 1px solid rgba(213, 161, 58, 0.22);
}

body[data-page="calcium-gold"] .gbadge {
  width: 34px;
  height: 34px;
  color: #0b2f5b;
  border-color: rgba(213, 161, 58, 0.72);
  background: linear-gradient(135deg, #ffe7a6, #d5a13a);
}

body[data-page="calcium-gold"] .combo-card2 {
  min-height: 486px;
}

body[data-page="calcium-gold"] .cc-body {
  min-height: 230px;
}

body[data-page="calcium-gold"] .cc-name {
  min-height: 2.5em;
  line-height: 1.25;
}

body[data-page="calcium-gold"] .cc-desc {
  min-height: 2.6em;
}

body[data-page="calcium-gold"] .cc-price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 5px 8px;
  min-height: 52px;
}

body[data-page="calcium-gold"] .cc-price-label {
  padding-top: 7px;
  white-space: nowrap;
}

body[data-page="calcium-gold"] .cc-price-values {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  min-width: 0;
}

body[data-page="calcium-gold"] .cc-price-now {
  line-height: 1.15;
}

body[data-page="calcium-gold"] .cc-actions {
  align-items: stretch;
}

body[data-page="calcium-gold"] .cc-btn {
  min-height: 48px;
  padding: 9px 7px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

html[lang="en"] body[data-page="calcium-gold"] .cc-btn,
html[lang="th"] body[data-page="calcium-gold"] .cc-btn,
html[lang="my"] body[data-page="calcium-gold"] .cc-btn,
html[lang="lo"] body[data-page="calcium-gold"] .cc-btn,
html[lang="km"] body[data-page="calcium-gold"] .cc-btn {
  font-size: 0.78rem;
}

body[data-page="calcium-gold"] .feedback-name,
body[data-page="calcium-gold"] .feedback-copy {
  overflow-wrap: anywhere;
}

/* ===== Gold navy luxury theme refresh ===== */
:root {
  --primary: #0a2448;
  --secondary: #d7a33a;
  --dark: #071d35;
  --cg-navy: #071d35;
  --cg-navy-2: #0a2448;
  --cg-navy-3: #0f3768;
  --cg-gold: #d7a33a;
  --cg-gold-bright: #f7d77a;
  --cg-gold-soft: #fff0bc;
  --cg-gold-deep: #9d6414;
  --cg-ivory: #fffdf7;
  --cg-cream: #fff7e6;
  --cg-warm-line: rgba(151, 96, 18, 0.18);
  --shadow: 0 16px 42px rgba(71, 45, 8, 0.1);
  --shadow-lg: 0 28px 76px rgba(71, 45, 8, 0.18);
}

body[data-page="calcium-gold"] {
  color: #263c58;
  background:
    linear-gradient(180deg, #fff8e6 0%, #fffdf8 34%, #fff7e6 100%);
}

body[data-page="calcium-gold"] h1,
body[data-page="calcium-gold"] h2,
body[data-page="calcium-gold"] h3,
body[data-page="calcium-gold"] h4,
body[data-page="calcium-gold"] h5,
body[data-page="calcium-gold"] .stitle,
body[data-page="calcium-gold"] .testimonial-title,
body[data-page="calcium-gold"] .contact-title {
  color: var(--cg-navy) !important;
}

html[lang="th"] body[data-page="calcium-gold"] h1,
html[lang="th"] body[data-page="calcium-gold"] h2,
html[lang="th"] body[data-page="calcium-gold"] h3,
html[lang="th"] body[data-page="calcium-gold"] h4,
html[lang="th"] body[data-page="calcium-gold"] h5,
html[lang="th"] body[data-page="calcium-gold"] .stitle,
html[lang="th"] body[data-page="calcium-gold"] .slbl,
html[lang="th"] body[data-page="calcium-gold"] .testimonial-title,
html[lang="th"] body[data-page="calcium-gold"] .testimonial-kicker,
html[lang="th"] body[data-page="calcium-gold"] .usage-title,
html[lang="th"] body[data-page="calcium-gold"] .uh-label,
html[lang="th"] body[data-page="calcium-gold"] .ct-item,
html[lang="th"] body[data-page="calcium-gold"] .combo-promo-title {
  font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, sans-serif !important;
}

html[lang="my"] body[data-page="calcium-gold"] h1,
html[lang="my"] body[data-page="calcium-gold"] h2,
html[lang="my"] body[data-page="calcium-gold"] h3,
html[lang="my"] body[data-page="calcium-gold"] h4,
html[lang="my"] body[data-page="calcium-gold"] h5,
html[lang="my"] body[data-page="calcium-gold"] .stitle,
html[lang="my"] body[data-page="calcium-gold"] .slbl,
html[lang="my"] body[data-page="calcium-gold"] .testimonial-title,
html[lang="my"] body[data-page="calcium-gold"] .testimonial-kicker,
html[lang="my"] body[data-page="calcium-gold"] .usage-title,
html[lang="my"] body[data-page="calcium-gold"] .uh-label,
html[lang="my"] body[data-page="calcium-gold"] .ct-item,
html[lang="my"] body[data-page="calcium-gold"] .combo-promo-title {
  font-family: "Noto Sans Myanmar", "Myanmar Text", "Nirmala UI", sans-serif !important;
}

html[lang="lo"] body[data-page="calcium-gold"] h1,
html[lang="lo"] body[data-page="calcium-gold"] h2,
html[lang="lo"] body[data-page="calcium-gold"] h3,
html[lang="lo"] body[data-page="calcium-gold"] h4,
html[lang="lo"] body[data-page="calcium-gold"] h5,
html[lang="lo"] body[data-page="calcium-gold"] .stitle,
html[lang="lo"] body[data-page="calcium-gold"] .slbl,
html[lang="lo"] body[data-page="calcium-gold"] .testimonial-title,
html[lang="lo"] body[data-page="calcium-gold"] .testimonial-kicker,
html[lang="lo"] body[data-page="calcium-gold"] .usage-title,
html[lang="lo"] body[data-page="calcium-gold"] .uh-label,
html[lang="lo"] body[data-page="calcium-gold"] .ct-item,
html[lang="lo"] body[data-page="calcium-gold"] .combo-promo-title {
  font-family: "Noto Sans Lao", "Lao UI", "Leelawadee UI", sans-serif !important;
}

html[lang="km"] body[data-page="calcium-gold"] h1,
html[lang="km"] body[data-page="calcium-gold"] h2,
html[lang="km"] body[data-page="calcium-gold"] h3,
html[lang="km"] body[data-page="calcium-gold"] h4,
html[lang="km"] body[data-page="calcium-gold"] h5,
html[lang="km"] body[data-page="calcium-gold"] .stitle,
html[lang="km"] body[data-page="calcium-gold"] .slbl,
html[lang="km"] body[data-page="calcium-gold"] .testimonial-title,
html[lang="km"] body[data-page="calcium-gold"] .testimonial-kicker,
html[lang="km"] body[data-page="calcium-gold"] .usage-title,
html[lang="km"] body[data-page="calcium-gold"] .uh-label,
html[lang="km"] body[data-page="calcium-gold"] .ct-item,
html[lang="km"] body[data-page="calcium-gold"] .combo-promo-title {
  font-family: "Noto Sans Khmer", "Khmer UI", "Nirmala UI", sans-serif !important;
}

body[data-page="calcium-gold"] .sdesc,
body[data-page="calcium-gold"] .copy-block p,
body[data-page="calcium-gold"] p {
  color: #40536b;
}

body[data-page="calcium-gold"] .slbl,
body[data-page="calcium-gold"] .testimonial-kicker,
body[data-page="calcium-gold"] .combo-promo-kicker {
  color: #9c6515 !important;
}

body[data-page="calcium-gold"] .sline,
body[data-page="calcium-gold"] .benefit-copy h4::after,
body[data-page="calcium-gold"] .combo-section .sline {
  background: linear-gradient(90deg, #9c6515, var(--cg-gold-bright), rgba(215, 163, 58, 0.16));
}

body[data-page="calcium-gold"] #nav {
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 22%, rgba(255, 255, 255, 0.24) 72%, transparent),
    linear-gradient(180deg, #fff3bd 0%, #e8b957 46%, #c9902b 100%);
  border-bottom: 1px solid rgba(255, 244, 190, 0.86);
  border-radius: 0 0 30px 30px;
  box-shadow:
    0 14px 36px rgba(84, 52, 8, 0.18),
    inset 0 -1px 0 rgba(255, 248, 212, 0.76);
}

body[data-page="calcium-gold"] #nav.scrolled {
  box-shadow:
    0 18px 44px rgba(84, 52, 8, 0.22),
    inset 0 -1px 0 rgba(255, 248, 212, 0.76);
}

body[data-page="calcium-gold"] #nav .container {
  min-height: 82px;
}

body[data-page="calcium-gold"] .brand-logo-img {
  filter:
    drop-shadow(0 2px 0 rgba(255, 249, 220, 0.46))
    drop-shadow(0 12px 18px rgba(87, 53, 7, 0.18));
}

body[data-page="calcium-gold"] .navbar-nav .nav-link,
body[data-page="calcium-gold"] .nav-icon-btn,
body[data-page="calcium-gold"] .language-btn [data-current-language] {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 248, 212, 0.34);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--cg-navy), var(--cg-navy-3));
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active,
body[data-page="calcium-gold"] .nav-icon-btn:hover {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
  background: rgba(255, 250, 229, 0.32);
}

body[data-page="calcium-gold"] .nav-icon-btn {
  background: rgba(255, 245, 201, 0.3);
  border: 1px solid rgba(121, 77, 11, 0.18);
  box-shadow:
    0 10px 24px rgba(88, 54, 8, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page="calcium-gold"] .nav-icon-btn:hover,
body[data-page="calcium-gold"] .cart-link {
  background: rgba(255, 250, 229, 0.54);
  border-color: rgba(7, 29, 53, 0.22);
}

body[data-page="calcium-gold"] .navbar-toggler {
  color: var(--cg-navy);
  background: rgba(255, 245, 201, 0.42);
  border-color: rgba(7, 29, 53, 0.2) !important;
}

body[data-page="calcium-gold"] .navbar-toggler i {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .btn-red,
body[data-page="calcium-gold"] .nav-cta,
body[data-page="calcium-gold"] .cc-btn,
body[data-page="calcium-gold"] .combo-promo-btn,
body[data-page="calcium-gold"] .order-submit {
  border: 1px solid rgba(247, 215, 122, 0.58);
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%) !important;
  color: #f7d77a !important;
  box-shadow:
    0 14px 30px rgba(7, 29, 53, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body[data-page="calcium-gold"] .btn-red:hover,
body[data-page="calcium-gold"] .nav-cta:hover,
body[data-page="calcium-gold"] .cc-btn:hover,
body[data-page="calcium-gold"] .combo-promo-btn:hover,
body[data-page="calcium-gold"] .order-submit:hover {
  color: #fff3bd !important;
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(7, 29, 53, 0.3),
    0 0 0 3px rgba(215, 163, 58, 0.16);
}

body[data-page="calcium-gold"] .mqsec,
body[data-page="calcium-gold"] .ttag {
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%) !important;
  color: #f7d77a !important;
}

body[data-page="calcium-gold"] .section-light,
body[data-page="calcium-gold"] .section-soft,
body[data-page="calcium-gold"] .gallery-light,
body[data-page="calcium-gold"] .usage-section,
body[data-page="calcium-gold"] .combo-section,
body[data-page="calcium-gold"] .contact-showcase,
body[data-page="calcium-gold"] #testimonials.testimonial-showcase {
  color: var(--cg-navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 215, 122, 0.24), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(215, 163, 58, 0.14), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #fff7e6 58%, #fffaf0 100%) !important;
}

body[data-page="calcium-gold"] #ingredients.section-light-gold,
body[data-page="calcium-gold"] #brand-activities.section-light-gold,
body[data-page="calcium-gold"] #usage-guide.section-light-gold,
body[data-page="calcium-gold"] #order-form.section-light-gold,
body[data-page="calcium-gold"] #contact-section.section-light-gold {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.7), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(247, 215, 122, 0.34), transparent 28%),
    linear-gradient(180deg, #fff5d8 0%, #fff9ec 52%, #fffdf8 100%) !important;
}

body[data-page="calcium-gold"] .section-navy,
body[data-page="calcium-gold"] .video-intro-section,
body[data-page="calcium-gold"] .product-intro-section,
body[data-page="calcium-gold"] .certificates-section {
  color: var(--cg-navy);
  background:
    radial-gradient(circle at 8% 18%, rgba(247, 215, 122, 0.32), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(10, 36, 72, 0.08), transparent 26%),
    linear-gradient(180deg, #fff7dd 0%, #fffdf7 100%) !important;
}

body[data-page="calcium-gold"] .section-navy .stitle,
body[data-page="calcium-gold"] .section-navy h2,
body[data-page="calcium-gold"] .section-navy h3,
body[data-page="calcium-gold"] .section-navy h4 {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .section-navy .sdesc,
body[data-page="calcium-gold"] .section-navy .copy-block p,
body[data-page="calcium-gold"] .video-intro-copy .sdesc {
  color: #40536b !important;
}

body[data-page="calcium-gold"] .section-watermark,
body[data-page="calcium-gold"] .pi-watermark {
  color: rgba(151, 96, 18, 0.08) !important;
}

body[data-page="calcium-gold"] .video-panel,
body[data-page="calcium-gold"] .video-shell,
body[data-page="calcium-gold"] .activity-video-shell,
body[data-page="calcium-gold"] .feedback-video-shell {
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%);
  border: 1px solid rgba(247, 215, 122, 0.34);
  box-shadow: 0 26px 62px rgba(7, 29, 53, 0.24);
}

body[data-page="calcium-gold"] .video-intro-copy .video-meta-list li {
  color: var(--cg-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 163, 58, 0.22);
  box-shadow: 0 12px 28px rgba(87, 53, 7, 0.08);
}

body[data-page="calcium-gold"] .nutrient-card,
body[data-page="calcium-gold"] .benefit-card,
body[data-page="calcium-gold"] .activity-card,
body[data-page="calcium-gold"] .combo-card,
body[data-page="calcium-gold"] .combo-card2,
body[data-page="calcium-gold"] .order-card,
body[data-page="calcium-gold"] .contact-mini,
body[data-page="calcium-gold"] .faq-shell,
body[data-page="calcium-gold"] .video-feedback-card,
body[data-page="calcium-gold"] .nutri-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 235, 0.94)) !important;
  border-color: rgba(215, 163, 58, 0.34) !important;
  color: var(--cg-navy);
  box-shadow:
    0 18px 44px rgba(82, 51, 7, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body[data-page="calcium-gold"] .nutrient-card h4,
body[data-page="calcium-gold"] .benefit-card h4,
body[data-page="calcium-gold"] .activity-card h4,
body[data-page="calcium-gold"] .combo-card h4,
body[data-page="calcium-gold"] .cc-name,
body[data-page="calcium-gold"] .contact-body strong,
body[data-page="calcium-gold"] .faq-question {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .nutrient-card p,
body[data-page="calcium-gold"] .benefit-card p,
body[data-page="calcium-gold"] .activity-card p,
body[data-page="calcium-gold"] .combo-card p,
body[data-page="calcium-gold"] .cc-desc,
body[data-page="calcium-gold"] .contact-body span,
body[data-page="calcium-gold"] .faq-answer {
  color: #51647e !important;
}

body[data-page="calcium-gold"] .section-aqua {
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 215, 122, 0.28), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #fff2cf 48%, #fffdf8 100%) !important;
}

body[data-page="calcium-gold"] .section-aqua .benefit-card {
  border-color: rgba(215, 163, 58, 0.54) !important;
}

body[data-page="calcium-gold"] .section-aqua .benefit-icon,
body[data-page="calcium-gold"] .benefit-marquee-icon {
  filter: drop-shadow(0 14px 18px rgba(132, 82, 8, 0.22));
}

body[data-page="calcium-gold"] .benefits-marquee {
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%);
  border-color: rgba(247, 215, 122, 0.28);
  box-shadow: 0 18px 42px rgba(7, 29, 53, 0.24);
}

body[data-page="calcium-gold"] .benefit-marquee-item {
  color: #fff2b7;
}

@media (min-width: 768px) {
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
    object-fit: cover;
    object-position: center;
  }
}

body[data-page="calcium-gold"] .certificate-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 235, 0.96)) !important;
  border-color: rgba(215, 163, 58, 0.48) !important;
  color: var(--cg-navy);
  box-shadow: 0 22px 52px rgba(82, 51, 7, 0.12);
}

body[data-page="calcium-gold"] .certificate-preview {
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 215, 122, 0.36), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #fff2cf 100%);
}

body[data-page="calcium-gold"] .certificate-card h4,
body[data-page="calcium-gold"] .certificate-card p {
  color: var(--cg-navy) !important;
}

body[data-page="calcium-gold"] .certificate-card p {
  color: #51647e !important;
}

body[data-page="calcium-gold"] .certificate-card .certificate-icon,
body[data-page="calcium-gold"] .contact-showcase .contact-ico,
body[data-page="calcium-gold"] .faq-number,
body[data-page="calcium-gold"] .gbadge {
  color: #f7d77a;
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%) !important;
  border-color: rgba(247, 215, 122, 0.45);
}

body[data-page="calcium-gold"] .certificate-card .certificate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-size: 1.35rem;
}

body[data-page="calcium-gold"] .mini-link,
body[data-page="calcium-gold"] .cc-price-now,
body[data-page="calcium-gold"] .faq-toggle {
  color: #9c6515 !important;
}

body[data-page="calcium-gold"] input,
body[data-page="calcium-gold"] textarea,
body[data-page="calcium-gold"] select {
  color: var(--cg-navy);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(215, 163, 58, 0.32);
}

body[data-page="calcium-gold"] input:focus,
body[data-page="calcium-gold"] textarea:focus,
body[data-page="calcium-gold"] select:focus {
  border-color: rgba(10, 36, 72, 0.46);
  box-shadow: 0 0 0 3px rgba(215, 163, 58, 0.18);
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 22px 22px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 68px;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    background:
      linear-gradient(180deg, #fff3bd 0%, #e8b957 52%, #c9902b 100%) !important;
    border-color: rgba(7, 29, 53, 0.16);
    box-shadow: 0 20px 42px rgba(84, 52, 8, 0.24);
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
    background: rgba(255, 250, 229, 0.42);
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 18px 18px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 64px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    font-size: 0.78rem !important;
  }
}

/* ===== Exact luxury navbar treatment ===== */
body[data-page="calcium-gold"] #nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  overflow: visible;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.68), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(255, 246, 197, 0.56), transparent 24%),
    linear-gradient(100deg, #b57919 0%, #f5d16d 16%, #d99e34 36%, #fff0a8 54%, #c78622 76%, #f0c962 100%);
  border-bottom: 1px solid rgba(255, 246, 196, 0.94);
  border-radius: 0 0 48px 48px;
  box-shadow:
    0 14px 34px rgba(84, 52, 8, 0.2),
    inset 0 -2px 0 rgba(255, 246, 196, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body[data-page="calcium-gold"] #nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 18%, rgba(255, 255, 255, 0.24) 48%, transparent 72%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
}

body[data-page="calcium-gold"] #nav .container {
  max-width: 1540px;
  min-height: 92px;
  padding-left: clamp(28px, 6vw, 126px);
  padding-right: clamp(28px, 5.4vw, 96px);
  gap: clamp(24px, 3vw, 48px);
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  align-self: stretch;
  display: flex;
  align-items: center;
}

body[data-page="calcium-gold"] .blogo {
  width: clamp(150px, 12vw, 210px);
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 2px 0 0;
}

body[data-page="calcium-gold"] .nav-logo-kicker {
  display: block;
  margin: 0 0 -4px 40px;
  color: var(--cg-navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.58rem, 0.58vw, 0.72rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="calcium-gold"] .brand-logo-img {
  width: clamp(132px, 10.5vw, 178px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 215, 0.82))
    drop-shadow(0 9px 12px rgba(72, 43, 5, 0.18));
}

body[data-page="calcium-gold"] #nav .navbar-collapse {
  display: flex !important;
  justify-content: space-between;
  gap: clamp(18px, 2.3vw, 34px);
}

body[data-page="calcium-gold"] .navbar-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 28px);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  min-height: 50px;
  padding: 0 !important;
  border-radius: 0;
  color: var(--cg-navy) !important;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.72rem, 0.72vw, 0.88rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: transparent !important;
  text-shadow: 0 1px 0 rgba(255, 250, 225, 0.36);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--cg-navy);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link.active::after {
  width: 34px;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover {
  color: #06172d !important;
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

body[data-page="calcium-gold"] .nav-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: var(--cg-navy) !important;
  background:
    linear-gradient(180deg, rgba(255, 240, 183, 0.72), rgba(232, 180, 64, 0.34));
  border: 1px solid rgba(122, 76, 9, 0.18);
  box-shadow:
    0 12px 24px rgba(87, 53, 7, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

body[data-page="calcium-gold"] .nav-icon-btn i {
  font-size: 1.02rem;
}

body[data-page="calcium-gold"] .nav-buy-now {
  min-width: 132px;
  min-height: 52px;
  gap: 10px;
  padding: 0 20px !important;
  border-radius: 18px;
  border: 1px solid rgba(255, 224, 128, 0.72);
  background:
    linear-gradient(180deg, #102f5e 0%, #071d35 100%) !important;
  color: var(--cg-gold-bright) !important;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow:
    0 16px 30px rgba(7, 29, 53, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body[data-page="calcium-gold"] .nav-buy-now:hover {
  color: #fff2bd !important;
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .nav-account {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 4px 0 8px;
  color: var(--cg-navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.68rem, 0.65vw, 0.78rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="calcium-gold"] .nav-account-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--cg-navy);
  background: rgba(255, 238, 179, 0.38);
  border: 1px solid rgba(122, 76, 9, 0.18);
}

@media (max-width: 1399.98px) {
  body[data-page="calcium-gold"] #nav .container {
    padding-left: 48px;
    padding-right: 48px;
    gap: 22px;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    gap: 14px;
  }

  body[data-page="calcium-gold"] .nav-buy-now {
    min-width: 118px;
    padding: 0 16px !important;
  }

  body[data-page="calcium-gold"] .nav-account {
    font-size: 0.68rem;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 28px 28px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 74px;
    padding-left: 18px;
    padding-right: 18px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 132px;
    height: 64px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    margin-left: 32px;
    font-size: 0.52rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 118px;
  }

  body[data-page="calcium-gold"] .navbar-toggler {
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 16px;
    color: var(--cg-navy);
    background:
      linear-gradient(180deg, rgba(255, 240, 183, 0.72), rgba(232, 180, 64, 0.34));
    border: 1px solid rgba(122, 76, 9, 0.18) !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, #fff3bd 0%, #e8b957 54%, #c9902b 100%) !important;
    border: 1px solid rgba(122, 76, 9, 0.18);
    box-shadow: 0 22px 42px rgba(84, 52, 8, 0.26);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    display: flex !important;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 10px !important;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
    display: none;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
    background: rgba(255, 250, 229, 0.38) !important;
  }

  body[data-page="calcium-gold"] .nav-actions {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 9px;
    width: 100%;
  }

  body[data-page="calcium-gold"] .nav-buy-now {
    width: 100%;
    min-width: 0;
  }

  body[data-page="calcium-gold"] .nav-account {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 250, 229, 0.28);
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 22px 22px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 118px;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 104px;
  }
}

/* ===== Keep original navbar controls, only recolor gold/navy + logo notch ===== */
body[data-page="calcium-gold"] #nav {
  overflow: visible;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(105deg, #b87918 0%, #f3cf67 18%, #d99f35 38%, #fff0a8 56%, #c98b27 78%, #edc45f 100%);
  border-bottom: 1px solid rgba(255, 246, 196, 0.92);
  border-radius: 0 0 34px 34px;
  box-shadow:
    0 14px 34px rgba(84, 52, 8, 0.18),
    inset 0 -2px 0 rgba(255, 246, 196, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page="calcium-gold"] #nav .container {
  min-height: 76px;
  max-width: 1340px;
  padding-left: 24px;
  padding-right: 24px;
  gap: 22px;
}

body[data-page="calcium-gold"] .blogo {
  position: relative;
  width: clamp(118px, 9.4vw, 142px);
  height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px 0 2px;
}

body[data-page="calcium-gold"] .blogo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  z-index: 0;
  width: 88px;
  height: 22px;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background:
    linear-gradient(135deg, rgba(255, 246, 196, 0.96), rgba(214, 157, 48, 0.95));
  filter: drop-shadow(0 9px 10px rgba(84, 52, 8, 0.16));
  pointer-events: none;
}

body[data-page="calcium-gold"] .nav-logo-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 -2px;
  color: var(--cg-navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page="calcium-gold"] .brand-logo-img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 215, 0.72))
    drop-shadow(0 8px 14px rgba(72, 43, 5, 0.2));
}

body[data-page="calcium-gold"] #nav .navbar-collapse {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
}

body[data-page="calcium-gold"] .navbar-nav {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px !important;
  border-radius: 8px;
  color: var(--cg-navy) !important;
  background: transparent !important;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 248, 212, 0.34);
  white-space: nowrap;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--cg-navy);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link.active::after,
body[data-page="calcium-gold"] .navbar-nav .nav-link:hover::after {
  width: 55%;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
  color: var(--cg-navy) !important;
  background: rgba(255, 250, 229, 0.28) !important;
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: 0;
  white-space: nowrap;
}

body[data-page="calcium-gold"] .nav-actions > * {
  order: initial !important;
}

body[data-page="calcium-gold"] .nav-icon-btn {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 10px;
  color: var(--cg-navy) !important;
  background: rgba(255, 245, 201, 0.36);
  border: 1px solid rgba(122, 76, 9, 0.18);
  box-shadow:
    0 10px 24px rgba(87, 53, 7, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

body[data-page="calcium-gold"] .nav-icon-btn i {
  font-size: 0.95rem;
}

body[data-page="calcium-gold"] .language-switcher {
  position: relative;
  z-index: 20;
}

body[data-page="calcium-gold"] .language-switcher .language-btn {
  width: auto;
  min-width: 62px;
  gap: 6px;
  padding: 0 10px;
  font-weight: 800;
}

body[data-page="calcium-gold"] .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  width: auto;
  min-width: 0;
  margin-left: 0;
  padding: 0 16px !important;
  border-radius: 8px;
  border: 1px solid rgba(247, 215, 122, 0.58);
  background: linear-gradient(180deg, #102f5e 0%, #071d35 100%) !important;
  color: #f7d77a !important;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 12px 30px rgba(7, 29, 53, 0.22);
}

body[data-page="calcium-gold"] .nav-cta:hover {
  color: #fff3bd !important;
  transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 22px 22px;
  }

  body[data-page="calcium-gold"] #nav .container {
    position: relative;
    min-height: 68px;
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 104px;
    height: 54px;
  }

  body[data-page="calcium-gold"] .blogo::after {
    bottom: -15px;
    width: 68px;
    height: 17px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    font-size: 0.44rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-width: 104px;
    max-height: 48px;
  }

  body[data-page="calcium-gold"] .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(122, 76, 9, 0.2) !important;
    border-radius: 10px;
    background: rgba(255, 245, 201, 0.42);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    z-index: 1000;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(122, 76, 9, 0.18);
    border-radius: 14px;
    background:
      linear-gradient(180deg, #fff3bd 0%, #e8b957 54%, #c9902b 100%) !important;
    box-shadow: 0 22px 42px rgba(84, 52, 8, 0.26);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    display: flex !important;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 12px !important;
    font-size: 0.94rem;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
    display: none;
  }

  body[data-page="calcium-gold"] .nav-actions {
    display: grid;
    grid-template-columns: 42px 62px minmax(150px, 1fr);
    gap: 8px;
    width: 100%;
    margin: 2px 0 0;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .nav-cta {
    min-height: 42px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 42px;
    height: 42px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 62px;
    height: 42px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    width: 100%;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav .container {
    min-height: 64px;
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 98px;
    height: 50px;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-width: 98px;
    max-height: 44px;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 40px 58px minmax(0, 1fr);
    gap: 7px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 40px;
    height: 40px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 58px;
    min-width: 58px;
    height: 40px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-height: 40px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 0.8rem !important;
  }
}

/* ===== Navbar notch fit pass ===== */
body[data-page="calcium-gold"] {
  --gold-light: #f8e19a;
  --gold-main: #d7a43a;
  --gold-dark: #9b6518;
  --navy: #061b49;
  --navy-dark: #03112f;
  --cream-bg: #fff1c8;
}

body[data-page="calcium-gold"] #nav {
  --cg-navbar-gold-gradient: linear-gradient(
    180deg,
    #f8e19a 0%,
    #e1b857 38%,
    #c58a2a 72%,
    #8e5716 100%
  );
  --cg-navbar-notch-gradient: linear-gradient(
    180deg,
    #8e5716 0%,
    #c58a2a 45%,
    #f6d36a 100%
  );
  background: var(--cg-navbar-gold-gradient) !important;
  border-bottom: 2px solid #f6d36a;
  border-radius: 0 0 42px 42px;
  box-shadow:
    0 8px 24px rgba(80, 45, 5, 0.25),
    inset 0 1px 0 rgba(255, 248, 205, 0.62),
    inset 0 -1px 0 rgba(117, 65, 8, 0.22);
}

body[data-page="calcium-gold"] #nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 26%, rgba(255, 245, 187, 0.18) 54%, transparent 78%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.28), transparent 28%);
  mix-blend-mode: soft-light;
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: visible;
}

body[data-page="calcium-gold"] .blogo {
  z-index: 2;
}

body[data-page="calcium-gold"] .blogo::after {
  display: none;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  color: var(--navy) !important;
  font-family: "Montserrat", "Inter", "Poppins", sans-serif;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 245, 191, 0.36);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  background: var(--navy);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
  color: var(--navy) !important;
  background: rgba(255, 241, 200, 0.3) !important;
}

body[data-page="calcium-gold"] .nav-icon-btn {
  color: var(--navy) !important;
  background: rgba(255, 241, 200, 0.5);
  border: 1px solid rgba(246, 211, 106, 0.72);
  box-shadow:
    0 6px 14px rgba(80, 45, 5, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page="calcium-gold"] .nav-cta,
body[data-page="calcium-gold"] .nav-buy-now {
  background: linear-gradient(180deg, #09285f 0%, #03112f 100%) !important;
  color: #f8d76a !important;
  border: 1px solid #d7a43a;
  box-shadow: 0 6px 14px rgba(3, 17, 47, 0.35);
}

body[data-page="calcium-gold"] .nav-cta:hover,
body[data-page="calcium-gold"] .nav-buy-now:hover {
  color: #ffe58b !important;
  box-shadow:
    0 8px 18px rgba(3, 17, 47, 0.38),
    0 0 0 3px rgba(248, 215, 106, 0.18);
}

body[data-page="calcium-gold"] #nav .navbar-brand::before,
body[data-page="calcium-gold"] #nav .navbar-brand::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

body[data-page="calcium-gold"] #nav .navbar-brand::before {
  bottom: -14px;
  z-index: 1;
  width: 124px;
  height: 26px;
  transform: translateX(-50%);
  clip-path: none;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    180deg,
    #8e5716 0%,
    #a96f1d 42%,
    #d7a43a 100%
  );
  box-shadow:
    0 10px 18px rgba(80, 45, 5, 0.16),
    inset 0 -1px 0 rgba(255, 231, 147, 0.36);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  display: none;
}

body[data-page="calcium-gold"] #hero.banner-hero {
  margin-top: -42px;
  border-top: 0;
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 28px 28px;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    background: var(--cg-navbar-gold-gradient) !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    bottom: -10px;
    width: 90px;
    height: 18px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    width: 74px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    margin-top: -28px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 0 22px 22px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    bottom: -8px;
    width: 76px;
    height: 14px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    width: 62px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    margin-top: -22px;
  }
}

/* ===== Selective premium section image backgrounds ===== */
body[data-page="calcium-gold"] #product-intro,
body[data-page="calcium-gold"] #ingredients,
body[data-page="calcium-gold"] #brand-activities,
body[data-page="calcium-gold"] #usage-guide,
body[data-page="calcium-gold"] #order-form,
body[data-page="calcium-gold"] #contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #fff7e6;
  background-repeat: no-repeat;
  background-size: cover;
}

body[data-page="calcium-gold"] #product-intro {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.94) 0%, rgba(255, 247, 230, 0.86) 48%, rgba(255, 241, 200, 0.72) 100%),
    url("../img/backgrounds/cg-bg-ingredients.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #ingredients.section-light-gold {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.93) 0%, rgba(255, 247, 230, 0.86) 54%, rgba(255, 253, 247, 0.91) 100%),
    url("../img/backgrounds/cg-bg-ingredients.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #brand-activities.section-light-gold {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.9) 0%, rgba(255, 241, 200, 0.78) 100%),
    url("../img/backgrounds/cg-bg-contact.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #usage-guide.usage-section.section-light-gold {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.95) 0%, rgba(255, 248, 230, 0.87) 52%, rgba(255, 241, 200, 0.72) 100%),
    url("../img/backgrounds/cg-bg-usage.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #order-form.section-light-gold {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.91) 0%, rgba(255, 247, 230, 0.84) 58%, rgba(255, 253, 247, 0.9) 100%),
    url("../img/backgrounds/cg-bg-order.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #contact-section.contact-showcase.section-light-gold {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.94) 0%, rgba(255, 247, 230, 0.83) 48%, rgba(255, 241, 200, 0.7) 100%),
    url("../img/backgrounds/cg-bg-contact.webp") center center / cover no-repeat !important;
}

body[data-page="calcium-gold"] #product-intro .container,
body[data-page="calcium-gold"] #ingredients .container,
body[data-page="calcium-gold"] #brand-activities .container,
body[data-page="calcium-gold"] #usage-guide .container,
body[data-page="calcium-gold"] #order-form .container,
body[data-page="calcium-gold"] #contact-section .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #product-intro,
  body[data-page="calcium-gold"] #ingredients,
  body[data-page="calcium-gold"] #brand-activities,
  body[data-page="calcium-gold"] #usage-guide,
  body[data-page="calcium-gold"] #order-form,
  body[data-page="calcium-gold"] #contact-section {
    background-position: center top !important;
  }
}

/* ===== Mobile compact contact + footer pass ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #contact-section.contact-showcase {
    overflow: visible;
    padding: 46px 0 72px;
  }

  body[data-page="calcium-gold"] .contact-kicker {
    font-size: 1.14rem;
    margin-bottom: 8px;
  }

  body[data-page="calcium-gold"] .contact-title {
    max-width: 330px;
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  body[data-page="calcium-gold"] .contact-description {
    max-width: 340px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 430px;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-mini {
    min-height: 86px;
    padding: 12px 10px;
    gap: 9px;
    border-radius: 12px;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-ico {
    width: 34px;
    height: 34px;
    font-size: 0.86rem;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-body strong {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-body span {
    font-size: 0.6rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  body[data-page="calcium-gold"] .site-footer {
    padding-bottom: 62px;
  }

  body[data-page="calcium-gold"] .footer-main {
    padding-top: 24px;
    padding-bottom: 8px;
  }

  body[data-page="calcium-gold"] .site-footer .footer-main .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 16px;
    margin: 0;
  }

  body[data-page="calcium-gold"] .site-footer .footer-column,
  body[data-page="calcium-gold"] .site-footer .footer-column:first-child,
  body[data-page="calcium-gold"] .site-footer .footer-column:nth-child(3),
  body[data-page="calcium-gold"] .site-footer .footer-contact {
    width: auto;
    min-height: 0;
    padding: 0 !important;
    border: 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-brand,
  body[data-page="calcium-gold"] .site-footer .footer-contact {
    grid-column: 1 / -1;
  }

  body[data-page="calcium-gold"] .site-footer .fnm {
    font-size: 1.68rem;
    line-height: 1.05;
  }

  body[data-page="calcium-gold"] .site-footer .fdesc {
    max-width: none;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-page="calcium-gold"] .site-footer .fsoc {
    margin-top: 10px;
    gap: 8px;
  }

  body[data-page="calcium-gold"] .site-footer .fsoc a {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  body[data-page="calcium-gold"] .site-footer .ftit {
    margin-bottom: 9px;
    padding-bottom: 8px;
    font-size: 0.88rem;
  }

  body[data-page="calcium-gold"] .site-footer .flinks li {
    margin-bottom: 6px;
  }

  body[data-page="calcium-gold"] .site-footer .flinks a {
    gap: 6px;
    font-size: 0.76rem;
    line-height: 1.16;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-top: 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact .ftit {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  body[data-page="calcium-gold"] .site-footer .fci {
    min-width: 0;
    gap: 6px;
    margin-bottom: 0;
    padding: 7px 6px;
    border: 1px solid rgba(213, 161, 58, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
  }

  body[data-page="calcium-gold"] .site-footer .fciico {
    width: 24px;
    height: 24px;
    font-size: 0.62rem;
    flex: 0 0 24px;
  }

  body[data-page="calcium-gold"] .site-footer .fciinfo strong {
    font-size: 0.66rem;
  }

  body[data-page="calcium-gold"] .site-footer .fciinfo span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.54rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-page="calcium-gold"] .site-footer .fbot {
    padding: 9px 0;
  }

  body[data-page="calcium-gold"] .site-footer .fbot p,
  body[data-page="calcium-gold"] .site-footer .fbot a {
    font-size: 0.64rem;
    line-height: 1.25;
  }
}

/* ===== Restore usage preparation steps ===== */
body[data-page="calcium-gold"] #usage-guide .usage-responsive-layout {
  display: block;
  margin-top: 18px;
}

body[data-page="calcium-gold"] #usage-guide .usage-hero-mobile {
  display: none;
}

body[data-page="calcium-gold"] #usage-guide .usteps-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

body[data-page="calcium-gold"] #usage-guide .ustep-card2 {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(215, 164, 58, 0.34);
  box-shadow:
    0 14px 30px rgba(8, 29, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

body[data-page="calcium-gold"] #usage-guide .ustep-t {
  color: var(--navy, #061b49);
}

body[data-page="calcium-gold"] #usage-guide .ustep-d {
  color: #475569;
}

@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #usage-guide .usage-responsive-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(220px, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 18px;
  }

  body[data-page="calcium-gold"] #usage-guide .usage-hero-mobile {
    display: flex;
  }

  body[data-page="calcium-gold"] #usage-guide .usteps-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #usage-guide .usage-responsive-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="calcium-gold"] #usage-guide .usage-hero-mobile {
    max-width: 260px;
    margin: 0 auto;
  }

  body[data-page="calcium-gold"] #usage-guide .usteps-row {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  body[data-page="calcium-gold"] #usage-guide .usteps-row:has(.ustep-card2.is-image) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2 {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon desc";
    min-height: 76px;
    padding: 11px 13px 11px 12px;
    column-gap: 11px;
    border-radius: 13px;
    text-align: left;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2.is-image {
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2.is-image .ustep-fullimg {
    width: 100%;
    height: auto;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-badge {
    top: -9px;
    left: 22px;
    width: 22px;
    height: 22px;
    font-size: 0.62rem;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-ic {
    grid-area: icon;
    width: 32px;
    height: 32px;
    margin: 0;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-ic.is-empty i {
    font-size: 1.2rem;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-t {
    grid-area: title;
    margin: 0 0 3px;
    font-size: 0.88rem;
    line-height: 1.18;
  }

body[data-page="calcium-gold"] #usage-guide .ustep-d {
    grid-area: desc;
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.28;
  }
}

/* ===== Reference-matched luxury taskbar ===== */
body[data-page="calcium-gold"] {
  --cg-taskbar-navy: #061b35;
  --cg-taskbar-navy-2: #0a2748;
  --cg-taskbar-ink: #7b5217;
  --cg-taskbar-gold-1: #fff2bd;
  --cg-taskbar-gold-2: #f4cd62;
  --cg-taskbar-gold-3: #c98b22;
  --cg-taskbar-gold-4: #8f5712;
}

body[data-page="calcium-gold"] #nav {
  position: sticky;
  top: 18px;
  z-index: 1200;
  width: min(calc(100% - 52px), 1840px);
  min-height: 128px;
  margin: 18px auto 0;
  overflow: visible;
  border: 1px solid rgba(183, 119, 24, 0.62);
  border-radius: 52px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.92), transparent 15%),
    radial-gradient(circle at 73% 25%, rgba(255, 255, 255, 0.44), transparent 31%),
    linear-gradient(90deg, #fde89d 0%, #fff7d3 38%, #fee8a4 68%, #eab954 100%) !important;
  box-shadow:
    0 28px 44px rgba(64, 38, 7, 0.22),
    0 8px 0 rgba(176, 113, 20, 0.16),
    inset 0 0 0 2px rgba(255, 255, 255, 0.52),
    inset 0 -4px 0 rgba(157, 95, 15, 0.28),
    inset 0 4px 0 rgba(255, 247, 202, 0.78);
}

body[data-page="calcium-gold"] #nav.scrolled {
  top: 12px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.86), transparent 15%),
    radial-gradient(circle at 73% 25%, rgba(255, 255, 255, 0.38), transparent 31%),
    linear-gradient(90deg, #fde89d 0%, #fff7d3 38%, #fee8a4 68%, #eab954 100%) !important;
  box-shadow:
    0 22px 36px rgba(64, 38, 7, 0.2),
    0 6px 0 rgba(176, 113, 20, 0.14),
    inset 0 0 0 2px rgba(255, 255, 255, 0.48),
    inset 0 -4px 0 rgba(157, 95, 15, 0.25),
    inset 0 4px 0 rgba(255, 247, 202, 0.72);
}

body[data-page="calcium-gold"] #nav::before,
body[data-page="calcium-gold"] #nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body[data-page="calcium-gold"] #nav::before {
  inset: 7px;
  z-index: 0;
  border: 2px solid rgba(214, 151, 36, 0.58);
  border-radius: 45px;
  background:
    radial-gradient(circle at 2% 10%, rgba(122, 75, 10, 0.22) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 97% 13%, rgba(122, 75, 10, 0.16) 0 1px, transparent 2px 100%),
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.42) 39%, transparent 54%),
    repeating-linear-gradient(96deg, rgba(118, 73, 11, 0.035) 0 1px, transparent 1px 7px);
  box-shadow:
    inset 0 2px 0 rgba(255, 249, 218, 0.86),
    inset 0 -2px 0 rgba(125, 74, 10, 0.18);
}

body[data-page="calcium-gold"] #nav::after {
  left: 268px;
  right: 40px;
  bottom: -12px;
  z-index: 1;
  height: 52px;
  border-radius: 0 0 52% 52%;
  border-bottom: 8px solid rgba(161, 94, 16, 0.76);
  background:
    radial-gradient(85% 72% at 50% -14%, transparent 63%, rgba(255, 234, 147, 0.74) 64% 69%, rgba(157, 91, 13, 0.58) 72%, transparent 75%);
  filter: drop-shadow(0 10px 9px rgba(67, 39, 5, 0.18));
}

body[data-page="calcium-gold"] #nav .container {
  position: relative;
  z-index: 2;
  max-width: none;
  min-height: 126px;
  padding: 0 34px 0 0;
  gap: clamp(18px, 2.4vw, 54px);
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  position: relative;
  align-self: stretch;
  flex: 0 0 clamp(250px, 25vw, 455px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  margin: 0;
  padding: 0 58px 0 36px;
  overflow: visible;
  border-radius: 48px 96px 86px 48px;
  background:
    radial-gradient(circle at 30% 28%, rgba(42, 79, 116, 0.42), transparent 32%),
    linear-gradient(145deg, #0b2949 0%, #071b33 52%, #031024 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 219, 111, 0.86),
    inset 0 -12px 26px rgba(0, 0, 0, 0.34),
    10px 0 28px rgba(105, 61, 8, 0.28);
}

body[data-page="calcium-gold"] #nav .navbar-brand::before {
  left: auto;
  right: -76px;
  bottom: -17px;
  z-index: -1;
  width: 190px;
  height: 130px;
  transform: none;
  clip-path: ellipse(74% 54% at 18% 31%);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 236, 144, 0.96), rgba(203, 136, 31, 0.88) 52%, rgba(138, 82, 14, 0.66));
  box-shadow:
    inset 10px 0 0 rgba(255, 248, 207, 0.62),
    8px 14px 22px rgba(79, 45, 5, 0.22);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  display: block;
  left: 18px;
  right: auto;
  top: 14px;
  z-index: 1;
  width: calc(100% - 88px);
  height: calc(100% - 26px);
  border-radius: 42px 86px 72px 42px;
  border: 1px solid rgba(255, 230, 139, 0.5);
  background:
    radial-gradient(circle at 9% 9%, rgba(255, 226, 124, 0.72) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 92% 90%, rgba(255, 226, 124, 0.48) 0 1px, transparent 2px 100%);
  opacity: 0.9;
}

body[data-page="calcium-gold"] .blogo {
  position: relative;
  z-index: 3;
  width: clamp(170px, 16vw, 270px);
  height: 105px;
  padding: 0;
  gap: 3px;
  align-items: center;
  justify-content: center;
}

body[data-page="calcium-gold"] .blogo::after {
  display: none;
}

body[data-page="calcium-gold"] .nav-logo-kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 -7px;
  color: #f7d56e;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.64rem, 0.72vw, 0.86rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

body[data-page="calcium-gold"] .nav-logo-kicker::before {
  content: "\f521";
  display: block;
  margin: 0 auto 6px;
  color: #ffdf78;
  font-family: "Font Awesome 6 Pro";
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="calcium-gold"] .brand-logo-img {
  position: relative;
  z-index: 2;
  width: clamp(160px, 15.2vw, 250px);
  max-width: none;
  max-height: 82px;
  object-fit: contain;
  filter:
    brightness(1.16)
    contrast(1.08)
    saturate(1.14)
    drop-shadow(0 2px 0 rgba(255, 247, 193, 0.36))
    drop-shadow(0 9px 9px rgba(0, 0, 0, 0.42));
}

body[data-page="calcium-gold"] #nav .navbar-collapse {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 34px);
  min-width: 0;
}

body[data-page="calcium-gold"] .navbar-nav {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 31px);
  min-width: 0;
}

body[data-page="calcium-gold"] .navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

body[data-page="calcium-gold"] .navbar-nav .nav-item:not(:last-child)::after {
  content: "\2726";
  position: absolute;
  top: 50%;
  right: calc(clamp(14px, 1.35vw, 31px) * -0.68);
  transform: translate(50%, -50%);
  color: #d19322;
  font-size: 0.78rem;
  text-shadow: 0 1px 0 rgba(255, 249, 220, 0.8);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 6px !important;
  border-radius: 999px;
  background: transparent !important;
  color: var(--cg-taskbar-ink) !important;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: clamp(0.86rem, 1.02vw, 1.12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 248, 213, 0.84);
  white-space: nowrap;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg, #9b6414 0%, #e9bd4c 38%, #fff0a7 52%, #b97714 100%);
  box-shadow:
    0 3px 6px rgba(103, 61, 8, 0.24),
    inset 0 1px 0 rgba(255, 249, 215, 0.62);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link.active::after,
body[data-page="calcium-gold"] .navbar-nav .nav-link:hover::after {
  width: 72%;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
  color: #55360e !important;
  background: transparent !important;
  transform: translateY(-1px);
}

body[data-page="calcium-gold"] .nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: 0;
  white-space: nowrap;
}

body[data-page="calcium-gold"] .nav-actions > * {
  order: initial !important;
}

body[data-page="calcium-gold"] .nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  min-height: 62px;
  border: 1px solid rgba(198, 130, 24, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(180deg, #fff0b6 0%, #f5cf67 54%, #d59a2a 100%) !important;
  color: var(--cg-taskbar-ink) !important;
  box-shadow:
    0 14px 22px rgba(110, 65, 8, 0.18),
    inset 0 0 0 2px rgba(255, 249, 220, 0.48),
    inset 0 -3px 0 rgba(132, 78, 11, 0.18);
}

body[data-page="calcium-gold"] .nav-icon-btn:hover {
  color: #4d310d !important;
  transform: translateY(-2px);
  box-shadow:
    0 17px 25px rgba(110, 65, 8, 0.22),
    inset 0 0 0 2px rgba(255, 249, 220, 0.58),
    inset 0 -3px 0 rgba(132, 78, 11, 0.18);
}

body[data-page="calcium-gold"] .nav-icon-btn i {
  font-size: 1.34rem;
}

body[data-page="calcium-gold"] .cart-dot {
  top: 4px;
  right: 3px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 2px solid #f6ce62;
  background: var(--cg-taskbar-navy-2);
  color: #ffe27b;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 18px;
  box-shadow: 0 3px 8px rgba(6, 27, 53, 0.28);
}

body[data-page="calcium-gold"] .language-switcher {
  position: relative;
  z-index: 20;
}

body[data-page="calcium-gold"] .language-switcher .language-btn {
  width: auto;
  min-width: 126px;
  gap: 10px;
  padding: 0 21px;
  border-radius: 999px;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

body[data-page="calcium-gold"] .language-switcher .language-btn::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-size: 0.78rem;
  font-weight: 900;
}

body[data-page="calcium-gold"] .language-btn [data-current-language] {
  color: var(--cg-taskbar-ink) !important;
  font-weight: 900;
}

body[data-page="calcium-gold"] .nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 196px;
  min-height: 62px;
  padding: 0 28px !important;
  border: 2px solid rgba(246, 207, 98, 0.78);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 16%, rgba(36, 78, 122, 0.86), transparent 34%),
    linear-gradient(180deg, #0d315d 0%, #061b35 58%, #041327 100%) !important;
  color: #f9d86f !important;
  font-family: "svn-omnes-bold", "Nunito", "Poppins", sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.04rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    0 15px 25px rgba(6, 27, 53, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -4px 0 rgba(0, 0, 0, 0.24);
}

body[data-page="calcium-gold"] .nav-cta::after {
  position: static;
  content: "\f054";
  width: auto;
  height: auto;
  transform: none;
  background: transparent;
  color: #f9d86f;
  font-family: "Font Awesome 6 Pro";
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: none;
}

body[data-page="calcium-gold"] .nav-cta i {
  display: none;
}

body[data-page="calcium-gold"] .nav-cta:hover {
  color: #fff0a3 !important;
  transform: translateY(-2px);
  box-shadow:
    0 18px 28px rgba(6, 27, 53, 0.3),
    0 0 0 4px rgba(246, 207, 98, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -4px 0 rgba(0, 0, 0, 0.24);
}

body[data-page="calcium-gold"] .language-menu {
  top: calc(100% + 14px);
  right: 0;
  border-color: rgba(190, 124, 23, 0.38);
  border-radius: 18px;
  background: #fff5c9;
  box-shadow: 0 18px 38px rgba(77, 46, 7, 0.22);
}

body[data-page="calcium-gold"] #hero.banner-hero {
  margin-top: -82px;
  padding-top: 122px;
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] #nav {
    width: min(calc(100% - 34px), 1540px);
    min-height: 112px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 110px;
    gap: 20px;
    padding-right: 22px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: clamp(220px, 22vw, 360px);
    min-height: 110px;
    padding-left: 28px;
    padding-right: 46px;
  }

  body[data-page="calcium-gold"] .blogo {
    height: 92px;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-height: 72px;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    gap: clamp(10px, 1vw, 18px);
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-item:not(:last-child)::after {
    right: calc(clamp(10px, 1vw, 18px) * -0.7);
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  }

  body[data-page="calcium-gold"] .nav-actions {
    gap: 10px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .nav-cta {
    min-height: 54px;
    height: 54px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 54px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    min-width: 108px;
    padding: 0 16px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-width: 168px;
    padding: 0 22px !important;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    position: fixed;
    top: 10px;
    left: 12px;
    width: min(calc(100vw - 24px), 720px);
    min-height: 78px;
    margin: 10px 0 0;
    border-radius: 32px;
  }

  body[data-page="calcium-gold"] #nav::before {
    inset: 5px;
    border-radius: 27px;
  }

  body[data-page="calcium-gold"] #nav::after {
    left: 128px;
    right: 24px;
    bottom: -8px;
    height: 26px;
    border-bottom-width: 5px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 76px;
    padding: 0 14px 0 0;
    gap: 10px;
  }

  body[data-page="calcium-gold"] #nav .container::after {
    content: "\f0c9";
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 1px solid rgba(198, 130, 24, 0.5);
    border-radius: 999px;
    background:
      radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.82), transparent 24%),
      linear-gradient(180deg, #fff0b6 0%, #f5cf67 54%, #d59a2a 100%);
    color: var(--cg-taskbar-navy);
    font-family: "Font Awesome 6 Pro";
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    box-shadow:
      0 10px 18px rgba(110, 65, 8, 0.16),
      inset 0 0 0 2px rgba(255, 249, 220, 0.48);
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 178px;
    min-height: 76px;
    padding: 0 32px 0 20px;
    border-radius: 30px 60px 56px 30px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -38px;
    bottom: -9px;
    width: 92px;
    height: 76px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    top: 8px;
    left: 10px;
    width: calc(100% - 42px);
    height: calc(100% - 16px);
    border-radius: 25px 52px 46px 25px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 120px;
    height: 64px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    margin-bottom: -5px;
    font-size: 0.46rem;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker::before {
    margin-bottom: 3px;
    font-size: 0.72rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 116px;
    max-height: 48px;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: relative;
    z-index: 30;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(198, 130, 24, 0.5) !important;
    border-radius: 999px;
    background:
      radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.82), transparent 24%),
      linear-gradient(180deg, #fff0b6 0%, #f5cf67 54%, #d59a2a 100%);
    box-shadow:
      0 10px 18px rgba(110, 65, 8, 0.16),
      inset 0 0 0 2px rgba(255, 249, 220, 0.48);
  }

  body[data-page="calcium-gold"] .navbar-toggler i {
    color: var(--cg-taskbar-navy) !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 1000;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(183, 119, 24, 0.56);
    border-radius: 24px;
    background:
      radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.78), transparent 20%),
      linear-gradient(180deg, #fff3bf 0%, #f1c65f 58%, #d49a2a 100%) !important;
    box-shadow: 0 22px 42px rgba(84, 52, 8, 0.26);
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    display: flex !important;
  }

  body[data-page="calcium-gold"] .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-item {
    display: block;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-item::after {
    display: none;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 13px !important;
    font-size: 0.96rem;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
    display: none;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link.active,
  body[data-page="calcium-gold"] .navbar-nav .nav-link:hover {
    background: rgba(255, 248, 221, 0.42) !important;
  }

  body[data-page="calcium-gold"] .nav-actions {
    display: grid;
    grid-template-columns: 54px 112px minmax(0, 1fr);
    gap: 9px;
    width: 100%;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .language-switcher .language-btn,
  body[data-page="calcium-gold"] .nav-cta {
    height: 48px;
    min-height: 48px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 48px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    min-width: 112px;
    width: 112px;
    padding: 0 13px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    width: 100%;
    min-width: 0;
    padding: 0 14px !important;
    font-size: 0.9rem !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    margin-top: -52px;
    padding-top: 86px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    left: 8px;
    width: calc(100vw - 16px);
    min-height: 68px;
    border-radius: 26px;
  }

  body[data-page="calcium-gold"] #nav::before {
    border-radius: 21px;
  }

  body[data-page="calcium-gold"] #nav::after {
    left: 110px;
    right: 16px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 66px;
    padding-right: 10px;
  }

  body[data-page="calcium-gold"] #nav .container::after {
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 146px;
    min-height: 66px;
    padding-left: 14px;
    padding-right: 28px;
    border-radius: 24px 48px 44px 24px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -32px;
    width: 76px;
    height: 62px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 98px;
    height: 56px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    font-size: 0.38rem;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker::before {
    font-size: 0.62rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 96px;
    max-height: 40px;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 30;
    display: flex !important;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    top: calc(100% + 11px);
    padding: 12px;
    border-radius: 20px;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 44px 96px minmax(0, 1fr);
    gap: 7px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .language-switcher .language-btn,
  body[data-page="calcium-gold"] .nav-cta {
    height: 44px;
    min-height: 44px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn {
    width: 44px;
  }

  body[data-page="calcium-gold"] .nav-icon-btn i {
    font-size: 1.02rem;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 96px;
    min-width: 96px;
    gap: 6px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  body[data-page="calcium-gold"] .nav-cta {
    gap: 6px;
    padding: 0 11px !important;
    font-size: 0.82rem !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    margin-top: -44px;
    padding-top: 74px;
  }
}

/* ===== Ornate taskbar detail pass ===== */
body[data-page="calcium-gold"] #nav {
  border-color: rgba(130, 75, 8, 0.42);
  background:
    radial-gradient(circle at 3.5% 15%, rgba(126, 76, 10, 0.28) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 5.8% 25%, rgba(255, 238, 154, 0.54) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 96.5% 14%, rgba(126, 76, 10, 0.22) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 94.2% 25%, rgba(255, 238, 154, 0.48) 0 1px, transparent 2px 100%),
    radial-gradient(52% 96% at 52% 7%, rgba(255, 255, 255, 0.62), transparent 42%),
    radial-gradient(60% 116% at 85% 82%, rgba(184, 117, 22, 0.2), transparent 58%),
    repeating-linear-gradient(92deg, rgba(132, 78, 10, 0.035) 0 1px, transparent 1px 10px),
    linear-gradient(90deg, #f4c658 0%, #fff3bd 18%, #fff9df 43%, #fee5a0 70%, #dfa93e 100%) !important;
  box-shadow:
    0 31px 48px rgba(64, 38, 7, 0.24),
    0 8px 0 rgba(176, 113, 20, 0.16),
    inset 0 0 0 1px rgba(119, 70, 9, 0.24),
    inset 0 0 0 5px rgba(255, 249, 216, 0.34),
    inset 0 -4px 0 rgba(157, 95, 15, 0.3),
    inset 0 4px 0 rgba(255, 247, 202, 0.86);
}

body[data-page="calcium-gold"] #nav::before {
  border-color: rgba(185, 116, 17, 0.62);
  background:
    radial-gradient(18px 18px at 24px 22px, transparent 44%, rgba(159, 95, 14, 0.36) 47% 52%, transparent 56%),
    radial-gradient(18px 18px at calc(100% - 24px) 22px, transparent 44%, rgba(159, 95, 14, 0.3) 47% 52%, transparent 56%),
    radial-gradient(20px 20px at 24px calc(100% - 22px), transparent 44%, rgba(159, 95, 14, 0.28) 47% 52%, transparent 56%),
    radial-gradient(20px 20px at calc(100% - 24px) calc(100% - 22px), transparent 44%, rgba(159, 95, 14, 0.28) 47% 52%, transparent 56%),
    linear-gradient(90deg, rgba(132, 79, 12, 0.38), transparent 5%, transparent 95%, rgba(132, 79, 12, 0.34)),
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.52) 39%, transparent 54%),
    repeating-linear-gradient(96deg, rgba(118, 73, 11, 0.045) 0 1px, transparent 1px 7px);
}

body[data-page="calcium-gold"] #nav::after {
  height: 58px;
  border-bottom-width: 10px;
  background:
    radial-gradient(42% 70% at 54% -9%, transparent 61%, rgba(255, 248, 203, 0.86) 63% 66%, rgba(202, 132, 26, 0.7) 70%, transparent 74%),
    linear-gradient(90deg, transparent, rgba(255, 244, 190, 0.72) 24%, rgba(145, 82, 10, 0.36) 50%, rgba(255, 244, 190, 0.72) 76%, transparent);
  filter:
    drop-shadow(0 11px 9px rgba(67, 39, 5, 0.2))
    drop-shadow(0 -1px 0 rgba(255, 245, 192, 0.72));
}

body[data-page="calcium-gold"] #nav .container::before {
  content: "";
  position: absolute;
  left: clamp(350px, 28vw, 560px);
  right: 250px;
  top: 20px;
  z-index: -1;
  height: 68px;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(42px 20px at 18% 50%, transparent 45%, rgba(174, 108, 16, 0.22) 48% 52%, transparent 55%),
    radial-gradient(42px 20px at 82% 50%, transparent 45%, rgba(174, 108, 16, 0.18) 48% 52%, transparent 55%),
    radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.52), transparent 62%),
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 15px, rgba(151, 91, 12, 0.08) 16px 17px, transparent 18px 34px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  border: 1px solid rgba(255, 218, 104, 0.62);
  background:
    radial-gradient(120px 64px at 28% 18%, rgba(44, 91, 132, 0.45), transparent 70%),
    radial-gradient(100px 48px at 78% 92%, rgba(255, 220, 95, 0.16), transparent 72%),
    repeating-linear-gradient(116deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(145deg, #0c2c50 0%, #071b33 48%, #020e20 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 218, 104, 0.84),
    inset 0 0 0 7px rgba(255, 238, 151, 0.08),
    inset 0 -14px 28px rgba(0, 0, 0, 0.36),
    12px 0 28px rgba(105, 61, 8, 0.3);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  border-color: rgba(255, 227, 127, 0.62);
  background:
    radial-gradient(16px 16px at 8% 10%, transparent 42%, rgba(255, 221, 103, 0.74) 45% 51%, transparent 55%),
    radial-gradient(16px 16px at 92% 90%, transparent 42%, rgba(255, 221, 103, 0.54) 45% 51%, transparent 55%),
    linear-gradient(90deg, rgba(255, 230, 115, 0.28), transparent 18%, transparent 82%, rgba(255, 230, 115, 0.22));
}

body[data-page="calcium-gold"] .blogo::before,
body[data-page="calcium-gold"] .blogo::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 30px;
  pointer-events: none;
  opacity: 0.86;
  background:
    radial-gradient(16px 16px at 9px 20px, transparent 44%, rgba(255, 217, 91, 0.9) 47% 52%, transparent 56%),
    radial-gradient(18px 18px at 24px 13px, transparent 42%, rgba(255, 238, 150, 0.75) 45% 50%, transparent 54%),
    linear-gradient(90deg, rgba(255, 221, 104, 0.82), transparent 72%);
  -webkit-mask-image: radial-gradient(100% 100% at 0 100%, #000 0 54%, transparent 56%);
  mask-image: radial-gradient(100% 100% at 0 100%, #000 0 54%, transparent 56%);
}

body[data-page="calcium-gold"] .blogo::before {
  left: -12px;
  top: 8px;
}

body[data-page="calcium-gold"] .blogo::after {
  right: -13px;
  bottom: 8px;
  display: block;
  transform: rotate(180deg);
}

body[data-page="calcium-gold"] .nav-logo-kicker::after {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  margin: 5px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 120, 0.9), transparent);
  box-shadow: 0 1px 5px rgba(255, 216, 93, 0.45);
}

body[data-page="calcium-gold"] .navbar-nav .nav-item:not(:last-child)::after {
  content: "\2726";
  color: #bd7a13;
  font-size: 0.9rem;
  filter: drop-shadow(0 1px 0 rgba(255, 248, 214, 0.9));
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  top: 8px;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(153, 88, 10, 0.36), transparent);
  transition: opacity 0.2s ease;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover::before,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active::before {
  opacity: 1;
}

body[data-page="calcium-gold"] .nav-icon-btn,
body[data-page="calcium-gold"] .language-switcher .language-btn {
  border-width: 2px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.96), transparent 22%),
    radial-gradient(circle at 78% 92%, rgba(143, 83, 10, 0.22), transparent 36%),
    linear-gradient(180deg, #fff3c6 0%, #f3c75b 49%, #c98a22 100%) !important;
  box-shadow:
    0 16px 24px rgba(110, 65, 8, 0.2),
    inset 0 0 0 2px rgba(255, 249, 220, 0.52),
    inset 0 6px 12px rgba(255, 255, 255, 0.28),
    inset 0 -4px 0 rgba(132, 78, 11, 0.2);
}

body[data-page="calcium-gold"] .nav-icon-btn::before,
body[data-page="calcium-gold"] .language-switcher .language-btn::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid rgba(145, 84, 10, 0.18);
  pointer-events: none;
}

body[data-page="calcium-gold"] .nav-cta {
  border-color: rgba(255, 222, 111, 0.88);
  background:
    radial-gradient(circle at 18% 12%, rgba(68, 121, 170, 0.72), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(0, 0, 0, 0.22), transparent 34%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #0e355f 0%, #061b35 58%, #030f20 100%) !important;
  box-shadow:
    0 16px 26px rgba(6, 27, 53, 0.3),
    inset 0 0 0 2px rgba(255, 238, 159, 0.16),
    inset 0 7px 12px rgba(255, 255, 255, 0.08),
    inset 0 -5px 0 rgba(0, 0, 0, 0.28);
}

body[data-page="calcium-gold"] .nav-cta::before {
  content: "";
  position: absolute;
  inset: 8px 12px;
  border: 1px solid rgba(255, 222, 111, 0.28);
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 158, 0.08), transparent);
  pointer-events: none;
}

body[data-page="calcium-gold"] #nav .container::after {
  box-shadow:
    0 10px 18px rgba(110, 65, 8, 0.18),
    inset 0 0 0 2px rgba(255, 249, 220, 0.54),
    inset 0 -3px 0 rgba(132, 78, 11, 0.2);
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    box-shadow:
      0 20px 34px rgba(64, 38, 7, 0.2),
      inset 0 0 0 1px rgba(119, 70, 9, 0.22),
      inset 0 0 0 4px rgba(255, 249, 216, 0.28),
      inset 0 -3px 0 rgba(157, 95, 15, 0.26);
  }

  body[data-page="calcium-gold"] #nav .container::before {
    display: none;
  }

  body[data-page="calcium-gold"] .blogo::before,
  body[data-page="calcium-gold"] .blogo::after {
    width: 26px;
    height: 18px;
    opacity: 0.72;
  }

  body[data-page="calcium-gold"] .blogo::before {
    left: -5px;
    top: 6px;
  }

  body[data-page="calcium-gold"] .blogo::after {
    right: -6px;
    bottom: 6px;
  }
}

/* ===== Navbar-to-banner alignment pass ===== */
body[data-page="calcium-gold"] #nav {
  margin-bottom: -126px;
}

body[data-page="calcium-gold"] #hero.banner-hero {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-height: none;
  background:
    linear-gradient(180deg, #f8d872 0%, #fff3bf 18%, #f8fafc 42%);
}

body[data-page="calcium-gold"] #hero.banner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: clamp(108px, 10vw, 178px);
  pointer-events: none;
  background:
    radial-gradient(55% 80% at 18% 0%, rgba(255, 236, 145, 0.74), transparent 64%),
    radial-gradient(70% 72% at 88% 0%, rgba(198, 128, 24, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(218, 159, 49, 0.34) 0%, rgba(255, 235, 155, 0.16) 42%, transparent 100%);
}

body[data-page="calcium-gold"] .bannerSwiper {
  background:
    linear-gradient(180deg, #fff2bd 0%, #f8fafc 26%, #f8fafc 100%);
}

body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
  object-fit: cover;
  object-position: center top;
}

body[data-page="calcium-gold"] #nav + #hero.banner-hero {
  margin-top: 0 !important;
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] #nav {
    margin-bottom: -110px;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    margin-bottom: 0;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: fixed !important;
    top: 31px;
    right: 24px;
    z-index: 1400;
    display: flex !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero {
    padding-top: 0 !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    height: 92px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 28px;
    right: 18px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    height: 80px;
  }
}

/* ===== Flush top taskbar + zero-gap banner pass ===== */
body[data-page="calcium-gold"] #nav {
  top: 0 !important;
  margin-top: 0 !important;
  margin-bottom: -128px;
}

body[data-page="calcium-gold"] #hero.banner-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body[data-page="calcium-gold"] .bannerSwiper,
body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
  background: #f7d36b;
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] #nav {
    margin-bottom: -112px;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 18px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    top: 0 !important;
    margin-top: 0 !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 13px;
  }

  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
    object-position: center center;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    height: 34px;
    background:
      linear-gradient(180deg, rgba(218, 159, 49, 0.26) 0%, rgba(255, 235, 155, 0.08) 56%, transparent 100%);
  }
}

/* ===== Full-width taskbar with non-overlapping banner ===== */
body[data-page="calcium-gold"] #nav {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 126px;
  margin: 0 !important;
  border-radius: 0 0 46px 46px;
}

body[data-page="calcium-gold"] #nav .container {
  max-width: none;
  width: 100%;
  min-height: 126px;
  padding-right: clamp(28px, 3vw, 54px);
}

body[data-page="calcium-gold"] #nav::after {
  bottom: -7px;
  height: 34px;
  border-bottom-width: 6px;
}

body[data-page="calcium-gold"] #hero.banner-hero,
body[data-page="calcium-gold"] #nav + #hero.banner-hero {
  clear: both;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body[data-page="calcium-gold"] #hero.banner-hero::before {
  height: 24px;
  background:
    linear-gradient(180deg, rgba(218, 159, 49, 0.18) 0%, rgba(255, 235, 155, 0.06) 58%, transparent 100%);
}

body[data-page="calcium-gold"] #hero.banner-hero::after {
  height: clamp(46px, 5vw, 72px);
  background-size: 1180px clamp(46px, 5vw, 72px);
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 110px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 110px;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    position: sticky !important;
    width: 100vw !important;
    min-height: 76px;
    border-radius: 0 0 28px 28px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 76px;
    padding-right: 14px;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: absolute !important;
    top: 50% !important;
    right: 14px;
    transform: translateY(-50%);
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    height: 18px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::after {
    height: 38px;
    background-size: 720px 38px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    left: 0 !important;
    width: 100vw !important;
    min-height: 66px;
    border-radius: 0 0 22px 22px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 66px;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    right: 10px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    height: 12px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::after {
    height: 30px;
    background-size: 620px 30px;
  }
}

/* ===== Rounded yellow brand logo panel ===== */
body[data-page="calcium-gold"] #nav .navbar-brand {
  flex-basis: clamp(230px, 23vw, 390px);
  min-height: 112px;
  padding: 10px clamp(32px, 3.6vw, 58px) 10px clamp(22px, 2.4vw, 38px);
  border-radius: 999px;
  border-color: rgba(167, 104, 14, 0.58);
  background:
    radial-gradient(120px 80px at 22% 18%, rgba(255, 255, 255, 0.72), transparent 66%),
    linear-gradient(135deg, #fff7c8 0%, #f6d765 42%, #d9a534 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.42),
    inset 0 -8px 16px rgba(154, 91, 10, 0.16),
    8px 10px 22px rgba(97, 56, 8, 0.18);
}

body[data-page="calcium-gold"] #nav .navbar-brand::before {
  right: -46px;
  bottom: 6px;
  width: 118px;
  height: 86px;
  border-radius: 999px;
  clip-path: none;
  background: linear-gradient(135deg, rgba(255, 230, 118, 0.88), rgba(195, 129, 28, 0.62));
  box-shadow: inset 8px 0 0 rgba(255, 249, 213, 0.38);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  inset: 12px clamp(24px, 2.6vw, 44px) 12px 14px;
  width: auto;
  height: auto;
  border-radius: 999px;
  border-color: rgba(126, 78, 12, 0.28);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(135deg, rgba(255, 250, 209, 0.46), rgba(255, 225, 99, 0.18));
}

body[data-page="calcium-gold"] .blogo {
  width: clamp(166px, 15vw, 248px);
  height: 86px;
}

body[data-page="calcium-gold"] .blogo::before,
body[data-page="calcium-gold"] .blogo::after {
  opacity: 0.34;
}

body[data-page="calcium-gold"] .nav-logo-kicker {
  color: #13355a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

body[data-page="calcium-gold"] .nav-logo-kicker::before {
  color: #13355a;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}

body[data-page="calcium-gold"] .nav-logo-kicker::after {
  background: linear-gradient(90deg, transparent, rgba(19, 53, 90, 0.45), transparent);
  box-shadow: none;
}

body[data-page="calcium-gold"] .brand-logo-img {
  width: clamp(152px, 14.2vw, 230px);
  max-height: 70px;
  filter:
    brightness(1.05)
    contrast(1.08)
    saturate(1.1)
    drop-shadow(0 2px 0 rgba(255, 246, 189, 0.42))
    drop-shadow(0 5px 6px rgba(92, 55, 8, 0.2));
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 178px;
    min-height: 66px;
    padding: 7px 34px 7px 14px;
    border-radius: 999px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -28px;
    bottom: 4px;
    width: 66px;
    height: 48px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    inset: 7px 24px 7px 8px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 118px;
    height: 52px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    margin-bottom: -4px;
    font-size: 0.46rem;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker::before {
    margin-bottom: 2px;
    font-size: 0.68rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 112px;
    max-height: 40px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 150px;
    min-height: 58px;
    padding: 6px 26px 6px 10px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -22px;
    width: 52px;
    height: 40px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    inset: 6px 18px 6px 7px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 98px;
    height: 46px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    font-size: 0.39rem;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker::before {
    font-size: 0.58rem;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 96px;
    max-height: 34px;
  }
}

/* ===== Taskbar polish: tighter hero join, stronger menu, subtle ornamental gold ===== */
body[data-page="calcium-gold"] #nav {
  z-index: 1200;
  background:
    radial-gradient(circle at 13% 14%, rgba(255, 255, 255, 0.92), transparent 15%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.46), transparent 30%),
    radial-gradient(circle at 98% 18%, rgba(164, 98, 15, 0.2) 0 1px, transparent 2px),
    linear-gradient(90deg, #f9d868 0%, #fff6c9 33%, #f8da75 70%, #d49a32 100%) !important;
}

body[data-page="calcium-gold"] #nav::before {
  background:
    radial-gradient(circle at 3% 18%, rgba(131, 81, 12, 0.24) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 97% 14%, rgba(131, 81, 12, 0.2) 0 1px, transparent 2px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(90deg, rgba(117, 72, 12, 0.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(117, 72, 12, 0.035) 0 1px, transparent 1px 18px);
}

body[data-page="calcium-gold"] #hero.banner-hero,
body[data-page="calcium-gold"] #nav + #hero.banner-hero {
  margin-top: -8px !important;
}

body[data-page="calcium-gold"] .navbar-nav {
  gap: clamp(18px, 1.9vw, 38px);
}

body[data-page="calcium-gold"] .navbar-nav .nav-item:not(:last-child)::after {
  right: calc(clamp(18px, 1.9vw, 38px) * -0.62);
  color: #9b6414;
  font-size: 1rem;
  opacity: 0.92;
  text-shadow:
    0 1px 0 rgba(255, 250, 220, 0.9),
    0 3px 8px rgba(107, 64, 9, 0.18);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  min-height: 62px;
  padding-inline: 8px !important;
  color: #5a370b !important;
  font-size: clamp(1rem, 1.12vw, 1.25rem);
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(255, 252, 225, 0.95),
    0 2px 7px rgba(96, 57, 8, 0.18);
}

body[data-page="calcium-gold"] .navbar-nav .nav-link:hover,
body[data-page="calcium-gold"] .navbar-nav .nav-link.active {
  color: #2f1e08 !important;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link::after {
  bottom: 2px;
  height: 8px;
  background:
    linear-gradient(90deg, #8c570c 0%, #dca536 38%, #fff0a8 52%, #a96710 100%);
}

body[data-page="calcium-gold"] .nav-cta {
  min-width: 210px;
  border-color: rgba(255, 224, 117, 0.94);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 26%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, #103f72 0%, #08284f 57%, #04172f 100%) !important;
  color: #ffe485 !important;
  font-size: clamp(1rem, 1.08vw, 1.16rem) !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.28),
    0 0 12px rgba(255, 219, 104, 0.24);
}

body[data-page="calcium-gold"] .nav-cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffeaa1, #dba334);
  color: #08284f;
  font-size: 0.9rem;
  box-shadow:
    0 0 0 3px rgba(255, 226, 125, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  animation: phoneWiggle 1.9s ease-in-out infinite;
}

body[data-page="calcium-gold"] .nav-cta::after {
  color: #ffe485;
}

@keyframes phoneWiggle {
  0%, 42%, 100% {
    transform: rotate(0deg) scale(1);
  }
  6%, 18%, 30% {
    transform: rotate(-13deg) scale(1.05);
  }
  12%, 24%, 36% {
    transform: rotate(13deg) scale(1.05);
  }
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] .navbar-nav {
    gap: clamp(14px, 1.25vw, 24px);
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    font-size: clamp(0.9rem, 0.92vw, 1.06rem);
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-item:not(:last-child)::after {
    right: calc(clamp(14px, 1.25vw, 24px) * -0.62);
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-width: 184px;
    font-size: 0.98rem !important;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -6px !important;
  }

  body[data-page="calcium-gold"] .navbar-nav .nav-link {
    min-height: 52px;
    font-size: 1rem;
  }

  body[data-page="calcium-gold"] .nav-cta i {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -18px !important;
  }
}

/* ===== Slight banner lift after rollback ===== */
body[data-page="calcium-gold"] #hero.banner-hero,
body[data-page="calcium-gold"] #nav + #hero.banner-hero {
  margin-top: -18px !important;
}

@media (max-width: 1599.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -14px !important;
  }
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -10px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -7px !important;
  }
}

/* ===== Richer gold logo panel ornamentation ===== */
body[data-page="calcium-gold"] #nav .navbar-brand {
  border-color: rgba(167, 103, 13, 0.62);
  background:
    radial-gradient(130px 86px at 18% 20%, rgba(255, 255, 255, 0.82), transparent 66%),
    radial-gradient(220px 130px at 72% 48%, rgba(255, 244, 176, 0.34), transparent 70%),
    repeating-linear-gradient(115deg, rgba(130, 81, 10, 0.035) 0 1px, transparent 1px 11px),
    linear-gradient(135deg, #fff3ac 0%, #f4cf55 42%, #d69b26 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 251, 224, 0.5),
    inset 0 0 0 8px rgba(255, 232, 126, 0.08),
    inset 0 -10px 18px rgba(148, 88, 10, 0.18),
    8px 12px 24px rgba(97, 56, 8, 0.2);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  border-color: rgba(134, 84, 11, 0.24);
  background:
    radial-gradient(18px 18px at 10% 18%, transparent 42%, rgba(187, 118, 16, 0.22) 45% 51%, transparent 55%),
    radial-gradient(16px 16px at 88% 82%, transparent 42%, rgba(187, 118, 16, 0.18) 45% 51%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 235, 0.42), rgba(255, 229, 105, 0.14));
}

body[data-page="calcium-gold"] #nav .navbar-brand::before {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 230, 118, 0.9), rgba(191, 122, 22, 0.66));
}

body[data-page="calcium-gold"] .blogo::before,
body[data-page="calcium-gold"] .blogo::after {
  width: 54px;
  height: 40px;
  opacity: 0.52;
  background:
    radial-gradient(18px 18px at 11px 26px, transparent 43%, rgba(143, 89, 12, 0.44) 47% 52%, transparent 56%),
    radial-gradient(20px 20px at 29px 16px, transparent 42%, rgba(255, 244, 177, 0.58) 45% 50%, transparent 54%),
    linear-gradient(90deg, rgba(255, 249, 208, 0.38), transparent 72%);
}

body[data-page="calcium-gold"] .nav-logo-kicker {
  color: #12365d;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 3px 8px rgba(116, 70, 8, 0.16);
}

body[data-page="calcium-gold"] .nav-logo-kicker::before {
  color: #12365d;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7))
    drop-shadow(0 2px 5px rgba(118, 70, 7, 0.18));
}

body[data-page="calcium-gold"] .nav-logo-kicker::after {
  background: linear-gradient(90deg, transparent, rgba(138, 85, 10, 0.32), transparent);
  box-shadow: 0 1px 5px rgba(255, 247, 194, 0.48);
}

/* ===== Luxury gold logo panel: deeper metallic color + ornate filigree ===== */
body[data-page="calcium-gold"] #nav .navbar-brand {
  border-color: rgba(152, 91, 10, 0.72);
  background:
    radial-gradient(96px 72px at 9% 13%, rgba(255, 255, 255, 0.88), transparent 68%),
    radial-gradient(190px 104px at 34% 28%, rgba(255, 248, 202, 0.56), transparent 72%),
    radial-gradient(240px 132px at 79% 70%, rgba(171, 102, 11, 0.18), transparent 70%),
    conic-gradient(from 135deg at 24% 52%, rgba(255, 255, 255, 0.18), transparent 16%, rgba(142, 86, 9, 0.12) 26%, transparent 38%, rgba(255, 244, 175, 0.2) 52%, transparent 70%),
    repeating-linear-gradient(118deg, rgba(102, 64, 8, 0.035) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, #fff8c9 0%, #f8dc75 22%, #e8b83f 48%, #bd7a16 100%);
  box-shadow:
    inset 0 0 0 1px rgba(116, 70, 8, 0.28),
    inset 0 0 0 4px rgba(255, 250, 220, 0.58),
    inset 0 0 0 12px rgba(255, 232, 126, 0.08),
    inset 0 -12px 20px rgba(123, 73, 7, 0.2),
    9px 13px 25px rgba(97, 56, 8, 0.22);
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  border-color: rgba(118, 72, 9, 0.28);
  background:
    radial-gradient(22px 22px at 7% 14%, transparent 40%, rgba(133, 81, 9, 0.34) 43% 47%, transparent 52%),
    radial-gradient(24px 24px at 14% 26%, transparent 38%, rgba(255, 246, 188, 0.5) 42% 48%, transparent 53%),
    radial-gradient(20px 20px at 91% 82%, transparent 40%, rgba(133, 81, 9, 0.24) 43% 48%, transparent 53%),
    radial-gradient(18px 18px at 84% 72%, transparent 40%, rgba(255, 246, 188, 0.42) 43% 48%, transparent 53%),
    linear-gradient(90deg, rgba(255, 255, 236, 0.44), transparent 24%, transparent 72%, rgba(138, 83, 8, 0.08)),
    linear-gradient(135deg, rgba(255, 250, 215, 0.3), rgba(255, 220, 88, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 235, 0.62),
    inset 0 -1px 0 rgba(132, 80, 9, 0.18);
}

body[data-page="calcium-gold"] .blogo::before,
body[data-page="calcium-gold"] .blogo::after {
  width: 70px;
  height: 54px;
  opacity: 0.7;
  background:
    radial-gradient(18px 18px at 14px 38px, transparent 41%, rgba(126, 76, 8, 0.52) 45% 50%, transparent 55%),
    radial-gradient(24px 24px at 30px 28px, transparent 40%, rgba(255, 248, 190, 0.76) 43% 49%, transparent 54%),
    radial-gradient(16px 16px at 47px 17px, transparent 39%, rgba(148, 91, 10, 0.3) 43% 48%, transparent 53%),
    linear-gradient(135deg, rgba(255, 255, 226, 0.46), rgba(223, 168, 48, 0.12) 54%, transparent 78%);
  filter: drop-shadow(0 2px 3px rgba(111, 66, 8, 0.12));
}

body[data-page="calcium-gold"] .blogo::before {
  left: -16px;
  top: 4px;
}

body[data-page="calcium-gold"] .blogo::after {
  right: -18px;
  bottom: 4px;
}

body[data-page="calcium-gold"] .brand-logo-img {
  filter:
    brightness(1.08)
    contrast(1.12)
    saturate(1.16)
    drop-shadow(0 2px 0 rgba(255, 248, 195, 0.46))
    drop-shadow(0 7px 7px rgba(97, 57, 8, 0.22));
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] .blogo::before,
  body[data-page="calcium-gold"] .blogo::after {
    width: 38px;
    height: 30px;
    opacity: 0.5;
  }
}

/* ===== Mobile nav cleanup: remove extra gold lobes and keep menu usable ===== */
@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 70px;
    border-radius: 0 0 24px 24px;
    overflow: visible;
  }

  body[data-page="calcium-gold"] #nav::after,
  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    display: none !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 70px;
    padding: 0 70px 0 10px;
  }

  body[data-page="calcium-gold"] #nav .container::after {
    display: none !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex: 0 0 172px;
    min-height: 62px;
    max-width: 172px;
    padding: 6px 18px 6px 10px;
    border-radius: 999px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    inset: 6px 12px 6px 7px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 112px;
    height: 50px;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 108px;
    max-height: 38px;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    margin-bottom: -4px;
    font-size: 0.42rem;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker::before {
    margin-bottom: 2px;
    font-size: 0.62rem;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: absolute !important;
    top: 50% !important;
    right: 14px;
    z-index: 40;
    width: 46px;
    height: 46px;
    transform: translateY(-50%) !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    z-index: 1300;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 18px;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 48px 108px minmax(0, 1fr);
    gap: 8px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-width: 0;
    padding-inline: 12px !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -4px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 64px;
    border-radius: 0 0 20px 20px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 64px;
    padding-right: 62px;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 148px;
    max-width: 148px;
    min-height: 56px;
    padding: 5px 14px 5px 8px;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 96px;
    height: 44px;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 94px;
    max-height: 32px;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    right: 10px;
    width: 42px;
    height: 42px;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 44px 92px minmax(0, 1fr);
  }

  body[data-page="calcium-gold"] .nav-cta {
    font-size: 0.8rem !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -14px !important;
  }
}

/* ===== Mobile action/cart i18n layout fixes ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] .cart-overlay {
    z-index: 1800;
  }

  body[data-page="calcium-gold"] .cart-drawer {
    z-index: 1810;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }

  body[data-page="calcium-gold"] .cart-head {
    flex: 0 0 auto;
  }

  body[data-page="calcium-gold"] .cart-body {
    flex: 1 1 auto;
    min-height: 0;
  }

  body[data-page="calcium-gold"] .cart-foot {
    flex: 0 0 auto;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] .mobile-action-bar {
    z-index: 1250;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 0 10px calc(8px + env(safe-area-inset-bottom));
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    min-width: 0;
    height: 54px;
    padding: 0 12px;
    overflow: hidden;
    border-radius: 999px;
    font-size: clamp(0.9rem, 3.8vw, 1.02rem);
    white-space: nowrap;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show .nav-cta,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing .nav-cta {
    display: inline-flex !important;
    min-width: 0;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show .nav-cta i,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing .nav-cta i {
    display: inline-flex;
  }

  body[data-page="calcium-gold"] #order-form {
    scroll-margin-top: 78px;
  }
}

/* ===== Final responsive compact action bar + cart panel ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] .cart-drawer {
    top: auto !important;
    left: auto !important;
    right: 12px !important;
    bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    width: min(360px, calc(100vw - 24px)) !important;
    max-width: min(360px, calc(100vw - 24px)) !important;
    height: auto !important;
    max-height: min(68dvh, 480px) !important;
    border-radius: 18px !important;
    overflow: hidden;
    transform: translateY(calc(100% + 86px)) !important;
  }

  body[data-page="calcium-gold"] .cart-drawer.open {
    transform: translateY(0) !important;
  }

  body[data-page="calcium-gold"] .cart-head {
    padding: 12px 14px 10px !important;
  }

  body[data-page="calcium-gold"] .cart-head h3 {
    font-size: 1.08rem !important;
    line-height: 1.25;
  }

  body[data-page="calcium-gold"] .cart-close {
    width: 32px;
    height: 32px;
  }

  body[data-page="calcium-gold"] .cart-body {
    flex: 0 1 auto !important;
    min-height: 0 !important;
    max-height: 34dvh !important;
    padding: 8px 10px !important;
  }

  body[data-page="calcium-gold"] .cart-empty {
    height: auto !important;
    min-height: 150px;
    padding: 18px 8px;
    text-align: center;
  }

  body[data-page="calcium-gold"] .cart-empty i {
    font-size: 2rem;
  }

  body[data-page="calcium-gold"] .cart-empty p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  body[data-page="calcium-gold"] .cart-item {
    grid-template-columns: 46px minmax(0, 1fr) 22px !important;
    gap: 9px;
    padding: 10px 0;
  }

  body[data-page="calcium-gold"] .cart-item-img {
    width: 46px;
    height: 46px;
  }

  body[data-page="calcium-gold"] .cart-item-name {
    font-size: 0.84rem;
  }

  body[data-page="calcium-gold"] .cart-item-price {
    font-size: 0.86rem;
  }

  body[data-page="calcium-gold"] .cart-foot {
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom)) !important;
  }

  body[data-page="calcium-gold"] .cart-total-row {
    margin-bottom: 10px;
  }

  body[data-page="calcium-gold"] .cart-total-row span {
    font-size: 0.84rem;
  }

  body[data-page="calcium-gold"] .cart-total-row b {
    font-size: 1.05rem;
  }

  body[data-page="calcium-gold"] .cart-checkout,
  body[data-page="calcium-gold"] .cart-continue {
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 10px;
    right: 10px;
    bottom: 8px;
    gap: 7px;
    padding: 0 0 calc(6px + env(safe-area-inset-bottom)) !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    gap: 6px;
    font-size: clamp(0.78rem, 3.2vw, 0.92rem) !important;
    box-shadow: 0 9px 22px rgba(8, 29, 53, 0.18);
  }

  body[data-page="calcium-gold"] .mobile-action-bar a i {
    flex: 0 0 auto;
    font-size: 0.92em;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] .cart-drawer {
    right: 8px !important;
    bottom: calc(62px + env(safe-area-inset-bottom)) !important;
    width: min(330px, calc(100vw - 16px)) !important;
    max-width: min(330px, calc(100vw - 16px)) !important;
    max-height: min(66dvh, 430px) !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 8px;
    right: 8px;
    gap: 6px;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    font-size: clamp(0.72rem, 3.35vw, 0.84rem) !important;
  }
}

/* ===== Mobile taskbar consultation CTA + language tap fix ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav {
    z-index: 1900;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    z-index: 1910;
    overflow: visible;
  }

  body[data-page="calcium-gold"] .language-switcher {
    z-index: 1930;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    min-width: 112px;
    touch-action: manipulation;
  }

  body[data-page="calcium-gold"] .language-menu {
    z-index: 1940;
    min-width: min(260px, calc(100vw - 36px));
    max-height: min(58dvh, 420px);
    overflow-y: auto;
  }

  body[data-page="calcium-gold"] .language-menu button {
    min-height: 46px;
    touch-action: manipulation;
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 14px;
    right: 14px;
    bottom: 10px;
    z-index: 1300;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 0 calc(8px + env(safe-area-inset-bottom)) !important;
    pointer-events: none;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    width: 100%;
    min-height: 58px !important;
    height: 58px !important;
    justify-content: center;
    gap: 10px;
    padding: 0 22px !important;
    border: 2px solid rgba(255, 221, 103, 0.92);
    border-radius: 999px;
    background:
      radial-gradient(circle at 28% 18%, rgba(64, 121, 174, 0.8), transparent 30%),
      linear-gradient(180deg, #0d315d 0%, #061b35 58%, #041327 100%) !important;
    color: #ffe27d !important;
    font-size: clamp(0.98rem, 4.4vw, 1.12rem) !important;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow:
      0 18px 34px rgba(6, 27, 53, 0.34),
      0 0 0 5px rgba(246, 207, 98, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      inset 0 -4px 0 rgba(0, 0, 0, 0.24);
    pointer-events: auto;
    touch-action: manipulation;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a i {
    color: #fff8c8;
    flex: 0 0 auto;
    font-size: 1.08rem;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a span {
    color: inherit;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[data-page="calcium-gold"] #btt {
    right: 16px;
    bottom: 86px;
    z-index: 1250;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 44px 112px minmax(0, 1fr);
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 12px;
    right: 12px;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 18px !important;
  }

  body[data-page="calcium-gold"] #btt {
    right: 14px;
    bottom: 80px;
  }
}

/* ===== Mobile responsive stability pass ===== */
@media (max-width: 991.98px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body[data-page="calcium-gold"] {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body[data-page="calcium-gold"] img,
  body[data-page="calcium-gold"] video,
  body[data-page="calcium-gold"] canvas,
  body[data-page="calcium-gold"] iframe {
    max-width: 100%;
  }

  body[data-page="calcium-gold"] .container,
  body[data-page="calcium-gold"] .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-page="calcium-gold"] .row {
    --bs-gutter-x: 1rem;
  }

  body[data-page="calcium-gold"] #nav {
    left: 0;
    right: 0;
    width: 100% !important;
    min-height: 66px !important;
    margin: 0 !important;
    border-radius: 0 0 18px 18px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 66px !important;
    padding-left: 12px !important;
    padding-right: 62px !important;
    gap: 8px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex: 0 1 min(58vw, 220px) !important;
    max-width: min(58vw, 220px) !important;
    min-height: 58px !important;
    padding: 4px 16px 4px 8px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: min(100%, 156px) !important;
    max-height: 42px !important;
    object-fit: contain;
  }

  body[data-page="calcium-gold"] .nav-logo-kicker {
    display: none !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    position: absolute !important;
    top: 50% !important;
    right: 12px !important;
    z-index: 1960;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    transform: translateY(-50%) !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    max-height: min(76dvh, 620px) !important;
    padding: 12px !important;
    overflow-y: auto !important;
    overflow-x: visible !important;
    border-radius: 18px !important;
  }

  body[data-page="calcium-gold"] .navbar-nav,
  body[data-page="calcium-gold"] .nav-actions {
    width: 100%;
    min-width: 0;
  }

  body[data-page="calcium-gold"] .nav-actions {
    display: grid !important;
    grid-template-columns: 46px minmax(112px, 132px) minmax(0, 1fr) !important;
    align-items: center;
    gap: 8px !important;
  }

  body[data-page="calcium-gold"] .nav-actions > * {
    min-width: 0;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 100%;
    min-width: 112px !important;
    padding: 0 12px !important;
  }

  body[data-page="calcium-gold"] .language-menu {
    position: absolute;
    top: calc(100% + 8px) !important;
    right: auto !important;
    left: 50% !important;
    width: min(268px, calc(100vw - 32px)) !important;
    min-width: 0 !important;
    transform: translateX(-50%);
  }

  body[data-page="calcium-gold"] .language-menu button {
    padding: 10px 12px;
  }

  body[data-page="calcium-gold"] .nav-cta {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0 12px !important;
    font-size: clamp(0.82rem, 3.2vw, 0.98rem) !important;
  }

  body[data-page="calcium-gold"] .nav-cta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 7;
    object-fit: cover;
  }

  body[data-page="calcium-gold"] section,
  body[data-page="calcium-gold"] .section-light,
  body[data-page="calcium-gold"] .section-navy,
  body[data-page="calcium-gold"] .section-aqua,
  body[data-page="calcium-gold"] .usage-section,
  body[data-page="calcium-gold"] .combo-section,
  body[data-page="calcium-gold"] .contact-showcase {
    padding-top: clamp(42px, 12vw, 68px);
    padding-bottom: clamp(42px, 12vw, 68px);
    overflow-x: clip;
  }

  body[data-page="calcium-gold"] .stitle,
  body[data-page="calcium-gold"] .usage-title,
  body[data-page="calcium-gold"] .testimonial-title,
  body[data-page="calcium-gold"] .contact-title,
  body[data-page="calcium-gold"] .combo-promo-title {
    max-width: 100%;
    font-size: clamp(1.65rem, 8vw, 2.35rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere;
  }

  body[data-page="calcium-gold"] .sdesc,
  body[data-page="calcium-gold"] .copy-block p,
  body[data-page="calcium-gold"] .contact-description,
  body[data-page="calcium-gold"] .combo-promo-sub {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.8vw, 1rem) !important;
    line-height: 1.5 !important;
  }

  body[data-page="calcium-gold"] .product-intro-layout,
  body[data-page="calcium-gold"] .ingredients-layout,
  body[data-page="calcium-gold"] .usage-responsive-layout,
  body[data-page="calcium-gold"] .combo-body,
  body[data-page="calcium-gold"] .order-shell,
  body[data-page="calcium-gold"] .contact-showcase .row,
  body[data-page="calcium-gold"] .footer-main .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  body[data-page="calcium-gold"] .ggrid,
  body[data-page="calcium-gold"] .benefits-grid,
  body[data-page="calcium-gold"] .usteps-row,
  body[data-page="calcium-gold"] #ingredientGridLeft,
  body[data-page="calcium-gold"] #ingredientGridRight,
  body[data-page="calcium-gold"] .contact-showcase .contact-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body[data-page="calcium-gold"] .swiper,
  body[data-page="calcium-gold"] .swiper-wrapper,
  body[data-page="calcium-gold"] .swiper-slide {
    max-width: 100%;
  }

  body[data-page="calcium-gold"] .activitySwiper .swiper-slide,
  body[data-page="calcium-gold"] .reportageSwiper .swiper-slide,
  body[data-page="calcium-gold"] .testimonial-swiper .swiper-slide,
  body[data-page="calcium-gold"] .comboSwiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-page="calcium-gold"] .combo-shell,
  body[data-page="calcium-gold"] .faq-shell,
  body[data-page="calcium-gold"] .order-card,
  body[data-page="calcium-gold"] .order-aside-card,
  body[data-page="calcium-gold"] .contact-mini,
  body[data-page="calcium-gold"] .video-feedback-card,
  body[data-page="calcium-gold"] .combo-card,
  body[data-page="calcium-gold"] .combo-card2,
  body[data-page="calcium-gold"] .benefit-card,
  body[data-page="calcium-gold"] .nutrient-card {
    max-width: 100%;
    border-radius: 16px !important;
  }

  body[data-page="calcium-gold"] .combo-shell,
  body[data-page="calcium-gold"] .faq-shell {
    padding: 14px !important;
  }

  body[data-page="calcium-gold"] .combo-topbar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding: 10px 12px !important;
    transform: none !important;
    white-space: normal !important;
  }

  body[data-page="calcium-gold"] .combo-topbar .ct-item,
  body[data-page="calcium-gold"] .combo-topbar .ct-timer {
    min-width: 0;
    font-size: 0.82rem !important;
    line-height: 1.25;
  }

  body[data-page="calcium-gold"] .combo-nav,
  body[data-page="calcium-gold"] .activity-nav,
  body[data-page="calcium-gold"] .testimonial-nav {
    display: none !important;
  }

  body[data-page="calcium-gold"] #order-form .order-card,
  body[data-page="calcium-gold"] .order-aside-card {
    padding: 16px 14px !important;
  }

  body[data-page="calcium-gold"] #order-form .fctrl {
    min-height: 52px;
    padding: 12px 14px 12px 48px !important;
    font-size: 16px !important;
  }

  body[data-page="calcium-gold"] #order-form select.fctrl {
    padding-right: 46px !important;
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%, calc(100% - 20px) 50%;
  }

  body[data-page="calcium-gold"] .order-field > i {
    left: 15px !important;
  }

  body[data-page="calcium-gold"] .cart-drawer {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    max-height: min(70dvh, 520px) !important;
  }

  body[data-page="calcium-gold"] #btt {
    width: 40px;
    height: 40px;
    right: 14px !important;
    bottom: calc(82px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] .container,
  body[data-page="calcium-gold"] .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 62px !important;
    padding-right: 58px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: min(56vw, 180px) !important;
    max-width: min(56vw, 180px) !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: min(100%, 134px) !important;
    max-height: 38px !important;
  }

  body[data-page="calcium-gold"] .nav-actions {
    grid-template-columns: 42px minmax(104px, 118px) minmax(0, 1fr) !important;
    gap: 6px !important;
  }

  body[data-page="calcium-gold"] .nav-icon-btn,
  body[data-page="calcium-gold"] .language-switcher .language-btn {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  body[data-page="calcium-gold"] .language-switcher .language-btn {
    min-width: 104px !important;
    padding: 0 10px !important;
  }

  body[data-page="calcium-gold"] .nav-cta {
    min-height: 42px !important;
    padding: 0 10px !important;
    font-size: clamp(0.74rem, 3.5vw, 0.86rem) !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
    aspect-ratio: 16 / 8;
  }

  body[data-page="calcium-gold"] section,
  body[data-page="calcium-gold"] .section-light,
  body[data-page="calcium-gold"] .section-navy,
  body[data-page="calcium-gold"] .section-aqua,
  body[data-page="calcium-gold"] .usage-section,
  body[data-page="calcium-gold"] .combo-section,
  body[data-page="calcium-gold"] .contact-showcase {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  body[data-page="calcium-gold"] .stitle,
  body[data-page="calcium-gold"] .usage-title,
  body[data-page="calcium-gold"] .testimonial-title,
  body[data-page="calcium-gold"] .contact-title,
  body[data-page="calcium-gold"] .combo-promo-title {
    font-size: clamp(1.45rem, 8.4vw, 2.05rem) !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: 8px !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    min-height: 54px !important;
    height: 54px !important;
    padding: 0 16px !important;
    font-size: clamp(0.92rem, 4.6vw, 1.04rem) !important;
  }

  body[data-page="calcium-gold"] .cart-drawer {
    left: 8px !important;
    right: 8px !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 16px) !important;
  }
}

/* ===== Mobile language menu visible in collapsed navbar ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  body[data-page="calcium-gold"] .nav-actions .language-switcher.open {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  body[data-page="calcium-gold"] .nav-actions .language-switcher.open .language-btn {
    width: 100%;
    min-width: 0 !important;
    justify-content: center;
  }

  body[data-page="calcium-gold"] .nav-actions .language-switcher.open .language-menu {
    position: static !important;
    inset: auto !important;
    display: grid;
    width: 100% !important;
    min-width: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body[data-page="calcium-gold"] .nav-actions .language-switcher.open .language-menu button {
    width: 100%;
    min-height: 44px;
  }
}

/* ===== Compact logo taskbar pass ===== */
body[data-page="calcium-gold"] #nav {
  min-height: 104px !important;
  border-radius: 44px !important;
}

body[data-page="calcium-gold"] #nav::before {
  inset: 6px !important;
  border-radius: 38px !important;
}

body[data-page="calcium-gold"] #nav::after {
  left: 230px !important;
  bottom: -9px !important;
  height: 42px !important;
  border-bottom-width: 7px !important;
}

body[data-page="calcium-gold"] #nav .container {
  min-height: 102px !important;
  padding-right: 28px !important;
}

body[data-page="calcium-gold"] #nav .navbar-brand {
  flex-basis: clamp(220px, 22vw, 390px) !important;
  min-height: 102px !important;
  padding: 0 48px 0 30px !important;
  border-radius: 42px 82px 74px 42px !important;
}

body[data-page="calcium-gold"] #nav .navbar-brand::before {
  right: -58px !important;
  bottom: -10px !important;
  width: 145px !important;
  height: 104px !important;
}

body[data-page="calcium-gold"] #nav .navbar-brand::after {
  inset: 10px 36px 10px 14px !important;
}

body[data-page="calcium-gold"] .blogo {
  width: clamp(150px, 13.4vw, 214px) !important;
  height: 76px !important;
}

body[data-page="calcium-gold"] .blogo::before,
body[data-page="calcium-gold"] .blogo::after,
body[data-page="calcium-gold"] .nav-logo-kicker,
body[data-page="calcium-gold"] .nav-logo-kicker::before,
body[data-page="calcium-gold"] .nav-logo-kicker::after {
  display: none !important;
}

body[data-page="calcium-gold"] .brand-logo-img {
  width: clamp(148px, 13vw, 210px) !important;
  max-height: 68px !important;
}

body[data-page="calcium-gold"] .navbar-nav .nav-link {
  min-height: 48px !important;
  font-size: clamp(0.82rem, 0.94vw, 1.02rem) !important;
}

body[data-page="calcium-gold"] .nav-icon-btn,
body[data-page="calcium-gold"] .nav-cta {
  height: 54px !important;
  min-height: 54px !important;
}

body[data-page="calcium-gold"] .nav-icon-btn {
  width: 54px !important;
}

body[data-page="calcium-gold"] .language-switcher .language-btn {
  min-width: 112px !important;
  padding: 0 17px !important;
}

body[data-page="calcium-gold"] .nav-cta {
  min-width: 176px !important;
  padding: 0 24px !important;
}

@media (max-width: 1199.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 68px !important;
    width: min(calc(100vw - 20px), 680px) !important;
    border-radius: 29px !important;
  }

  body[data-page="calcium-gold"] #nav::before {
    inset: 5px !important;
    border-radius: 24px !important;
  }

  body[data-page="calcium-gold"] #nav::after {
    left: 112px !important;
    bottom: -6px !important;
    height: 21px !important;
    border-bottom-width: 4px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 66px !important;
    padding-right: 62px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 156px !important;
    min-height: 64px !important;
    padding: 6px 28px 6px 13px !important;
    border-radius: 28px 54px 50px 28px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -30px !important;
    bottom: -5px !important;
    width: 72px !important;
    height: 58px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    inset: 6px 22px 6px 8px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 112px !important;
    height: 50px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 108px !important;
    max-height: 42px !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 21px !important;
    right: 22px !important;
    width: 40px !important;
    height: 40px !important;
  }

  body[data-page="calcium-gold"] #nav .container::after {
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-collapse {
    top: calc(100% + 10px) !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    left: 8px !important;
    width: calc(100vw - 16px) !important;
    min-height: 66px !important;
    border-radius: 31px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 64px !important;
    padding-right: 58px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 158px !important;
    max-width: 158px !important;
    min-height: 62px !important;
    padding: 5px 27px 5px 12px !important;
    border-radius: 30px 58px 54px 30px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::before {
    right: -28px !important;
    bottom: -5px !important;
    width: 64px !important;
    height: 50px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand::after {
    inset: 6px 22px 6px 8px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 116px !important;
    height: 48px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 112px !important;
    max-height: 42px !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 13px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    transform: none !important;
  }

  body[data-page="calcium-gold"] #nav .container::after {
    right: 12px !important;
    width: 42px !important;
    height: 42px !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: 7px !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: clamp(0.86rem, 4vw, 0.96rem) !important;
  }
}

/* ===== Mobile horizontal contact/footer pass ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #contact-section.contact-showcase {
    padding-bottom: 76px !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .row {
    gap: 14px !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-mini {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    min-height: 88px !important;
    padding: 12px 10px !important;
    gap: 9px !important;
    border-radius: 14px !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-ico {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.82rem !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-body strong {
    font-size: 0.75rem !important;
    line-height: 1.15 !important;
  }

  body[data-page="calcium-gold"] .contact-showcase .contact-body span {
    font-size: 0.62rem !important;
    line-height: 1.22 !important;
    -webkit-line-clamp: 2 !important;
    overflow-wrap: anywhere;
  }

  body[data-page="calcium-gold"] .site-footer {
    padding-bottom: 86px !important;
  }

  body[data-page="calcium-gold"] .footer-main {
    padding-top: 22px !important;
    padding-bottom: 4px !important;
  }

  body[data-page="calcium-gold"] .footer-main .row,
  body[data-page="calcium-gold"] .site-footer .footer-main .row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 12px !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-brand,
  body[data-page="calcium-gold"] .site-footer .footer-contact {
    grid-column: 1 / -1 !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-column,
  body[data-page="calcium-gold"] .site-footer .footer-column:first-child,
  body[data-page="calcium-gold"] .site-footer .footer-column:nth-child(3),
  body[data-page="calcium-gold"] .site-footer .footer-contact {
    min-height: 0 !important;
    padding: 0 !important;
    border-left: 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fnm {
    font-size: clamp(1.52rem, 7vw, 1.9rem) !important;
    line-height: 1 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fdesc {
    max-width: 100% !important;
    margin-top: 8px !important;
    font-size: 0.76rem !important;
    line-height: 1.32 !important;
    -webkit-line-clamp: 2 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fsoc {
    margin-top: 10px !important;
  }

  body[data-page="calcium-gold"] .site-footer .fsoc a {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.78rem !important;
  }

  body[data-page="calcium-gold"] .site-footer .ftit {
    margin-bottom: 8px !important;
    padding-bottom: 7px !important;
    font-size: 0.88rem !important;
  }

  body[data-page="calcium-gold"] .site-footer .flinks {
    display: grid;
    gap: 5px;
  }

  body[data-page="calcium-gold"] .site-footer .flinks li {
    margin-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .flinks a {
    gap: 6px !important;
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact .ftit {
    grid-column: 1 / -1 !important;
    margin-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fci {
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    min-width: 0 !important;
    min-height: 58px;
    margin: 0 !important;
    padding: 8px 6px !important;
    gap: 6px !important;
    border: 1px solid rgba(213, 161, 58, 0.24) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  body[data-page="calcium-gold"] .site-footer .fciico {
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 26px !important;
    font-size: 0.64rem !important;
  }

  body[data-page="calcium-gold"] .site-footer .fciinfo {
    min-width: 0;
  }

  body[data-page="calcium-gold"] .site-footer .fciinfo strong {
    margin-bottom: 1px !important;
    font-size: 0.62rem !important;
    line-height: 1.1 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fciinfo span {
    display: -webkit-box !important;
    overflow: hidden !important;
    font-size: 0.5rem !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fbot {
    padding: 9px 0 !important;
  }

  body[data-page="calcium-gold"] .site-footer .fbot .d-flex {
    gap: 6px !important;
  }

  body[data-page="calcium-gold"] .site-footer .fbot p,
  body[data-page="calcium-gold"] .site-footer .fbot a {
    font-size: 0.62rem !important;
    line-height: 1.22 !important;
  }
}

@media (max-width: 420px) {
  body[data-page="calcium-gold"] .contact-showcase .contact-mini {
    min-height: 82px !important;
    padding: 10px 8px !important;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact {
    grid-template-columns: repeat(3, minmax(96px, 1fr)) !important;
    overflow-x: auto;
    padding-bottom: 4px !important;
    scrollbar-width: none;
  }

  body[data-page="calcium-gold"] .site-footer .footer-contact::-webkit-scrollbar {
    display: none;
  }
}

/* ===== Compact mobile language picker ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav .navbar-collapse.show,
  body[data-page="calcium-gold"] #nav .navbar-collapse.collapsing {
    gap: 8px !important;
    max-height: calc(100dvh - 86px) !important;
    padding: 12px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  body[data-page="calcium-gold"] #nav .navbar-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-nav .nav-link {
    min-height: 38px !important;
    padding: 0 10px !important;
    font-size: 0.86rem !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .nav-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 42px !important;
    height: 42px !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .nav-icon-btn {
    grid-column: 1;
    grid-row: 1;
    width: 42px !important;
    min-height: 42px !important;
    height: 42px !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher {
    min-width: 0;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open {
    grid-column: 1 / -1;
    gap: 6px !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open .language-btn {
    display: none !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open .language-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    max-height: min(34dvh, 228px) !important;
    overflow-y: auto !important;
    border-radius: 18px !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open .language-menu button {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    min-height: 42px !important;
    padding: 0 10px !important;
    gap: 8px !important;
  }

  body[data-page="calcium-gold"] #nav .language-menu b {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.68rem !important;
  }

  body[data-page="calcium-gold"] #nav .language-menu span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 420px) {
  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open .language-menu {
    max-height: min(32dvh, 210px) !important;
  }

  body[data-page="calcium-gold"] #nav .nav-actions .language-switcher.open .language-menu button {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 40px !important;
    padding: 0 8px !important;
    gap: 7px !important;
  }
}

/* ===== Mobile banner/product image fit pass ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 !important;
    box-shadow:
      0 10px 22px rgba(84, 50, 7, 0.16),
      inset 0 -1px 0 rgba(131, 78, 10, 0.18) !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #f7d36b !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::before {
    display: none !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    height: clamp(168px, 42vw, 300px) !important;
    min-height: 0 !important;
    background: #f7d36b !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    margin: 14px auto 18px !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile .intro-image-frame {
    aspect-ratio: 1 / 1 !important;
    max-height: 300px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 62px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 62px !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    height: clamp(150px, 44vw, 190px) !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile {
    max-width: min(78vw, 260px) !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile .intro-image-frame {
    max-height: min(78vw, 260px) !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile .intro-seal {
    right: -8px !important;
    bottom: 18px !important;
    width: 74px !important;
    height: 74px !important;
  }
}

/* ===== Mobile product gallery: two photos per row ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #product-gallery .ggrid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    gap: 10px !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gitem {
    min-height: 0 !important;
    border-radius: 14px !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gphoto {
    flex: 0 0 auto !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gphoto img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gfoot {
    flex: 0 0 40px !important;
    min-height: 40px !important;
    padding: 0 10px !important;
    justify-content: center !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gbadge {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 420px) {
  body[data-page="calcium-gold"] #product-gallery .ggrid {
    gap: 8px !important;
  }

  body[data-page="calcium-gold"] #product-gallery .gfoot {
    flex-basis: 36px !important;
    min-height: 36px !important;
  }
}

/* ===== Mobile navbar flush with banner ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background:
      radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.56), transparent 20%),
      linear-gradient(90deg, #f7d36b 0%, #fff0a8 46%, #f7d36b 100%) !important;
    box-shadow: inset 0 -1px 0 #f7d36b !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    width: 100% !important;
    max-width: none !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: -1px !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    background: #f7d36b !important;
  }
}

/* ===== Mobile polish: clean nav + compact usage guide ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 66px !important;
    border: 0 !important;
    border-radius: 0 0 18px 18px !important;
    background:
      linear-gradient(90deg, rgba(255, 248, 203, 0.96), rgba(247, 211, 107, 0.96) 55%, rgba(231, 178, 65, 0.96)) !important;
    box-shadow:
      0 8px 20px rgba(112, 76, 16, 0.16),
      inset 0 -1px 0 rgba(143, 93, 13, 0.2) !important;
  }

  body[data-page="calcium-gold"] #nav::before,
  body[data-page="calcium-gold"] #nav::after,
  body[data-page="calcium-gold"] #nav .container::after,
  body[data-page="calcium-gold"] #nav .navbar-brand::before,
  body[data-page="calcium-gold"] #nav .navbar-brand::after,
  body[data-page="calcium-gold"] .blogo::before,
  body[data-page="calcium-gold"] .blogo::after,
  body[data-page="calcium-gold"] .nav-logo-kicker,
  body[data-page="calcium-gold"] .nav-logo-kicker::before,
  body[data-page="calcium-gold"] .nav-logo-kicker::after {
    display: none !important;
    content: none !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 66px !important;
    padding: 5px 64px 5px 12px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex: 0 0 166px !important;
    max-width: 166px !important;
    min-height: 54px !important;
    padding: 5px 12px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(138, 88, 12, 0.26) !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 245, 0.88), rgba(255, 230, 128, 0.66) 58%, rgba(216, 158, 40, 0.7)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 4px 12px rgba(106, 70, 10, 0.12) !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 134px !important;
    height: 44px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 132px !important;
    max-height: 41px !important;
    filter: drop-shadow(0 2px 2px rgba(94, 58, 8, 0.2)) !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    top: 50% !important;
    right: 13px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 18px !important;
    color: #092a50 !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 244, 0.96), rgba(247, 207, 83, 0.78)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 5px 13px rgba(97, 61, 7, 0.18) !important;
    transform: translateY(-50%) !important;
  }

  body[data-page="calcium-gold"] .usage-section {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
  }

  body[data-page="calcium-gold"] .usage-ambient,
  body[data-page="calcium-gold"] .usage-section .usage-splash,
  body[data-page="calcium-gold"] .usage-head {
    display: none !important;
  }

  body[data-page="calcium-gold"] .usage-title {
    max-width: 320px !important;
    margin: 0 auto 8px !important;
    font-size: clamp(1.42rem, 7vw, 1.9rem) !important;
    line-height: 1.08 !important;
  }

  body[data-page="calcium-gold"] .usage-sub {
    max-width: 330px !important;
    margin-bottom: 16px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  body[data-page="calcium-gold"] .usage-responsive-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body[data-page="calcium-gold"] .usage-hero-mobile {
    width: min(68vw, 230px) !important;
    max-width: 230px !important;
    margin: 0 auto 4px !important;
    border-radius: 18px !important;
  }

  body[data-page="calcium-gold"] .usage-hero img {
    max-height: 210px !important;
    object-fit: contain !important;
  }

  body[data-page="calcium-gold"] .usteps-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2 {
    min-height: 0 !important;
    border-radius: 14px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2:not(.is-image) {
    padding: 23px 10px 13px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-card2.is-image {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.78) !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-fullimg {
    width: 100% !important;
    max-height: 136px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 10px rgba(8, 29, 53, 0.1)) !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-badge {
    top: -10px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 0.72rem !important;
    border-width: 1px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-ic {
    width: 42px !important;
    height: 42px !important;
    margin: 2px auto 8px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-ic.is-empty i {
    font-size: 1.35rem !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-t {
    margin-bottom: 4px !important;
    font-size: 0.82rem !important;
    line-height: 1.18 !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-d {
    display: -webkit-box !important;
    overflow: hidden !important;
    font-size: 0.69rem !important;
    line-height: 1.32 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    min-height: 62px !important;
    border-radius: 0 0 16px 16px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 62px !important;
    padding: 5px 60px 5px 10px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 150px !important;
    max-width: 150px !important;
    min-height: 50px !important;
    border-radius: 22px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 118px !important;
    height: 40px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 116px !important;
    max-height: 37px !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    right: 10px !important;
    width: 42px !important;
    height: 42px !important;
  }

  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: 0 !important;
  }

  body[data-page="calcium-gold"] .usage-hero-mobile {
    width: min(62vw, 200px) !important;
  }

  body[data-page="calcium-gold"] .usage-hero img {
    max-height: 180px !important;
  }

  body[data-page="calcium-gold"] #usage-guide .ustep-fullimg {
    max-height: 118px !important;
  }
}

/* ===== Mobile correction: desktop-like floating nav, no odd white gap ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] #nav {
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    min-height: 64px !important;
    margin: 0 !important;
    overflow: visible !important;
    border: 1px solid rgba(157, 101, 14, 0.24) !important;
    border-radius: 0 0 22px 22px !important;
    background:
      radial-gradient(110px 54px at 18% 18%, rgba(255, 255, 255, 0.72), transparent 70%),
      linear-gradient(90deg, rgba(255, 245, 186, 0.98), rgba(247, 211, 107, 0.98) 52%, rgba(224, 170, 53, 0.98)) !important;
    box-shadow:
      0 10px 24px rgba(111, 72, 12, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.68),
      inset 0 -1px 0 rgba(133, 84, 11, 0.16) !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 62px !important;
    padding: 5px 60px 5px 8px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 154px !important;
    max-width: 154px !important;
    min-height: 50px !important;
    padding: 5px 11px !important;
    border-radius: 22px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 244, 0.9), rgba(255, 226, 117, 0.66) 58%, rgba(210, 151, 36, 0.62)) !important;
  }

  body[data-page="calcium-gold"] #nav::before,
  body[data-page="calcium-gold"] #nav::after,
  body[data-page="calcium-gold"] #nav .navbar-brand::before,
  body[data-page="calcium-gold"] #nav .navbar-brand::after,
  body[data-page="calcium-gold"] .blogo::before,
  body[data-page="calcium-gold"] .blogo::after {
    display: none !important;
    content: none !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 120px !important;
    height: 40px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 118px !important;
    max-height: 37px !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    right: 10px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 18px !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: 0 !important;
    padding-top: 6px !important;
  }

  body[data-page="calcium-gold"] #intro-video {
    margin-top: -1px !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    min-height: 62px !important;
    border-radius: 0 0 20px 20px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 60px !important;
    padding: 5px 56px 5px 7px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 150px !important;
    max-width: 150px !important;
    min-height: 48px !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    padding-top: 5px !important;
  }
}

/* ===== Mobile compact marquee strip ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] .mqsec {
    padding: 7px 0 !important;
    min-height: 34px !important;
    border-top: 1px solid rgba(255, 224, 126, 0.18);
    border-bottom: 1px solid rgba(255, 224, 126, 0.12);
  }

  body[data-page="calcium-gold"] .mqtrack {
    gap: 22px !important;
    align-items: center;
    animation-duration: 18s !important;
  }

  body[data-page="calcium-gold"] .mqitem {
    gap: 7px !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  body[data-page="calcium-gold"] .mqitem i {
    font-size: 0.38rem !important;
  }
}

@media (max-width: 420px) {
  body[data-page="calcium-gold"] .mqsec {
    padding: 6px 0 !important;
    min-height: 30px !important;
  }

  body[data-page="calcium-gold"] .mqtrack {
    gap: 18px !important;
  }

  body[data-page="calcium-gold"] .mqitem {
    gap: 6px !important;
    font-size: 0.68rem !important;
  }
}

/* ===== Mobile UX final pass: denser, clearer, easier to scan ===== */
@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 66px;
  }

  body[data-page="calcium-gold"] [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.001ms !important;
  }

  body[data-page="calcium-gold"] #nav {
    min-height: 58px !important;
    border-radius: 0 0 18px 18px !important;
  }

  body[data-page="calcium-gold"] #nav .container {
    min-height: 58px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  body[data-page="calcium-gold"] #nav .navbar-brand {
    min-height: 46px !important;
    max-width: 142px !important;
    flex-basis: 142px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    width: 112px !important;
    height: 36px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    width: 110px !important;
    max-height: 34px !important;
  }

  body[data-page="calcium-gold"] #nav.navbar.navbar-expand-lg .navbar-toggler {
    width: 40px !important;
    height: 40px !important;
    top: 50% !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    height: clamp(138px, 41vw, 174px) !important;
  }

  body[data-page="calcium-gold"] section,
  body[data-page="calcium-gold"] .section-light,
  body[data-page="calcium-gold"] .section-navy,
  body[data-page="calcium-gold"] .section-aqua,
  body[data-page="calcium-gold"] .usage-section,
  body[data-page="calcium-gold"] .combo-section,
  body[data-page="calcium-gold"] .contact-showcase {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  body[data-page="calcium-gold"] .stitle,
  body[data-page="calcium-gold"] .usage-title,
  body[data-page="calcium-gold"] .testimonial-title,
  body[data-page="calcium-gold"] .contact-title,
  body[data-page="calcium-gold"] .combo-promo-title {
    font-size: clamp(1.42rem, 7.4vw, 1.9rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 9px !important;
  }

  body[data-page="calcium-gold"] .sline {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }

  body[data-page="calcium-gold"] .sdesc,
  body[data-page="calcium-gold"] .usage-sub,
  body[data-page="calcium-gold"] .testimonial-note,
  body[data-page="calcium-gold"] .contact-description,
  body[data-page="calcium-gold"] .combo-promo-sub {
    font-size: 0.86rem !important;
    line-height: 1.42 !important;
    margin-bottom: 14px !important;
  }

  body[data-page="calcium-gold"] .video-intro-section .row {
    gap: 14px !important;
  }

  body[data-page="calcium-gold"] .video-intro-copy .video-meta-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 14px auto 0 !important;
  }

  body[data-page="calcium-gold"] .video-intro-copy .video-meta-list li {
    min-height: 42px !important;
    padding: 9px 12px !important;
    border-radius: 14px !important;
    font-size: 0.86rem !important;
  }

  body[data-page="calcium-gold"] .video-intro-section .video-shell,
  body[data-page="calcium-gold"] .video-shell {
    max-height: 210px !important;
    border-radius: 18px !important;
  }

  body[data-page="calcium-gold"] .video-shell-media,
  body[data-page="calcium-gold"] .video-intro-section .video-shell video,
  body[data-page="calcium-gold"] .video-intro-section .video-poster,
  body[data-page="calcium-gold"] .video-intro-section .video-poster img {
    aspect-ratio: 16 / 9 !important;
    max-height: 210px !important;
  }

  body[data-page="calcium-gold"] .product-intro-section .copy-block,
  body[data-page="calcium-gold"] .product-intro-section .copy-block p {
    color: #26384f !important;
    opacity: 1 !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile {
    max-width: min(70vw, 230px) !important;
    margin: 10px auto 12px !important;
  }

  body[data-page="calcium-gold"] .intro-visual-mobile .intro-image-frame {
    max-height: min(70vw, 230px) !important;
  }

  body[data-page="calcium-gold"] .benefits-grid,
  body[data-page="calcium-gold"] #ingredientGridLeft,
  body[data-page="calcium-gold"] #ingredientGridRight {
    gap: 10px !important;
  }

  body[data-page="calcium-gold"] .benefit-card,
  body[data-page="calcium-gold"] .nutrient-card {
    padding: 13px !important;
    border-radius: 14px !important;
  }

  body[data-page="calcium-gold"] .benefit-icon,
  body[data-page="calcium-gold"] .nutrient-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 8px !important;
  }

  body[data-page="calcium-gold"] .benefit-copy h4,
  body[data-page="calcium-gold"] .nutrient-card h4 {
    font-size: 0.92rem !important;
    line-height: 1.22 !important;
    margin-bottom: 5px !important;
  }

  body[data-page="calcium-gold"] .benefit-copy p,
  body[data-page="calcium-gold"] .nutrient-card p {
    font-size: 0.76rem !important;
    line-height: 1.36 !important;
  }

  body[data-page="calcium-gold"] .activity-card,
  body[data-page="calcium-gold"] .video-feedback-card,
  body[data-page="calcium-gold"] .combo-card,
  body[data-page="calcium-gold"] .combo-card2 {
    border-radius: 16px !important;
  }

  body[data-page="calcium-gold"] #usage-guide {
    padding-top: 26px !important;
  }

  body[data-page="calcium-gold"] .usage-hero-mobile {
    width: min(54vw, 178px) !important;
    margin-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] #order-form .order-hero {
    margin-bottom: 14px !important;
  }

  body[data-page="calcium-gold"] .order-aside-card,
  body[data-page="calcium-gold"] #order-form .order-card {
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }

  body[data-page="calcium-gold"] .order-aside-badge {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 10px !important;
  }

  body[data-page="calcium-gold"] .order-aside-card h4 {
    font-size: 1.12rem !important;
  }

  body[data-page="calcium-gold"] #order-form .ctitem {
    min-height: 42px !important;
    padding: 7px 0 !important;
  }

  body[data-page="calcium-gold"] #order-form .cticon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  body[data-page="calcium-gold"] #order-form .ctinfo strong {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
  }

  body[data-page="calcium-gold"] .order-aside-visual img {
    max-height: 130px !important;
    object-fit: contain !important;
  }

  body[data-page="calcium-gold"] #order-form .fctrl {
    min-height: 48px !important;
    border-radius: 14px !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar {
    left: 8px !important;
    right: 8px !important;
    bottom: 6px !important;
    gap: 7px !important;
    padding-bottom: calc(6px + env(safe-area-inset-bottom)) !important;
  }

  body[data-page="calcium-gold"] .mobile-action-bar a {
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 22px !important;
    font-size: 0.88rem !important;
  }

  body[data-page="calcium-gold"] #btt {
    width: 38px !important;
    height: 38px !important;
    bottom: calc(68px + env(safe-area-inset-bottom)) !important;
  }
}

/* ===== Mobile square nav flush with banner ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #nav {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: inset 0 -1px 0 rgba(143, 93, 13, 0.22) !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* ===== Mobile nav/banner clearance pass ===== */
@media (max-width: 991.98px) {
  body[data-page="calcium-gold"] {
    --mobile-nav-clearance: 72px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    margin-top: var(--mobile-nav-clearance) !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] {
    --mobile-nav-clearance: 68px;
  }
}

/* ===== Mobile nav/banner compact alignment pass ===== */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] {
    --mobile-nav-clearance: -1px;
  }

  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    height: clamp(138px, 41vw, 174px) !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin-top: var(--mobile-nav-clearance) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] #hero.banner-hero::after {
    display: none !important;
    content: none !important;
  }

  body[data-page="calcium-gold"] .bannerSwiper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-wrapper,
  body[data-page="calcium-gold"] .bannerSwiper .swiper-slide {
    height: 100% !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #hero.banner-hero,
  body[data-page="calcium-gold"] #nav + #hero.banner-hero {
    height: clamp(150px, 44vw, 190px) !important;
  }
}

/* Inline video embeds and document viewers */
body[data-page="calcium-gold"] .youtube-video-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #030711;
}

body[data-page="calcium-gold"] .video-shell-media .youtube-video-frame,
body[data-page="calcium-gold"] .activity-video-shell .youtube-video-frame,
body[data-page="calcium-gold"] .feedback-video-shell .youtube-video-frame {
  aspect-ratio: 16 / 9;
}

body[data-page="calcium-gold"] .certificate-document-preview {
  min-height: 560px;
  padding: 14px;
  background: #f8fafc;
}

body[data-page="calcium-gold"] .certificate-document-frame {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 29, 53, 0.16);
}

body[data-page="calcium-gold"] .certificate-document-image {
  width: 100%;
  max-width: 420px;
  max-height: 520px;
  object-fit: contain;
}

@media (max-width: 991px) {
  body[data-page="calcium-gold"] .certificate-document-preview {
    min-height: 480px;
  }

  body[data-page="calcium-gold"] .certificate-document-frame {
    height: 440px;
  }
}

@media (max-width: 575px) {
  body[data-page="calcium-gold"] .certificate-card {
    border-radius: 16px;
  }

  body[data-page="calcium-gold"] .certificate-preview {
    min-height: 360px;
    padding: 12px;
  }

  body[data-page="calcium-gold"] .certificate-document-preview {
    min-height: 430px;
  }

  body[data-page="calcium-gold"] .certificate-document-frame {
    height: 390px;
    border-radius: 8px;
  }

  body[data-page="calcium-gold"] .certificate-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    white-space: normal;
  }
}

/* Compact certificate previews with full-screen document viewer */
body[data-page="calcium-gold"] #certificateGrid {
  align-items: stretch;
  row-gap: 22px;
}

body[data-page="calcium-gold"] .certificate-preview,
body[data-page="calcium-gold"] .certificate-document-preview {
  min-height: 0 !important;
  height: clamp(220px, 24vw, 300px) !important;
  padding: 12px !important;
}

body[data-page="calcium-gold"] .certificate-preview.is-clickable {
  cursor: zoom-in;
}

body[data-page="calcium-gold"] .certificate-preview.is-clickable:focus-visible {
  outline: 3px solid rgba(215, 163, 58, 0.72);
  outline-offset: 4px;
}

body[data-page="calcium-gold"] .certificate-document-frame {
  height: 100% !important;
  pointer-events: none;
}

body[data-page="calcium-gold"] .certificate-document-image,
body[data-page="calcium-gold"] .certificate-preview img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

body[data-page="calcium-gold"] .certificate-body {
  padding: 18px 20px 20px;
}

body[data-page="calcium-gold"] .certificate-card .certificate-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.08rem;
}

body[data-page="calcium-gold"] .certificate-card h4 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1rem;
}

body[data-page="calcium-gold"] .certificate-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page="calcium-gold"] .certificate-badge {
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  font-size: 0.74rem;
}

body[data-page="calcium-gold"] .certificate-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 17, 31, 0.76);
  backdrop-filter: blur(8px);
}

body[data-page="calcium-gold"] .certificate-viewer.open {
  display: flex;
}

body[data-page="calcium-gold"] .certificate-viewer-panel {
  width: min(1120px, 96vw);
  height: min(880px, 92dvh);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: #fffdf7;
  border: 1px solid rgba(247, 215, 122, 0.38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

body[data-page="calcium-gold"] .certificate-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 12px 20px;
  border-bottom: 1px solid rgba(215, 163, 58, 0.22);
}

body[data-page="calcium-gold"] .certificate-viewer-head h3 {
  margin: 0;
  color: var(--cg-navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
}

body[data-page="calcium-gold"] .certificate-viewer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: #102f5e;
  color: #f7d77a;
}

body[data-page="calcium-gold"] .certificate-viewer-body {
  min-height: 0;
  overflow: auto;
  padding: 14px;
  background: #f8fafc;
}

body[data-page="calcium-gold"] .certificate-viewer-frame {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

body[data-page="calcium-gold"] .certificate-viewer-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 575px) {
  body[data-page="calcium-gold"] #certificateGrid {
    row-gap: 16px;
  }

  body[data-page="calcium-gold"] .certificate-preview,
  body[data-page="calcium-gold"] .certificate-document-preview {
    height: 210px !important;
    padding: 10px !important;
  }

  body[data-page="calcium-gold"] .certificate-body {
    padding: 16px;
  }

  body[data-page="calcium-gold"] .certificate-badge {
    left: 10px;
    right: auto;
    bottom: 10px;
    max-width: calc(100% - 20px);
    white-space: nowrap;
  }

  body[data-page="calcium-gold"] .certificate-viewer {
    padding: 8px;
  }

  body[data-page="calcium-gold"] .certificate-viewer-panel {
    width: 100%;
    height: 94dvh;
    border-radius: 14px;
  }

  body[data-page="calcium-gold"] .certificate-viewer-head {
    padding: 10px 10px 10px 14px;
  }

  body[data-page="calcium-gold"] .certificate-viewer-close {
    width: 38px;
    height: 38px;
  }

  body[data-page="calcium-gold"] .certificate-viewer-body {
    padding: 8px;
  }

  body[data-page="calcium-gold"] .certificate-viewer-frame {
    min-height: 78dvh;
  }
}

/* 20260612-compact-benefits-balanced-certificates */
body[data-page="calcium-gold"] .section-aqua .benefit-card {
  min-height: 0;
}

@media (max-width: 767px) {
  body[data-page="calcium-gold"] .benefits-grid {
    gap: 10px;
  }

  body[data-page="calcium-gold"] .section-aqua .benefit-card,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .section-aqua .benefit-card {
    min-height: 0;
    padding: 12px;
    gap: 6px;
  }

  body[data-page="calcium-gold"] .section-aqua .benefit-icon,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .section-aqua .benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }

  body[data-page="calcium-gold"] .benefit-copy,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .benefit-copy {
    gap: 4px;
  }

  body[data-page="calcium-gold"] .benefit-copy h4,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .benefit-copy h4 {
    font-size: 0.82rem;
    line-height: 1.08;
  }

  body[data-page="calcium-gold"] .benefit-copy p,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .benefit-copy p {
    font-size: 0.72rem;
    line-height: 1.24;
  }

  body[data-page="calcium-gold"] .benefit-copy h4::after,
  html[data-cg-language="my"] body[data-page="calcium-gold"] .benefit-copy h4::after {
    width: 42px;
    height: 3px;
    margin-top: 4px;
  }
}

body[data-page="calcium-gold"] .certificate-card {
  height: 100%;
  grid-template-rows: auto 1fr;
}

body[data-page="calcium-gold"] .certificate-body {
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

body[data-page="calcium-gold"] .certificate-card h4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="calcium-gold"] .certificate-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="calcium-gold"] .certificate-card .mini-link {
  margin-top: auto;
}

/* 20260612-equal-certificate-media-box */
body[data-page="calcium-gold"] .certificate-preview,
body[data-page="calcium-gold"] .certificate-document-preview {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body[data-page="calcium-gold"] .certificate-document-image,
body[data-page="calcium-gold"] .certificate-preview > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

body[data-page="calcium-gold"] .certificate-document-frame {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
}

@media (max-width: 575px) {
  body[data-page="calcium-gold"] .certificate-body {
    min-height: 168px;
  }

  body[data-page="calcium-gold"] .certificate-preview,
  body[data-page="calcium-gold"] .certificate-document-preview {
    height: 210px !important;
  }

  body[data-page="calcium-gold"] .certificate-document-image,
  body[data-page="calcium-gold"] .certificate-preview > img {
    max-width: none !important;
    max-height: none !important;
  }

  body[data-page="calcium-gold"] .certificate-document-frame {
    max-width: none !important;
    height: 100% !important;
  }
}

/* 20260615-benefits-doctor-marquee-responsive */
body[data-page="calcium-gold"] .benefits-doctor-frame {
  min-height: 560px;
  padding-top: 0;
}

body[data-page="calcium-gold"] .benefits-marquee-track {
  gap: 28px;
  padding: 11px 32px;
}

body[data-page="calcium-gold"] .benefit-marquee-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

body[data-page="calcium-gold"] .benefit-marquee-item {
  gap: 11px;
  font-size: 0.82rem;
}

@media (max-width: 991px) {
  body[data-page="calcium-gold"] .section-aqua .text-center.mb-5 {
    margin-bottom: 1.35rem !important;
  }

  body[data-page="calcium-gold"] .benefits-showcase {
    gap: 8px;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame {
    min-height: 430px;
  }

  body[data-page="calcium-gold"] .benefits-marquee-bottom {
    margin-top: -20px;
  }
}

@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #benefits.section-aqua {
    padding-top: 28px !important;
  }

  body[data-page="calcium-gold"] .section-aqua .text-center.mb-5 {
    margin-bottom: 0.65rem !important;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame {
    min-height: 320px;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame::before {
    bottom: 18px;
    height: 300px;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame::after {
    top: 12px;
  }

  body[data-page="calcium-gold"] .benefits-doctor img {
    width: min(100%, 300px);
  }

  body[data-page="calcium-gold"] .benefits-marquee-bottom {
    margin-top: -14px;
  }

  body[data-page="calcium-gold"] .benefits-marquee {
    border-radius: 17px;
    border-width: 1px;
  }

  body[data-page="calcium-gold"] .benefits-marquee::before,
  body[data-page="calcium-gold"] .benefits-marquee::after {
    width: 48px;
  }

  body[data-page="calcium-gold"] .benefits-marquee-track {
    gap: 16px;
    padding: 7px 18px;
  }

  body[data-page="calcium-gold"] .benefits-marquee-track::before,
  body[data-page="calcium-gold"] .benefits-marquee-track::after {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  body[data-page="calcium-gold"] .benefit-marquee-item {
    gap: 7px;
    font-size: 0.64rem;
    line-height: 1.15;
    letter-spacing: 0;
  }

  body[data-page="calcium-gold"] .benefit-marquee-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  body[data-page="calcium-gold"] .benefit-marquee-sep {
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  body[data-page="calcium-gold"] .benefits-doctor-frame {
    min-height: 292px;
  }

  body[data-page="calcium-gold"] .benefits-doctor img {
    width: min(100%, 278px);
  }

  body[data-page="calcium-gold"] .benefits-marquee-track {
    gap: 13px;
    padding: 6px 14px;
  }

  body[data-page="calcium-gold"] .benefit-marquee-item {
    gap: 6px;
    font-size: 0.58rem;
  }

  body[data-page="calcium-gold"] .benefit-marquee-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #benefits.section-aqua {
    padding-top: 22px !important;
    padding-bottom: 28px !important;
  }

  body[data-page="calcium-gold"] #benefits .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  body[data-page="calcium-gold"] #benefits .text-center.mb-5 {
    margin-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] #benefits .sline {
    margin-bottom: 0 !important;
  }

  body[data-page="calcium-gold"] .benefits-showcase {
    gap: 0;
  }

  body[data-page="calcium-gold"] .benefits-doctor {
    margin-top: -8px;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame {
    min-height: clamp(252px, 66vw, 282px);
    max-width: 330px;
    overflow: hidden;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame::before {
    bottom: 8px;
    height: 250px;
  }

  body[data-page="calcium-gold"] .benefits-doctor-frame::after,
  body[data-page="calcium-gold"] .benefits-doctor-glow {
    display: none;
  }

  body[data-page="calcium-gold"] .benefits-doctor img {
    width: clamp(258px, 75vw, 286px);
    clip-path: inset(5.8% 0 0 0);
    transform: translateY(-10px);
  }

  body[data-page="calcium-gold"] .benefits-doctor:hover img {
    transform: translateY(-12px) scale(1.01);
  }

  body[data-page="calcium-gold"] .benefits-marquee-bottom {
    margin-top: -24px;
  }

  body[data-page="calcium-gold"] .benefits-marquee {
    border-radius: 14px;
    box-shadow:
      0 10px 20px rgba(7, 25, 45, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  body[data-page="calcium-gold"] .benefits-marquee-track {
    gap: 11px;
    padding: 5px 12px;
  }

  body[data-page="calcium-gold"] .benefits-marquee-track::before,
  body[data-page="calcium-gold"] .benefits-marquee-track::after {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  body[data-page="calcium-gold"] .benefit-marquee-item {
    gap: 5px;
    font-size: 0.54rem;
    line-height: 1.1;
  }

  body[data-page="calcium-gold"] .benefit-marquee-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    filter: drop-shadow(0 5px 7px rgba(5, 22, 48, 0.24));
  }

  body[data-page="calcium-gold"] .benefit-marquee-sep {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  body[data-page="calcium-gold"] .benefits-doctor-frame {
    min-height: clamp(238px, 65vw, 260px);
    max-width: 300px;
  }

  body[data-page="calcium-gold"] .benefits-doctor img {
    width: clamp(246px, 76vw, 272px);
    transform: translateY(-12px);
  }

  body[data-page="calcium-gold"] .benefits-marquee-bottom {
    margin-top: -26px;
  }

  body[data-page="calcium-gold"] .benefits-marquee-track {
    gap: 9px;
    padding: 5px 10px;
  }

  body[data-page="calcium-gold"] .benefit-marquee-item {
    font-size: 0.5rem;
  }

  body[data-page="calcium-gold"] .benefit-marquee-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* 20260615-mobile-navbar-logo-center */
@media (max-width: 767.98px) {
  body[data-page="calcium-gold"] #nav .navbar-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px 12px !important;
  }

  body[data-page="calcium-gold"] .blogo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 36px !important;
    margin: 0 auto !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    display: block !important;
    width: auto !important;
    max-width: 118px !important;
    height: auto !important;
    max-height: 34px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 575.98px) {
  body[data-page="calcium-gold"] #nav .navbar-brand {
    flex-basis: 150px !important;
    max-width: 150px !important;
    padding: 5px 11px !important;
  }

  body[data-page="calcium-gold"] .brand-logo-img {
    max-width: 116px !important;
  }
}
