/* ==========================================================================
   ZUGOSHI — Design System
   Hobby & Toy Store · Yellow #FBD700 + Ink Black + White
   1. Tokens   2. Reset/Base   3. Type   4. Layout   5. Buttons/Forms
   6. Header   7. Nav/Mega     8. Hero    9. Sections 10. Cards
   11. Strips  12. Deals       13. Brands 14. Articles 15. Newsletter
   16. Footer  17. Utilities/Anim  18. Responsive
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  --zg-yellow: #FBD700;
  --zg-yellow-600: #ECC500;
  --zg-yellow-700: #CFA800;
  --zg-yellow-soft: #FFF4C2;
  --zg-yellow-tint: #FEF9DD;
  --zg-on-primary: #15161A; /* text/icon color shown on top of --zg-yellow */

  --zg-ink: #15161A;
  --zg-ink-800: #22242B;
  --zg-ink-700: #34373F;
  --zg-ink-600: #4A4D57;

  --zg-muted: #6B6F7A;
  --zg-muted-2: #9298A3;

  --zg-line: #E7E8EC;
  --zg-line-2: #F0F1F4;

  --zg-surface: #FFFFFF;
  --zg-surface-2: #F6F7F9;
  --zg-surface-3: #EDEFF2;

  --zg-success: #16A35B;
  --zg-danger: #E5392F;
  --zg-info: #2D7FF9;

  --zg-r-xs: 6px;
  --zg-r-sm: 10px;
  --zg-r: 14px;
  --zg-r-lg: 20px;
  --zg-r-xl: 28px;
  --zg-r-pill: 999px;

  --zg-shadow-xs: 0 1px 2px rgba(20,22,28,.06);
  --zg-shadow-sm: 0 2px 6px rgba(20,22,28,.06), 0 1px 2px rgba(20,22,28,.04);
  --zg-shadow: 0 8px 24px rgba(20,22,28,.08);
  --zg-shadow-lg: 0 20px 50px rgba(20,22,28,.14);
  --zg-shadow-yellow: 0 14px 30px rgba(251,215,0,.40);

  --zg-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --zg-display: "Sora", "Inter", system-ui, sans-serif;

  --zg-container: 1280px;
  --zg-gap: 24px;
  --zg-ease: cubic-bezier(.4, 0, .2, 1);
  --zg-ease-out: cubic-bezier(.16, 1, .3, 1);

  --zg-topbar-h: 38px;
  --zg-nav-h: 52px;
}

/* 2. RESET / BASE ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--zg-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--zg-ink);
  background: var(--zg-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .18s var(--zg-ease); }
a:hover { color: var(--zg-yellow-700); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--zg-yellow); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--zg-yellow); color: var(--zg-ink); }
hr { border: 0; border-top: 1px solid var(--zg-line); }

/* 3. TYPE ================================================================== */
h1, h2, h3, h4, h5 { font-family: var(--zg-display); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--zg-ink); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { color: var(--zg-ink-700); }
.zg-eyebrow {
  font-family: var(--zg-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--zg-yellow-700);
  display: inline-flex; align-items: center; gap: .5em;
}
.zg-lede { font-size: 1.05rem; color: var(--zg-muted); }

/* 4. LAYOUT =============================================================== */
.zg-container { width: 100%; max-width: var(--zg-container); margin-inline: auto; padding-inline: clamp(16px, 4vw, 28px); }
.zg-grid { display: grid; gap: var(--zg-gap); }
.zg-section { padding-block: clamp(40px, 6vw, 72px); }
.zg-section--tint { background: var(--zg-surface-2); }
.zg-section--ink { background: var(--zg-ink); color: #fff; }
.zg-icon { flex: none; }
/* Overflow safety: allow grid/flex children to shrink below their content width */
.zg-pgrid > *, .zg-pgrid--4 > *, .zg-pcell, .zg-pcard, .zg-pcard__body, .zg-pcard__foot, .zg-pcard__price,
.zg-trust__item, .zg-trust__txt, .zg-adv__item, .zg-ccard, .zg-article, .zg-cats > *, .zg-brands > *,
.zg-deals__left, .zg-deals__right, .zg-market__main, .zg-shopby__main, .zg-hero__copy { min-width: 0; }

/* Section header */
.zg-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(22px, 3vw, 34px); }
.zg-section__titlewrap { max-width: 64ch; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.zg-section__titlewrap .zg-eyebrow { margin-bottom: 2px; }
.zg-section__title { position: relative; display: inline-flex; align-items: center; gap: 14px; }
.zg-section__title::before { content: ""; width: 8px; height: 1.05em; border-radius: 999px; background: var(--zg-yellow); box-shadow: 0 0 0 4px var(--zg-yellow-soft); }
.zg-section__sub { color: var(--zg-muted); margin-top: 8px; }
.zg-section__link { flex: none; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: var(--zg-display); color: var(--zg-ink); }
.zg-section__link svg { transition: transform .2s var(--zg-ease); }
.zg-section__link:hover { color: var(--zg-ink); }
.zg-section__link:hover svg { transform: translateX(4px); }

/* 5. BUTTONS / FORMS ====================================================== */
.zg-btn {
  --bg: var(--zg-yellow); --fg: var(--zg-on-primary); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--zg-display); font-weight: 700; font-size: .95rem; line-height: 1;
  padding: 14px 24px; border-radius: var(--zg-r-pill); border: 2px solid var(--bd);
  background: var(--bg); color: var(--fg); white-space: nowrap;
  transition: transform .16s var(--zg-ease), box-shadow .2s var(--zg-ease), background .18s var(--zg-ease), color .18s var(--zg-ease);
}
.zg-btn:hover { transform: translateY(-2px); color: var(--fg); }
.zg-btn:active { transform: translateY(0); }
.zg-btn--primary { box-shadow: var(--zg-shadow-yellow); }
.zg-btn--primary:hover { --bg: var(--zg-yellow-600); box-shadow: 0 18px 36px rgba(251,215,0,.5); }
.zg-btn--dark { --bg: var(--zg-ink); --fg: #fff; box-shadow: var(--zg-shadow-sm); }
.zg-btn--dark:hover { --bg: #000; --fg: #fff; }
.zg-btn--ghost { --bg: transparent; --fg: var(--zg-ink); --bd: var(--zg-ink); }
.zg-btn--ghost:hover { --bg: var(--zg-ink); --fg: #fff; }
.zg-btn--light { --bg: #fff; --fg: var(--zg-ink); --bd: var(--zg-line); box-shadow: var(--zg-shadow-sm); }
.zg-btn--light:hover { --bd: var(--zg-ink); }
.zg-btn--sm { padding: 10px 16px; font-size: .85rem; }
.zg-btn--lg { padding: 17px 30px; font-size: 1.02rem; }
.zg-btn--block { width: 100%; }

.zg-input, .zg-select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--zg-line);
  border-radius: var(--zg-r-sm); background: #fff; color: var(--zg-ink);
  transition: border-color .18s var(--zg-ease), box-shadow .18s var(--zg-ease);
}
.zg-input:focus, .zg-select:focus { outline: none; border-color: var(--zg-yellow); box-shadow: 0 0 0 4px var(--zg-yellow-soft); }
.zg-input::placeholder { color: var(--zg-muted-2); }

/* Badges / pills */
.zg-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--zg-r-pill); font-size: .72rem; font-weight: 700; letter-spacing: .03em; font-family: var(--zg-display); }
.zg-pill--new { background: var(--zg-yellow); color: var(--zg-ink); }
.zg-pill--sale { background: var(--zg-ink); color: var(--zg-yellow); }
.zg-pill--hot { background: var(--zg-danger); color: #fff; }
.zg-pill--soft { background: var(--zg-yellow-soft); color: var(--zg-yellow-700); }

/* 6. HEADER =============================================================== */
.zg-topbar { background: var(--zg-ink); color: #cfd2da; font-size: .82rem; }
.zg-topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--zg-topbar-h); gap: 16px; }
.zg-topbar a { color: #cfd2da; }
.zg-topbar a:hover { color: var(--zg-yellow); }
.zg-topbar__left { flex: 1; min-width: 0; display: flex; align-items: center; }
.zg-topbar__right { display: flex; align-items: center; gap: 18px; }
.zg-topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.zg-topbar__item strong { color: #fff; }
.zg-topbar__hl { color: var(--zg-yellow); font-weight: 700; }
.zg-topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.16); }

