/* ============================================================
   HomeGoods theme — daily household goods export template (India)
   Palette: sunrise orange + marigold, cream / sand neutrals,
   leaf green accent, warm ink text. Rounded, lively, natural.
   Prefix: hg-
   ============================================================ */
:root {
  --orange: #f26b1d;
  --orange-deep: #d4560f;
  --orange-soft: #ffe9d9;
  --orange-tint: #fff3e8;
  --mango: #ffb347;
  --leaf: #5b9a4a;
  --leaf-deep: #457a37;
  --leaf-soft: #e8f3e3;
  --cream: #fff9f3;
  --sand: #f6eee5;
  --sand-2: #efe3d6;
  --ink: #2a2420;
  --ink-2: #3d352f;
  --text: #46403a;
  --muted: #7d746c;
  --line: #eadfd3;
  --white: #ffffff;
  --wa: #25d366;
  --wa-deep: #1da851;
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow: 0 14px 38px rgba(42, 36, 32, 0.10);
  --shadow-sm: 0 6px 18px rgba(42, 36, 32, 0.08);
  --font: "Trebuchet MS", "Segoe UI", "Noto Sans", Verdana, sans-serif;
  --font-head: "Segoe UI", "Trebuchet MS", "Noto Sans", Arial, sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.homegoods-theme {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  min-width: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
ul { list-style: none; }
.skip-nav { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 10000; }
.skip-nav:focus { left: 8px; }

/* ---------- layout helpers ---------- */
.hg-wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; min-width: 0; }
.hg-sec { padding: 78px 0; }
.hg-sec-tight { padding: 50px 0; }
.hg-sec-sand { background: var(--sand); }
.hg-sec-white { background: var(--white); }
.hg-sec-ink { background: var(--ink); color: #d9d0c7; }
.hg-sec-ink h2, .hg-sec-ink h3 { color: #fff; }
.hg-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); }
.hg-eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--mango); }
.hg-sec-ink .hg-eyebrow { color: var(--mango); }
.hg-h2 { font-size: clamp(28px, 3vw, 40px); margin-top: 10px; }
.hg-lead { font-size: 17.5px; color: var(--muted); max-width: 720px; margin-top: 14px; }
.hg-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.hg-sechead > div { min-width: 0; }
.hg-sechead .hg-lead { margin-top: 10px; }
.hg-sechead-center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.hg-sechead-center .hg-lead { margin-left: auto; margin-right: auto; }
.hg-crumb { font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.hg-crumb a { color: var(--muted); }
.hg-crumb a:hover { color: var(--orange-deep); }
.hg-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.hg-reveal.in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.hg-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 24px; border-radius: 999px; font-weight: 800; font-size: 15px; border: 2px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s; line-height: 1.2; white-space: nowrap; }
.hg-btn:hover { transform: translateY(-2px); }
.hg-btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242, 107, 29, 0.32); }
.hg-btn-primary:hover { background: var(--orange-deep); color: #fff; }
.hg-btn-dark { background: var(--ink); color: #fff; }
.hg-btn-dark:hover { background: #000; color: #fff; }
.hg-btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.hg-btn-light:hover { color: var(--orange-deep); }
.hg-btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.hg-btn-ghost:hover { background: var(--ink); color: #fff; }
.hg-btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.hg-btn-ghost-light:hover { background: #fff; color: var(--orange-deep); border-color: #fff; }
.hg-btn-wa { background: var(--wa); color: #fff; }
.hg-btn-wa:hover { background: var(--wa-deep); color: #fff; }
.hg-btn-lg { padding: 16px 30px; font-size: 16px; }
.hg-btn-sm { padding: 9px 16px; font-size: 13.5px; }
.hg-btn-block { width: 100%; }
.hg-textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--orange-deep); }
.hg-textlink:hover { gap: 12px; }

/* ---------- top line ---------- */
.hg-topline { background: var(--ink); color: #e9dfd5; font-size: 13px; }
.hg-topline-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 36px; flex-wrap: wrap; }
.hg-topline-msg { display: inline-flex; align-items: center; gap: 8px; }
.hg-topline-msg i { color: var(--mango); }
.hg-topline-links { display: flex; gap: 20px; }
.hg-topline-links a { color: #e9dfd5; display: inline-flex; align-items: center; gap: 6px; }
.hg-topline-links a:hover { color: var(--mango); }
.hg-topline-links i { color: var(--mango); }

/* ---------- header ---------- */
.hg-header { position: sticky; top: 0; z-index: 900; background: var(--white); box-shadow: 0 2px 0 var(--line); }
.hg-header.is-stuck { box-shadow: 0 8px 28px rgba(42, 36, 32, 0.10); }
.hg-header-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; min-height: var(--header-h); }
.hg-logo { display: inline-flex; align-items: center; }
.hg-logo img { max-height: 48px; width: auto; }
.hg-search { display: flex; align-items: center; background: var(--sand); border: 2px solid var(--sand-2); border-radius: 999px; padding: 4px 4px 4px 18px; max-width: 560px; width: 100%; margin: 0 auto; min-width: 0; transition: border-color .2s, background .2s; }
.hg-search:focus-within { border-color: var(--orange); background: #fff; }
.hg-search form { display: flex; align-items: center; width: 100%; gap: 10px; min-width: 0; }
.hg-search input { flex: 1; min-width: 0; border: 0; background: transparent; outline: 0; font-size: 15px; color: var(--ink); padding: 8px 0; }
.hg-search input::placeholder { color: var(--muted); }
.hg-search button { flex-shrink: 0; border: 0; background: var(--orange); color: #fff; border-radius: 999px; height: 40px; padding: 0 20px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background .2s; }
.hg-search button:hover { background: var(--orange-deep); }
.hg-tools { display: flex; align-items: center; gap: 10px; justify-self: end; }
.hg-tool { width: 44px; height: 44px; border-radius: 50%; background: var(--sand); border: 0; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; position: relative; transition: background .2s, color .2s; }
.hg-tool:hover { background: var(--orange-soft); color: var(--orange-deep); }
.hg-tool-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--leaf-soft); color: var(--leaf-deep); border-radius: 999px; padding: 0 16px; height: 44px; font-weight: 800; font-size: 14px; }
.hg-tool-wa i { font-size: 18px; }
.hg-tool-wa:hover { background: var(--leaf); color: #fff; }
.hg-basket-badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; border-radius: 10px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; display: none; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff; }
.hg-header-cta { padding: 11px 20px; }
#searchToggle { display: none; }
.hg-burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 0; background: var(--sand); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hg-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hg-burger.on span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hg-burger.on span:nth-child(2) { opacity: 0; }
.hg-burger.on span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* nav band */
.hg-navband { background: var(--orange); color: #fff; }
.hg-navband-in { display: flex; align-items: stretch; gap: 8px; min-height: 50px; }
.hg-catmenu { position: relative; flex-shrink: 0; }
.hg-catmenu-btn { height: 100%; min-height: 50px; display: inline-flex; align-items: center; gap: 10px; padding: 0 22px; background: var(--orange-deep); color: #fff; border: 0; font-weight: 800; font-size: 15px; cursor: pointer; border-radius: 0 0 14px 14px; }
.hg-catmenu-btn .fa-angle-down { transition: transform .2s; font-size: 13px; }
.hg-catmenu.open .hg-catmenu-btn .fa-angle-down { transform: rotate(180deg); }
.hg-catmenu-panel { position: absolute; left: 0; top: 100%; width: 320px; background: #fff; color: var(--ink); border-radius: 0 0 var(--r-lg) var(--r-lg); box-shadow: var(--shadow); padding: 12px; display: none; z-index: 60; }
.hg-catmenu.open .hg-catmenu-panel { display: block; }
.hg-catmenu-panel a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; color: var(--ink-2); font-weight: 700; font-size: 14.5px; }
.hg-catmenu-panel a img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; background: var(--sand); flex-shrink: 0; }
.hg-catmenu-panel a .hg-cat-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hg-catmenu-panel a:hover { background: var(--orange-tint); color: var(--orange-deep); }
.hg-catmenu-panel .hg-catmenu-all { margin-top: 6px; border-top: 1px dashed var(--line); padding-top: 12px; color: var(--orange-deep); justify-content: space-between; }
.hg-nav { display: flex; align-items: stretch; flex: 1; min-width: 0; overflow: visible; }
.hg-nav > a, .hg-navitem > a { display: inline-flex; align-items: center; gap: 6px; padding: 0 18px; color: #fff; font-weight: 700; font-size: 15px; position: relative; }
.hg-nav > a::after, .hg-navitem > a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px; height: 3px; border-radius: 3px; background: #fff; transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.hg-nav > a:hover::after, .hg-nav > a.active::after, .hg-navitem > a:hover::after, .hg-navitem > a.active::after { transform: scaleX(1); }
.hg-navitem { position: relative; display: flex; }
.hg-navitem .fa-angle-down { font-size: 12px; opacity: .85; }
.hg-drop { position: absolute; left: 0; top: 100%; min-width: 260px; background: #fff; border-radius: 0 0 var(--r-lg) var(--r-lg); box-shadow: var(--shadow); padding: 12px; display: none; z-index: 60; }
.hg-navitem:hover .hg-drop { display: block; }
.hg-drop a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--ink-2); font-weight: 700; font-size: 14.5px; white-space: nowrap; }
.hg-drop a:hover { background: var(--orange-tint); color: var(--orange-deep); }
.hg-drop .hg-drop-parent { color: var(--orange-deep); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; padding-bottom: 4px; }
.hg-drop .hg-drop-child { padding-left: 22px; font-weight: 600; }
.hg-navband-right { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 14px; padding: 0 6px 0 18px; flex-shrink: 0; }
.hg-navband-right i { background: rgba(255,255,255,.2); width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.hg-navband-right:hover { color: #fff; text-decoration: underline; }

/* mobile drawer */
.hg-scrim { position: fixed; inset: 0; background: rgba(42, 36, 32, .55); z-index: 950; opacity: 0; visibility: hidden; transition: opacity .25s; }
.hg-scrim.on { opacity: 1; visibility: visible; }
.hg-drawer { position: fixed; top: 0; bottom: 0; left: 0; width: min(88vw, 360px); background: #fff; z-index: 960; transform: translateX(-104%); transition: transform .3s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; overflow-y: auto; }
.hg-drawer.on { transform: none; }
.hg-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--orange); color: #fff; }
.hg-drawer-head strong { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; }
.hg-drawer-close { width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.2); color: #fff; font-size: 18px; cursor: pointer; }
.hg-drawer nav { padding: 10px 12px; }
.hg-drawer nav > a, .hg-drawer-sec > button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 12px; border-radius: 12px; color: var(--ink); font-weight: 700; font-size: 15px; background: none; border: 0; text-align: left; cursor: pointer; }
.hg-drawer nav > a.active, .hg-drawer nav > a:hover { background: var(--orange-tint); color: var(--orange-deep); }
.hg-drawer-sec > button i { transition: transform .2s; color: var(--muted); }
.hg-drawer-sec.open > button i { transform: rotate(180deg); }
.hg-drawer-sub { display: none; padding: 2px 0 8px 12px; }
.hg-drawer-sec.open .hg-drawer-sub { display: block; }
.hg-drawer-sub a { display: block; padding: 9px 12px; color: var(--text); font-size: 14.5px; border-left: 2px solid var(--line); margin-left: 6px; }
.hg-drawer-sub a:hover { color: var(--orange-deep); border-color: var(--orange); }
.hg-drawer-cats { padding: 6px 12px 12px; }
.hg-drawer-cats h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 8px 12px; }
.hg-drawer-cats a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; color: var(--ink-2); font-weight: 600; font-size: 14.5px; border-radius: 10px; }
.hg-drawer-cats a:hover { background: var(--orange-tint); }
.hg-drawer-cats img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.hg-drawer-cta { margin-top: auto; padding: 16px 18px 22px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.hg-drawer-contact { padding: 0 18px 18px; font-size: 13.5px; color: var(--muted); display: grid; gap: 6px; }
.hg-drawer-contact a { color: var(--ink-2); display: inline-flex; gap: 8px; align-items: center; word-break: break-all; }

/* ---------- hero bento ---------- */
.hg-hero { padding: 36px 0 60px; background: radial-gradient(circle at 12% 10%, #ffe1c8 0, transparent 38%), radial-gradient(circle at 88% 90%, #eaf4e3 0, transparent 34%), var(--cream); position: relative; overflow: hidden; }
.hg-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(150px, auto); gap: 18px; }
.hg-tile { border-radius: var(--r-xl); position: relative; overflow: hidden; min-width: 0; }
.hg-tile-main { grid-column: span 7; grid-row: span 2; background: linear-gradient(135deg, var(--orange) 0%, #ff8a3d 55%, var(--mango) 100%); color: #fff; padding: 48px 46px; display: flex; flex-direction: column; justify-content: center; }
.hg-tile-main::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.14); }
.hg-tile-main::before { content: ""; position: absolute; right: 60px; top: -90px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.12); }
.hg-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.45); color: #fff; border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; width: fit-content; position: relative; z-index: 1; }
.hg-tile-main h1 { color: #fff; font-size: clamp(32px, 3.6vw, 50px); margin: 20px 0 16px; position: relative; z-index: 1; }
.hg-tile-main h1 em { font-style: normal; color: var(--ink); background: #fff; padding: 0 12px; border-radius: 14px; display: inline-block; line-height: 1.25; }
.hg-tile-main p { font-size: 17px; max-width: 560px; opacity: .95; position: relative; z-index: 1; }
.hg-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; position: relative; z-index: 1; }
.hg-tile-cats { grid-column: span 5; background: #fff; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.hg-tile-cats h3 { font-size: 15px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hg-tile-cats h3 a { font-size: 13px; color: var(--orange-deep); font-weight: 700; }
.hg-tile-catlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.hg-tile-catlist a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; background: var(--sand); color: var(--ink-2); font-weight: 700; font-size: 13.5px; min-width: 0; }
.hg-tile-catlist a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.hg-tile-catlist a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.hg-tile-catlist img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; flex-shrink: 0; background: #fff; }
.hg-tile-catlist .hg-cat-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hg-tile-india { grid-column: span 3; background: var(--ink); color: #e9dfd5; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.hg-tile-india strong { color: #fff; font-size: 18px; line-height: 1.3; display: block; }
.hg-tile-india small { font-size: 13px; color: #b8aca0; }
.hg-tile-india i { font-size: 30px; color: var(--mango); }
.hg-tile-wa { grid-column: span 2; background: var(--leaf); color: #fff; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; text-align: left; }
.hg-tile-wa:hover { background: var(--leaf-deep); color: #fff; }
.hg-tile-wa i { font-size: 34px; }
.hg-tile-wa strong { display: block; font-size: 16px; line-height: 1.3; }
.hg-tile-wa small { font-size: 12.5px; opacity: .9; }

/* ---------- marquee ---------- */
.hg-marquee { background: var(--ink); color: #fff; overflow: hidden; padding: 14px 0; border-top: 4px solid var(--mango); }
.hg-marquee-track { display: flex; gap: 40px; width: max-content; animation: hgMarquee 38s linear infinite; }
.hg-marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.hg-marquee-track span i { color: var(--mango); }
@keyframes hgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hg-marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ---------- category bubbles ---------- */
.hg-bubbles { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px 22px; }
.hg-bubble { width: 150px; text-align: center; color: var(--ink-2); font-weight: 700; font-size: 14.5px; min-width: 0; }
.hg-bubble-img { width: 118px; height: 118px; border-radius: 50%; margin: 0 auto 12px; background: var(--white); border: 4px solid var(--orange-soft); overflow: hidden; display: flex; align-items: center; justify-content: center; transition: transform .25s, border-color .25s, box-shadow .25s; }
.hg-bubble-img img { width: 100%; height: 100%; object-fit: cover; }
.hg-bubble-img i { font-size: 34px; color: var(--orange); }
.hg-bubble:hover .hg-bubble-img { transform: translateY(-6px) scale(1.03); border-color: var(--orange); box-shadow: 0 14px 28px rgba(242,107,29,.25); }
.hg-bubble span { display: block; line-height: 1.3; }
.hg-bubble small { display: block; color: var(--muted); font-weight: 600; font-size: 12.5px; margin-top: 2px; }

/* ---------- product cards ---------- */
.hg-prodgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hg-prod { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; transition: transform .25s, box-shadow .25s; position: relative; }
.hg-prod:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.hg-prod-media { display: block; aspect-ratio: 1 / 1; background: var(--sand); overflow: hidden; position: relative; }
.hg-prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hg-prod:hover .hg-prod-media img { transform: scale(1.05); }
.hg-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 42px; background: var(--orange-tint); }
.hg-prod-cat { position: absolute; left: 12px; top: 12px; background: rgba(255,255,255,.92); color: var(--orange-deep); font-size: 11.5px; font-weight: 800; padding: 5px 10px; border-radius: 999px; letter-spacing: .04em; max-width: calc(100% - 24px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hg-prod-body { padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.hg-prod-body h3, .hg-prod-body h2 { font-size: 15.5px; line-height: 1.35; font-weight: 700; }
.hg-prod-body h3 a, .hg-prod-body h2 a { color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-prod-body h3 a:hover, .hg-prod-body h2 a:hover { color: var(--orange-deep); }
.hg-prod-body p { font-size: 13.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-prod-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hg-prod-tags span { font-size: 11.5px; font-weight: 700; color: var(--leaf-deep); background: var(--leaf-soft); padding: 3px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.hg-prod-acts { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.hg-prod-acts .hg-btn { flex: 1; padding: 10px 12px; font-size: 13.5px; }
.hg-prod-add { width: 42px; flex: 0 0 42px !important; padding: 0 !important; border-radius: 50%; background: var(--sand); color: var(--ink); }
.hg-prod-add:hover { background: var(--orange-soft); color: var(--orange-deep); }

/* ---------- why split ---------- */
.hg-split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.hg-split-side { position: sticky; top: 130px; }
.hg-split-side .hg-h2 { margin-bottom: 18px; }
.hg-split-visual { margin-top: 28px; border-radius: var(--r-xl); background: var(--orange-soft); padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hg-split-visual div { background: #fff; border-radius: var(--r-md); padding: 18px 16px; text-align: center; }
.hg-split-visual i { font-size: 26px; color: var(--orange); display: block; margin-bottom: 8px; }
.hg-split-visual strong { display: block; font-size: 14px; color: var(--ink); }
.hg-numlist { display: grid; gap: 14px; }
.hg-numitem { display: grid; grid-template-columns: 58px 1fr; gap: 20px; background: #fff; border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--mango); min-width: 0; }
.hg-numitem:nth-child(even) { border-left-color: var(--leaf); }
.hg-numitem strong.hg-num { font-size: 30px; font-weight: 900; color: var(--orange); line-height: 1; font-family: var(--font-head); }
.hg-numitem h3 { font-size: 18px; margin-bottom: 6px; }
.hg-numitem p { color: var(--muted); font-size: 15px; }

/* ---------- steps timeline ---------- */
.hg-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; counter-reset: hgstep; }
.hg-steps::before { content: ""; position: absolute; top: 38px; left: 8%; right: 8%; border-top: 2px dashed var(--sand-2); }
.hg-step { position: relative; text-align: center; padding: 0 8px; min-width: 0; counter-increment: hgstep; }
.hg-step-ico { width: 76px; height: 76px; border-radius: 24px; background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; position: relative; transform: rotate(-6deg); transition: transform .3s; }
.hg-step:hover .hg-step-ico { transform: rotate(0); }
.hg-step-ico::after { content: counter(hgstep, decimal-leading-zero); position: absolute; right: -10px; top: -10px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transform: rotate(6deg); }
.hg-step h3 { font-size: 17px; margin-bottom: 6px; }
.hg-step p { font-size: 14px; color: var(--muted); }

/* ---------- solutions rail ---------- */
.hg-solrail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px; scrollbar-width: thin; scrollbar-color: var(--orange) var(--sand-2); }
.hg-solrail::-webkit-scrollbar { height: 6px; }
.hg-solrail::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.hg-solcard { flex: 0 0 320px; scroll-snap-align: start; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; }
.hg-solcard-media { aspect-ratio: 16 / 10; background: var(--sand); overflow: hidden; position: relative; }
.hg-solcard-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-solcard-media em { position: absolute; left: 14px; bottom: -16px; width: 40px; height: 40px; border-radius: 12px; background: var(--orange); color: #fff; font-style: normal; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 6px 14px rgba(242,107,29,.35); }
.hg-solcard-body { padding: 26px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hg-solcard h3 { font-size: 17px; }
.hg-solcard h3 a { color: var(--ink); }
.hg-solcard h3 a:hover { color: var(--orange-deep); }
.hg-solcard p { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hg-solcard .hg-textlink { margin-top: auto; font-size: 14px; }

/* ---------- certificates band ---------- */
.hg-certstrip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.hg-certthumb { background: #fff; border-radius: var(--r-md); padding: 10px; display: block; min-width: 0; transition: transform .25s; }
.hg-certthumb:hover { transform: translateY(-4px); }
.hg-certthumb .hg-certthumb-img { aspect-ratio: 4 / 3; background: var(--sand); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hg-certthumb img { width: 100%; height: 100%; object-fit: contain; }
.hg-certthumb span { display: block; margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--ink); text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hg-certband-foot { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.hg-certband-foot p { color: #c9bfb4; max-width: 620px; }

/* ---------- faq + blog duo ---------- */
.hg-duo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; }
.hg-acc { display: grid; gap: 10px; }
.hg-acc-item { background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; }
.hg-acc-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.hg-acc-item summary::-webkit-details-marker { display: none; }
.hg-acc-item summary i { width: 30px; height: 30px; border-radius: 50%; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .25s; font-size: 13px; }
.hg-acc-item[open] summary i { transform: rotate(45deg); background: var(--orange); color: #fff; }
.hg-acc-item[open] summary { color: var(--orange-deep); }
.hg-acc-body { padding: 0 20px 18px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hg-acc-body p { margin-bottom: 8px; }
.hg-bloglist { display: grid; gap: 14px; }
.hg-blogrow { display: grid; grid-template-columns: 120px 1fr; gap: 16px; background: #fff; border-radius: var(--r-md); padding: 12px; box-shadow: var(--shadow-sm); align-items: center; min-width: 0; }
.hg-blogrow-media { aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; background: var(--sand); }
.hg-blogrow-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-blogrow time { font-size: 12.5px; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; }
.hg-blogrow h3 { font-size: 15.5px; margin-top: 4px; }
.hg-blogrow h3 a { color: var(--ink); }
.hg-blogrow h3 a:hover { color: var(--orange-deep); }

/* ---------- CTA wave ---------- */
.hg-ctawave { position: relative; background: var(--orange); color: #fff; padding: 90px 0 80px; margin-top: 40px; overflow: hidden; }
.hg-ctawave svg.hg-wave { position: absolute; top: -2px; left: 0; width: 100%; height: 60px; display: block; }
.hg-ctawave::after { content: ""; position: absolute; left: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.12); }
.hg-ctagrid { display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hg-ctagrid .hg-eyebrow { color: #fff; }
.hg-ctagrid .hg-eyebrow::before { background: #fff; }
.hg-ctagrid h2 { color: #fff; font-size: clamp(28px, 3vw, 42px); margin-top: 12px; }
.hg-ctagrid p { font-size: 17px; opacity: .95; margin-top: 14px; max-width: 560px; }
.hg-ctacheck { margin-top: 22px; display: grid; gap: 10px; }
.hg-ctacheck li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.hg-ctacheck li i { color: var(--ink); background: #fff; border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.hg-ctaform { background: #fff; color: var(--text); border-radius: var(--r-xl); padding: 30px 28px; box-shadow: 0 30px 60px rgba(42,36,32,.25); min-width: 0; }
.hg-ctaform h3 { font-size: 20px; margin-bottom: 4px; }
.hg-ctaform > p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.hg-ctaform-note { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12.5px; color: var(--muted); }

/* ---------- forms ---------- */
.hg-form { display: grid; gap: 12px; min-width: 0; }
.hg-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.hg-form input[type="text"], .hg-form input[type="email"], .hg-form input[type="tel"], .hg-form textarea, .hg-form select { width: 100%; min-width: 0; border: 2px solid var(--line); background: var(--cream); border-radius: 14px; padding: 13px 16px; font-size: 15px; color: var(--ink); outline: 0; transition: border-color .2s, background .2s; }
.hg-form input:focus, .hg-form textarea:focus { border-color: var(--orange); background: #fff; }
.hg-form textarea { resize: vertical; min-height: 110px; }
.hg-form .hg-vertify { display: flex; gap: 10px; align-items: center; }
.hg-form .hg-vertify input { flex: 1; }
.hg-form .hg-vertify img { height: 46px; border-radius: 10px; cursor: pointer; flex-shrink: 0; }
.hg-form button[type="submit"] { margin-top: 4px; }

/* ---------- page head ---------- */
.hg-pagehead { background: var(--sand); background-image: radial-gradient(var(--sand-2) 1.5px, transparent 1.5px); background-size: 22px 22px; padding: 38px 0 44px; position: relative; overflow: hidden; }
.hg-pagehead::after { content: ""; position: absolute; right: -60px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: var(--orange-soft); opacity: .8; }
.hg-pagehead .hg-wrap { position: relative; z-index: 1; }
.hg-pagehead h1 { font-size: clamp(30px, 3.4vw, 46px); margin-top: 16px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hg-pagehead h1 i { width: 56px; height: 56px; border-radius: 18px; background: var(--orange); color: #fff; font-size: 22px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transform: rotate(-6deg); }
.hg-pagehead p { color: var(--muted); font-size: 17px; max-width: 760px; margin-top: 12px; }
.hg-pagehead-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hg-pagehead-orange { background: linear-gradient(120deg, var(--orange), #ff8a3d 70%, var(--mango)); background-image: linear-gradient(120deg, var(--orange), #ff8a3d 70%, var(--mango)); color: #fff; }
.hg-pagehead-orange::after { background: rgba(255,255,255,.15); }
.hg-pagehead-orange h1, .hg-pagehead-orange p { color: #fff; }
.hg-pagehead-orange h1 i { background: #fff; color: var(--orange-deep); }
.hg-pagehead-orange .hg-crumb, .hg-pagehead-orange .hg-crumb a { color: rgba(255,255,255,.85); }
.hg-pagehead-orange p { opacity: .95; }
.hg-pagehead-compact { padding: 28px 0 32px; }
.hg-pagehead-compact h1 { font-size: clamp(26px, 2.8vw, 36px); }
.hg-pagehead-ink { background: var(--ink); background-image: none; color: #fff; }
.hg-pagehead-ink::after { background: var(--orange); opacity: .35; }
.hg-pagehead-ink h1 { color: #fff; }
.hg-pagehead-ink p { color: #c9bfb4; }
.hg-pagehead-ink .hg-crumb, .hg-pagehead-ink .hg-crumb a { color: rgba(255,255,255,.75); }
.hg-clausestrip { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.hg-clausestrip a { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; border-radius: 999px; padding: 7px 14px 7px 7px; font-size: 13px; font-weight: 700; }
.hg-clausestrip a b { width: 24px; height: 24px; border-radius: 50%; background: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 11.5px; }
.hg-clausestrip a:hover { background: var(--orange); border-color: var(--orange); }
.hg-legal-foot { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hg-legal-foot > i { font-size: 28px; color: var(--orange); }
.hg-legal-foot > div { flex: 1; min-width: 200px; font-size: 14.5px; color: var(--muted); }
.hg-legal-foot strong { display: block; color: var(--ink); }

/* ---------- product list ---------- */
.hg-catrail { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: none; cursor: grab; user-select: none; -webkit-user-select: none; }
.hg-catrail::-webkit-scrollbar { display: none; }
.hg-catrail.is-dragging { cursor: grabbing; }
.hg-catrail.is-dragging a { pointer-events: none; }
.hg-catrail a { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 2px solid var(--line); color: var(--ink-2); font-weight: 700; font-size: 14px; white-space: nowrap; transition: all .2s; }
.hg-catrail a img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.hg-catrail a:hover, .hg-catrail a.on { border-color: var(--orange); background: var(--orange-soft); color: var(--orange-deep); }
.hg-catrail a.hg-catrail-sub { font-weight: 600; border-style: dashed; }
.hg-listbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 10px 0 26px; flex-wrap: wrap; }
.hg-listbar p { color: var(--muted); font-size: 14.5px; display: inline-flex; gap: 8px; align-items: center; }
.hg-listbar p i { color: var(--leaf); }
.hg-listbar-links { display: flex; gap: 8px; flex-wrap: wrap; }
.hg-helpband { margin-top: 44px; border-radius: var(--r-xl); background: var(--ink); color: #e9dfd5; padding: 34px 38px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.hg-helpband h2 { color: #fff; font-size: 24px; margin-top: 6px; }
.hg-helpband p { color: #c9bfb4; margin-top: 8px; }
.hg-helpband .hg-eyebrow { color: var(--mango); }
.hg-helpband-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hg-helpband-leaf { background: var(--leaf-soft); color: var(--text); }
.hg-helpband-leaf h2 { color: var(--ink); }
.hg-helpband-leaf p { color: var(--muted); }
.hg-helpband-leaf .hg-eyebrow { color: var(--leaf-deep); }
.hg-helpband-leaf .hg-eyebrow::before { background: var(--leaf); }

/* ---------- pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin: 40px 0 0; }
.pagination span, .pagination a { display: inline-flex; }
.pagination a, .pagination span > a, .pagination span.current, .pagination span.active > a, .pagination span.active { min-width: 42px; height: 42px; padding: 0 14px; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; font-size: 14px; align-items: center; justify-content: center; border: 2px solid var(--line); transition: all .2s; }
.pagination span.current, .pagination span.active { border: 0; padding: 0; background: transparent; }
.pagination span.active > a, .pagination span.current > a, .pagination a.current { background: var(--orange); color: #fff; border-color: var(--orange); }
.pagination a:hover { border-color: var(--orange); color: var(--orange-deep); }
.pagination span.active > a:hover, .pagination span.current > a:hover { color: #fff; }
.pagination .icon-arrow5, .pagination .icon-arrow6 { font-style: normal; display: inline-flex; align-items: center; justify-content: center; }
.pagination .icon-arrow5::before { content: "\2039"; font-size: 20px; line-height: 1; }
.pagination .icon-arrow6::before { content: "\203A"; font-size: 20px; line-height: 1; }
.pagination .prev-next { color: var(--muted); }

/* ---------- product detail ---------- */
.hg-pdp-top { padding: 24px 0 60px; background: linear-gradient(var(--sand) 0, var(--sand) 300px, var(--cream) 300px); }
.hg-pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; margin-top: 18px; align-items: start; }
.hg-gallery { min-width: 0; }
.hg-gallery-main { aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; position: relative; }
.hg-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.hg-gallery-main .hg-pdp-badge { position: absolute; left: 16px; top: 16px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.hg-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.hg-thumbs button { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 16px; overflow: hidden; border: 3px solid transparent; background: #fff; cursor: pointer; padding: 0; transition: border-color .2s; }
.hg-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.hg-thumbs button.active, .hg-thumbs button:hover { border-color: var(--orange); }
.hg-pdp-info { min-width: 0; }
.hg-pdp-cat { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-soft); color: var(--orange-deep); font-weight: 800; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; }
.hg-pdp-info h1 { font-size: clamp(26px, 2.6vw, 36px); margin: 14px 0 12px; }
.hg-pdp-lead { color: var(--muted); font-size: 16px; }
.hg-keyfacts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.hg-keyfacts div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; min-width: 0; }
.hg-keyfacts dt { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.hg-keyfacts dd { font-weight: 700; color: var(--ink); font-size: 14.5px; margin-top: 3px; word-break: break-word; }
.hg-buybox { margin-top: 24px; background: #fff; border-radius: var(--r-xl); padding: 24px; border: 2px solid var(--orange-soft); box-shadow: var(--shadow-sm); }
.hg-buybox h2 { font-size: 18px; display: flex; gap: 10px; align-items: center; }
.hg-buybox h2 i { color: var(--orange); }
.hg-buybox p { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }
.hg-buybox-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hg-buybox-wa { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--leaf-deep); font-weight: 800; font-size: 14.5px; background: var(--leaf-soft); border-radius: 999px; padding: 11px; }
.hg-buybox-wa:hover { background: var(--leaf); color: #fff; }
.hg-pdp-assure { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.hg-pdp-assure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.hg-pdp-assure span i { color: var(--leaf); }
.hg-share { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.hg-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--sand); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.hg-share a:hover { background: var(--orange); color: #fff; }
.hg-tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--line); margin-bottom: 30px; overflow-x: auto; scrollbar-width: none; }
.hg-tabs::-webkit-scrollbar { display: none; }
.hg-tabs button { flex-shrink: 0; border: 0; background: none; padding: 14px 20px; font-weight: 800; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; display: inline-flex; gap: 8px; align-items: center; font-size: 15px; }
.hg-tabs button.on { color: var(--orange-deep); border-bottom-color: var(--orange); }
.hg-tabpane { display: none; }
.hg-tabpane.on { display: block; }
.hg-spectable { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.hg-spectable th, .hg-spectable td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.hg-spectable th { width: 34%; background: var(--sand); color: var(--ink); font-weight: 800; }
.hg-spectable tr:last-child th, .hg-spectable tr:last-child td { border-bottom: 0; }
.hg-pdp-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.hg-pdp-perks div { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; min-width: 0; }
.hg-pdp-perks div i { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.hg-pdp-perks span { font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.35; }
.hg-pdp-perks small { font-weight: 500; color: var(--muted); font-size: 12.5px; }
.hg-buybox-list { margin-top: 16px; display: grid; gap: 8px; }
.hg-buybox-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.hg-buybox-list li i { color: var(--leaf); margin-top: 3px; }
.hg-shipgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hg-shipgrid > div { background: #fff; border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--line); min-width: 0; }
.hg-shipgrid > div > i { width: 46px; height: 46px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.hg-shipgrid h3 { font-size: 17px; margin-bottom: 6px; }
.hg-shipgrid p { color: var(--muted); font-size: 14.5px; }
.hg-relrail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hg-relcard { background: #fff; border-radius: var(--r-lg); padding: 12px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; min-width: 0; transition: all .25s; }
.hg-relcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange-soft); }
.hg-relcard-img { aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; background: var(--sand); }
.hg-relcard-img img { width: 100%; height: 100%; object-fit: cover; }
.hg-relcard span { font-weight: 800; color: var(--ink); font-size: 14.5px; margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-relcard small { color: var(--muted); font-size: 12.5px; }
.hg-prod-cta { background: linear-gradient(160deg, var(--orange), var(--orange-deep)); color: #fff; padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.hg-prod-cta h3 { color: #fff; font-size: 20px; display: flex; gap: 10px; align-items: center; }
.hg-prod-cta h3 i { color: var(--mango); }
.hg-prod-cta p { color: rgba(255,255,255,.9); font-size: 14.5px; }
.hg-prod-cta .hg-btn-primary { background: #fff; color: var(--orange-deep); align-self: flex-start; }
.hg-prod-cta .hg-btn-primary:hover { background: var(--ink); color: #fff; }
.hg-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.hg-pager-cell { min-width: 0; }
.hg-pager-cell .pager-link { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--line); border-radius: 16px; padding: 14px 18px; color: var(--ink); font-weight: 700; font-size: 14.5px; min-width: 0; }
.hg-pager-cell .pager-link:hover { border-color: var(--orange); color: var(--orange-deep); }
.hg-pager-cell .pager-empty { color: var(--muted); font-weight: 600; }
.hg-pager-next .pager-link { justify-content: flex-end; text-align: right; }

/* ---------- rich text ---------- */
.detail-content { min-width: 0; color: var(--text); font-size: 16px; line-height: 1.8; word-wrap: break-word; overflow-wrap: anywhere; }
.detail-content p { margin-bottom: 16px; }
.detail-content h2, .detail-content h3, .detail-content h4 { margin: 30px 0 12px; }
.detail-content h2 { font-size: 24px; padding-left: 14px; border-left: 5px solid var(--orange); }
.detail-content h3 { font-size: 19px; }
.detail-content ul, .detail-content ol { margin: 0 0 16px 22px; }
.detail-content ul { list-style: disc; }
.detail-content ol { list-style: decimal; }
.detail-content li { margin-bottom: 6px; }
.detail-content img { border-radius: var(--r-md); margin: 12px 0; }
.detail-content a { text-decoration: underline; }
.detail-content blockquote { border-left: 4px solid var(--mango); background: var(--sand); padding: 14px 18px; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 16px 0; color: var(--ink-2); }
.detail-content iframe, .detail-content video { max-width: 100%; }
.detail-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; overflow-x: auto; }
.detail-content table th, .detail-content table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; min-width: 0; }
.detail-content table th { background: var(--sand); color: var(--ink); font-weight: 800; }
.detail-content table tr:nth-child(even) td { background: #fffdfa; }
.tablewrap-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; border-radius: var(--r-sm); }
.tablewrap-scroll table { margin: 0; min-width: 520px; }

/* ---------- about ---------- */
.hg-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hg-story h2 { font-size: clamp(28px, 3vw, 40px); margin-top: 10px; }
.hg-story p { color: var(--muted); font-size: 16.5px; margin-top: 14px; }
.hg-quotecard { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 40px 38px; position: relative; overflow: hidden; }
.hg-quotecard::before { content: "\201C"; position: absolute; left: 24px; top: -20px; font-size: 160px; font-family: Georgia, serif; color: var(--orange); opacity: .55; line-height: 1; }
.hg-quotecard blockquote { font-size: 22px; line-height: 1.45; font-weight: 700; position: relative; z-index: 1; font-family: var(--font-head); }
.hg-quotecard footer { margin-top: 20px; color: var(--mango); font-weight: 700; font-size: 14px; position: relative; z-index: 1; }
.hg-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hg-value { background: #fff; border-radius: var(--r-xl); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; min-width: 0; }
.hg-value::after { content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: var(--orange-soft); }
.hg-value:nth-child(2)::after { background: var(--leaf-soft); }
.hg-value:nth-child(3)::after { background: #fff1cc; }
.hg-value i { font-size: 30px; color: var(--orange); position: relative; z-index: 1; }
.hg-value:nth-child(2) i { color: var(--leaf); }
.hg-value:nth-child(3) i { color: #e09a00; }
.hg-value h3 { font-size: 20px; margin: 16px 0 8px; position: relative; z-index: 1; }
.hg-value p { color: var(--muted); font-size: 15px; position: relative; z-index: 1; }
.hg-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hg-flowcard { background: var(--sand); border-radius: var(--r-lg); padding: 24px; min-width: 0; position: relative; }
.hg-flowcard em { font-style: normal; font-size: 13px; font-weight: 800; color: var(--orange-deep); letter-spacing: .1em; }
.hg-flowcard h3 { font-size: 17px; margin: 8px 0 6px; }
.hg-flowcard p { color: var(--muted); font-size: 14px; }
.hg-flowcard .fa-arrow-right-long { position: absolute; right: -19px; top: 50%; transform: translateY(-50%); color: var(--mango); background: #fff; border-radius: 50%; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; z-index: 2; font-size: 13px; box-shadow: var(--shadow-sm); }
.hg-flowcard:last-child .fa-arrow-right-long { display: none; }
.hg-content-narrow { max-width: 900px; margin: 0 auto; }

/* ---------- manufacturing ---------- */
.hg-mfg { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.hg-stepindex { position: sticky; top: 130px; background: #fff; border-radius: var(--r-lg); padding: 14px; box-shadow: var(--shadow-sm); }
.hg-stepindex a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; color: var(--ink-2); font-weight: 700; font-size: 14.5px; }
.hg-stepindex a b { width: 28px; height: 28px; border-radius: 50%; background: var(--sand); color: var(--orange-deep); font-size: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hg-stepindex a:hover, .hg-stepindex a.on { background: var(--orange-tint); color: var(--orange-deep); }
.hg-stepindex a.on b { background: var(--orange); color: #fff; }
.hg-stepcards { display: grid; gap: 18px; min-width: 0; }
.hg-stepcard { display: grid; grid-template-columns: 96px 1fr; gap: 24px; background: #fff; border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm); min-width: 0; scroll-margin-top: 150px; }
.hg-stepcard-ico { width: 96px; height: 96px; border-radius: 28px; background: var(--orange-soft); color: var(--orange); font-size: 34px; display: inline-flex; align-items: center; justify-content: center; }
.hg-stepcard:nth-child(even) .hg-stepcard-ico { background: var(--leaf-soft); color: var(--leaf); }
.hg-stepcard > div > em { font-style: normal; font-size: 12.5px; letter-spacing: .1em; font-weight: 800; color: var(--orange-deep); text-transform: uppercase; }
.hg-stepcard > div > h3 { font-size: 21px; margin: 6px 0 8px; }
.hg-stepcard > div > p { color: var(--muted); font-size: 15px; }
.hg-stepcard > div > ul { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.hg-stepcard > div > ul li { background: var(--sand); border-radius: 999px; padding: 5px 12px; font-size: 13px; font-weight: 700; color: var(--ink-2); display: inline-flex; gap: 6px; align-items: center; }
.hg-stepcard > div > ul li i { color: var(--leaf); }
.hg-capgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hg-cap { background: #fff; border-radius: var(--r-lg); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-cap i { font-size: 30px; color: var(--orange); }
.hg-cap strong { display: block; margin-top: 12px; font-size: 16px; color: var(--ink); }
.hg-cap span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.hg-checkband { border-radius: var(--r-xl); background: var(--ink); color: #e9dfd5; padding: 44px 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hg-checkband h2 { color: #fff; font-size: 28px; margin-top: 10px; }
.hg-checkband p { color: #c9bfb4; margin-top: 12px; }
.hg-checkband ul { display: grid; gap: 12px; }
.hg-checkband li { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.06); border-radius: 14px; padding: 12px 14px; font-size: 15px; }
.hg-checkband li i { color: var(--mango); margin-top: 3px; flex-shrink: 0; }
.hg-checkband .hg-eyebrow { color: var(--mango); }

/* ---------- solutions ---------- */
.hg-segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hg-segment { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; transition: transform .25s; }
.hg-segment:hover { transform: translateY(-5px); }
.hg-segment-media { display: block; aspect-ratio: 16 / 9; background: var(--sand); position: relative; overflow: hidden; }
.hg-segment-media .hg-noimg { font-size: 36px; color: var(--mango); }
.hg-split-side p { color: var(--muted); margin-bottom: 22px; }
.hg-segment-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-segment-media em { position: absolute; left: 18px; top: 18px; background: #fff; color: var(--orange-deep); font-style: normal; font-weight: 900; padding: 6px 12px; border-radius: 999px; font-size: 13px; }
.hg-segment-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hg-segment h2 { font-size: 20px; }
.hg-segment h2 a { color: var(--ink); }
.hg-segment h2 a:hover { color: var(--orange-deep); }
.hg-segment p { color: var(--muted); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hg-segment .hg-btn { margin-top: auto; align-self: flex-start; }
.hg-solview { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.hg-solview-side { position: sticky; top: 130px; display: grid; gap: 18px; }
.hg-sidecard { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.hg-sidecard h3 { font-size: 17px; display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.hg-sidecard h3 i { color: var(--orange); }
.hg-sidecard p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.hg-sidecard-orange { background: var(--orange); color: #fff; }
.hg-sidecard-orange h3, .hg-sidecard-orange p { color: #fff; }
.hg-sidecard-orange h3 i { color: #fff; }
.hg-sidelinks { display: grid; gap: 4px; }
.hg-sidelinks a { display: flex; gap: 10px; align-items: center; padding: 9px 10px; border-radius: 10px; color: var(--ink-2); font-weight: 600; font-size: 14px; }
.hg-sidelinks a:hover { background: var(--orange-tint); color: var(--orange-deep); }
.hg-sidelinks a i { color: var(--mango); font-size: 12px; }
.hg-solview .hg-article { max-width: none; margin: 0; }
.hg-fitband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.hg-fitband > div { background: var(--orange-tint); border-radius: var(--r-lg); padding: 18px 18px 20px; min-width: 0; }
.hg-fitband i { width: 40px; height: 40px; border-radius: 12px; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 12px; }
.hg-fitband strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.hg-fitband span { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.hg-solcover { aspect-ratio: 16 / 7; border-radius: var(--r-xl); overflow: hidden; margin-bottom: 30px; background: var(--sand); }
.hg-solcover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- certificates ---------- */
.hg-certgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hg-cert { background: #fff; border-radius: var(--r-xl); padding: 16px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; transition: transform .25s; }
.hg-cert:hover { transform: translateY(-5px); }
.hg-cert-media { position: relative; background: var(--sand); border-radius: var(--r-md); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 12px; min-height: 180px; cursor: zoom-in; }
.hg-cert-media img { display: block; max-width: 100%; height: auto; border-radius: 6px; box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.hg-cert-media .hg-noimg { min-height: 200px; background: transparent; }
.hg-cert-zoom { position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: 0 6px 14px rgba(242,107,29,.35); opacity: 0; transform: translateY(6px); transition: all .25s; }
.hg-cert:hover .hg-cert-zoom { opacity: 1; transform: none; }
.hg-certgrid-list { grid-template-columns: 1fr; gap: 14px; }
.hg-certgrid-list .hg-cert { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center; }
.hg-certgrid-list .hg-cert-media { min-height: 0; }
.hg-certgrid-list .hg-cert-body { padding: 6px 6px 6px 0; }
.hg-certgrid-list .hg-cert-body p { -webkit-line-clamp: 3; }
.hg-lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(28,22,18,.92); display: flex; align-items: center; justify-content: center; padding: 60px 20px 24px; }
.hg-lightbox[hidden] { display: none; }
.hg-lightbox figure { max-width: 1000px; width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 0; }
.hg-lightbox img { max-width: 100%; max-height: calc(100vh - 160px); width: auto; height: auto; border-radius: 10px; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.hg-lightbox figcaption { color: #fff; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; font-size: 15px; }
.hg-lightbox figcaption a { color: var(--mango); font-weight: 700; }
.hg-lightbox-close { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--orange); color: #fff; font-size: 20px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.hg-lightbox-close:hover { background: var(--orange-deep); }
.hg-cert-body { padding: 16px 6px 6px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hg-cert-body em { font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf-deep); display: inline-flex; gap: 6px; align-items: center; }
.hg-cert-body h2 { font-size: 17px; }
.hg-cert-body h2 a { color: var(--ink); }
.hg-cert-body h2 a:hover { color: var(--orange-deep); }
.hg-cert-body p { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-cert-body .hg-textlink { margin-top: auto; font-size: 14px; }
.hg-docband { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hg-doc { background: #fff; border-radius: var(--r-lg); padding: 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-doc i { width: 46px; height: 46px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.hg-doc strong { display: block; color: var(--ink); font-size: 15.5px; }
.hg-doc span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* ---------- contact ---------- */
.hg-channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -34px; position: relative; z-index: 2; }
.hg-channel { background: #fff; border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; min-width: 0; color: var(--text); transition: transform .25s; }
.hg-channel:hover { transform: translateY(-4px); color: var(--text); }
.hg-channel i { width: 46px; height: 46px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; background: var(--orange-soft); color: var(--orange-deep); }
.hg-channel-wa i { background: #e4f8ea; color: var(--wa-deep); }
.hg-channel-leaf i { background: var(--leaf-soft); color: var(--leaf-deep); }
.hg-channel strong { color: var(--ink); font-size: 15px; }
.hg-channel span { font-size: 14px; color: var(--muted); word-break: break-word; }
.hg-contactgrid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 36px; margin-top: 50px; align-items: start; }
.hg-contactform { background: #fff; border-radius: var(--r-xl); padding: 34px; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-contactform h2 { font-size: 24px; margin-bottom: 6px; }
.hg-contactform > p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.hg-includes { background: var(--sand); border-radius: var(--r-xl); padding: 30px 28px; }
.hg-includes h3 { font-size: 18px; margin-bottom: 14px; display: flex; gap: 10px; align-items: center; }
.hg-includes h3 i { color: var(--orange); }
.hg-includes li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px dashed var(--sand-2); font-size: 14.5px; color: var(--ink-2); }
.hg-includes li:last-child { border-bottom: 0; }
.hg-includes li i { color: var(--leaf); margin-top: 4px; font-size: 12px; }
.hg-includes .hg-btn { margin-top: 18px; }
.hg-hours { margin-top: 18px; background: #fff; border-radius: var(--r-lg); padding: 20px 22px; font-size: 14px; color: var(--muted); display: flex; gap: 12px; align-items: flex-start; }
.hg-hours i { color: var(--orange); font-size: 18px; margin-top: 2px; }
.hg-hours strong { color: var(--ink); display: block; }

/* ---------- FAQ ---------- */
.hg-faqlayout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.hg-faqside { position: sticky; top: 130px; display: grid; gap: 18px; }
.hg-filter { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 6px 8px 6px 18px; }
.hg-filter:focus-within { border-color: var(--orange); }
.hg-filter i { color: var(--muted); }
.hg-filter input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; padding: 8px 0; font-size: 15px; color: var(--ink); }
.hg-faqtopics { background: #fff; border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.hg-faqtopics h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.hg-faqtopics button { display: inline-flex; margin: 0 6px 6px 0; border: 2px solid var(--line); background: #fff; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--ink-2); cursor: pointer; }
.hg-faqtopics button:hover, .hg-faqtopics button.on { border-color: var(--orange); background: var(--orange-soft); color: var(--orange-deep); }
.hg-faqmain { min-width: 0; }
.hg-faq-count { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 12px; min-height: 18px; }
.hg-faq-noresult { background: #fff; border-radius: var(--r-md); padding: 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line); }

/* ---------- catalog ---------- */
.hg-cataloghero { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.hg-book { position: relative; width: 300px; height: 400px; margin: 0 auto; perspective: 1200px; }
.hg-book-cover { position: absolute; inset: 0; border-radius: 6px 18px 18px 6px; background: linear-gradient(135deg, var(--orange) 0%, #ff8a3d 60%, var(--mango) 100%); box-shadow: 30px 30px 60px rgba(42,36,32,.22), inset 6px 0 0 rgba(0,0,0,.08); transform: rotateY(-18deg); transform-origin: left center; color: #fff; padding: 34px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.hg-book-cover strong { font-size: 26px; line-height: 1.15; font-family: var(--font-head); }
.hg-book-cover small { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.hg-book-cover .hg-book-dots { display: flex; gap: 8px; }
.hg-book-cover .hg-book-dots span { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.25); }
.hg-book-pages { position: absolute; top: 8px; bottom: 8px; left: 12px; right: -8px; background: #fff; border-radius: 4px 14px 14px 4px; transform: rotateY(-18deg); transform-origin: left center; box-shadow: 0 0 0 1px var(--line); z-index: -1; }
.hg-catalog-copy h2 { font-size: clamp(28px, 3vw, 40px); margin-top: 10px; }
.hg-catalog-copy p { color: var(--muted); font-size: 16.5px; margin-top: 14px; }
.hg-catalog-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.hg-catalog-facts div { background: #fff; border-radius: var(--r-md); padding: 14px; text-align: center; box-shadow: var(--shadow-sm); }
.hg-catalog-facts i { color: var(--orange); font-size: 20px; }
.hg-catalog-facts strong { display: block; font-size: 13.5px; color: var(--ink); margin-top: 6px; }
.hg-catalog-acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hg-catindex { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hg-catindex a { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--r-lg); padding: 14px 16px; color: var(--ink); font-weight: 700; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-catindex a img, .hg-catindex a .hg-cat-ico { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: var(--orange-soft); color: var(--orange-deep); display: inline-flex; align-items: center; justify-content: center; }
.hg-catindex a span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hg-catindex a .fa-arrow-right-long { color: var(--mango); }
.hg-catindex a:hover { color: var(--orange-deep); }

/* ---------- blog ---------- */
.hg-topicrail { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.hg-topicrail a { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.hg-topicrail a:hover { border-color: var(--orange); color: var(--orange-deep); background: var(--orange-soft); }
.hg-bloggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hg-post-media .hg-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--mango); font-size: 34px; }
.hg-post { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-width: 0; transition: transform .25s; }
.hg-post:hover { transform: translateY(-5px); }
.hg-post-media { aspect-ratio: 16 / 10; background: var(--sand); overflow: hidden; }
.hg-post-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-post-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hg-post-meta { display: flex; gap: 12px; align-items: center; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.hg-post-meta em { font-style: normal; background: var(--orange-soft); color: var(--orange-deep); font-weight: 800; padding: 3px 9px; border-radius: 999px; }
.hg-post h2 { font-size: 18px; }
.hg-post h2 a { color: var(--ink); }
.hg-post h2 a:hover { color: var(--orange-deep); }
.hg-post p { color: var(--muted); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hg-post .hg-textlink { margin-top: auto; font-size: 14px; }
.hg-bloggrid .hg-post:first-child { grid-column: span 3; display: grid; grid-template-columns: 1.2fr 1fr; }
.hg-bloggrid .hg-post:first-child .hg-post-media { aspect-ratio: auto; min-height: 300px; }
.hg-bloggrid .hg-post:first-child .hg-post-body { padding: 34px 36px; justify-content: center; }
.hg-bloggrid .hg-post:first-child h2 { font-size: 26px; }
.hg-bloggrid .hg-post:first-child p { -webkit-line-clamp: 4; font-size: 15.5px; }
.hg-article { max-width: 820px; margin: 0 auto; min-width: 0; }
.hg-arthead { text-align: center; padding: 40px 0 30px; }
.hg-arthead .hg-crumb { justify-content: center; }
.hg-arthead h1 { font-size: clamp(28px, 3.2vw, 42px); margin-top: 16px; }
.hg-artmeta { display: flex; justify-content: center; gap: 18px; align-items: center; margin-top: 16px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.hg-artmeta em { font-style: normal; background: var(--orange-soft); color: var(--orange-deep); font-weight: 800; padding: 4px 12px; border-radius: 999px; font-size: 12.5px; }
.hg-artcover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow); }
.hg-artcover img { width: 100%; display: block; }
.hg-artcover-doc { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; background: #fff; padding: 12px 18px; font-size: 13.5px; font-weight: 700; color: var(--leaf-deep); }
.hg-artcover-doc a { color: var(--orange-deep); }
.hg-artcover-doc a:hover { text-decoration: underline; }
.hg-sharebar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hg-tagpills { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hg-tagpills a { background: var(--sand); color: var(--ink-2); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 700; }
.hg-tagpills a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.hg-tagpills i { color: var(--muted); }

.hg-readbar { position: sticky; top: 0; height: 4px; background: transparent; z-index: 60; }
.hg-readbar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--mango)); transition: width .1s linear; }
.hg-endrail { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.hg-railbox { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-railbox h2 { font-size: 17px; display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.hg-railbox h2 i { color: var(--orange); }
.hg-railbox p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.hg-raillinks { display: grid; gap: 2px; }
.hg-raillinks a { display: flex; gap: 8px; align-items: flex-start; padding: 8px 6px; border-radius: 8px; font-size: 14px; color: var(--ink-2); font-weight: 600; line-height: 1.4; }
.hg-raillinks a i { color: var(--mango); margin-top: 4px; font-size: 12px; flex-shrink: 0; }
.hg-raillinks a:hover { background: var(--orange-tint); color: var(--orange-deep); }
.hg-railbox-orange { background: linear-gradient(160deg, var(--orange), var(--orange-deep)); color: #fff; }
.hg-railbox-orange h2, .hg-railbox-orange p { color: #fff; }
.hg-railbox-orange h2 i { color: var(--mango); }

/* ---------- search / tags ---------- */
.hg-searchhints { margin-top: 18px; color: #fff; font-size: 14px; font-weight: 700; }
.hg-searchhints > i { color: #fff; }
.hg-searchhints a { background: rgba(255,255,255,.18); color: #fff; }
.hg-searchhints a:hover { background: #fff; color: var(--orange-deep); }
.hg-taglayout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.hg-tagmain { min-width: 0; }
.hg-tagside { position: sticky; top: 130px; display: grid; gap: 18px; }
.hg-timeline { display: grid; gap: 18px; position: relative; padding-left: 28px; list-style: none; margin: 0; }
.hg-timeline::before { content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--orange), var(--mango)); }
.hg-tl-item { position: relative; min-width: 0; }
.hg-tl-dot { position: absolute; left: -26px; top: 22px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 4px solid var(--orange); box-shadow: 0 0 0 4px var(--orange-tint); }
.hg-tl-card { display: grid; grid-template-columns: 180px 1fr; gap: 20px; background: #fff; border-radius: var(--r-lg); padding: 14px; box-shadow: var(--shadow-sm); min-width: 0; transition: transform .25s; }
.hg-tl-card:hover { transform: translateX(4px); }
.hg-tl-media { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--sand); display: block; }
.hg-tl-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-tl-media .hg-noimg { font-size: 30px; color: var(--mango); }
.hg-tl-body { min-width: 0; display: flex; flex-direction: column; gap: 6px; padding: 4px 6px 4px 0; }
.hg-tl-body h2 { font-size: 18px; }
.hg-tl-body h2 a { color: var(--ink); }
.hg-tl-body h2 a:hover { color: var(--orange-deep); }
.hg-tl-body p { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-tl-body .hg-textlink { margin-top: auto; font-size: 14px; }
.hg-alphabar { display: flex; gap: 4px; flex-wrap: wrap; }
.hg-alphabar a { width: 32px; height: 32px; border-radius: 10px; background: var(--sand); color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.hg-alphabar a:hover { background: var(--orange); color: #fff; }
.hg-alphagroups { display: grid; gap: 22px; }
.hg-alphagroup { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); scroll-margin-top: 140px; }
.hg-alphagroup h3 { font-size: 30px; font-weight: 900; color: var(--orange); line-height: 1; font-family: var(--font-head); }
.hg-alphagroup[hidden] { display: none; }
.hg-searchbig { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 6px 6px 6px 22px; box-shadow: var(--shadow); max-width: 720px; margin-top: 24px; border: 2px solid transparent; }
.hg-searchbig:focus-within { border-color: var(--orange); }
.hg-searchbig input { flex: 1; min-width: 0; border: 0; outline: 0; font-size: 16px; padding: 10px 0; color: var(--ink); background: none; }
.hg-searchbig button { flex-shrink: 0; border: 0; background: var(--orange); color: #fff; border-radius: 999px; height: 48px; padding: 0 24px; font-weight: 800; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; }
.hg-searchbig button:hover { background: var(--orange-deep); }
.hg-searchbig-static { gap: 10px; }
.hg-searchbig-static button { background: var(--sand); color: var(--ink); }
.hg-searchbig-static button:hover { background: var(--orange-soft); color: var(--orange-deep); }
.hg-resultgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hg-result { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 110px 1fr; min-width: 0; transition: transform .25s; }
.hg-result:hover { transform: translateY(-4px); }
.hg-result-media { background: var(--sand); min-height: 110px; overflow: hidden; }
.hg-result-media img { width: 100%; height: 100%; object-fit: cover; }
.hg-result-media .hg-noimg { font-size: 26px; }
.hg-result-body { padding: 14px 16px; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.hg-result-body em { font-style: normal; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--leaf-deep); }
.hg-result-body h2 { font-size: 15.5px; }
.hg-result-body h2 a { color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-result-body h2 a:hover { color: var(--orange-deep); }
.hg-result-body p { font-size: 13.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-result-body time { font-size: 12.5px; color: var(--muted); }
.hg-empty { background: #fff; border-radius: var(--r-xl); padding: 60px 30px; text-align: center; box-shadow: var(--shadow-sm); grid-column: 1 / -1; }
.hg-empty > i { font-size: 44px; color: var(--orange); }
.hg-empty h2 { font-size: 24px; margin: 16px 0 8px; }
.hg-empty p { color: var(--muted); margin-bottom: 20px; }
.hg-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.hg-cloud a { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 700; color: var(--ink-2); font-size: 14px; transition: all .2s; }
.hg-cloud a em { font-style: normal; background: var(--orange-soft); color: var(--orange-deep); border-radius: 999px; padding: 1px 8px; font-size: 12px; }
.hg-cloud a:hover { border-color: var(--orange); color: var(--orange-deep); }
.hg-tagrank { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hg-tagrank a { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--r-lg); padding: 16px 18px; color: var(--ink); box-shadow: var(--shadow-sm); min-width: 0; }
.hg-tagrank a strong { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hg-tagrank a span { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.hg-tagrank a i { color: var(--mango); }
.hg-tags-count { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--muted); font-weight: 700; }

/* ---------- legal ---------- */
.hg-legal { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.hg-toc { position: sticky; top: 130px; background: #fff; border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.hg-toc h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.hg-toc a { display: block; padding: 8px 10px; border-radius: 10px; color: var(--ink-2); font-size: 14px; font-weight: 600; border-left: 3px solid transparent; }
.hg-toc a:hover, .hg-toc a.on { background: var(--orange-tint); color: var(--orange-deep); border-left-color: var(--orange); }
.hg-toc p { font-size: 13px; color: var(--muted); }
.hg-legal-body { background: #fff; border-radius: var(--r-xl); padding: 40px 44px; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-legal-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.hg-legal-meta span { display: inline-flex; gap: 8px; align-items: center; }
.hg-legal-meta i { color: var(--orange); }

/* ---------- inquiry list ---------- */
.hg-inqsteps { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hg-inqsteps li { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); border-radius: 999px; padding: 8px 16px 8px 8px; font-weight: 700; font-size: 13.5px; color: #fff; }
.hg-inqsteps li span { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.35); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12.5px; }
.hg-inqsteps li.on span { background: #fff; color: var(--orange-deep); }
.hg-quote { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: start; }
.hg-quotelist { display: grid; gap: 12px; min-width: 0; }
.hg-quotelist-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.hg-quotelist-head h2 { font-size: 20px; display: flex; gap: 10px; align-items: center; }
.hg-quotelist-head h2 i { color: var(--orange); }
.hg-quotenote { display: flex; gap: 12px; align-items: flex-start; background: var(--leaf-soft); border-radius: var(--r-md); padding: 14px 18px; color: var(--leaf-deep); font-size: 14px; margin-top: 6px; }
.hg-quotenote i { margin-top: 3px; }
.hg-quotenote p { margin: 0; }
.hg-qrow { display: grid; grid-template-columns: 86px 1fr auto auto; gap: 16px; align-items: center; background: #fff; border-radius: var(--r-lg); padding: 12px 16px 12px 12px; box-shadow: var(--shadow-sm); min-width: 0; }
.hg-qrow-img { width: 86px; height: 86px; border-radius: 14px; overflow: hidden; background: var(--sand); display: block; }
.hg-qrow-img img { width: 100%; height: 100%; object-fit: cover; }
.hg-qrow h3 { font-size: 15.5px; min-width: 0; }
.hg-qrow h3 a { color: var(--ink); }
.hg-qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: 999px; overflow: hidden; }
.hg-qty a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); font-weight: 800; background: var(--sand); }
.hg-qty a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.hg-qty input { width: 48px; text-align: center; border: 0; outline: 0; font-weight: 800; color: var(--ink); background: #fff; height: 36px; }
.hg-qremove { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--sand); color: var(--muted); }
.hg-qremove:hover { background: #ffe0e0; color: #c0392b; }
.hg-quoteform { background: #fff; border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow); position: sticky; top: 130px; }
.hg-quoteform h2 { font-size: 20px; display: flex; gap: 10px; align-items: center; }
.hg-quoteform h2 i { color: var(--orange); }
.hg-quoteform > p { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }

/* ---------- footer ---------- */
.hg-footer { padding: 70px 0 0; }
.hg-footer-card { background: var(--ink); color: #cfc5ba; border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 0 44px; position: relative; overflow: hidden; }
.hg-footer-card::before { content: ""; position: absolute; right: -140px; top: -140px; width: 380px; height: 380px; border-radius: 50%; background: rgba(242,107,29,.16); }
.hg-footer-news { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 40px 0 34px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; z-index: 1; }
.hg-footer-news h2 { color: #fff; font-size: 24px; }
.hg-footer-news h2 i { color: var(--mango); margin-right: 8px; }
.hg-footer-news p { font-size: 14.5px; color: #b8aca0; margin-top: 6px; }
.hg-footer-news form { display: flex; gap: 8px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 6px; border: 1px solid rgba(255,255,255,.12); min-width: 0; }
.hg-footer-news input { flex: 1; min-width: 0; border: 0; background: transparent; color: #fff; outline: 0; padding: 8px 14px; font-size: 15px; }
.hg-footer-news input::placeholder { color: #9c9188; }
.hg-footer-news button { flex-shrink: 0; border: 0; background: var(--orange); color: #fff; border-radius: 999px; padding: 0 22px; height: 44px; font-weight: 800; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; }
.hg-footer-news button:hover { background: var(--orange-deep); }
.hg-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 44px 0 40px; position: relative; z-index: 1; }
.hg-footer-brand img { max-height: 44px; width: auto; background: #fff; border-radius: 12px; padding: 6px 10px; }
.hg-footer-brand p { font-size: 14.5px; color: #b8aca0; margin: 16px 0 18px; max-width: 380px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.hg-footer-contact { display: grid; gap: 10px; }
.hg-footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #e9dfd5; word-break: break-word; }
.hg-footer-contact li i { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.08); color: var(--mango); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.hg-footer-contact a { color: #e9dfd5; }
.hg-footer-contact a:hover { color: var(--mango); }
.hg-footer-col h3 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; position: relative; }
.hg-footer-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--orange); }
.hg-footer-col a { display: block; color: #cfc5ba; font-size: 14.5px; padding: 5px 0; }
.hg-footer-col a:hover { color: #fff; padding-left: 6px; }
.hg-footer-col a:hover::before { content: "\2192 "; color: var(--mango); }
.hg-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #9c9188; position: relative; z-index: 1; }
.hg-footer-bottom a { color: #cfc5ba; }
.hg-footer-bottom a:hover { color: #fff; }
.hg-footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.hg-footer-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 6px 14px; color: #e9dfd5; font-weight: 700; }
.hg-footer-badge i { color: var(--mango); }

/* ---------- modal ---------- */
.hg-modal { position: fixed; inset: 0; z-index: 1200; background: rgba(42,36,32,.6); display: none; align-items: center; justify-content: center; padding: 20px; }
.hg-modal.on { display: flex; }
.hg-modal-box { background: #fff; border-radius: var(--r-xl); width: 100%; max-width: 620px; max-height: calc(100vh - 40px); overflow-y: auto; padding: 34px 32px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.hg-modal-box::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px; background: linear-gradient(90deg, var(--orange), var(--mango)); }
.hg-modal-close { position: absolute; right: 16px; top: 16px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--sand); color: var(--ink); font-size: 18px; cursor: pointer; }
.hg-modal-close:hover { background: var(--orange); color: #fff; }
.hg-modal-box h2 { font-size: 24px; margin-bottom: 4px; padding-right: 40px; }
.hg-modal-box > p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- floats, toast, mobile bar ---------- */
.wa-float { position: fixed; right: 22px; bottom: 96px; width: 54px; height: 54px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; z-index: 800; box-shadow: 0 10px 24px rgba(37,211,102,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.back-to-top { position: fixed; right: 22px; bottom: 32px; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 800; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); color: #fff; }
.mobile-inquiry-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; background: #fff; box-shadow: 0 -8px 24px rgba(42,36,32,.12); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); grid-template-columns: 1fr 1fr; gap: 10px; }
.mib-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px; font-weight: 800; font-size: 14.5px; }
.mib-quote { background: var(--orange); color: #fff; }
.mib-wa { background: var(--wa); color: #fff; }
.toast-notify { position: fixed; left: 50%; bottom: 110px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; border-radius: 999px; padding: 12px 20px; display: flex; gap: 14px; align-items: center; z-index: 1300; opacity: 0; transition: opacity .3s, transform .3s; box-shadow: var(--shadow); font-size: 14px; max-width: calc(100vw - 32px); }
.toast-notify.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-notify a { color: var(--mango); font-weight: 800; white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .hg-prodgrid { grid-template-columns: repeat(3, 1fr); }
  .hg-relrail { grid-template-columns: repeat(3, 1fr); }
  .hg-certstrip { grid-template-columns: repeat(4, 1fr); }
  .hg-tile-main { grid-column: span 12; grid-row: span 1; padding: 40px 36px; }
  .hg-tile-cats { grid-column: span 6; }
  .hg-tile-india { grid-column: span 3; }
  .hg-tile-wa { grid-column: span 3; }
  .hg-ctagrid { grid-template-columns: 1fr 400px; gap: 36px; }
}
@media (max-width: 1020px) {
  :root { --header-h: 64px; }
  .hg-topline { display: none; }
  .hg-header-row { grid-template-columns: auto 1fr auto; gap: 12px; }
  .hg-burger { display: inline-flex; order: -1; }
  .hg-logo { justify-self: start; }
  .hg-logo img { max-height: 40px; }
  .hg-search { display: none; grid-column: 1 / -1; max-width: none; margin: 0 0 12px; order: 5; }
  .hg-search.on { display: flex; }
  #searchToggle { display: inline-flex; }
  .hg-tool-wa, .hg-header-cta { display: none; }
  .hg-navband { display: none; }
  .hg-split { grid-template-columns: 1fr; gap: 30px; }
  .hg-split-side { position: static; }
  .hg-duo { grid-template-columns: 1fr; }
  .hg-mfg { grid-template-columns: 1fr; }
  .hg-stepindex { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .hg-stepindex a { padding: 8px 12px; }
  .hg-faqlayout { grid-template-columns: 1fr; }
  .hg-faqside { position: static; }
  .hg-legal { grid-template-columns: 1fr; }
  .hg-toc { position: static; }
  .hg-solview { grid-template-columns: 1fr; }
  .hg-solview-side { position: static; }
  .hg-taglayout { grid-template-columns: 1fr; }
  .hg-tagside { position: static; }
  .hg-quote { grid-template-columns: 1fr; }
  .hg-quoteform { position: static; }
  .hg-contactgrid { grid-template-columns: 1fr; }
  .hg-cataloghero { grid-template-columns: 1fr; gap: 40px; }
  .hg-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hg-footer-news { grid-template-columns: 1fr; }
  .hg-channels { grid-template-columns: repeat(2, 1fr); }
  .hg-capgrid { grid-template-columns: repeat(2, 1fr); }
  .hg-pdp { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .hg-wrap { padding: 0 20px; }
  .hg-sec { padding: 56px 0; }
  body.homegoods-theme { padding-bottom: 72px; }
  .mobile-inquiry-bar { display: grid; }
  .wa-float { bottom: 150px; right: 14px; width: 48px; height: 48px; }
  .back-to-top { bottom: 92px; right: 14px; width: 42px; height: 42px; }
  .toast-notify { bottom: 88px; }
  .hg-bento { gap: 12px; }
  .hg-tile-cats { grid-column: span 12; }
  .hg-tile-india { grid-column: span 6; }
  .hg-tile-wa { grid-column: span 6; }
  .hg-prodgrid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hg-relrail { grid-template-columns: repeat(2, 1fr); }
  .hg-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hg-steps::before { display: none; }
  .hg-certstrip { grid-template-columns: repeat(3, 1fr); }
  .hg-values { grid-template-columns: 1fr; }
  .hg-flow { grid-template-columns: 1fr 1fr; }
  .hg-flowcard .fa-arrow-right-long { display: none; }
  .hg-story { grid-template-columns: 1fr; }
  .hg-segments { grid-template-columns: repeat(2, 1fr); }
  .hg-fitband { grid-template-columns: 1fr; gap: 10px; }
  .hg-certgrid-list .hg-cert { grid-template-columns: 1fr; gap: 12px; }
  .hg-cert-zoom { opacity: 1; transform: none; }
  .hg-fitband > div { display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; }
  .hg-fitband i { margin-bottom: 0; grid-row: span 2; }
  .hg-certgrid { grid-template-columns: repeat(2, 1fr); }
  .hg-docband { grid-template-columns: 1fr; }
  .hg-bloggrid { grid-template-columns: repeat(2, 1fr); }
  .hg-bloggrid .hg-post:first-child { grid-column: span 2; grid-template-columns: 1fr; }
  .hg-bloggrid .hg-post:first-child .hg-post-media { aspect-ratio: 16 / 9; min-height: 0; }
  .hg-bloggrid .hg-post:first-child .hg-post-body { padding: 22px; }
  .hg-resultgrid { grid-template-columns: repeat(2, 1fr); }
  .hg-tagrank { grid-template-columns: repeat(2, 1fr); }
  .hg-catindex { grid-template-columns: 1fr 1fr; }
  .hg-catalog-facts { grid-template-columns: repeat(3, 1fr); }
  .hg-ctagrid { grid-template-columns: 1fr; }
  .hg-helpband { grid-template-columns: 1fr; padding: 28px; }
  .hg-checkband { grid-template-columns: 1fr; padding: 32px 26px; }
  .hg-endrail { grid-template-columns: 1fr; gap: 14px; }
  .hg-stepcard { grid-template-columns: 1fr; gap: 16px; padding: 22px; }
  .hg-stepcard-ico { width: 72px; height: 72px; font-size: 28px; border-radius: 22px; }
  .hg-footer-card { padding: 0 24px; }
  .hg-legal-body { padding: 28px 22px; }
  .hg-contactform { padding: 24px; }
  .hg-qrow { grid-template-columns: 72px 1fr; grid-template-areas: "img title" "img acts"; row-gap: 8px; }
  .hg-qrow-img { grid-area: img; width: 72px; height: 72px; }
  .hg-qrow h3 { grid-area: title; }
  .hg-qrow .hg-qty { grid-area: acts; justify-self: start; }
  .hg-qrow .hg-qremove { grid-area: acts; justify-self: end; align-self: center; }
  .hg-keyfacts { grid-template-columns: 1fr 1fr; }
  .hg-shipgrid { grid-template-columns: 1fr; }
  .hg-prod-cta { grid-column: span 2; }
  .hg-pager { grid-template-columns: 1fr; }
  .hg-pager-next .pager-link { justify-content: flex-start; text-align: left; }
  .hg-form .form-row { grid-template-columns: 1fr; }
  .hg-channels { margin-top: 0; }
  .hg-catmenu-panel { width: 280px; }
}
@media (max-width: 600px) {
  .hg-wrap { padding: 0 16px; }
  .hg-sec { padding: 46px 0; }
  .hg-h2 { font-size: 26px; }
  .hg-hero { padding: 20px 0 40px; }
  .hg-tile-main { padding: 30px 22px; border-radius: 22px; }
  .hg-tile-main h1 { font-size: 30px; }
  .hg-tile-main p { font-size: 15.5px; }
  .hg-tile-cats { padding: 18px; }
  .hg-tile-catlist { grid-template-columns: 1fr; }
  .hg-tile-india, .hg-tile-wa { grid-column: span 12; padding: 20px; }
  .hg-bubbles { gap: 18px 10px; }
  .hg-bubble { width: calc(50% - 5px); font-size: 13.5px; }
  .hg-bubble-img { width: 92px; height: 92px; }
  .hg-prodgrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hg-prod-body { padding: 12px; }
  .hg-prod-body h3, .hg-prod-body h2 { font-size: 14px; }
  .hg-prod-body p { display: none; }
  .hg-prod-acts { flex-direction: column; }
  .hg-prod-acts .hg-btn { width: 100%; }
  .hg-prod-add { width: 100%; flex: 1 1 auto !important; border-radius: 999px; height: 38px; }
  .hg-relrail { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hg-steps { grid-template-columns: 1fr; }
  .hg-certstrip { grid-template-columns: repeat(2, 1fr); }
  .hg-numitem { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .hg-split-visual { grid-template-columns: 1fr 1fr; padding: 16px; }
  .hg-flow { grid-template-columns: 1fr; }
  .hg-segments { grid-template-columns: 1fr; }
  .hg-certgrid { grid-template-columns: 1fr; }
  .hg-bloggrid { grid-template-columns: 1fr; }
  .hg-bloggrid .hg-post:first-child { grid-column: span 1; }
  .hg-resultgrid { grid-template-columns: 1fr; }
  .hg-result { grid-template-columns: 96px 1fr; }
  .hg-tl-card { grid-template-columns: 1fr; gap: 12px; }
  .hg-tl-media { aspect-ratio: 16 / 9; }
  .hg-timeline { padding-left: 22px; }
  .hg-tl-dot { left: -20px; width: 13px; height: 13px; }
  .hg-alphagroup { grid-template-columns: 1fr; gap: 10px; }
  .hg-searchbig-static { flex-direction: row; align-items: center; border-radius: 999px; padding: 6px 6px 6px 16px; }
  .hg-searchbig-static button { height: 42px; padding: 0 16px; }
  .hg-tagrank { grid-template-columns: 1fr; }
  .hg-catindex { grid-template-columns: 1fr; }
  .hg-catalog-facts { grid-template-columns: 1fr; }
  .hg-book { width: 240px; height: 320px; }
  .hg-channels { grid-template-columns: 1fr; }
  .hg-capgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hg-keyfacts { grid-template-columns: 1fr; }
  .hg-pdp-perks { grid-template-columns: 1fr; }
  .hg-buybox-acts { grid-template-columns: 1fr; }
  .hg-buybox { padding: 18px; }
  .hg-footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hg-footer-card { padding: 0 18px; }
  .hg-footer-news form { flex-direction: column; border-radius: 22px; }
  .hg-footer-news button { height: 46px; justify-content: center; }
  .hg-footer-bottom { flex-direction: column; align-items: flex-start; }
  .hg-modal-box { padding: 28px 20px; }
  .hg-pagehead h1 { font-size: 28px; }
  .hg-pagehead h1 i { width: 44px; height: 44px; font-size: 18px; border-radius: 14px; }
  .hg-quotecard { padding: 30px 24px; }
  .hg-quotecard blockquote { font-size: 18px; }
  .hg-searchbig { border-radius: 22px; flex-direction: column; align-items: stretch; padding: 10px; }
  .hg-searchbig input { padding: 8px 12px; }
  .hg-searchbig button { height: 46px; justify-content: center; }
  .hg-ctawave { padding: 70px 0 60px; }
  .hg-ctaform { padding: 22px 18px; }
  .hg-includes { padding: 22px 18px; }
  .hg-thumbs button { flex-basis: 66px; width: 66px; height: 66px; }
  .hg-tabs button { padding: 12px 14px; font-size: 14px; }
  .hg-spectable th { width: 40%; }
  .detail-content table, .detail-content thead, .detail-content tbody, .detail-content th, .detail-content td, .detail-content tr { display: block; }
  .detail-content thead { display: none; }
  .detail-content tr { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; background: #fff; }
  .detail-content td { border: 0; border-bottom: 1px solid var(--line); padding: 8px 12px; }
  .detail-content td:last-child { border-bottom: 0; }
  .detail-content td::before { content: attr(data-label); display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 800; margin-bottom: 2px; }
  .detail-content td:not([data-label])::before { display: none; }
  .tablewrap-scroll table { min-width: 0; }
  .hg-marquee-track span { font-size: 13px; }
}