/* Top-bar promo marquee — seamless auto-scroll (two identical groups translate -100%) */
.zg-marquee { display: flex; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 96%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 96%, transparent 100%); }
.zg-marquee__group { flex: 0 0 auto; min-width: 100%; display: flex; align-items: center; gap: 46px; padding-right: 46px; justify-content: space-around; animation: zg-marquee-scroll 24s linear infinite; will-change: transform; }
.zg-marquee__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.zg-marquee:hover .zg-marquee__group { animation-play-state: paused; }
@keyframes zg-marquee-scroll { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .zg-marquee__group { animation: none; transform: none; }
  .zg-marquee { -webkit-mask-image: none; mask-image: none; }
}

.zg-header { background: #fff; border-bottom: 1px solid var(--zg-line-2); }
.zg-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px, 3.2vw, 36px); min-height: 72px; }

.zg-brand { display: inline-flex; align-items: center; gap: 12px; }
.zg-brand--logo { display: inline-flex; align-items: center; }
.zg-brand--logo .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.zg-brand--logo img, img.custom-logo { max-height: 46px; max-width: 184px; width: auto; height: auto; object-fit: contain; display: block; }
.zg-brand__mark { width: 44px; height: 44px; border-radius: 12px; background: var(--zg-yellow); display: grid; place-items: center; box-shadow: var(--zg-shadow-yellow); flex: none; }
.zg-brand__mark svg { width: 26px; height: 26px; color: var(--zg-ink); }
.zg-brand__text { display: flex; flex-direction: column; line-height: 1; }
.zg-brand__name { font-family: var(--zg-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: var(--zg-ink); }
.zg-brand__name b { color: var(--zg-yellow-700); }
.zg-brand__tag { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--zg-muted); margin-top: 4px; font-weight: 600; }

/* Brand for dark areas (footer + mobile drawer) — uses the light "footer_logo" */
.zg-brand--dark { display: inline-flex; align-items: center; gap: 10px; }
.zg-brand--dark .zg-brand__name { color: #fff; font-size: 1.5rem; }
.zg-brand__img-dark { display: block; width: auto; height: auto; object-fit: contain; max-height: 52px; max-width: 190px; }
.zg-drawer__head .zg-brand__img-dark { max-height: 34px; max-width: 150px; }
.zg-drawer__head .zg-brand--dark .zg-brand__name { font-size: 1.3rem; }

/* Search */
.zg-search { display: flex; align-items: stretch; width: 100%; max-width: 560px; border: 1.5px solid var(--zg-line); border-radius: var(--zg-r-pill); overflow: hidden; background: #fff; transition: border-color .18s var(--zg-ease), box-shadow .18s var(--zg-ease); }
.zg-search:focus-within { border-color: var(--zg-yellow); box-shadow: 0 0 0 3px var(--zg-yellow-soft); }
.zg-search__cat { position: relative; flex: none; }
.zg-search__cat select { appearance: none; border: 0; background: var(--zg-surface-2); padding: 0 34px 0 16px; height: 100%; font-weight: 600; font-size: .85rem; color: var(--zg-ink); cursor: pointer; border-right: 1px solid var(--zg-line); }
.zg-search__cat::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--zg-ink-600); border-bottom: 2px solid var(--zg-ink-600); transform: translateY(-65%) rotate(45deg); pointer-events: none; }
.zg-search__input { flex: 1; border: 0; padding: 11px 16px; min-width: 0; font-size: .9rem; background: transparent; }
.zg-search__input:focus { outline: none; }
.zg-search__btn { flex: none; background: var(--zg-yellow); color: var(--zg-ink); padding: 0 22px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--zg-display); font-weight: 700; font-size: .9rem; transition: background .18s var(--zg-ease); }
.zg-search__btn:hover { background: var(--zg-yellow-600); }
.zg-search__btn span { display: inline; }

/* Actions */
.zg-actions { display: flex; align-items: center; gap: clamp(4px, 1.1vw, 14px); }
.zg-action { position: relative; display: inline-flex; align-items: center; gap: 9px; color: var(--zg-ink); }
.zg-action__ico { position: relative; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: transparent; transition: background .18s var(--zg-ease), color .18s var(--zg-ease); }
.zg-action:hover .zg-action__ico { background: var(--zg-yellow); color: var(--zg-ink); }
.zg-action__meta { display: flex; flex-direction: column; line-height: 1.15; }
.zg-action__meta small { color: var(--zg-muted); font-size: .7rem; }
.zg-action__meta strong { font-family: var(--zg-display); font-size: .86rem; font-weight: 700; }
.zg-badge { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--zg-ink); color: var(--zg-yellow); font-size: .7rem; font-weight: 800; display: grid; place-items: center; border: 2px solid #fff; font-family: var(--zg-display); }

.zg-mobile-toggle { display: none; width: 40px; height: 40px; margin-left: -9px; border-radius: 10px; background: transparent; color: var(--zg-ink); place-items: center; }
.zg-mobile-toggle svg { width: 23px; height: 23px; }

/* Mobile sticky header */
.zg-header__spacer { display: none; }
.zg-header.is-mstuck { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; box-shadow: var(--zg-shadow); animation: zg-drop .32s var(--zg-ease-out); }
.zg-header.is-mstuck .zg-header__inner { padding-block: 10px; }
.zg-header.is-mstuck .zg-header__search-wrap { display: none; }

/* 7. PRIMARY NAV + MEGA =================================================== */
.zg-nav { background: var(--zg-yellow); position: relative; z-index: 60; }
.zg-nav__inner { display: flex; align-items: stretch; gap: 8px; min-height: var(--zg-nav-h); }
.zg-nav.is-stuck { position: fixed; top: 0; left: 0; right: 0; box-shadow: var(--zg-shadow); animation: zg-drop .3s var(--zg-ease-out); }
@keyframes zg-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.zg-nav__spacer { display: none; }
.zg-nav__spacer.is-active { display: block; }

/* Logged-in: keep sticky headers BELOW the WP admin bar (it is fixed 32px at
   ≥783px, 46px at ≤782px, and turns absolute/scrolls away at ≤600px). */
.admin-bar .zg-nav.is-stuck,
.admin-bar .zg-header.is-mstuck { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .zg-nav.is-stuck,
  .admin-bar .zg-header.is-mstuck { top: 46px; }
}
@media screen and (max-width: 600px) {
  .admin-bar .zg-nav.is-stuck,
  .admin-bar .zg-header.is-mstuck { top: 0; }
}

.zg-dept { display: inline-flex; align-items: center; gap: 10px; background: var(--zg-ink); color: #fff; padding: 0 18px; font-family: var(--zg-display); font-weight: 700; font-size: .9rem; flex: none; align-self: center; height: calc(var(--zg-nav-h) - 16px); border-radius: var(--zg-r-sm); margin-right: 6px; transition: background .18s var(--zg-ease); }
.zg-dept:hover, .zg-dept.is-open { background: #000; color: #fff; }
.zg-dept .zg-dept__chev { transition: transform .2s var(--zg-ease); }
.zg-dept.is-open .zg-dept__chev { transform: rotate(180deg); }

.zg-nav__brand { display: none; align-items: center; gap: 8px; font-family: var(--zg-display); font-weight: 800; font-size: 1.1rem; align-self: center; margin-right: 8px; }
.zg-nav.is-stuck .zg-nav__brand { display: none; }

.zg-menu { display: flex; align-items: stretch; flex-wrap: nowrap; }
.zg-menu > li { display: flex; align-items: center; }
.zg-menu > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 0 13px; height: var(--zg-nav-h); font-family: var(--zg-display); font-weight: 600; font-size: .92rem; color: var(--zg-ink); position: relative; white-space: nowrap; }
.zg-menu > li > a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 10px; height: 3px; border-radius: 3px; background: var(--zg-ink); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--zg-ease); }
.zg-menu > li:hover > a::after, .zg-menu > li.current-menu-item > a::after { transform: scaleX(1); }
.zg-menu > li.menu-item-has-children > a::before { content: ""; order: 2; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .65; }

/* dropdown submenus */
.zg-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r); box-shadow: var(--zg-shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .2s var(--zg-ease); z-index: 80; }
.zg-menu li { position: relative; }
.zg-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.zg-menu .sub-menu a { display: block; padding: 10px 14px; border-radius: var(--zg-r-xs); font-weight: 500; font-size: .9rem; color: var(--zg-ink-700); }
.zg-menu .sub-menu a:hover { background: var(--zg-yellow-soft); color: var(--zg-ink); }

.zg-nav__promo { margin-left: auto; align-self: center; display: inline-flex; align-items: center; gap: 8px; background: var(--zg-ink); color: var(--zg-yellow); padding: 8px 14px; border-radius: var(--zg-r-pill); font-family: var(--zg-display); font-weight: 700; font-size: .82rem; }
.zg-nav__promo:hover { color: var(--zg-yellow); background: #000; }

/* Mega panel */
.zg-mega { position: absolute; top: 100%; left: 0; width: min(900px, 92vw); background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); box-shadow: var(--zg-shadow-lg); margin-top: 8px; padding: 0; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .24s var(--zg-ease-out); z-index: 90; overflow: hidden; }
.zg-mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.zg-mega__grid { display: grid; grid-template-columns: 1.1fr 1fr; }
.zg-mega__list { padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.zg-mega__item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--zg-r-sm); }
.zg-mega__item:hover { background: var(--zg-surface-2); }
.zg-mega__ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--zg-yellow-soft); color: var(--zg-ink); flex: none; }
.zg-mega__item:hover .zg-mega__ico { background: var(--zg-yellow); }
.zg-mega__name { font-family: var(--zg-display); font-weight: 700; font-size: .92rem; color: var(--zg-ink); }
.zg-mega__count { font-size: .76rem; color: var(--zg-muted); }
.zg-mega__feature { padding: 22px; background: linear-gradient(135deg, var(--zg-ink) 0%, #25272f 100%); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; position: relative; }
.zg-mega__feature .zg-eyebrow { color: var(--zg-yellow); }
.zg-mega__feature h4 { color: #fff; font-size: 1.4rem; }
.zg-mega__feature p { color: #c7cad2; font-size: .9rem; }
.zg-mega__feature .zg-blob { position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(251,215,0,.45), transparent 70%); }

/* 8. HERO ================================================================= */
.zg-hero { padding-block: clamp(20px, 3vw, 30px); }
.zg-hero__grid { display: grid; grid-template-columns: 1fr 360px; gap: var(--zg-gap); }
.zg-hero__main { position: relative; display: grid; border-radius: var(--zg-r-xl); overflow: hidden; min-height: clamp(360px, 38vw, 460px); background: var(--zg-ink); }
.zg-hero__slide { grid-area: 1 / 1; position: relative; opacity: 0; visibility: hidden; transition: opacity .6s var(--zg-ease); }
.zg-hero__slide.is-active { opacity: 1; visibility: visible; }
/* Full-bleed background image — object-fit:cover = fills, never distorts */
.zg-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.zg-hero__fulllink { position: absolute; inset: 0; z-index: 4; }
.zg-hero__overlay { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100%; }
.zg-hero__overlay::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,13,17,.9) 0%, rgba(12,13,17,.68) 34%, rgba(12,13,17,.2) 66%, rgba(12,13,17,0) 100%); }
.zg-hero__copy { position: relative; padding: clamp(26px, 4vw, 54px); max-width: 60%; }
.zg-hero__copy .zg-eyebrow { color: var(--zg-yellow); }
.zg-hero__copy h1 { color: #fff; margin: 14px 0 16px; }
.zg-hero__copy h1 em { font-style: normal; color: var(--zg-yellow); }
.zg-hero__copy p { color: #d6d9e0; max-width: 42ch; margin-bottom: 26px; }
.zg-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.zg-hero__dots { position: absolute; bottom: 20px; left: clamp(28px, 4vw, 54px); display: flex; gap: 8px; z-index: 5; }
.zg-hero__dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.45); transition: all .2s var(--zg-ease); }
.zg-hero__dot.is-active { width: 28px; background: var(--zg-yellow); }
.zg-hero__arrows { position: absolute; right: 18px; bottom: 18px; display: flex; gap: 8px; z-index: 5; }
.zg-hero__arrow { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; transition: all .18s var(--zg-ease); }
.zg-hero__arrow:hover { background: var(--zg-yellow); color: var(--zg-ink); }

.zg-hero__side { display: grid; grid-template-rows: 1fr 1fr; gap: var(--zg-gap); }
.zg-promo-card { position: relative; border-radius: var(--zg-r-lg); overflow: hidden; padding: 24px; display: flex; flex-direction: column; justify-content: center; min-height: 208px; color: #fff; isolation: isolate; }
.zg-promo-card.has-text::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(0,0,0,.62), rgba(0,0,0,.12)); }
.zg-promo-card.no-text { padding: 0; }
.zg-promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.zg-promo-card .zg-eyebrow { color: var(--zg-yellow); }
.zg-promo-card h3 { color: #fff; font-size: 1.35rem; margin: 6px 0 10px; max-width: 16ch; }
.zg-promo-card .zg-promo-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--zg-display); font-weight: 700; font-size: .85rem; color: var(--zg-yellow); }
.zg-promo-card .zg-promo-link svg { transition: transform .2s var(--zg-ease); }
.zg-promo-card:hover .zg-promo-link svg { transform: translateX(4px); }

/* 9. TRUST STRIP ========================================================== */
.zg-trust { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); box-shadow: var(--zg-shadow-sm); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.zg-trust__item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid var(--zg-line-2); }
.zg-trust__item:last-child { border-right: 0; }
.zg-trust__ico { width: 48px; height: 48px; border-radius: 12px; background: var(--zg-yellow-soft); color: var(--zg-ink); display: grid; place-items: center; flex: none; }
.zg-trust__txt strong { display: block; font-family: var(--zg-display); font-weight: 700; font-size: .98rem; }
.zg-trust__txt span { font-size: .82rem; color: var(--zg-muted); }

/* 10. CATEGORY + PRODUCT CARDS ========================================== */
.zg-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 16px; }
.zg-ccard { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); padding: 22px 14px; text-align: center; transition: transform .22s var(--zg-ease-out), box-shadow .22s var(--zg-ease), border-color .22s var(--zg-ease); }
.zg-ccard:hover { transform: translateY(-6px); box-shadow: var(--zg-shadow); border-color: transparent; }
.zg-ccard__ico { width: 74px; height: 74px; margin: 0 auto 14px; border-radius: 20px; background: var(--zg-surface-2); display: grid; place-items: center; transition: background .22s var(--zg-ease); }
.zg-ccard:hover .zg-ccard__ico { background: var(--zg-yellow); }
.zg-ccard__ico svg { width: 36px; height: 36px; color: var(--zg-ink); }
.zg-ccard__ico img { width: 46px; height: 46px; }
.zg-ccard__name { font-family: var(--zg-display); font-weight: 700; font-size: .98rem; color: var(--zg-ink); }
.zg-ccard__count { font-size: .8rem; color: var(--zg-muted); margin-top: 3px; }

/* Product grid + card */
.zg-pgrid, .zg-pgrid--4 { display: grid; gap: 20px; }
.zg-pgrid { grid-template-columns: repeat(5, 1fr); }
.zg-pgrid--4 { grid-template-columns: repeat(4, 1fr); }
.zg-pcard { position: relative; background: #fff; border: 1px solid var(--zg-line); border-radius: 0 0 var(--zg-r-lg) var(--zg-r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .22s var(--zg-ease-out), box-shadow .22s var(--zg-ease), border-color .22s var(--zg-ease); }
.zg-pcard:hover { transform: translateY(-6px); box-shadow: var(--zg-shadow-lg); border-color: transparent; }
.zg-pcard__media { position: relative; aspect-ratio: 1 / 1; background: var(--zg-surface-2); overflow: hidden; }
.zg-pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--zg-ease-out); }
.zg-pcard__media > a { display: block; height: 100%; }
.zg-pcard:hover .zg-pcard__media img { transform: scale(1.06); }
/* Corner ribbon (top-right, diagonal) — New / Sale / Hot */
.zg-pcard__ribbon { position: absolute; z-index: 4; top: 16px; right: -40px; width: 150px; padding: 5px 0; text-align: center; transform: rotate(45deg); background: var(--zg-yellow); color: var(--zg-ink); font-family: var(--zg-display); font-weight: 800; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 4px 12px rgba(20,22,28,.25); pointer-events: none; }
.zg-pcard__ribbon--sale { background: var(--zg-ink); color: var(--zg-yellow); }
.zg-pcard__ribbon--hot { background: var(--zg-danger); color: #fff; }
.zg-pcard__wish { position: absolute; top: 12px; left: 12px; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--zg-ink); display: grid; place-items: center; box-shadow: var(--zg-shadow-sm); opacity: 0; transform: translateY(-6px); transition: all .22s var(--zg-ease); z-index: 3; }
.zg-pcard:hover .zg-pcard__wish { opacity: 1; transform: translateY(0); }
.zg-pcard__wish:hover { background: var(--zg-yellow); }
.zg-pcard__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.zg-pcard__cat { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--zg-yellow-700); }
.zg-pcard__title { font-family: var(--zg-display); font-weight: 700; font-size: .98rem; line-height: 1.35; color: var(--zg-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.zg-pcard__title a:hover { color: var(--zg-yellow-700); }
.zg-pcard__rating { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--zg-muted); }
.zg-pcard__stars { display: inline-flex; color: var(--zg-yellow); }
.zg-pcard__stars svg { width: 14px; height: 14px; }
.zg-pcard__stars .is-empty { color: var(--zg-line); }
.zg-pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 6px; }
.zg-pcard__price { font-family: var(--zg-display); font-weight: 800; font-size: 1.08rem; color: var(--zg-ink); }
.zg-pcard__price del { color: var(--zg-muted-2); font-weight: 500; font-size: .85rem; margin-right: 6px; }
.zg-pcard__price ins { text-decoration: none; }
.zg-pcard__add { width: 44px; height: 44px; border-radius: 13px; background: var(--zg-yellow); color: var(--zg-ink); display: grid; place-items: center; flex: none; box-shadow: var(--zg-shadow-sm); transition: transform .18s var(--zg-ease), background .18s var(--zg-ease), color .18s var(--zg-ease), box-shadow .2s var(--zg-ease); }
.zg-pcard__add:hover { background: var(--zg-ink); color: var(--zg-yellow); transform: translateY(-3px); box-shadow: var(--zg-shadow); }
.zg-pcard__add:active { transform: translateY(-1px) scale(.95); }
.zg-pcard__add svg { transition: transform .18s var(--zg-ease); }
.zg-pcard__add:hover svg { transform: scale(1.12); }
.zg-pcard__add.loading { opacity: .6; pointer-events: none; }
.zg-pcard__add.added { background: var(--zg-success); color: #fff; }

/* 11. ADVANTAGES STRIP =================================================== */
.zg-adv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.zg-adv__item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r); transition: all .2s var(--zg-ease); }
.zg-adv__item:hover { border-color: var(--zg-yellow); box-shadow: var(--zg-shadow-sm); }
.zg-adv__ico { width: 40px; height: 40px; border-radius: 10px; background: var(--zg-ink); color: var(--zg-yellow); display: grid; place-items: center; flex: none; }
.zg-adv__item span { font-family: var(--zg-display); font-weight: 600; font-size: .9rem; }

/* 12. DEALS ============================================================== */
.zg-deals { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--zg-gap); }
.zg-deals__left { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); padding: 24px; }
.zg-deals__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.zg-timer { display: flex; align-items: center; gap: 8px; }
.zg-timer__unit { background: var(--zg-ink); color: var(--zg-yellow); font-family: var(--zg-display); font-weight: 800; padding: 8px 10px; border-radius: var(--zg-r-xs); min-width: 42px; text-align: center; font-size: 1.05rem; }
.zg-timer__sep { font-weight: 800; color: var(--zg-ink); }
.zg-deals__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.zg-deals__right { display: grid; grid-template-rows: 1.3fr 1fr; gap: var(--zg-gap); }
.zg-deals__feature { position: relative; border-radius: var(--zg-r-lg); overflow: hidden; padding: 28px; color: #fff; display: flex; flex-direction: column; justify-content: center; isolation: isolate; }
.zg-deals__feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(0,0,0,.6), rgba(0,0,0,.15)); }
.zg-deals__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.zg-deals__feature h3 { color: #fff; font-size: 1.6rem; max-width: 14ch; margin-bottom: 14px; }
.zg-deals__minis { display: grid; grid-template-columns: 1fr 1fr; gap: var(--zg-gap); }
.zg-mini { position: relative; border-radius: var(--zg-r); overflow: hidden; padding: 18px; min-height: 130px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--zg-ink); }
.zg-mini--yellow { background: var(--zg-yellow); }
.zg-mini--ink { background: var(--zg-ink); color: #fff; }
.zg-mini strong { font-family: var(--zg-display); font-size: 1.05rem; z-index: 2; }
.zg-mini span { font-size: .8rem; opacity: .8; z-index: 2; }

/* 13. SHOP BY CATEGORY (sidebar + grid) ================================= */
.zg-shopby { display: grid; grid-template-columns: 280px 1fr; gap: var(--zg-gap); align-items: start; }
.zg-catlist { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); overflow: hidden; }
.zg-catlist__head { background: var(--zg-ink); color: #fff; padding: 16px 20px; font-family: var(--zg-display); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.zg-catlist__head svg { color: var(--zg-yellow); }
.zg-catlist li a { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-bottom: 1px solid var(--zg-line-2); font-weight: 500; font-size: .92rem; }
.zg-catlist li:last-child a { border-bottom: 0; }
.zg-catlist li a:hover { background: var(--zg-yellow-soft); color: var(--zg-ink); padding-left: 24px; }
.zg-catlist li a span { color: var(--zg-muted); font-size: .8rem; }
.zg-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.zg-tab { padding: 9px 18px; border-radius: var(--zg-r-pill); font-family: var(--zg-display); font-weight: 600; font-size: .88rem; background: #fff; border: 1.5px solid var(--zg-line); color: var(--zg-ink-700); transition: all .18s var(--zg-ease); }
.zg-tab:hover { border-color: var(--zg-ink); }
.zg-tab.is-active { background: var(--zg-ink); color: #fff; border-color: var(--zg-ink); }

/* 14. BRANDS ============================================================= */
.zg-brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.zg-brand-chip { display: grid; place-items: center; padding: 26px 18px; background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r); font-family: var(--zg-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; color: var(--zg-ink-600); text-align: center; transition: all .2s var(--zg-ease); }
.zg-brand-chip:hover { color: var(--zg-ink); border-color: var(--zg-yellow); box-shadow: var(--zg-shadow-sm); transform: translateY(-3px); }
.zg-brand-chip small { display: block; font-family: var(--zg-font); font-weight: 500; font-size: .68rem; color: var(--zg-muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }

/* 15. MEGA MARKET ======================================================== */
.zg-market { display: grid; grid-template-columns: 1fr 320px; gap: var(--zg-gap); align-items: stretch; }
.zg-market__portrait { position: relative; border-radius: var(--zg-r-lg); overflow: hidden; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; isolation: isolate; }
.zg-market__portrait::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.75)); }
.zg-market__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.zg-market__portrait h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }

/* 16. ARTICLES =========================================================== */
.zg-articles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zg-article { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .22s var(--zg-ease-out); }
.zg-article:hover { transform: translateY(-5px); box-shadow: var(--zg-shadow); border-color: transparent; }
.zg-article__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--zg-surface-2); position: relative; }
.zg-article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--zg-ease-out); }
.zg-article:hover .zg-article__media img { transform: scale(1.06); }
.zg-article__date { position: absolute; top: 12px; left: 12px; background: var(--zg-yellow); color: var(--zg-ink); border-radius: var(--zg-r-xs); padding: 6px 10px; text-align: center; font-family: var(--zg-display); line-height: 1; }
.zg-article__date b { display: block; font-size: 1.2rem; font-weight: 800; }
.zg-article__date span { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.zg-article__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.zg-article__cat { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--zg-yellow-700); }
.zg-article__title { font-family: var(--zg-display); font-weight: 700; font-size: 1.02rem; line-height: 1.35; }
.zg-article__title a:hover { color: var(--zg-yellow-700); }
.zg-article__meta { margin-top: auto; padding-top: 8px; font-size: .8rem; color: var(--zg-muted); display: flex; gap: 12px; }

/* 17. NEWSLETTER ========================================================= */
.zg-news { background: var(--zg-yellow); border-radius: var(--zg-r-xl); padding: clamp(28px, 5vw, 52px); display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 30px; position: relative; overflow: hidden; }
.zg-news::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; border: 30px solid rgba(0,0,0,.06); }
.zg-news__copy h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.zg-news__copy p { color: var(--zg-ink-700); margin-top: 8px; max-width: 44ch; }
.zg-news__form { display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: var(--zg-r-pill); box-shadow: var(--zg-shadow); position: relative; z-index: 2; }
.zg-news__form input { flex: 1; border: 0; padding: 12px 18px; background: transparent; }
.zg-news__form input:focus { outline: none; }

/* 18. FOOTER ============================================================= */
.zg-footer { background: var(--zg-ink); color: #b9bdc7; margin-top: clamp(40px, 6vw, 72px); }
.zg-footer a { color: #b9bdc7; }
.zg-footer a:hover { color: var(--zg-yellow); }
.zg-footer .zg-btn--primary { color: var(--zg-ink); }
.zg-footer .zg-btn--primary:hover { color: var(--zg-ink); }
.zg-footer .zg-btn--dark { color: #fff; }
.zg-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(40px, 5vw, 64px); border-bottom: 1px solid rgba(255,255,255,.1); }
.zg-footer__brand .zg-brand__name { color: #fff; }
.zg-footer__about { margin: 18px 0; max-width: 38ch; font-size: .92rem; color: #9aa0ac; }
.zg-foot__title { color: #fff; font-family: var(--zg-display); font-weight: 700; font-size: 1.02rem; margin-bottom: 18px; }
.zg-footer__col ul li { margin-bottom: 11px; font-size: .92rem; }
.zg-footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; align-items: flex-start; }
.zg-footer__contact svg { color: var(--zg-yellow); flex: none; margin-top: 2px; }
.zg-social { display: flex; gap: 10px; margin-top: 18px; }
.zg-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .18s var(--zg-ease); }
.zg-social a:hover { background: var(--zg-yellow); color: var(--zg-ink); transform: translateY(-3px); }
.zg-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; flex-wrap: wrap; font-size: .86rem; }
.zg-pay { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.zg-pay__chip { height: 30px; padding: 0 10px; border-radius: 6px; background: #fff; color: var(--zg-ink); display: grid; place-items: center; font-family: var(--zg-display); font-weight: 800; font-size: .72rem; letter-spacing: .02em; }

/* 19. UTILITIES / ANIM =================================================== */
.zg-hide { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.zg-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 4px; }
.zg-slider::-webkit-scrollbar { display: none; }
.zg-slider > * { scroll-snap-align: start; }
.zg-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--zg-ease-out), transform .6s var(--zg-ease-out); }
.zg-reveal.is-in { opacity: 1; transform: translateY(0); }

/* Drawer / overlay */
.zg-overlay { position: fixed; inset: 0; background: rgba(10,11,14,.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: all .3s var(--zg-ease); z-index: 200; }
.zg-overlay.is-open { opacity: 1; visibility: visible; }
.zg-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: min(360px, 86vw); background: #fff; z-index: 210; transform: translateX(-100%); transition: transform .32s var(--zg-ease-out); display: flex; flex-direction: column; box-shadow: var(--zg-shadow-lg); }
.zg-drawer.is-open { transform: translateX(0); }
.zg-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--zg-ink); color: #fff; }
.zg-drawer__head .zg-brand__name { color: #fff; }
.zg-drawer__close { color: #fff; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; }
.zg-drawer__close:hover { background: rgba(255,255,255,.12); }
.zg-drawer__close svg { stroke-width: 2.5; }
.zg-drawer__body { overflow-y: auto; padding: 12px; flex: 1; }
.zg-drawer__menu a { display: flex; align-items: center; justify-content: space-between; padding: 14px 14px; border-radius: var(--zg-r-sm); font-family: var(--zg-display); font-weight: 600; }
.zg-drawer__menu a:hover { background: var(--zg-yellow-soft); }
.zg-drawer__menu .sub-menu { padding-left: 12px; }
.zg-drawer__menu .sub-menu a { font-weight: 500; font-family: var(--zg-font); }
.zg-drawer__foot { padding: 16px 20px; border-top: 1px solid var(--zg-line); }
/* The drawer's top offset below the WP admin bar is set DYNAMICALLY in main.js
   (drawer open()) so it tracks the bar even when it scrolls away on small screens
   — a static CSS offset left a gap once the absolute mobile bar scrolled off. */

/* Back to top */
.zg-totop { position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%; background: var(--zg-ink); color: var(--zg-yellow); display: grid; place-items: center; box-shadow: var(--zg-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .26s var(--zg-ease); z-index: 120; }
.zg-totop.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.zg-totop:hover { background: var(--zg-yellow); color: var(--zg-ink); }

/* Page header (inner pages) */
.zg-page-hero { background: var(--zg-surface-2); border-bottom: 1px solid var(--zg-line); padding-block: clamp(28px, 4vw, 48px); }
.zg-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--zg-muted); flex-wrap: wrap; }
.zg-breadcrumb a:hover { color: var(--zg-yellow-700); }
.zg-page-hero h1 { margin-top: 10px; }

/* Generic content (pages/posts) */
.zg-content { padding-block: clamp(36px, 5vw, 64px); }
.zg-prose { max-width: 760px; margin-inline: auto; }
.zg-prose h2, .zg-prose h3 { margin: 1.6em 0 .6em; }
.zg-prose p, .zg-prose ul, .zg-prose ol { margin-bottom: 1.1em; }
.zg-prose ul { list-style: disc; padding-left: 1.3em; }
.zg-prose ol { list-style: decimal; padding-left: 1.3em; }
.zg-prose a { color: var(--zg-yellow-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.zg-prose img { border-radius: var(--zg-r); margin: 1.4em 0; }
.zg-prose blockquote { border-left: 4px solid var(--zg-yellow); padding: 6px 0 6px 20px; margin: 1.4em 0; font-size: 1.1rem; color: var(--zg-ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* 20. RESPONSIVE ======================================================== */
@media (max-width: 1180px) {
  .zg-pgrid { grid-template-columns: repeat(4, 1fr); }
  .zg-brands { grid-template-columns: repeat(4, 1fr); }
  .zg-articles { grid-template-columns: repeat(2, 1fr); }
  .zg-nav__promo { display: none; }
  .zg-menu > li > a { padding: 0 11px; }
}
@media (max-width: 1024px) {
  .zg-hero__grid { grid-template-columns: 1fr; }
  .zg-hero__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .zg-deals { grid-template-columns: 1fr; }
  .zg-market { grid-template-columns: 1fr; }
  .zg-shopby { grid-template-columns: 1fr; }
  .zg-search__btn span { display: none; }
  .zg-search__btn { padding: 0 18px; }
}
@media (max-width: 920px) {
  .zg-nav { display: none; }
  .zg-mobile-toggle { display: grid; order: 1; }
  .zg-header__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; min-height: 0; padding-block: 8px; }
  .zg-header__inner .zg-brand { order: 2; margin-right: auto; }
  .zg-brand--logo img, img.custom-logo { max-height: 38px; max-width: 140px; }
  .zg-actions { order: 3; gap: 2px; }
  .zg-header__search-wrap { order: 4; flex: 1 1 100%; width: 100%; min-width: 0; }
  /* Minimalist search: thin light pill, slimmer height (was a thick black 2px border) */
  .zg-search { width: 100%; max-width: 100%; border: 1px solid var(--zg-line); background: #fff; }
  .zg-search__input { padding: 9px 14px; font-size: .88rem; }
  .zg-search__input::placeholder { font-size: .86rem; color: var(--zg-muted-2); }
  .zg-search__btn { padding: 0 15px; }
  .zg-search__btn svg { width: 16px; height: 16px; }
  /* Minimalist actions: borderless line icons (drop the grey boxes) */
  .zg-action__meta { display: none; }
  .zg-action__ico { width: 40px; height: 40px; background: transparent; border-radius: 10px; }
  .zg-action__ico svg { width: 22px; height: 22px; }
  .zg-action:hover .zg-action__ico { background: transparent; color: var(--zg-yellow); }
  .zg-trust { grid-template-columns: repeat(2, 1fr); }
  .zg-trust__item:nth-child(2) { border-right: 0; }
  .zg-trust__item:nth-child(1), .zg-trust__item:nth-child(2) { border-bottom: 1px solid var(--zg-line-2); }
  .zg-adv { grid-template-columns: repeat(2, 1fr); }
  .zg-pgrid, .zg-pgrid--4 { grid-template-columns: repeat(3, 1fr); }
  .zg-news { grid-template-columns: 1fr; }
  .zg-footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .zg-topbar__left .zg-topbar__item--hideable { display: none; }
}
@media (max-width: 720px) {
  .zg-topbar { display: none; }
  .zg-pgrid, .zg-pgrid--4 { grid-template-columns: repeat(2, 1fr); }
  .zg-brands { grid-template-columns: repeat(3, 1fr); }
  .zg-hero__side { grid-template-columns: 1fr; }
  .zg-deals__pair { grid-template-columns: 1fr; }
  .zg-deals__minis { grid-template-columns: 1fr 1fr; }
  .zg-hero__copy { max-width: 100%; }
  .zg-hero__overlay { align-items: flex-end; }
  .zg-hero__overlay::before { background: linear-gradient(180deg, rgba(12,13,17,.12) 0%, rgba(12,13,17,.5) 52%, rgba(12,13,17,.9) 100%); }
  .zg-section__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 560px) {
  .zg-search__cat { display: none; }
}
@media (max-width: 520px) {
  .zg-container { padding-inline: 14px; }
  .zg-search { max-width: none; }
  .zg-brand__tag { display: none; }
  .zg-brand__name { font-size: 1.3rem; }
  .zg-brand--logo img, img.custom-logo { max-height: 30px; max-width: 108px; }
  .zg-action--wish { display: none; }
  .zg-articles { grid-template-columns: 1fr; }
  .zg-footer__top { grid-template-columns: 1fr; }
  .zg-pgrid, .zg-pgrid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .zg-pcard__body { padding: 12px; gap: 5px; }
  .zg-pcard__title { font-size: .9rem; min-height: 2.5em; }
  .zg-pcard__foot { gap: 6px; flex-wrap: wrap; }
  .zg-pcard__price { font-size: .92rem; }
  .zg-pcard__price del { font-size: .72rem; margin-right: 4px; }
  .zg-pcard__add { width: 38px; height: 38px; border-radius: 11px; }
  .zg-pcard__ribbon { top: 13px; right: -42px; width: 142px; font-size: .56rem; letter-spacing: .05em; padding: 4px 0; }
  .zg-trust__item { padding: 14px 12px; gap: 10px; }
  .zg-trust__ico { width: 40px; height: 40px; }
  .zg-trust__txt strong { font-size: .9rem; }
  .zg-trust__txt span { font-size: .76rem; }
  .zg-adv__item { padding: 11px 12px; gap: 10px; }
  .zg-hero__copy { padding: 24px 20px; }
  .zg-hero__cta .zg-btn { padding: 13px 20px; }
  .zg-deals__left { padding: 16px; }
  .zg-news { padding: 24px 18px; }
  .zg-news__form { flex-direction: column; border-radius: var(--zg-r-lg); }
  .zg-news__form .zg-btn { width: 100%; justify-content: center; }
}

/* 21. HOMEPAGE & SHARED EXTRAS =========================================== */
.zg-page-hero__desc { color: var(--zg-muted); margin-top: 8px; max-width: 72ch; }
.zg-bc-sep { color: var(--zg-muted-2); }

/* Flash Sale band */
.zg-flash { border-radius: var(--zg-r-lg); overflow: hidden; border: 1px solid var(--zg-line); box-shadow: var(--zg-shadow-sm); }
.zg-flash__bar { display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; padding: 16px 24px; background: linear-gradient(100deg, var(--zg-ink) 0%, #2a2d36 100%); color: #fff; }
.zg-flash__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--zg-display); font-weight: 800; font-size: 1.4rem; color: var(--zg-yellow); text-transform: uppercase; letter-spacing: .02em; }
.zg-flash__brand svg { color: var(--zg-yellow); animation: zg-flash-pulse 1.4s var(--zg-ease) infinite; }
@keyframes zg-flash-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.zg-flash__count { display: inline-flex; align-items: center; gap: 12px; }
.zg-flash__label { font-size: .85rem; color: #c7cad2; }
.zg-flash .zg-timer__unit { background: var(--zg-yellow); color: var(--zg-ink); }
.zg-flash .zg-timer__sep { color: #fff; }
.zg-flash__all { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--zg-yellow); font-family: var(--zg-display); font-weight: 700; font-size: .9rem; }
.zg-flash__all:hover { color: #fff; }
.zg-flash__all svg { transition: transform .2s var(--zg-ease); }
.zg-flash__all:hover svg { transform: translateX(4px); }
.zg-flash__grid { padding: 22px; background: var(--zg-yellow-tint); }
@media (max-width: 640px) {
  .zg-flash__brand { font-size: 1.15rem; }
  .zg-flash__all { margin-left: 0; }
  .zg-flash__grid { padding: 14px; }
}

/* ======================= PAGE TEMPLATES (About/Contact/FAQ) ============== */
.zg-page-hero--dark { background: var(--zg-ink); border-bottom: 0; padding-block: clamp(36px, 5vw, 64px); }
.zg-page-hero--dark .zg-breadcrumb, .zg-page-hero--dark .zg-breadcrumb a { color: #aeb2bd; }
.zg-page-hero--dark .zg-breadcrumb a:hover { color: var(--zg-yellow); }
.zg-page-hero--dark .zg-eyebrow { color: var(--zg-yellow); margin-bottom: 8px; display: inline-flex; }
.zg-page-hero--dark h1 { color: #fff; }
.zg-page-hero--dark h1 em { font-style: normal; color: var(--zg-yellow); }
.zg-page-hero__lead { color: #c7cad2; max-width: 64ch; margin-top: 12px; font-size: 1.05rem; line-height: 1.6; }

/* About — stats */
.zg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zg-stat { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); padding: 24px; text-align: center; }
.zg-stat b { display: block; font-family: var(--zg-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--zg-ink); }
.zg-stat span { color: var(--zg-muted); font-size: .9rem; }

/* About — story */
.zg-about__story { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.zg-about__text .zg-section__title { margin: 8px 0 14px; }
.zg-about__text p { margin-bottom: 14px; line-height: 1.7; }
.zg-about__list { margin: 18px 0 24px; display: grid; gap: 10px; }
.zg-about__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--zg-ink-700); }
.zg-about__list svg { color: var(--zg-yellow-700); flex: none; }
.zg-about__visual { aspect-ratio: 1 / 1; border-radius: var(--zg-r-xl); background: radial-gradient(120% 120% at 80% 10%, #ffe34d 0%, var(--zg-yellow) 70%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--zg-ink); box-shadow: var(--zg-shadow-lg); }
.zg-about__mark { width: 104px; height: 104px; border-radius: 26px; background: var(--zg-ink); color: var(--zg-yellow); display: grid; place-items: center; margin-bottom: 6px; }
.zg-about__visual strong { font-family: var(--zg-display); font-size: 1.45rem; }
.zg-about__visual span { font-weight: 600; opacity: .75; }

/* About — values */
.zg-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zg-value { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); padding: 26px; transition: transform .2s var(--zg-ease-out), box-shadow .2s var(--zg-ease), border-color .2s var(--zg-ease); }
.zg-value:hover { border-color: transparent; box-shadow: var(--zg-shadow); transform: translateY(-4px); }
.zg-value__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--zg-yellow-soft); color: var(--zg-ink); display: grid; place-items: center; margin-bottom: 16px; transition: background .2s var(--zg-ease); }
.zg-value:hover .zg-value__ico { background: var(--zg-yellow); }
.zg-value h3 { font-family: var(--zg-display); font-size: 1.1rem; margin-bottom: 8px; }
.zg-value p { color: var(--zg-muted); font-size: .92rem; line-height: 1.6; }

/* CTA band */
.zg-cta-band { background: var(--zg-yellow); border-radius: var(--zg-r-xl); padding: clamp(28px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.zg-cta-band__copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.zg-cta-band__copy p { color: var(--zg-ink-700); margin-top: 6px; }
.zg-cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.zg-contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.zg-contact__info { display: grid; gap: 12px; }
.zg-contact__card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r); padding: 16px 18px; color: var(--zg-ink); transition: border-color .18s var(--zg-ease), box-shadow .18s var(--zg-ease); }
.zg-contact__card:not(.zg-contact__card--static):hover { border-color: var(--zg-yellow); box-shadow: var(--zg-shadow-sm); }
.zg-contact__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--zg-surface-2); color: var(--zg-ink); display: grid; place-items: center; flex: none; }
.zg-contact__card--wa .zg-contact__ico { background: #25D366; color: #fff; }
.zg-contact__meta { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.zg-contact__meta small { color: var(--zg-muted); font-size: .8rem; }
.zg-contact__meta strong { font-family: var(--zg-display); font-size: 1rem; word-break: break-word; }
.zg-contact__panel { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r-lg); padding: clamp(22px, 3vw, 32px); }
.zg-contact__panel h2 { font-size: 1.4rem; }
.zg-contact__sub { color: var(--zg-muted); margin: 6px 0 20px; }
.zg-field { margin-bottom: 16px; }
.zg-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.zg-field input, .zg-field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--zg-line); border-radius: var(--zg-r-sm); background: #fff; font: inherit; }
.zg-field input:focus, .zg-field textarea:focus { outline: none; border-color: var(--zg-yellow); box-shadow: 0 0 0 4px var(--zg-yellow-soft); }
.zg-contact__warn { color: var(--zg-danger); font-size: .85rem; margin-top: 10px; }

/* FAQ */
.zg-faq-wrap { display: grid; grid-template-columns: 1fr 320px; gap: clamp(24px, 3vw, 40px); align-items: start; }
.zg-faq { display: grid; gap: 12px; min-width: 0; }
.zg-faq__item { background: #fff; border: 1px solid var(--zg-line); border-radius: var(--zg-r); overflow: hidden; }
.zg-faq__item[open] { border-color: var(--zg-yellow); box-shadow: var(--zg-shadow-sm); }
.zg-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; cursor: pointer; font-family: var(--zg-display); font-weight: 700; font-size: 1rem; list-style: none; }
.zg-faq__item summary::-webkit-details-marker { display: none; }
.zg-faq__chev { flex: none; color: var(--zg-muted); transition: transform .25s var(--zg-ease); }
.zg-faq__item[open] .zg-faq__chev { transform: rotate(180deg); color: var(--zg-ink); }
.zg-faq__a { padding: 0 20px 20px; color: var(--zg-ink-700); line-height: 1.7; }
.zg-faq__cta { background: var(--zg-ink); color: #fff; border-radius: var(--zg-r-lg); padding: 28px; position: sticky; top: 90px; }
.zg-faq__cta h3 { color: #fff; font-size: 1.25rem; }
.zg-faq__cta p { color: #c7cad2; margin: 8px 0 18px; font-size: .92rem; }
.zg-faq__cta-actions { display: grid; gap: 10px; }
.zg-faq__cta .zg-btn--ghost { --bd: rgba(255,255,255,.3); --fg: #fff; }
.zg-faq__cta .zg-btn--ghost:hover { --bg: #fff; --fg: var(--zg-ink); --bd: #fff; }

/* Contact map — floating info card over a styled map frame */
.zg-map { position: relative; border-radius: var(--zg-r-xl); overflow: hidden; border: 1px solid var(--zg-line); box-shadow: var(--zg-shadow); isolation: isolate; }
.zg-map__frame { aspect-ratio: 16 / 7; min-height: 380px; background: var(--zg-surface-2); }
.zg-map__frame iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.04); }
.zg-map__card { position: absolute; top: 50%; left: clamp(16px, 3vw, 36px); transform: translateY(-50%); width: min(350px, calc(100% - 32px)); background: #fff; border-radius: var(--zg-r-lg); border-top: 4px solid var(--zg-yellow); padding: 28px; box-shadow: var(--zg-shadow-lg); }
.zg-map__ico { width: 54px; height: 54px; border-radius: 15px; background: var(--zg-yellow); color: var(--zg-ink); display: grid; place-items: center; margin-bottom: 16px; box-shadow: var(--zg-shadow-yellow); }
.zg-map__card h3 { font-size: 1.3rem; margin: 0 0 8px; }
.zg-map__card p { color: var(--zg-muted); font-size: .92rem; line-height: 1.6; margin: 0 0 16px; }
.zg-map__addr { display: flex; align-items: flex-start; gap: 10px; font-style: normal; color: var(--zg-ink-700); font-size: .9rem; line-height: 1.5; margin: 0 0 10px; }
.zg-map__addr svg { flex: none; margin-top: 2px; color: var(--zg-muted); }
.zg-map__card .zg-btn { margin-top: 8px; }

@media (max-width: 880px) {
  .zg-about__story { grid-template-columns: 1fr; }
  .zg-about__visual { max-width: 360px; }
  .zg-values { grid-template-columns: repeat(2, 1fr); }
  .zg-contact { grid-template-columns: 1fr; }
  .zg-faq-wrap { grid-template-columns: 1fr; }
  .zg-faq__cta { position: static; }
  .zg-map__frame { aspect-ratio: auto; min-height: 300px; }
  .zg-map__card { position: static; transform: none; width: auto; border-radius: 0; box-shadow: none; border-top: 0; border-bottom: 4px solid var(--zg-yellow); }
}
@media (max-width: 600px) {
  .zg-stats { grid-template-columns: repeat(2, 1fr); }
  .zg-values { grid-template-columns: 1fr; }
  .zg-cta-band { flex-direction: column; align-items: flex-start; }
}
.zg-shopby__main, .zg-market__main { min-width: 0; }

/* CTA banner */
.zg-cta-banner { position: relative; border-radius: var(--zg-r-xl); overflow: hidden; min-height: 320px; display: flex; align-items: center; isolation: isolate; }
.zg-cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.zg-cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(10,11,14,.92) 0%, rgba(10,11,14,.7) 38%, rgba(10,11,14,.15) 100%); }
.zg-cta-banner__inner { padding: clamp(28px, 5vw, 56px); max-width: 60ch; color: #fff; }
.zg-cta-banner__inner .zg-eyebrow { color: var(--zg-yellow); }
.zg-cta-banner__inner h2 { color: #fff; margin: 12px 0 12px; }
.zg-cta-banner__inner p { color: #c9ccd4; margin-bottom: 24px; max-width: 48ch; }

/* Tabs panes */
.zg-tabpane { display: none; }
.zg-tabpane.is-active { display: block; animation: zg-fade .3s var(--zg-ease); }
@keyframes zg-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Blog grid (index/archive/search) */
.zg-articles--blog { grid-template-columns: repeat(3, 1fr); }

/* Pagination */
.zg-pagination { margin-top: 40px; }
.zg-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.zg-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 46px; height: 46px; padding: 0 12px; border-radius: var(--zg-r-sm); border: 1.5px solid var(--zg-line); background: #fff; font-family: var(--zg-display); font-weight: 700; color: var(--zg-ink); transition: all .18s var(--zg-ease); }
.zg-pagination a.page-numbers:hover { border-color: var(--zg-ink); }
.zg-pagination .page-numbers.current { background: var(--zg-yellow); border-color: var(--zg-yellow); }
.zg-pagination .page-numbers.dots { border: 0; background: transparent; }

/* Single post extras */
.zg-singular__media { border-radius: var(--zg-r-lg); overflow: hidden; margin-bottom: 28px; max-width: 980px; margin-inline: auto; }
.zg-singular__media img { width: 100%; }
.zg-postnav { max-width: 760px; margin: 40px auto 0; padding-top: 26px; border-top: 1px solid var(--zg-line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.zg-postnav a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--zg-display); font-weight: 700; color: var(--zg-ink); }
.zg-postnav a:hover { color: var(--zg-yellow-700); }
.zg-postnav__next { margin-left: auto; text-align: right; }
.zg-tags { margin-top: 24px; }
.zg-tags__label { font-weight: 700; font-family: var(--zg-display); }
.zg-tags a { display: inline-block; padding: 5px 12px; margin: 3px; border-radius: var(--zg-r-pill); background: var(--zg-surface-2); font-size: .82rem; }
.zg-tags a:hover { background: var(--zg-yellow); }
.zg-comments { margin-top: 48px; }

@media (max-width: 1180px) {
  .zg-articles--blog { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .zg-articles--blog { grid-template-columns: 1fr; }
  .zg-cta-banner::after { background: linear-gradient(180deg, rgba(10,11,14,.6), rgba(10,11,14,.9)); }
}
