/* =========================================================================
 * HungYenPC — Design System (site.css)
 *
 * Namespace: .hyc
 * Loaded ONLY on pages that opt in via id="hyc-style" or class="hyc".
 * See functions.php → hyc_enqueue_page_assets().
 *
 * Palette + typography locked: companies/hypc/website/design-direction.md
 * =========================================================================
 */

:root {
  /* Brand — locked Phase 1.5 */
  --hyc-primary:    #0b3b8f;   /* Deep tech blue */
  --hyc-primary-d:  #07296a;   /* Hover state */
  --hyc-accent:     #00b4d8;   /* Electric cyan */
  --hyc-coral:      #ff6b35;   /* Coral CTA + sale badge */
  --hyc-ink:        #0b1220;   /* Dark blue-gray */
  --hyc-muted:      #5b6b85;
  --hyc-line:       #e3e8f0;
  --hyc-bg:         #ffffff;
  --hyc-bg-soft:    #f4f7fb;
  --hyc-bg-dark:    #0b1220;
  --hyc-success:    #2bb673;
  --hyc-warn:       #f4a142;
  --hyc-danger:     #e94e4e;

  /* Type */
  --hyc-font:       'Be Vietnam Pro', 'Inter', system-ui, sans-serif;
  --hyc-font-head:  'Be Vietnam Pro', 'Inter', system-ui, sans-serif;
  --hyc-font-mono:  'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  /* Sizing */
  --hyc-radius:     10px;
  --hyc-radius-lg:  20px;
  --hyc-container:  1200px;

  /* Spacing */
  --hyc-sec-pad:    clamp(48px, 6vw, 96px);
  --hyc-gap-md:     24px;
  --hyc-gap-lg:     48px;

  /* Motion */
  --hyc-ease:       cubic-bezier(.16,1,.3,1);
  --hyc-dur:        400ms;
}

/* =========================================================================
 * Reset for opt-in pages
 * =========================================================================
 */
body[class*="page-id-"] .hyc {
  color: var(--hyc-ink);
  font-family: var(--hyc-font);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
}

.hyc *,
.hyc *::before,
.hyc *::after { box-sizing: border-box; }

.hyc img { max-width: 100%; height: auto; display: block; }

.hyc h1, .hyc h2, .hyc h3, .hyc h4 {
  font-family: var(--hyc-font-head);
  line-height: 1.2;
  color: var(--hyc-ink);
  margin: 0;
}
.hyc h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; }
.hyc h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; }
.hyc h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 600; }

.hyc p  { margin: 0 0 1em; }
.hyc a  { color: var(--hyc-primary); text-decoration: none; }
.hyc a:hover { color: var(--hyc-accent); }

/* =========================================================================
 * Layout primitives
 * =========================================================================
 */
/* Support both: <section class="hyc sec"> (same element) and .hyc > .sec (descendant) */
.hyc.sec, .hyc .sec { padding-block: var(--hyc-sec-pad); }
.hyc.sec.alt, .hyc .sec.alt { background: var(--hyc-bg-soft); }
.hyc.sec.dark, .hyc .sec.dark { background: var(--hyc-ink); color: #fff; }
.hyc.sec.dark h1, .hyc.sec.dark h2, .hyc.sec.dark h3,
.hyc .sec.dark h1, .hyc .sec.dark h2, .hyc .sec.dark h3 { color: #fff; }

.hyc .ctr {
  max-width: var(--hyc-container);
  margin-inline: auto;
  padding-inline: 24px;
}

.hyc .g2, .hyc .g3, .hyc .g4 {
  display: grid;
  gap: var(--hyc-gap-md);
}
.hyc .g2 { grid-template-columns: repeat(2, 1fr); }
.hyc .g3 { grid-template-columns: repeat(3, 1fr); }
.hyc .g4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .hyc .g3, .hyc .g4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hyc .g2, .hyc .g3, .hyc .g4 { grid-template-columns: 1fr; }
}

/* =========================================================================
 * Components — buttons, cards, eyebrows, forms
 * =========================================================================
 */
.hyc .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--hyc-radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s var(--hyc-ease);
  text-decoration: none;
}
.hyc .btn.primary { background: var(--hyc-primary); color: #fff; }
.hyc .btn.primary:hover { background: var(--hyc-accent); color: #fff; transform: translateY(-2px); }
.hyc .btn.ghost { background: transparent; color: var(--hyc-ink); border-color: var(--hyc-line); }
.hyc .btn.ghost:hover { border-color: var(--hyc-primary); color: var(--hyc-primary); }
.hyc .btn.lg { padding: 16px 32px; font-size: 16px; }

.hyc .card {
  background: #fff;
  border: 1px solid var(--hyc-line);
  border-radius: var(--hyc-radius);
  padding: 24px;
  transition: transform .3s var(--hyc-ease), box-shadow .3s var(--hyc-ease);
}
.hyc .card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.06); }

.hyc .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--hyc-accent);
  margin-bottom: 12px;
}

/* Form (.qform) */
.hyc .qform {
  display: grid;
  gap: 16px;
  background: #fff;
  padding: 32px;
  border-radius: var(--hyc-radius-lg);
  border: 1px solid var(--hyc-line);
}
.hyc .qform label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; }
.hyc .qform input, .hyc .qform textarea {
  padding: 12px 14px;
  border: 1px solid var(--hyc-line);
  border-radius: var(--hyc-radius);
  font: inherit;
  background: var(--hyc-bg);
}
.hyc .qform input:focus, .hyc .qform textarea:focus {
  outline: 2px solid var(--hyc-primary);
  outline-offset: 1px;
  background: #fff;
}

/* =========================================================================
 * Motion — reveal-on-scroll, stagger, count-up
 * =========================================================================
 */
.hyc .rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--hyc-dur) var(--hyc-ease),
              transform var(--hyc-dur) var(--hyc-ease);
}
.hyc .rv.in {
  opacity: 1;
  transform: none;
}

.hyc .stg > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--hyc-ease),
              transform 500ms var(--hyc-ease);
}
.hyc .stg.in > * { opacity: 1; transform: none; }
.hyc .stg.in > *:nth-child(1) { transition-delay: 0ms; }
.hyc .stg.in > *:nth-child(2) { transition-delay: 80ms; }
.hyc .stg.in > *:nth-child(3) { transition-delay: 160ms; }
.hyc .stg.in > *:nth-child(4) { transition-delay: 240ms; }
.hyc .stg.in > *:nth-child(5) { transition-delay: 320ms; }
.hyc .stg.in > *:nth-child(6) { transition-delay: 400ms; }

/* =========================================================================
 * Header utility top bar (hotline + cart)
 * =========================================================================
 */
.hyc-utility {
  background: var(--hyc-ink);
  color: #ccd2dd;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hyc-utility-inner {
  max-width: var(--hyc-container);
  margin-inline: auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hyc-utility a { color: #ccd2dd; text-decoration: none; transition: color .15s var(--hyc-ease); }
.hyc-utility a:hover { color: #fff; }
.hyc-utility-hotline strong {
  color: var(--hyc-accent);
  font-weight: 700;
  font-family: var(--hyc-font-mono);
  letter-spacing: .02em;
}
.hyc-utility-nav { display: flex; gap: 18px; align-items: center; }
.hyc-utility-link { padding: 2px 0; }
.hyc-utility-wishlist,
.hyc-utility-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.hyc-utility-cart:hover,
.hyc-utility-wishlist:hover { background: var(--hyc-accent); color: var(--hyc-ink); }
.hyc-utility-wishlist [data-hyc-wishlist-count] {
  /* Inside dark utility bar: lighten the empty state for contrast */
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.hyc-utility-wishlist [data-hyc-wishlist-count].has-items {
  background: #e02d3c;
  color: #fff;
}
.hyc-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  background: var(--hyc-coral);
  color: #fff;
  border-radius: 999px;
  padding: 0 5px;
  line-height: 1;
}
@media (max-width: 720px) {
  .hyc-utility-link { display: none; }
  .hyc-utility-inner { padding: 6px 16px; font-size: 12px; }
  .hyc-utility-hotline strong { font-size: 13px; }
}

/* =========================================================================
 * Lead form feedback (.hyc-lead-msg from inc/leads.php inline JS)
 * =========================================================================
 */
.hyc-lead-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--hyc-radius);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.hyc-lead-msg.ok {
  display: block;
  background: rgba(43,182,115,.1);
  color: var(--hyc-success);
  border: 1px solid rgba(43,182,115,.3);
}
.hyc-lead-msg.err {
  display: block;
  background: rgba(233,78,78,.08);
  color: var(--hyc-danger);
  border: 1px solid rgba(233,78,78,.3);
}

/* =========================================================================
 * Header (chrome from inc/nav.php)
 * =========================================================================
 */
/* Kill underline universally on theme chrome + WC pages — parent theme adds it by default */
.hyc-header a, .hyc-header a:hover, .hyc-header a:focus,
.hyc-footer a, .hyc-footer a:hover, .hyc-footer a:focus,
.hyc-logo, .hyc-logo:hover,
.hyc-utility a, .hyc-utility a:hover,
.woocommerce a, .woocommerce a:hover, .woocommerce a:focus,
.woocommerce-page a, .woocommerce-page a:hover,
.woocommerce-breadcrumb a, .woocommerce-breadcrumb a:hover,
.single-product a, .single-product a:hover, .single-product a:focus,
.posted_in a, .tagged_as a, .product_meta a, .product_meta a:hover,
.woocommerce-product-gallery a, .woocommerce-product-gallery a:hover,
.woocommerce-Tabs-panel a, .woocommerce-Tabs-panel a:hover,
.related.products a, .related.products a:hover,
.shr-page a, .bpc-page a {
  text-decoration: none !important;
  box-shadow: none !important; /* defensive — some themes use box-shadow underline */
}

.hyc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--hyc-line);
}
.hyc-header-bar {
  max-width: var(--hyc-container);
  margin-inline: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hyc-logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  width: 110px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url("https://hyc.vn/wp-content/uploads/2026/05/hyc-logo.webp") left center / contain no-repeat;
}
@media (max-width: 720px) { .hyc-logo { height: 36px; width: 90px; } }
.hyc-nav { display: flex; align-items: center; gap: 32px; }
.hyc-nav > ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.hyc-nav a { color: var(--hyc-ink); font-weight: 500; text-decoration: none; }
.hyc-nav a:hover { color: var(--hyc-primary); text-decoration: none; }
.hyc-nav .has-sub { position: relative; }
.hyc-nav .sub {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid var(--hyc-line);
  border-radius: var(--hyc-radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s var(--hyc-ease);
  list-style: none;
  margin: 4px 0 0;
}
.hyc-nav .has-sub:hover .sub,
.hyc-nav .has-sub:focus-within .sub {
  opacity: 1; visibility: visible; transform: none;
}
.hyc-nav .sub li a { display: block; padding: 8px 12px; border-radius: 6px; }
.hyc-nav .sub li a:hover { background: var(--hyc-bg-soft); }

/* Caret next to dropdown labels */
.hyc-nav-caret {
  display: inline-block;
  font-size: 10px;
  color: var(--hyc-muted);
  margin-left: 2px;
  transition: transform .2s var(--hyc-ease);
}
.hyc-nav .has-sub:hover .hyc-nav-caret,
.hyc-nav .has-sub:focus-within .hyc-nav-caret {
  transform: rotate(180deg);
  color: var(--hyc-primary);
}

/* ---------- Mega menu (Sản phẩm) ---------- */
/* Hover bridge: invisible 14px pseudo right below the label keeps :hover alive
   while the cursor travels through the visual gap to the panel. */
.hyc-nav .has-mega { position: relative; }
.hyc-nav .has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
  background: transparent;
  /* z-index left default so it sits below the mega but above page content */
}
.hyc-nav .has-mega .sub-mega {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-30%) translateY(4px);
  width: 880px;
  max-width: 96vw;
  background: #fff;
  border: 1px solid var(--hyc-line);
  border-radius: 14px;
  box-shadow: 0 18px 50px -12px rgba(10,14,31,.18);
  padding: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--hyc-ease), visibility .22s var(--hyc-ease), transform .22s var(--hyc-ease);
  z-index: 90;
}
.hyc-nav .has-mega:hover .sub-mega,
.hyc-nav .has-mega:focus-within .sub-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-30%) translateY(0);
}
.sub-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 24px;
}
.sub-mega-col h4.sub-mega-col-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hyc-muted);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hyc-line);
  font-family: 'JetBrains Mono', monospace;
}
.sub-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sub-mega-col li a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 8px !important;
  border-radius: 8px !important;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hyc-ink);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.sub-mega-col li a:hover {
  background: var(--hyc-bg-soft) !important;
  color: var(--hyc-primary);
}
.sub-mega-ic {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.sub-mega-name { flex: 1; }
.sub-mega-col li small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--hyc-muted);
  background: var(--hyc-bg-soft);
  border-radius: 99px;
  padding: 2px 7px;
  font-weight: 600;
}
.sub-mega-col li a:hover small {
  background: var(--hyc-primary);
  color: #fff;
}

/* Footer row */
.sub-mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-top: 1px solid var(--hyc-line);
  background: var(--hyc-bg-soft);
  border-radius: 0 0 14px 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.sub-mega-foot a {
  font-size: 13px;
  font-weight: 600;
  color: var(--hyc-primary) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 !important;
  transition: gap .15s, color .15s;
}
.sub-mega-foot a:hover { gap: 8px; color: var(--hyc-primary-d) !important; }
.sub-mega-foot-cta {
  background: var(--hyc-primary);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 99px !important;
}
.sub-mega-foot-cta:hover { background: var(--hyc-primary-d) !important; }
.hyc-cta {
  padding: 10px 20px;
  background: var(--hyc-primary);
  color: #fff !important;
  border-radius: var(--hyc-radius);
  font-weight: 600;
}
.hyc-cta:hover { background: var(--hyc-accent); }

/* Mobile menu */
.hyc-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.hyc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hyc-ink);
  transition: transform .25s var(--hyc-ease), opacity .15s var(--hyc-ease);
}

/* Tap-to-expand button for mega menu (mobile only — hidden on desktop) */
.hyc-mega-expand {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--hyc-muted);
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--hyc-ease), color .15s;
  position: absolute;
  right: 0; top: 0;
}
.hyc-mega-expand:hover { color: var(--hyc-primary); }
.has-mega.is-open .hyc-mega-expand { transform: rotate(180deg); color: var(--hyc-primary); }

/* Drawer overlay backdrop */
.hyc-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,32,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--hyc-ease);
  z-index: 95;
  -webkit-tap-highlight-color: transparent;
}

/* Drawer-only utility (hotline / orders / account) — hidden on desktop */
.hyc-drawer-utility { display: none; }

@media (max-width: 900px) {
  .hyc-burger { display: flex; }

  /* Drawer pushed below actual header. JS sets --hyc-drawer-top dynamically;
     fallback covers desktop dev tools simulating mobile before JS runs. */
  .hyc-nav {
    position: fixed;
    inset: var(--hyc-drawer-top, 124px) 0 0 0;
    width: min(420px, 100vw);
    margin-left: auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    transform: translateX(100%);
    transition: transform .3s var(--hyc-ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 100;
    box-shadow: -16px 0 40px -16px rgba(10,18,32,.18);
    -webkit-overflow-scrolling: touch;
  }
  .hyc-nav-toggle:checked ~ .hyc-nav { transform: none; }
  .hyc-nav-toggle:checked + .hyc-burger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .hyc-nav-toggle:checked + .hyc-burger span:nth-child(2) { opacity: 0; }
  .hyc-nav-toggle:checked + .hyc-burger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  /* Overlay activates only when drawer open */
  .hyc-nav-overlay { display: block; }
  .hyc-nav-toggle:checked ~ .hyc-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Body scroll lock when drawer is open (toggled by JS in site.js) */
  body.hyc-drawer-open { overflow: hidden; touch-action: none; }

  /* Top-level nav items: bigger touch targets + visual rhythm */
  .hyc-nav > ul { flex-direction: column; width: 100%; gap: 2px; padding: 0; }
  .hyc-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--hyc-line);
    position: relative;
  }
  .hyc-nav > ul > li > a,
  .hyc-nav > ul > li > .has-mega-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 48px 12px 12px !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
  }
  .hyc-nav > ul > li > a:active {
    background: var(--hyc-bg-soft);
  }

  /* Simple sub (non-mega) stays inline */
  .hyc-nav .has-sub:not(.has-mega) .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--hyc-bg-soft);
    border-left: 3px solid var(--hyc-primary);
    margin: 0 0 4px 8px;
    padding: 4px;
    border-radius: 0;
  }
  .hyc-nav .has-sub:not(.has-mega) .sub li a {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  /* MEGA menu: collapsed by default, expanded when li.is-open */
  .hyc-nav .has-mega .sub-mega {
    position: static;
    width: auto;
    max-width: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: 0 0 4px 8px;
    padding: 0;
    background: var(--hyc-bg-soft);
    border-left: 3px solid var(--hyc-primary);
    /* Collapse trick: max-height 0 + overflow hidden + transition */
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--hyc-ease);
  }
  .hyc-nav .has-mega.is-open .sub-mega {
    max-height: 2400px; /* generous bound for content height */
  }
  .sub-mega-inner {
    grid-template-columns: 1fr;
    padding: 8px 12px;
    gap: 12px;
  }
  .sub-mega-col h4.sub-mega-col-h {
    font-size: 10px;
    margin-bottom: 4px;
    padding-bottom: 6px;
  }
  .sub-mega-col li a {
    padding: 10px 8px !important;
    min-height: 44px;
    font-size: 14px;
    align-items: center;
  }
  .sub-mega-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px 12px;
    background: transparent;
    border-radius: 0;
    gap: 6px;
  }
  .sub-mega-foot a {
    padding: 10px 0 !important;
    min-height: 44px;
    align-items: center;
  }
  .sub-mega-foot-cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
    padding: 10px 16px !important;
  }

  /* Show expand button + hide hover caret on touch */
  .hyc-mega-expand { display: inline-flex; }
  .hyc-nav-caret { display: none; }

  /* Hover bridge ::after is useless on touch — disable to keep its height from blocking taps */
  .hyc-nav .has-mega::after { display: none; }

  /* CTA "Tư vấn build PC" inside drawer */
  .hyc-cta {
    margin: 16px 0 8px;
    width: 100%;
    text-align: center;
  }

  /* Drawer utility (hotline / orders / account) */
  .hyc-drawer-utility {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--hyc-line);
  }
  .hyc-drawer-utility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    min-height: 56px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--hyc-ink) !important;
    transition: background .15s;
  }
  .hyc-drawer-utility-item:active { background: var(--hyc-bg-soft); }
  .hyc-drawer-utility-item > span:first-child {
    font-size: 22px;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
  }
  .hyc-drawer-utility-item > div { display: flex; flex-direction: column; line-height: 1.2; }
  .hyc-drawer-utility-item small { font-size: 11px; color: var(--hyc-muted); }
  .hyc-drawer-utility-item strong { font-size: 15px; font-weight: 600; }
}

/* Smaller phones: drawer takes full width */
@media (max-width: 480px) {
  .hyc-nav { width: 100vw; margin-left: 0; }
}

/* =========================================================================
 * 12b. WooCommerce — Account / Cart / Checkout pages
 *      Demo 12 design language: rounded cards, coral CTAs, JetBrains for nums,
 *      generous spacing, no zebra-stripes.
 * =========================================================================
 */

/* Shared design tokens for WC body classes */
body.woocommerce-account,
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-order-received,
body.page-id-7685, /* gio-hang */
body.page-id-7686, /* thanh-toan */
body.page-id-7687  /* tai-khoan */ {
  --wc-ink: #0a0e1f;
  --wc-ink-2: #5b6b85;
  --wc-line: #e3e8f0;
  --wc-line-soft: #eef1f6;
  --wc-bg-soft: #f4f7fb;
  --wc-orange: #ff6900;
  --wc-blue: #0071e3;
  --wc-red: #e02d3c;
  --wc-green: #00875a;
  background: #fafbfd;
}

/* Constrain content + remove GeneratePress chrome */
body.woocommerce-account .hyc-site-main,
body.woocommerce-cart .hyc-site-main,
body.woocommerce-checkout .hyc-site-main,
body.woocommerce-account .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
  padding: 24px 16px 64px !important;
  background: transparent;
}
body.woocommerce-account .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-account .inside-article,
body.woocommerce-cart .inside-article,
body.woocommerce-checkout .inside-article {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent;
}
body.woocommerce-account .entry-title,
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--wc-ink);
}

/* Demo-12 breadcrumb (injected by woocommerce_before_main_content if present) */
.woocommerce-breadcrumb,
body.woocommerce-page .woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--wc-ink-2);
  margin: 0 0 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.woocommerce-breadcrumb a {
  color: var(--wc-ink-2);
  text-decoration: none;
}
.woocommerce-breadcrumb a:hover { color: var(--wc-blue); }

/* Universal button — WC default is grey, we want coral CTAs */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button:not(.is-loading),
.woocommerce-page a.button,
.woocommerce-page button.button {
  background: var(--wc-ink) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 12px 22px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: -.005em;
  text-transform: none !important;
  transition: background .15s, transform .15s !important;
  box-shadow: 0 4px 14px -6px rgba(10,14,31,.18) !important;
  cursor: pointer;
  text-decoration: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--wc-blue) !important;
  transform: translateY(-1px);
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce a.checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
button#place_order {
  background: linear-gradient(135deg, var(--wc-orange), #e02d3c) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  box-shadow: 0 10px 26px -10px rgba(255,105,0,.45) !important;
}
.woocommerce a.button.alt:hover,
button#place_order:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* Form inputs — uniform rounded */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row select,
.woocommerce-page form .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--wc-line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--wc-ink);
  transition: border-color .15s, box-shadow .15s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-page form .form-row input.input-text:focus {
  outline: none;
  border-color: var(--wc-blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.12);
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  font-weight: 600;
  font-size: 13px;
  color: var(--wc-ink);
  margin-bottom: 6px;
  display: inline-block;
}
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  margin-bottom: 16px;
  padding: 0;
}
.woocommerce form .form-row .required { color: var(--wc-red); }
.woocommerce form abbr[title] { text-decoration: none; }

/* Notice / message panels */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 12px;
  padding: 14px 20px 14px 16px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--wc-ink);
  border-left: 4px solid var(--wc-blue);
  box-shadow: 0 4px 12px -8px rgba(10,14,31,.08);
}
.woocommerce-message { border-left-color: var(--wc-green); }
.woocommerce-error { border-left-color: var(--wc-red); }
.woocommerce-message .button,
.woocommerce-info .button {
  margin-left: 12px !important;
  padding: 6px 14px !important;
  font-size: 12px !important;
}

/* ---------- /tai-khoan/ (My Account) ---------- */
body.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
/* WC ships default `float: left; width: 30%` on these — kill them so the
   grid can do its job. */
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 12px;
  position: sticky;
  top: 24px;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li::before { content: none; }
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 44px;
  border-radius: 10px;
  color: var(--wc-ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background .12s, color .12s;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--wc-bg-soft);
  color: var(--wc-ink);
}
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--wc-ink);
  color: #fff;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 32px;
  min-height: 360px;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  font-size: 16px;
  color: var(--wc-ink-2);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--wc-line-soft);
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child strong {
  color: var(--wc-ink);
  font-weight: 700;
}
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--wc-ink);
  margin: 0 0 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content h2 { font-size: 22px; }
body.woocommerce-account .woocommerce-MyAccount-content h3 { font-size: 16px; margin-top: 24px; }

/* Dashboard override (woocommerce/myaccount/dashboard.php) */
.hyc-account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hyc-account-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a2138 100%);
  color: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.hyc-account-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(255,105,0,.22), transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(0,113,227,.18), transparent 50%);
  pointer-events: none;
}
.hyc-account-welcome-greeting { position: relative; }
.hyc-account-welcome-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.hyc-account-welcome h2 {
  font-size: clamp(24px, 2.5vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em;
  color: #fff !important;
  margin: 4px 0 8px !important;
  line-height: 1.1;
}
.hyc-account-welcome p {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.hyc-account-welcome p strong { color: #fff; }
.hyc-account-logout {
  position: relative;
  padding: 10px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  flex-shrink: 0;
}
.hyc-account-logout:hover { background: rgba(255,255,255,.2); }

/* Stats grid */
.hyc-account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hyc-account-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--wc-bg-soft);
  border: 1px solid var(--wc-line-soft);
  border-radius: 14px;
}
.hyc-account-stat-icon {
  font-size: 28px;
  line-height: 1;
}
.hyc-account-stat-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--wc-ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.hyc-account-stat-label {
  display: block;
  font-size: 12px;
  color: var(--wc-ink-2);
  margin-top: 4px;
}

/* Section headings */
.hyc-account-section-h {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--wc-ink) !important;
  margin: 8px 0 4px !important;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
}

/* Quick actions */
.hyc-account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hyc-account-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.hyc-account-action:hover {
  border-color: var(--wc-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(10,14,31,.18);
}
.hyc-account-action-icon { font-size: 22px; line-height: 1; }
.hyc-account-action > div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hyc-account-action strong { font-size: 14px; color: var(--wc-ink); font-weight: 700; }
.hyc-account-action span:not(.hyc-account-action-icon):not(.hyc-account-action-arrow) {
  font-size: 12px; color: var(--wc-ink-2);
}
.hyc-account-action-arrow {
  font-size: 16px;
  color: var(--wc-ink-2);
  transition: transform .15s, color .15s;
}
.hyc-account-action:hover .hyc-account-action-arrow {
  color: var(--wc-orange);
  transform: translateX(3px);
}

/* Recent orders */
.hyc-account-recent-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.hyc-account-recent-all {
  font-size: 13px;
  color: var(--wc-blue);
  text-decoration: none;
  font-weight: 600;
  transition: gap .15s;
  display: inline-flex;
  gap: 4px;
}
.hyc-account-recent-all:hover { gap: 8px; }
.hyc-account-recent {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--wc-bg-soft);
  border-radius: 12px;
  padding: 8px;
}
.hyc-account-order {
  display: grid;
  grid-template-columns: 90px 1fr auto 140px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .15s, transform .15s;
}
.hyc-account-order:hover {
  border-color: var(--wc-ink);
  transform: translateY(-1px);
}
.hyc-account-order-id span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--wc-ink-2);
  text-transform: uppercase;
}
.hyc-account-order-id strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--wc-blue);
  font-weight: 700;
}
.hyc-account-order-summary {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hyc-account-order-item {
  font-size: 13px;
  color: var(--wc-ink);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hyc-account-order-item em { color: var(--wc-ink-2); font-style: normal; font-weight: 500; font-size: 12px; }
.hyc-account-order-date {
  font-size: 11px;
  color: var(--wc-ink-2);
}
.hyc-account-order-status {
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--wc-bg-soft);
  color: var(--wc-ink-2);
}
.hyc-account-status-completed { background: rgba(0,135,90,.12); color: var(--wc-green); }
.hyc-account-status-processing { background: rgba(0,113,227,.12); color: var(--wc-blue); }
.hyc-account-status-pending,
.hyc-account-status-on-hold { background: rgba(255,105,0,.12); color: var(--wc-orange); }
.hyc-account-status-cancelled,
.hyc-account-status-refunded,
.hyc-account-status-failed { background: rgba(224,45,60,.12); color: var(--wc-red); }
.hyc-account-order-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--wc-orange);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

/* Empty orders */
.hyc-account-empty-orders {
  text-align: center;
  padding: 40px 24px;
  background: var(--wc-bg-soft);
  border: 1px dashed var(--wc-line);
  border-radius: 14px;
}
.hyc-account-empty-orders h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--wc-ink) !important;
  margin-bottom: 6px !important;
}
.hyc-account-empty-orders p {
  font-size: 14px;
  color: var(--wc-ink-2);
  margin: 0 0 18px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.hyc-account-shop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--wc-ink);
  color: #fff !important;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.hyc-account-shop-cta:hover { background: var(--wc-blue); transform: translateY(-1px); }

/* Support */
.hyc-account-support {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--wc-bg-soft);
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hyc-account-support h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  color: var(--wc-ink) !important;
}
.hyc-account-support p {
  font-size: 13px;
  color: var(--wc-ink-2);
  margin: 0;
  max-width: 420px;
}
.hyc-account-support-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hyc-account-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 99px;
  color: var(--wc-ink) !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all .15s;
}
.hyc-account-support-btn:hover { border-color: var(--wc-ink); }
.hyc-account-support-btn-alt {
  background: var(--wc-ink);
  color: #fff !important;
  border-color: var(--wc-ink);
}
.hyc-account-support-btn-alt:hover { background: var(--wc-blue); border-color: var(--wc-blue); }

/* Mobile collapses */
@media (max-width: 720px) {
  .hyc-account-welcome { flex-direction: column; align-items: flex-start; }
  .hyc-account-stats { grid-template-columns: 1fr; }
  .hyc-account-actions { grid-template-columns: 1fr; }
  .hyc-account-order { grid-template-columns: 1fr; gap: 6px; padding: 12px; }
  .hyc-account-order-id { display: flex; gap: 6px; align-items: baseline; }
  .hyc-account-order-status { justify-self: flex-start; }
  .hyc-account-order-total { text-align: left; }
  .hyc-account-support { flex-direction: column; align-items: flex-start; }
}

/* Empty state inside MyAccount (orders / downloads tabs) */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message {
  background: var(--wc-bg-soft) !important;
  border: 1px dashed var(--wc-line) !important;
  border-left: 1px dashed var(--wc-line) !important;
  border-radius: 14px !important;
  padding: 40px 24px !important;
  margin: 0 !important;
  text-align: center;
  color: var(--wc-ink-2) !important;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message::before {
  content: '';
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%235b6b85" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><path d="M3 6h18M16 10a4 4 0 0 1-8 0"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--wc-line);
  flex-shrink: 0;
}
body.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content .woocommerce-info::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%235b6b85" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>');
}
body.woocommerce-account.woocommerce-downloads .woocommerce-MyAccount-content .woocommerce-info::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="%235b6b85" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>');
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message .button {
  margin-top: 4px !important;
  padding: 12px 24px !important;
}

/* Addresses tab — 2-col cards */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}
/* Explicit column placement — grid auto-flow puts col-1 in slot 2 otherwise.
   Same quirk as the MyAccount nav/content swap, fix the same way. */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address.u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address.col-1 {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address.u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address.col-2 {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  width: 100% !important;
  float: none !important;
  padding: 24px !important;
  background: var(--wc-bg-soft);
  border: 1px solid var(--wc-line);
  border-radius: 14px;
  margin: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0 0 12px !important;
  border-bottom: 1px solid var(--wc-line);
  padding-bottom: 12px;
}
/* WC ships the .edit link with float: right — flexbox can't position it
   then. Kill the float so the title flex layout takes over. */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  float: none !important;
  margin: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: var(--wc-ink) !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  display: inline-block;
  font-size: 13px;
  color: var(--wc-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--wc-line);
  transition: all .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
  border-color: var(--wc-blue);
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wc-ink);
  margin: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content > p {
  font-size: 14px;
  color: var(--wc-ink-2);
  margin: 0 0 12px;
}

/* Edit account form — 2-col grid for name fields */
body.woocommerce-account .woocommerce-EditAccountForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.woocommerce-account .woocommerce-EditAccountForm > p.form-row-first {
  display: inline-block;
  width: calc(50% - 8px);
  margin-right: 16px !important;
}
body.woocommerce-account .woocommerce-EditAccountForm > p.form-row-last {
  display: inline-block;
  width: calc(50% - 8px);
}
body.woocommerce-account .woocommerce-EditAccountForm > p.form-row-wide {
  width: 100%;
}
body.woocommerce-account .woocommerce-EditAccountForm > fieldset {
  background: var(--wc-bg-soft);
  border: 1px solid var(--wc-line);
  border-radius: 14px;
  padding: 24px;
  margin: 16px 0 0 !important;
}
body.woocommerce-account .woocommerce-EditAccountForm > fieldset > legend {
  font-size: 16px;
  font-weight: 700;
  padding: 0 8px;
  color: var(--wc-ink);
  margin-left: -8px;
}
body.woocommerce-account .woocommerce-EditAccountForm > fieldset .form-row {
  margin-bottom: 14px !important;
}
body.woocommerce-account .woocommerce-EditAccountForm > p:last-of-type {
  margin-top: 8px;
}
body.woocommerce-account .woocommerce-EditAccountForm .button {
  padding: 14px 28px !important;
  font-size: 14px !important;
}

/* Orders table */
.woocommerce-orders-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.woocommerce-orders-table thead th {
  background: var(--wc-bg-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--wc-ink-2);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--wc-line);
}
.woocommerce-orders-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--wc-line-soft);
  font-size: 14px;
  vertical-align: middle;
}
.woocommerce-orders-table tbody tr:hover { background: var(--wc-bg-soft); }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: var(--wc-blue);
  font-weight: 700;
}

/* Login / Register columns (logged-out state) */
body.woocommerce-account .u-columns,
body.woocommerce-account .col2-set {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.woocommerce-account .u-column1,
body.woocommerce-account .u-column2,
body.woocommerce-account .col-1,
body.woocommerce-account .col-2 {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 32px;
}
body.woocommerce-account .u-columns h2,
body.woocommerce-account .col2-set h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  color: var(--wc-ink);
}
.woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wc-ink-2);
}
.woocommerce-form-login__rememberme input { margin: 0 6px 0 0; }
.lost_password { margin-top: 12px; font-size: 13px; }
.lost_password a { color: var(--wc-blue); font-weight: 500; }

/* Hide WC mandatory note ("required" reminder) clutter */
body.woocommerce-account .woocommerce-privacy-policy-text { font-size: 12px; color: var(--wc-ink-2); }

/* ---------- /gio-hang/ (Cart) ---------- */
body.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
/* Kill WC float/width defaults on cart items */
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals,
body.woocommerce-cart .cart-collaterals,
body.woocommerce-cart .cross-sells {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
body.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 8px 8px 12px;
}
body.woocommerce-cart .cart-collaterals { grid-column: 2; }
body.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 24px;
}
body.woocommerce-cart .cart_totals h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -.015em;
}
body.woocommerce-cart .shop_table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
}
body.woocommerce-cart .shop_table thead { display: none; }
body.woocommerce-cart .shop_table tr.cart_item {
  display: grid;
  grid-template-columns: 80px 1fr 110px 110px 36px;
  gap: 14px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--wc-line-soft);
}
body.woocommerce-cart .shop_table tr.cart_item:last-of-type { border-bottom: 0; }
body.woocommerce-cart .shop_table tr.cart_item td {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
}
body.woocommerce-cart .shop_table .product-thumbnail img {
  width: 80px !important;
  height: 80px;
  object-fit: contain;
  background: var(--wc-bg-soft);
  border-radius: 10px;
  padding: 6px;
}
body.woocommerce-cart .shop_table .product-name a {
  color: var(--wc-ink);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
}
body.woocommerce-cart .shop_table .product-name a:hover { color: var(--wc-blue); }
body.woocommerce-cart .shop_table .product-price,
body.woocommerce-cart .shop_table .product-subtotal {
  font-family: 'JetBrains Mono', 'Manrope', monospace;
  font-weight: 700;
  color: var(--wc-orange);
  text-align: right;
  font-size: 15px;
}
body.woocommerce-cart .shop_table .product-quantity input.qty {
  width: 64px;
  text-align: center;
  padding: 8px 6px;
  border: 1px solid var(--wc-line);
  border-radius: 8px;
}
body.woocommerce-cart .shop_table .product-remove a.remove {
  width: 32px;
  height: 32px;
  background: var(--wc-bg-soft);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wc-red) !important;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}
body.woocommerce-cart .shop_table .product-remove a.remove:hover {
  background: var(--wc-red);
  color: #fff !important;
}
/* Coupon + update row */
body.woocommerce-cart .shop_table tr.cart-coupon {
  display: flex !important;
  gap: 8px;
  padding: 16px 12px;
  border-top: 1px solid var(--wc-line);
}
body.woocommerce-cart .coupon { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
body.woocommerce-cart .coupon input[type="text"] {
  padding: 10px 14px;
  border: 1px solid var(--wc-line);
  border-radius: 99px;
  font-size: 13px;
  min-width: 200px;
}
/* Totals table */
body.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
body.woocommerce-cart .cart_totals table tr { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--wc-line-soft); }
body.woocommerce-cart .cart_totals table tr:last-child { border-bottom: 0; padding-top: 14px; }
body.woocommerce-cart .cart_totals table th { font-weight: 500; color: var(--wc-ink-2); text-align: left; border: 0; padding: 0; }
body.woocommerce-cart .cart_totals table td { text-align: right; border: 0; padding: 0; }
body.woocommerce-cart .cart_totals .order-total td,
body.woocommerce-cart .cart_totals .order-total th {
  font-size: 18px;
  font-weight: 800;
  color: var(--wc-ink);
}
body.woocommerce-cart .cart_totals .order-total td .amount {
  color: var(--wc-orange);
  font-family: 'JetBrains Mono', monospace;
}
body.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 16px;
  padding: 0;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { width: 100%; justify-content: center; display: flex; }

/* Empty cart */
body.woocommerce-cart .cart-empty,
body.woocommerce-cart .wc-empty-cart-message {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  font-size: 16px;
  color: var(--wc-ink-2);
}
body.woocommerce-cart .return-to-shop { text-align: center; margin-top: 16px; }

/* ---------- /thanh-toan/ (Checkout) ---------- */
body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
/* Kill WC checkout default floats / widths */
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #order_review_heading {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
body.woocommerce-checkout #customer_details > .col2-set,
body.woocommerce-checkout #customer_details > .u-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 24px;
}
body.woocommerce-checkout #customer_details { grid-column: 1; }
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review { grid-column: 2; }
body.woocommerce-checkout #order_review_heading {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body.woocommerce-checkout #order_review {
  margin-top: -1px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: sticky;
  top: 24px;
}
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  padding: 0;
}
body.woocommerce-checkout #customer_details > div { padding: 0; }
body.woocommerce-checkout h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -.015em;
  color: var(--wc-ink);
}
body.woocommerce-checkout .shop_table {
  width: 100%;
  border: 0;
  border-collapse: separate;
}
body.woocommerce-checkout .shop_table thead {
  background: var(--wc-bg-soft);
  border-radius: 8px;
}
body.woocommerce-checkout .shop_table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--wc-ink-2);
  padding: 10px 12px;
}
body.woocommerce-checkout .shop_table tbody tr.cart_item td {
  padding: 12px 8px;
  border: 0;
  border-bottom: 1px solid var(--wc-line-soft);
  font-size: 14px;
}
body.woocommerce-checkout .shop_table .product-total .amount {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--wc-orange);
}
body.woocommerce-checkout .shop_table tfoot tr {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--wc-line-soft);
}
body.woocommerce-checkout .shop_table tfoot tr:last-child { border-bottom: 0; }
body.woocommerce-checkout .shop_table tfoot tr th { background: transparent; padding: 0; border: 0; font-weight: 500; color: var(--wc-ink-2); }
body.woocommerce-checkout .shop_table tfoot tr td { background: transparent; padding: 0; border: 0; text-align: right; }
body.woocommerce-checkout .shop_table tfoot .order-total th,
body.woocommerce-checkout .shop_table tfoot .order-total td {
  font-size: 18px;
  font-weight: 800;
  color: var(--wc-ink);
}
body.woocommerce-checkout .shop_table tfoot .order-total td .amount {
  color: var(--wc-orange);
}

/* Payment methods */
#payment {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin-top: 16px;
}
#payment ul.payment_methods {
  background: var(--wc-bg-soft);
  border: 1px solid var(--wc-line);
  border-radius: 12px;
  padding: 12px;
  margin: 0 0 16px;
  list-style: none !important;
}
#payment ul.payment_methods li {
  background: transparent;
  padding: 10px 8px;
  border-radius: 8px;
  border-bottom: 1px solid var(--wc-line-soft);
  margin: 0;
  list-style: none;
}
#payment ul.payment_methods li::before { content: none; }
#payment ul.payment_methods li:last-child { border-bottom: 0; }
#payment ul.payment_methods li input[type=radio] { margin-right: 8px; }
#payment ul.payment_methods li label { font-weight: 600; color: var(--wc-ink); cursor: pointer; }
#payment ul.payment_methods .payment_box {
  background: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--wc-ink-2);
}
#payment .terms { margin-top: 12px; font-size: 13px; }
#payment .place-order { padding: 0; margin-top: 16px; }
#payment .place-order .button { width: 100%; justify-content: center; }

/* ---------- /order-received/ (Thank you) ---------- */
body.woocommerce-order-received .woocommerce-order {
  background: #fff;
  border: 1px solid var(--wc-line);
  border-radius: 16px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
body.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-size: 22px;
  font-weight: 800;
  color: var(--wc-green);
  margin-bottom: 24px;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  body.woocommerce-account .woocommerce,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout #order_review { position: static; }
  body.woocommerce-cart .shop_table tr.cart_item {
    grid-template-columns: 64px 1fr 36px;
    grid-template-areas:
      'img name remove'
      'img price quantity';
    column-gap: 12px;
    row-gap: 4px;
  }
  body.woocommerce-cart .shop_table .product-thumbnail { grid-area: img; }
  body.woocommerce-cart .shop_table .product-name { grid-area: name; }
  body.woocommerce-cart .shop_table .product-price { grid-area: price; text-align: left; font-size: 13px; }
  body.woocommerce-cart .shop_table .product-quantity { grid-area: quantity; text-align: right; }
  body.woocommerce-cart .shop_table .product-subtotal { display: none; }
  body.woocommerce-cart .shop_table .product-remove { grid-area: remove; text-align: right; }
  body.woocommerce-account .u-columns,
  body.woocommerce-account .col2-set { grid-template-columns: 1fr; }
}

/* =========================================================================
 * 13. Wishlist
 *     Heart button on product cards (.prod-action-btn[data-wishlist-btn]).
 *     Toast feedback. Optional header count badge ([data-hyc-wishlist-count]).
 * =========================================================================
 */

/* Container: top-right, always visible (no hover-only) */
.hyc-archive .prod-actions,
.hyc-wishlist-page .prod-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  opacity: 1;
}

/* Button itself — explicit size, neutral until wishlisted.
   No transition on color/border/background — CSSTransitions interfered with
   inline-style toggling, leaving the heart visually gray after click. */
.hyc-archive .prod-action-btn,
.hyc-wishlist-page .prod-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid var(--hyc-line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hyc-muted);
  padding: 0;
  transition: transform .15s;
}
.hyc-archive .prod-action-btn:hover,
.hyc-wishlist-page .prod-action-btn:hover {
  background: var(--hyc-ink);
  color: #fff;
  border-color: var(--hyc-ink);
}
.hyc-archive .prod-action-btn svg,
.hyc-wishlist-page .prod-action-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  /* No transition — same reason as the button: keeps the toggle instant. */
}

/* Filled state — red heart when product is wishlisted
   Scoped with .hyc-archive / .hyc-wishlist-page for higher specificity than
   the neutral .prod-action-btn rule above. */
[data-wishlist-btn] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s var(--hyc-ease);
}
[data-wishlist-btn]:active { transform: scale(.92); }
/* Removed color/stroke/fill transitions — they got stuck running and masked
   the wishlisted state. State now flips instantly. */
.hyc-archive .prod-action-btn.is-wishlisted,
.hyc-wishlist-page .prod-action-btn.is-wishlisted,
[data-wishlist-btn].is-wishlisted {
  background: #fff !important;
  border-color: #e02d3c !important;
  color: #e02d3c !important;
}
.hyc-archive .prod-action-btn.is-wishlisted svg,
.hyc-wishlist-page .prod-action-btn.is-wishlisted svg,
[data-wishlist-btn].is-wishlisted svg {
  fill: #e02d3c !important;
  stroke: #e02d3c !important;
}
/* Tiny pop animation when toggled on */
@keyframes hycHeartPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.28); }
  60%  { transform: scale(.94); }
  100% { transform: scale(1); }
}
[data-wishlist-btn].is-wishlisted svg { animation: hycHeartPop .35s var(--hyc-ease); }
@media (prefers-reduced-motion: reduce) {
  [data-wishlist-btn].is-wishlisted svg { animation: none; }
}

/* Header wishlist count badge — opt-in via [data-hyc-wishlist-count] */
[data-hyc-wishlist-count] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--hyc-line);
  color: var(--hyc-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s, color .2s;
}
[data-hyc-wishlist-count].has-items {
  background: #e02d3c;
  color: #fff;
}

/* In-card add-to-cart button — appears at the bottom of every prod card */
.hyc-card-cart {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 12px;
  min-height: 40px;
  background: var(--hyc-ink);
  color: #fff !important;
  border: 0;
  border-radius: 10px;
  font-family: 'Manrope', 'Be Vietnam Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.hyc-card-cart:hover { background: var(--hyc-primary); }
.hyc-card-cart:active { transform: scale(.97); }
.hyc-card-cart svg { stroke: currentColor; }
.hyc-card-cart.is-loading {
  pointer-events: none;
  opacity: .7;
}
.hyc-card-cart.is-added {
  background: var(--hyc-success) !important;
}
/* Contact / view variants — muted style */
.hyc-card-cart-contact,
.hyc-card-cart-view {
  background: transparent;
  color: var(--hyc-primary) !important;
  border: 1px solid var(--hyc-line);
}
.hyc-card-cart-contact:hover,
.hyc-card-cart-view:hover {
  background: var(--hyc-bg-soft);
  color: var(--hyc-primary-d) !important;
}

/* Wishlist button on single product page (injected by site.js) */
.hyc-single-wishlist {
  margin: 12px 0 20px;
  display: flex;
}
.hyc-single-wishlist-btn {
  width: auto !important;
  height: auto !important;
  padding: 10px 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 99px !important;
  background: #fff;
  border: 1px solid var(--hyc-line);
  color: var(--hyc-ink) !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.hyc-single-wishlist-btn:hover {
  border-color: #e02d3c !important;
  color: #e02d3c !important;
}
.hyc-single-wishlist-btn svg {
  width: 18px !important;
  height: 18px !important;
}
.hyc-single-wishlist-btn.is-wishlisted .hyc-single-wishlist-label::before {
  content: '✓ ';
}

/* Toast — bottom-center, slide up */
.hyc-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: rgba(10,18,32,.92);
  color: #fff;
  padding: 12px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Manrope', 'Be Vietnam Pro', sans-serif;
  letter-spacing: -.01em;
  box-shadow: 0 10px 30px -8px rgba(10,18,32,.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--hyc-ease), transform .25s var(--hyc-ease);
  max-width: calc(100vw - 32px);
  text-align: center;
}
.hyc-toast.is-shown {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (prefers-reduced-motion: reduce) {
  .hyc-toast { transition: opacity .2s, transform 0s; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hyc-nav,
  .hyc-nav-overlay,
  .hyc-nav .has-mega .sub-mega { transition: none !important; }
}

/* =========================================================================
 * Footer
 * =========================================================================
 */
.hyc-footer { background: var(--hyc-bg-dark); color: #ddd; padding: 64px 0 24px; }
.hyc-footer-inner {
  max-width: var(--hyc-container);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--hyc-gap-lg);
}
/* 4-column variant (HYPC default — Sản phẩm + Dịch vụ + Hỗ trợ) */
.hyc-footer-grid-4 { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
@media (max-width: 1024px) {
  .hyc-footer-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hyc-footer-inner,
  .hyc-footer-grid-4 { grid-template-columns: 1fr; }
}
.hyc-footer-col h3 { color: #fff; font-size: 16px; margin: 0 0 16px; }
.hyc-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hyc-footer-col a { color: #bbb; text-decoration: none; }
.hyc-footer-col a:hover { color: #fff; text-decoration: none; }
.hyc-footer-desc { color: #aab3c4; font-size: 14px; margin: 16px 0; }
.hyc-footer-addr { color: #ccd2dd; font-size: 14px; line-height: 1.8; }
.hyc-footer-addr strong { color: #fff; }
.hyc-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.hyc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s var(--hyc-ease);
}
.hyc-footer-social a:hover { background: var(--hyc-accent); color: var(--hyc-ink); }
.hyc-footer-bottom {
  max-width: var(--hyc-container);
  margin: 32px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* =========================================================================
 * WooCommerce overrides — match HYC brand (button coral, badge, price)
 * =========================================================================
 */
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce-page button.button,
.woocommerce #respond input#submit,
.woocommerce input.button,
.woocommerce input.button.alt {
  background: var(--hyc-coral);
  color: #fff;
  border-radius: var(--hyc-radius);
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  font-family: var(--hyc-font);
  transition: all .2s var(--hyc-ease);
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #e85a2a;
  color: #fff;
  transform: translateY(-1px);
}
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
  background: var(--hyc-coral);
  color: #fff;
  border-radius: 999px;
  padding: 4px 14px;
  font-weight: 700;
  font-family: var(--hyc-font);
  font-size: 12px;
  width: auto;
  height: auto;
  line-height: 1;
  min-width: 0;
  min-height: 0;
  top: 12px;
  left: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.woocommerce div.product .product_title {
  font-family: var(--hyc-font-head);
  color: var(--hyc-ink);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--hyc-coral);
  font-family: var(--hyc-font-mono);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px);
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del {
  color: var(--hyc-muted);
  font-weight: 400;
  opacity: .7;
  font-size: .8em;
  margin-right: 6px;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 700;
}
.woocommerce .quantity input.qty {
  border: 1px solid var(--hyc-line);
  border-radius: var(--hyc-radius);
  padding: 8px;
  font-family: var(--hyc-font);
}
.woocommerce .product_meta {
  border-top: 1px solid var(--hyc-line);
  padding-top: 16px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--hyc-muted);
}
.woocommerce .product_meta a,
.woocommerce-breadcrumb a {
  color: var(--hyc-primary);
}
.woocommerce nav.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--hyc-muted);
  max-width: var(--hyc-container);
  margin: 16px auto;
  padding: 0 24px;
}
.woocommerce ul.products li.product .button {
  margin-top: 12px;
}
.woocommerce div.product .woocommerce-product-gallery img,
.woocommerce ul.products li.product img {
  border-radius: var(--hyc-radius);
}
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--hyc-accent);
  background: var(--hyc-bg-soft);
  color: var(--hyc-ink);
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--hyc-accent);
}
.woocommerce-error {
  border-top-color: var(--hyc-danger);
  background: rgba(233, 78, 78, .06);
  color: var(--hyc-danger);
}

/* =========================================================================
 * Mobile breakpoints — utility bar + sections + typography scale-down
 * =========================================================================
 */
@media (max-width: 720px) {
  .hyc-utility-inner { padding: 6px 12px; gap: 8px; }
  .hyc-utility-hotline { font-size: 12px; }
  .hyc-utility-hotline strong { font-size: 13px; }
  .hyc-header-bar { padding: 12px 16px; gap: 12px; }
  .hyc-logo { font-size: 18px; }
  .hyc .ctr,
  .hyc-footer-inner { padding-inline: 16px; }
  .hyc.sec, .hyc .sec { padding-block: clamp(40px, 8vw, 64px); }
  .hyc h1 { font-size: clamp(26px, 7vw, 36px); }
  .hyc h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .hyc h3 { font-size: clamp(17px, 4vw, 20px); }
  .hyc .btn.lg { padding: 12px 20px; font-size: 14px; }
  .hyc-footer { padding: 40px 0 16px; }
  .hyc-footer-col h3 { font-size: 15px; margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .hyc .btn { padding: 10px 16px; font-size: 14px; }
  .hyc .card { padding: 18px; }
}

/* =========================================================================
 * WC SINGLE PRODUCT — Demo 12 aesthetic upgrade
 * Targets default WC + GeneratePress + hyc-child theme.
 * Apple Minimal × Y2K Chrome — clean, premium, conversion-focused.
 * ========================================================================= */

/* Demo 12 tokens for WC scope */
.single-product {
  --d12-blue: #0071e3;
  --d12-orange: #ff6900;
  --d12-red: #e02d3c;
  --d12-green: #00875a;
  --d12-ink: #0a0e1f;
  --d12-ink-2: #5b6478;
  --d12-bg: #fafbfd;
  --d12-bg-soft: #f0f2f6;
  --d12-line: #d6dae2;
  --d12-line-soft: #ebeef3;
  --d12-holo-1: #ff7eb9;
  --d12-holo-2: #00f5d4;
  background: var(--d12-bg);
}

/* Container — wider + breathing room */
.single-product main#primary,
.single-product .site-content,
.single-product .container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* Breadcrumb */
.single-product .woocommerce-breadcrumb {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--d12-ink-2);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px 24px 12px;
  border-bottom: none;
}
.single-product .woocommerce-breadcrumb a {
  color: var(--d12-ink-2);
}
.single-product .woocommerce-breadcrumb a:hover {
  color: var(--d12-blue);
}

/* Product wrap — 2 col grid */
.single-product div.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 24px;
  margin: 0 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}
@media (max-width: 900px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 16px;
    margin: 0 16px;
  }
}

/* Gallery */
.single-product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .woocommerce-product-gallery__image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--d12-bg-soft), var(--d12-bg));
}
.single-product .woocommerce-product-gallery__image img {
  border-radius: 20px;
  transition: transform .3s ease;
}
.single-product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.02);
}
.single-product .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}
.single-product .flex-control-thumbs li {
  width: calc(20% - 7px) !important;
  margin: 0 !important;
  float: none !important;
}
.single-product .flex-control-thumbs img {
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
}
.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover {
  border-color: var(--d12-blue);
  opacity: 1;
}

/* Summary column */
.single-product .summary.entry-summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}

/* Product title */
.single-product .summary .product_title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 16px !important;
  color: var(--d12-ink) !important;
}

/* SKU / Cat / Meta — micro labels above title */
.single-product .summary > .product_meta {
  order: -1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--d12-ink-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 8px !important;
  padding: 0 !important;
  border: none !important;
}

/* Rating */
.single-product .summary .woocommerce-product-rating {
  margin-bottom: 16px;
}
.single-product .star-rating {
  color: #c89b3c;
  font-size: 14px;
}

/* Price — make HUGE + orange + animate */
.single-product .summary .price {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: clamp(32px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  color: var(--d12-orange) !important;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 0 8px !important;
  padding: 16px 0;
  border-top: 1px solid var(--d12-line-soft);
  border-bottom: 1px solid var(--d12-line-soft);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.single-product .summary .price del {
  font-size: .55em !important;
  font-weight: 500 !important;
  color: var(--d12-ink-2) !important;
  text-decoration: line-through;
  opacity: .7;
  margin-right: 4px;
}
.single-product .summary .price ins {
  background: none !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}
.single-product .summary .price .amount {
  font-family: 'Manrope', system-ui, sans-serif !important;
}

/* Short description */
.single-product .summary .woocommerce-product-details__short-description {
  font-size: 15px;
  color: var(--d12-ink-2);
  line-height: 1.65;
  margin: 16px 0 24px;
  padding: 16px 20px;
  background: var(--d12-bg-soft);
  border-radius: 12px;
  border-left: 3px solid var(--d12-blue);
}
.single-product .summary .woocommerce-product-details__short-description p {
  margin: 0;
}

/* Quantity + Add to cart row */
.single-product .summary form.cart {
  display: flex;
  gap: 12px;
  margin: 24px 0 !important;
  align-items: stretch;
  flex-wrap: wrap;
}
.single-product .summary .quantity {
  display: flex;
  align-items: center;
  background: var(--d12-bg-soft);
  border-radius: 12px;
  padding: 4px 8px;
  border: 1px solid var(--d12-line);
}
.single-product .summary .quantity .qty {
  width: 60px !important;
  background: transparent !important;
  border: none !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--d12-ink);
}

/* Add to cart button — Demo 12 gradient CTA */
.single-product .summary form.cart .single_add_to_cart_button {
  flex: 1 1 auto;
  background: linear-gradient(135deg, var(--d12-orange), var(--d12-red)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Manrope', sans-serif !important;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease !important;
  box-shadow: 0 12px 24px rgba(255,105,0,.25);
  text-transform: none !important;
  min-width: 200px;
  text-align: center;
}
.single-product .summary form.cart .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255,105,0,.32);
}

/* HYC trust strip injection below cart */
.single-product .summary form.cart::after {
  content: "🛡 Bảo hành 24 tháng tại showroom · 🚚 Miễn phí ship 5tr+ · 💳 0% trả góp 12 kỳ";
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0,113,227,.06), rgba(0,135,90,.06));
  border-radius: 12px;
  font-size: 12px;
  color: var(--d12-ink-2);
  font-weight: 500;
  text-align: center;
  letter-spacing: .02em;
  border: 1px dashed var(--d12-line);
}

/* Product meta below — categories + tags */
.single-product .summary .product_meta {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--d12-line-soft) !important;
  font-size: 13px !important;
  color: var(--d12-ink-2) !important;
}
.single-product .summary .product_meta .posted_in,
.single-product .summary .product_meta .sku_wrapper,
.single-product .summary .product_meta .tagged_as {
  display: block;
  margin-bottom: 6px;
}
.single-product .summary .product_meta a {
  color: var(--d12-blue);
  font-weight: 600;
}

/* On-sale badge — top-left of gallery */
.single-product .woocommerce-product-gallery .onsale,
.single-product span.onsale {
  background: linear-gradient(135deg, var(--d12-orange), var(--d12-red)) !important;
  color: #fff !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  padding: 6px 14px !important;
  border-radius: 99px !important;
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(224,45,60,.25);
}

/* Tabs section */
.single-product .woocommerce-tabs {
  margin: 48px 24px 0 !important;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}
@media (max-width: 900px) {
  .single-product .woocommerce-tabs {
    margin: 24px 16px 0 !important;
    padding: 24px 16px;
  }
}
.single-product .woocommerce-tabs .tabs.wc-tabs {
  display: flex !important;
  gap: 0;
  padding: 0 !important;
  margin: 0 0 24px !important;
  border-bottom: 1px solid var(--d12-line-soft) !important;
  list-style: none !important;
}
.single-product .woocommerce-tabs .tabs.wc-tabs::before,
.single-product .woocommerce-tabs .tabs.wc-tabs::after {
  display: none !important;
}
.single-product .woocommerce-tabs .tabs.wc-tabs li {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.single-product .woocommerce-tabs .tabs.wc-tabs li::before,
.single-product .woocommerce-tabs .tabs.wc-tabs li::after {
  display: none !important;
}
.single-product .woocommerce-tabs .tabs.wc-tabs li a {
  display: block;
  padding: 12px 20px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--d12-ink-2) !important;
  text-transform: none !important;
  transition: color .15s;
}
.single-product .woocommerce-tabs .tabs.wc-tabs li.active {
  border-bottom-color: var(--d12-blue) !important;
}
.single-product .woocommerce-tabs .tabs.wc-tabs li.active a {
  color: var(--d12-ink) !important;
  font-weight: 700 !important;
}

/* Tab content */
.single-product .woocommerce-Tabs-panel {
  padding: 0 !important;
  color: var(--d12-ink);
  font-size: 15px;
  line-height: 1.7;
}
.single-product .woocommerce-Tabs-panel h2 {
  display: none; /* WC duplicates h2 above content */
}
.single-product .woocommerce-Tabs-panel h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--d12-ink);
  margin: 0 0 12px;
}
.single-product .woocommerce-Tabs-panel h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--d12-blue);
  margin: 24px 0 8px;
}
.single-product .woocommerce-Tabs-panel p {
  margin: 0 0 12px;
  color: var(--d12-ink);
}
.single-product .woocommerce-Tabs-panel ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
}
.single-product .woocommerce-Tabs-panel ul li {
  position: relative;
  padding: 6px 0 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px dashed var(--d12-line-soft);
}
.single-product .woocommerce-Tabs-panel ul li:last-child { border-bottom: none; }
.single-product .woocommerce-Tabs-panel ul li strong {
  color: var(--d12-ink);
  font-weight: 700;
}
.single-product .woocommerce-Tabs-panel a {
  color: var(--d12-blue);
  font-weight: 600;
}

/* Related products */
.single-product .related.products {
  margin: 48px 24px 64px !important;
  padding-top: 32px !important;
  border-top: 1px solid var(--d12-line-soft);
}
@media (max-width: 900px) {
  .single-product .related.products {
    margin: 32px 16px !important;
  }
}
.single-product .related.products > h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em;
  color: var(--d12-ink) !important;
  margin: 0 0 24px !important;
}
.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 1024px) {
  .single-product .related.products ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
  .single-product .related.products ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
.single-product .related.products ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 12px !important;
  background: #fff;
  border: 1px solid var(--d12-line-soft);
  border-radius: 14px;
  transition: all .2s;
  list-style: none !important;
}
.single-product .related.products ul.products li.product:hover {
  border-color: var(--d12-blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,113,227,.08);
}
.single-product .related.products ul.products li.product img {
  border-radius: 10px !important;
  margin: 0 0 12px !important;
}
.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--d12-ink) !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  line-height: 1.4;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-product .related.products ul.products li.product .price {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--d12-orange) !important;
  font-family: 'Manrope', sans-serif !important;
}
.single-product .related.products ul.products li.product .price del {
  font-size: .75em !important;
  color: var(--d12-ink-2) !important;
  font-weight: 500 !important;
  opacity: .7;
}
.single-product .related.products ul.products li.product .button {
  margin-top: 8px !important;
  background: var(--d12-ink) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  font-family: 'Manrope', sans-serif !important;
  width: 100%;
  text-align: center;
}
.single-product .related.products ul.products li.product .button:hover {
  background: var(--d12-blue) !important;
  transform: none !important;
}

/* Cross-link CTA strip below related */
.single-product .related.products::after {
  content: "";
  display: block;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--d12-line-soft);
}

/* Notices (added to cart messages) */
.single-product .woocommerce-message,
.woocommerce-message {
  background: linear-gradient(135deg, rgba(0,135,90,.08), rgba(0,113,227,.04)) !important;
  border-top: 3px solid var(--d12-green) !important;
  border-radius: 12px;
  padding: 16px 20px !important;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--d12-ink) !important;
  margin: 0 24px 24px !important;
}
.single-product .woocommerce-message a.button {
  background: var(--d12-ink) !important;
  color: #fff !important;
  border-radius: 99px !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
}

/* Hide WC tab content title "Mô tả" duplicate */
.single-product #tab-description h2:first-child,
.single-product #tab-additional_information h2:first-child {
  display: none;
}

/* =========================================================================
 * 14. Static content pages — universal skeleton
 *     Applies to /khuyen-mai/, /ve-hungyenpc/, /dich-vu/, /faq/, 7 pháp lý...
 * =========================================================================
 */
.hyc-page {
  --pg-ink: #0a0e1f;
  --pg-ink-2: #5b6b85;
  --pg-line: #e3e8f0;
  --pg-line-soft: #eef1f6;
  --pg-bg-soft: #f4f7fb;
  --pg-blue: #0071e3;
  --pg-orange: #ff6900;
  --pg-red: #e02d3c;
  --pg-green: #00875a;
  background: #fafbfd;
  padding: 24px 16px 64px;
  color: var(--pg-ink);
  font-family: 'Manrope', 'Be Vietnam Pro', system-ui, sans-serif;
}
.hyc-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hyc-page-crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--pg-ink-2);
  margin-bottom: 20px;
}
.hyc-page-crumb a {
  color: var(--pg-ink-2);
  text-decoration: none;
  transition: color .15s;
}
.hyc-page-crumb a:hover { color: var(--pg-blue); }
.hyc-page-crumb span[aria-current], .hyc-page-crumb-current { color: var(--pg-ink); font-weight: 600; }

.hyc-page-hero {
  padding: 44px 44px 40px;
  background: linear-gradient(135deg, #050811 0%, var(--pg-ink) 45%, #1d2542 100%);
  color: #fff;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 10px 40px -16px rgba(10, 14, 31, 0.4);
}
.hyc-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 92% 6%, rgba(255, 105, 0, 0.28), transparent 55%),
    radial-gradient(700px 360px at 4% 100%, rgba(0, 113, 227, 0.18), transparent 55%),
    radial-gradient(420px 220px at 50% 50%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}
/* Subtle hairline grid (HYC tech-showroom signature) */
.hyc-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000, transparent 90%);
  pointer-events: none;
}
.hyc-page-hero > * { position: relative; z-index: 1; }
.hyc-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hyc-page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pg-orange);
}
.hyc-page-hero h1 {
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  line-height: 1.1 !important;
  color: #fff !important;
  margin: 0 0 12px !important;
}
.hyc-page-hero h1 em { font-style: normal; color: var(--pg-orange); }
.hyc-page-deck {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 720px;
  line-height: 1.55;
}

/* Prose article wrapper — readable typography for legal / about / FAQ */
.hyc-prose {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
  padding: 36px 40px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--pg-ink);
}
.hyc-prose h2 {
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.015em !important;
  margin: 32px 0 14px !important;
  color: var(--pg-ink) !important;
  padding-top: 8px;
  border-top: 1px solid var(--pg-line-soft);
}
.hyc-prose h2:first-child { margin-top: 0 !important; padding-top: 0; border-top: 0; }
.hyc-prose h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  margin: 24px 0 10px !important;
  color: var(--pg-ink) !important;
}
.hyc-prose h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 18px 0 8px !important;
  color: var(--pg-ink) !important;
}
.hyc-prose p { margin: 0 0 14px; }
.hyc-prose ul, .hyc-prose ol { margin: 0 0 16px; padding-left: 22px; }
.hyc-prose li { margin: 4px 0; }
.hyc-prose ul li::marker { color: var(--pg-orange); }
.hyc-prose strong { font-weight: 700; color: var(--pg-ink); }
.hyc-prose a { color: var(--pg-blue); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s; }
.hyc-prose a:hover { border-color: var(--pg-blue); }
.hyc-prose blockquote {
  border-left: 4px solid var(--pg-orange);
  margin: 18px 0;
  padding: 4px 0 4px 20px;
  background: var(--pg-bg-soft);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--pg-ink-2);
}
.hyc-prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0;
  font-size: 14px;
  border: 1px solid var(--pg-line);
  border-radius: 10px;
  overflow: hidden;
}
.hyc-prose th {
  background: var(--pg-bg-soft);
  text-align: left;
  padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pg-ink-2);
  border-bottom: 1px solid var(--pg-line);
}
.hyc-prose td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--pg-line-soft);
  vertical-align: top;
}
.hyc-prose tr:last-child td { border-bottom: 0; }

/* Section cards (used for sub-pages, service grid, value props) */
.hyc-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.hyc-page-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms ease,
              transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  isolation: isolate;
}
/* Top-left orange accent stripe (HYC signature) */
.hyc-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pg-orange), #ff8a3d);
  transition: width 320ms cubic-bezier(0.16, 1, 0.3, 1);
  border-top-left-radius: 14px;
  z-index: 1;
}
/* Bottom soft glow halo on hover */
.hyc-page-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 0% 0%, rgba(255, 105, 0, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
  z-index: -1;
}
a.hyc-page-card:hover {
  border-color: rgba(255, 105, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(255, 105, 0, 0.22),
              0 4px 10px -4px rgba(10, 14, 31, 0.12);
}
a.hyc-page-card:hover::before { width: 64px; }
a.hyc-page-card:hover::after { opacity: 1; }

.hyc-page-card-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--pg-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.12), rgba(255, 105, 0, 0.04));
  border: 1px solid rgba(255, 105, 0, 0.18);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}
a.hyc-page-card:hover .hyc-page-card-icon {
  transform: scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.2), rgba(255, 105, 0, 0.06));
}
.hyc-page-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: var(--pg-ink) !important;
  letter-spacing: -.005em;
}
.hyc-page-card p {
  font-size: 13.5px;
  color: var(--pg-ink-2);
  margin: 0;
  line-height: 1.5;
}
.hyc-page-card-arrow {
  margin-top: 8px;
  font-size: 13px;
  color: var(--pg-blue);
  font-weight: 600;
  transition: gap .15s;
  display: inline-flex; gap: 4px;
}
a.hyc-page-card:hover .hyc-page-card-arrow { gap: 8px; }

/* Bottom CTA banner — premium gradient surface w/ corner accent */
.hyc-page-cta {
  position: relative;
  margin: 32px 0 0;
  padding: 30px 36px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf3 100%);
  border: 1px solid rgba(255, 105, 0, 0.18);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
}
.hyc-page-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 20px;
  background: linear-gradient(225deg, var(--pg-orange) 0 50%, transparent 50%);
  border-top-right-radius: 18px;
}
.hyc-page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 280px at 8% 50%, rgba(255, 105, 0, 0.06), transparent 60%);
  pointer-events: none;
}
.hyc-page-cta > * { position: relative; z-index: 1; }
.hyc-page-cta h3 {
  font-family: 'Fraunces', 'Manrope', ui-serif, Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  color: var(--pg-ink) !important;
  letter-spacing: -.015em;
}
.hyc-page-cta p { font-size: 14px; color: var(--pg-ink-2); margin: 0; }
.hyc-page-cta-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hyc-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: var(--pg-ink);
  color: #fff !important;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.hyc-page-btn:hover { background: var(--pg-blue); transform: translateY(-1px); }
.hyc-page-btn-alt {
  background: #fff;
  color: var(--pg-ink) !important;
  border: 1px solid var(--pg-line);
}
.hyc-page-btn-alt:hover { background: var(--pg-bg-soft); }
.hyc-page-btn-coral {
  background: linear-gradient(135deg, var(--pg-orange), var(--pg-red));
  box-shadow: 0 8px 24px -10px rgba(255,105,0,.4);
}
.hyc-page-btn-coral:hover { background: linear-gradient(135deg, var(--pg-orange), var(--pg-red)); filter: brightness(1.06); }

/* Stat strip — used in About / Khuyến mãi */
.hyc-page-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
}
.hyc-page-stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--pg-line-soft);
}
.hyc-page-stat:last-child { border-right: 0; }
.hyc-page-stat strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--pg-ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hyc-page-stat strong em {
  font-style: normal;
  color: var(--pg-orange);
}
.hyc-page-stat span {
  display: block;
  font-size: 12px;
  color: var(--pg-ink-2);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* FAQ accordion (details/summary) */
.hyc-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hyc-faq details {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 12px;
  padding: 4px 18px;
  transition: border-color .15s;
}
.hyc-faq details[open] { border-color: var(--pg-ink); }
.hyc-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--pg-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hyc-faq summary::-webkit-details-marker { display: none; }
.hyc-faq summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: var(--pg-orange);
  font-weight: 600;
  transition: transform .25s;
  flex-shrink: 0;
}
.hyc-faq details[open] summary::after { transform: rotate(45deg); }
.hyc-faq details > p,
.hyc-faq details > div {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pg-ink-2);
}

/* Mobile responsive */
@media (max-width: 720px) {
  .hyc-page { padding: 16px 12px 48px; }
  .hyc-page-hero { padding: 28px 24px; border-radius: 14px; }
  .hyc-prose { padding: 24px 20px; border-radius: 14px; }
  .hyc-page-cta { flex-direction: column; align-items: flex-start; padding: 20px; }
  .hyc-page-stat { border-right: 0; border-bottom: 1px solid var(--pg-line-soft); padding: 12px 0; }
  .hyc-page-stat:last-child { border-bottom: 0; }
}

/* =========================================================================
 * 15. Blog index + single post — Demo 12 typography for reading
 * =========================================================================
 */

/* ---------- Blog index (/blog/, /category/cam-nang/, etc.) ---------- */
body.blog,
body.archive.category,
body.search-results {
  background: #fafbfd;
}
body.blog .site-main,
body.archive.category .site-main,
body.search-results .site-main {
  padding: 24px 16px 64px !important;
  background: transparent;
}
body.blog .inside-article,
body.archive.category .inside-article,
body.search-results .inside-article,
body.blog .entry-content,
body.archive.category .entry-content {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent;
}

/* Blog list hero — eyebrow + title + deck */
body.blog .site-main::before,
body.archive.category .site-main::before {
  content: '';
  display: block;
}

/* Make the .site-main itself a grid (GP renders articles as direct children) */
body.blog .site-main,
body.blog .hyc-site-main,
body.archive.category .site-main,
body.archive.category .hyc-site-main,
body.search-results .site-main {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto !important;
}

/* Each post becomes a card */
body.blog article.post,
body.archive.category article.post,
body.search-results article.post {
  background: #fff !important;
  border: 1px solid #e3e8f0;
  border-radius: 14px;
  padding: 22px 24px !important;
  width: auto !important;
  margin: 0 !important;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
body.blog article.post:hover,
body.archive.category article.post:hover,
body.search-results article.post:hover {
  transform: translateY(-3px);
  border-color: #0a0e1f;
  box-shadow: 0 16px 32px -16px rgba(10,14,31,.18);
}

/* Category badge */
body.blog article.post .cat-links,
body.archive.category article.post .cat-links,
body.search-results article.post .cat-links {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff6900;
  font-weight: 700;
  margin: 0 0 4px;
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
}
body.blog article.post .cat-links a,
body.archive.category article.post .cat-links a {
  color: #ff6900;
  text-decoration: none;
}

/* Title */
body.blog article.post .entry-title,
body.archive.category article.post .entry-title,
body.search-results article.post .entry-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -.015em !important;
  line-height: 1.3 !important;
  color: #0a0e1f !important;
  margin: 0 !important;
}
body.blog article.post .entry-title a,
body.archive.category article.post .entry-title a {
  color: inherit !important;
  text-decoration: none !important;
}
body.blog article.post:hover .entry-title a { color: #0071e3 !important; }

/* Excerpt */
body.blog article.post .entry-summary,
body.blog article.post .entry-content,
body.archive.category article.post .entry-summary {
  font-size: 14px;
  line-height: 1.55;
  color: #5b6b85;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta row (date + read more) */
body.blog article.post .entry-meta,
body.archive.category article.post .entry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #5b6b85;
  margin: 8px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid #eef1f6;
  gap: 8px;
  flex-wrap: wrap;
}
body.blog article.post .entry-meta a,
body.archive.category article.post .entry-meta a {
  color: #5b6b85;
  text-decoration: none;
}
body.blog article.post .read-more,
body.blog article.post .more-link,
body.archive.category article.post .more-link {
  color: #0071e3 !important;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
}

/* Hide separator that GP adds between articles */
body.blog .separator,
body.archive.category .separator { display: none; }

/* Pagination — match Demo 12 */
body.blog .paging-navigation,
body.archive.category .paging-navigation,
body.search-results .paging-navigation {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  padding: 0;
}
body.blog .paging-navigation a,
body.blog .paging-navigation span,
body.archive.category .paging-navigation a,
body.archive.category .paging-navigation span {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  color: #0a0e1f;
  text-decoration: none;
  padding: 0 12px;
}
body.blog .paging-navigation a:hover { border-color: #0071e3; color: #0071e3; }
body.blog .paging-navigation .current { background: #0a0e1f; color: #fff; border-color: #0a0e1f; }

/* Hide page title "Blog" or category title above grid — we use cards directly */
body.blog .page-header,
body.archive.category .page-header { display: none; }

/* ---------- Single post (/{post-slug}/) ---------- */
body.single-post {
  background: #fafbfd;
}
body.single-post .site-main,
body.single-post .hyc-site-main {
  padding: 24px 16px 64px !important;
  background: transparent;
}
body.single-post .inside-article {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent;
}

/* Hero banner above article */
body.single-post article.post::before {
  content: '';
  display: block;
}
body.single-post article.post {
  background: #fff !important;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 40px 48px !important;
  margin: 0 !important;
}
body.single-post .entry-header {
  padding: 0 0 24px;
  margin: 0 0 28px;
  border-bottom: 1px solid #eef1f6;
}
body.single-post .cat-links {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff6900;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
}
body.single-post .cat-links a { color: #ff6900; text-decoration: none; }
body.single-post h1.entry-title {
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  line-height: 1.2 !important;
  color: #0a0e1f !important;
  margin: 0 0 16px !important;
}
body.single-post .entry-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #5b6b85;
  flex-wrap: wrap;
  margin: 0 !important;
}
body.single-post .entry-meta .byline,
body.single-post .entry-meta .posted-on,
body.single-post .entry-meta time {
  color: #5b6b85;
}
body.single-post .entry-meta a { color: #5b6b85; text-decoration: none; }

/* Article body typography */
body.single-post .entry-content {
  font-size: 16.5px;
  line-height: 1.78;
  color: #0a0e1f;
  max-width: none !important;
}
body.single-post .entry-content p { margin: 0 0 18px; }
body.single-post .entry-content h2 {
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.015em !important;
  margin: 36px 0 14px !important;
  color: #0a0e1f !important;
  padding-top: 12px;
  border-top: 1px solid #eef1f6;
}
body.single-post .entry-content h2:first-child {
  margin-top: 0 !important;
  padding-top: 0;
  border-top: 0;
}
body.single-post .entry-content h3 {
  font-size: 19px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  margin: 28px 0 10px !important;
  color: #0a0e1f !important;
}
body.single-post .entry-content h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 22px 0 8px !important;
  color: #0a0e1f !important;
}
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
body.single-post .entry-content li { margin: 6px 0; line-height: 1.65; }
body.single-post .entry-content ul li::marker { color: #ff6900; }
body.single-post .entry-content strong { font-weight: 700; color: #0a0e1f; }
body.single-post .entry-content a {
  color: #0071e3;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
body.single-post .entry-content a:hover { border-color: #0071e3; }
body.single-post .entry-content blockquote {
  border-left: 4px solid #ff6900;
  margin: 24px 0;
  padding: 6px 0 6px 22px;
  background: #f4f7fb;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: #5b6b85;
  font-style: normal;
}
body.single-post .entry-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  font-size: 14.5px;
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  overflow: hidden;
}
body.single-post .entry-content th {
  background: #f4f7fb;
  text-align: left;
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6b85;
  border-bottom: 1px solid #e3e8f0;
}
body.single-post .entry-content td {
  padding: 12px 16px;
  border-bottom: 1px solid #eef1f6;
  vertical-align: top;
}
body.single-post .entry-content tr:last-child td { border-bottom: 0; }

/* Footer of single post (tags + share area) */
body.single-post .entry-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eef1f6;
  font-size: 13px;
  color: #5b6b85;
}
body.single-post .entry-footer a {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 6px 6px 0;
  border-radius: 99px;
  background: #f4f7fb;
  border: 1px solid #e3e8f0;
  color: #5b6b85;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all .15s;
}
body.single-post .entry-footer a:hover { border-color: #0071e3; color: #0071e3; }

/* Comments + author bio — keep minimal */
body.single-post .comments-area {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 32px 40px;
  margin-top: 24px;
}
body.single-post .comments-area .comments-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

/* Post navigation (prev/next) — convert to pills */
body.single-post .post-navigation,
body.single-post .nav-links {
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
body.single-post .nav-previous,
body.single-post .nav-next {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color .15s, transform .15s;
}
body.single-post .nav-previous:hover,
body.single-post .nav-next:hover {
  border-color: #0a0e1f;
  transform: translateY(-2px);
}
body.single-post .nav-previous a,
body.single-post .nav-next a {
  color: #0a0e1f;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
body.single-post .nav-next { text-align: right; }

/* Mobile */
@media (max-width: 720px) {
  body.single-post article.post { padding: 24px 20px !important; }
  body.single-post h1.entry-title { font-size: 24px !important; }
  body.single-post .entry-content { font-size: 15.5px; }
  body.single-post .post-navigation { grid-template-columns: 1fr; }
  body.blog .site-main > .page-content,
  body.archive.category .site-main > .page-content { grid-template-columns: 1fr; }
}

/* =========================================================================
 * Print
 * =========================================================================
 */
@media print {
  .hyc-header, .hyc-footer, .hyc-cta, .hyc .btn { display: none !important; }
  .hyc { color: #000; }
}

/* =========================================================================
 * 12. WC ARCHIVE — Demo 12 catalog
 *     Renders on /cua-hang/ (WC shop) + /product-category/{slug}/ + /product-tag/.
 *     Markup source: theme/hyc-child/woocommerce/archive-product.php
 *     Visual reference: pages/home-v5-ecom.html (trending section).
 * =========================================================================
 */

/* Demo 12 tokens — scoped to .hyc-archive so they coexist with .hyc base tokens */
.hyc-archive {
  --white: #fff;
  --bg: #fafbfd;
  --bg-soft: #f0f2f6;
  --bg-2: #e8ecf2;
  --ink: #0a0e1f;
  --ink-2: #5b6b85;
  --line: #e3e8f0;
  --line-soft: #eef1f6;
  --blue: #0071e3;
  --orange: #ff6900;
  --red: #e02d3c;
  --green: #00875a;
  --gold: #c89b3c;
  --holo-1: #ff7eb9;
  --holo-2: #00f5d4;
  --holo-3: #b8e0ff;
  --holo-4: #fee440;

  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', 'Be Vietnam Pro', system-ui, sans-serif;
  padding: 24px 0 64px;
}

/* Container — wider than .hyc 1200px to match Demo 12 1440px */
.hyc-archive-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb */
.hyc-archive-crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.hyc-archive-crumb a {
  color: var(--ink-2);
  transition: color .15s;
  text-decoration: none;
}
.hyc-archive-crumb a:hover { color: var(--blue); }
.hyc-archive-crumb-current { color: var(--ink); font-weight: 600; }

/* Section head — matches Demo 12 */
.hyc-archive .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.hyc-archive .section-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.hyc-archive .section-head h2 em {
  font-style: normal;
  color: var(--orange);
}
.hyc-archive .section-head .deck {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 8px;
  max-width: 540px;
}
.hyc-archive-head-cta {
  font-size: 13px;
  color: var(--blue) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
  transition: gap .15s;
}
.hyc-archive-head-cta:hover { gap: 8px; color: var(--orange) !important; }

/* Filter chips */
.hyc-archive .filter-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hyc-archive .chip {
  padding: 8px 16px;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hyc-archive .chip:hover { border-color: var(--blue); color: var(--ink); }
.hyc-archive .chip.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hyc-archive .chip small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
}
.hyc-archive .chip.active small { color: rgba(255,255,255,.7); }

/* Sort row */
.hyc-archive .sort-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.hyc-archive .sort-row .count { font-size: 13px; color: var(--ink-2); }
.hyc-archive .sort-row .count strong { color: var(--ink); font-weight: 700; }
.hyc-archive .sort-dropdown {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  background: var(--white);
  font-weight: 500;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
}
.hyc-sort-form { margin: 0; display: inline-flex; gap: 8px; align-items: center; }
.hyc-sort-go {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  font-size: 13px;
  cursor: pointer;
}

/* Grid */
.hyc-archive .trending-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1280px) {
  .hyc-archive .trending-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .hyc-archive .trending-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hyc-archive .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Product card — Demo 12 style */
.hyc-archive .prod {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 12px;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex;
  flex-direction: column;
}
.hyc-archive .prod:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 8px 24px -8px rgba(10,14,31,.12);
}

/* Image — keeps Demo 12 6-color gradient backgrounds */
.hyc-archive .prod-img {
  height: 180px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #e8d4ff, #f0eaff);
}
.hyc-archive .prod-img.prod-img-real { background: var(--bg-soft); }
.hyc-archive .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.hyc-archive .prod-img-glyph {
  font-size: 80px;
  font-weight: 800;
  color: rgba(10,14,31,.18);
  letter-spacing: -.04em;
}
.hyc-archive .prod-1 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #e8d4ff, #f0eaff); }
.hyc-archive .prod-2 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #ffe4d4, #fff0e6); }
.hyc-archive .prod-3 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #d4f0ff, #eaf6ff); }
.hyc-archive .prod-4 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #d4ffd4, #eaffea); }
.hyc-archive .prod-5 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #ffd4e8, #ffeaf3); }
.hyc-archive .prod-6 .prod-img:not(.prod-img-real) { background: linear-gradient(135deg, #fff0d4, #fff6ea); }

.hyc-archive .prod-img-link { display: block; text-decoration: none; }

/* Badges */
.hyc-archive .prod-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 4px;
}
.hyc-archive .prod-badge {
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.hyc-archive .prod-badge.holo {
  background: linear-gradient(135deg, var(--holo-1), var(--holo-2));
  background-size: 200% 200%;
  color: var(--ink);
  animation: hycHoloGrad 5s ease infinite;
}
@keyframes hycHoloGrad {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.hyc-archive .prod-badge.green { background: var(--green); }
.hyc-archive .prod-badge.blue { background: var(--blue); }
.hyc-archive .prod-badge-out { background: var(--ink-2); }
.hyc-archive .prod-badge-new {
  background: var(--blue);
  color: var(--white);
}
.hyc-archive .prod-badge.foil {
  background: linear-gradient(135deg, var(--gold) 0%, var(--holo-4) 35%, var(--holo-1) 70%, var(--holo-2) 100%);
  background-size: 220% 220%;
  color: var(--ink);
  animation: hycHoloGrad 6s ease infinite;
  box-shadow: 0 1px 2px rgba(200,155,60,.25);
}

/* Brand */
.hyc-archive .prod-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ink-2);
  margin-bottom: 4px;
  font-weight: 600;
}

/* Name */
.hyc-archive .prod-name-link { text-decoration: none; color: inherit; display: block; }
.hyc-archive .prod-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hyc-archive .prod-name-link:hover .prod-name { color: var(--blue); }

/* Rating */
.hyc-archive .prod-rating {
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 6px;
}
.hyc-archive .prod-rating .stars { color: var(--gold); letter-spacing: 0; font-size: 12px; }
.hyc-archive .prod-rating .sep { color: var(--line); }

/* Price row */
.hyc-archive .prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.hyc-archive .prod-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.01em;
  font-family: 'JetBrains Mono', 'Manrope', monospace;
}
.hyc-archive .prod-price-old {
  font-size: 12px;
  color: var(--ink-2);
  text-decoration: line-through;
}
.hyc-archive .prod-price-contact {
  font-size: 14px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
}

/* Meta — sold + stock */
.hyc-archive .prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
  margin-top: auto;
}
.hyc-archive .prod-meta strong { color: var(--ink); font-weight: 700; }
.hyc-archive .prod-meta .green { color: var(--green); font-weight: 600; }
.hyc-archive .prod-meta .hyc-stock-out { color: var(--ink-2); }

/* Pagination */
.hyc-archive-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hyc-archive-pagination a,
.hyc-archive-pagination button,
.hyc-archive-pagination span.dots {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s;
}
.hyc-archive-pagination a:hover { border-color: var(--blue); color: var(--blue); }
.hyc-archive-pagination button.active,
.hyc-archive-pagination .current {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hyc-archive-pagination span.dots { border: 0; background: transparent; color: var(--ink-2); }

/* Empty state */
/* --- Archive empty state — context-aware (search / filter / category) --- */
.hyc-archive-empty {
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  margin: 24px 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hyc-archive-empty__art {
  width: 96px; height: 96px;
  margin-bottom: 16px;
}
.hyc-archive-empty__h {
  font-family: 'Fraunces', 'Manrope', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0a0e1f;
  margin: 0 0 8px;
}
.hyc-archive-empty__p,
.hyc-archive-empty p {
  color: #5b6478;
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.hyc-archive-empty__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hyc-archive-empty-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 99px;
  background: #0a0e1f;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 160ms, transform 160ms;
}
.hyc-archive-empty-cta:hover { background: #ff6900; transform: translateY(-1px); }
.hyc-archive-empty-cta--ghost {
  background: transparent;
  color: #0a0e1f !important;
  border: 1.5px solid rgba(10,14,31,.15);
}
.hyc-archive-empty-cta--ghost:hover { background: #f0f2f6; color: #0a0e1f !important; }
.hyc-archive-empty__suggest {
  padding-top: 22px;
  border-top: 1px dashed rgba(10,14,31,.1);
}
.hyc-archive-empty__suggest-lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5b6478;
  display: block;
  margin-bottom: 12px;
}
.hyc-archive-empty__suggest-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hyc-archive-empty__suggest-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 99px;
  background: #f0f2f6;
  color: #0a0e1f !important;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms, color 160ms;
}
.hyc-archive-empty__suggest-chip small {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  color: #5b6478;
  margin-left: 6px;
  font-size: .82em;
}
.hyc-archive-empty__suggest-chip:hover {
  background: #0a0e1f;
  color: #fff !important;
}
.hyc-archive-empty__suggest-chip:hover small { color: rgba(255,255,255,.7); }

/* Hide GeneratePress / WC archive default chrome we don't want */
body.woocommerce-page.archive .inside-article,
body.woocommerce-page.archive .content-area,
body.woocommerce-page.archive .site-main { padding: 0 !important; }
body.woocommerce-page.archive .page-header,
body.woocommerce-page.archive .woocommerce-products-header,
body.woocommerce-page.archive .woocommerce-result-count,
body.woocommerce-page.archive .woocommerce-ordering,
body.woocommerce-page.archive .woocommerce-breadcrumb,
body.woocommerce.archive .term-description { display: none !important; }
body.woocommerce-page.archive .entry-content { margin: 0 !important; padding: 0 !important; }

/* Hide on shop page too (when set as WC shop) */
body.page.woocommerce-page .page-header { display: none !important; }

/* ===================================================================
   GENERIC PAGE TEMPLATE (showroom-doi-ngu, thuong-hieu, etc)
   =================================================================== */
.hyc-page-hero { padding: clamp(40px,5vw,80px) 0 clamp(32px,4vw,56px); position: relative; overflow: hidden; border-bottom: 1.5px solid #0a0e1f; margin-bottom: 32px; }
.hyc-page-hero::before { content: ''; position: absolute; inset: auto -60px -60px auto; font-family: 'Fraunces', Georgia, serif; font-variation-settings: 'opsz' 144; font-style: italic; font-size: clamp(8rem,6rem + 8vw,16rem); font-weight: 600; line-height: .8; color: rgba(255,105,0,.07); pointer-events: none; user-select: none; z-index: 0; }
.hyc-page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hyc-page-hero__cat { display: inline-block; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #ff6900; margin-bottom: 16px; }
.hyc-page-hero__title { font-size: clamp(2rem,1.2rem + 2.6vw,3.4rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; max-width: 22ch; margin: 0 0 16px; text-wrap: balance; }
.hyc-page-hero__title em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; color: #ff6900; }
.hyc-page-hero__sub { font-size: 1.05rem; color: #5b6b85; line-height: 1.55; max-width: 56ch; }

.hyc-page-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #e5e8ee; border: 1px solid #e5e8ee; border-radius: 20px; overflow: hidden; margin: 0 0 40px; }
.hyc-page-stats__cell { background: #fff; padding: 24px 20px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.hyc-page-stats__cell:first-child { background: #0a0e1f; color: #fff; }
.hyc-page-stats__cell:first-child::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px,rgba(255,105,0,.4) 1px,transparent 1.2px); background-size: 8px 8px; mask-image: linear-gradient(135deg,black 0%,transparent 70%); opacity: .45; pointer-events: none; }
.hyc-page-stats__num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 2.2rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: #ff6900; position: relative; z-index: 1; }
.hyc-page-stats__num sup { font-size: .55em; vertical-align: super; color: #ff6900; font-weight: 500; }
.hyc-page-stats__num sub { font-size: .5em; vertical-align: baseline; color: #ff6900; font-weight: 500; }
.hyc-page-stats__cell:first-child .hyc-page-stats__num { color: #fff; }
.hyc-page-stats__cell:first-child .hyc-page-stats__num sup,
.hyc-page-stats__cell:first-child .hyc-page-stats__num sub { color: #ff6900; }
.hyc-page-stats__lbl { font-size: .8rem; font-weight: 600; color: #5b6478; line-height: 1.3; max-width: 18ch; position: relative; z-index: 1; }
.hyc-page-stats__cell:first-child .hyc-page-stats__lbl { color: rgba(255,255,255,.7); }
@media (max-width: 768px) { .hyc-page-stats { grid-template-columns: 1fr 1fr; } }

.hyc-page-prose { max-width: 920px; margin: 0 auto 48px; padding: 0 24px; font-size: 1.05rem; line-height: 1.7; color: #2a3242; }
.hyc-page-prose h2 { font-size: clamp(1.5rem,1rem + 1vw,2rem); font-weight: 800; letter-spacing: -.025em; margin: 40px 0 16px; position: relative; padding-top: 16px; }
.hyc-page-prose h2::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: #ff6900; }
.hyc-page-prose h2:first-child { margin-top: 0; }
.hyc-page-prose p { margin: 0 0 16px; }
.hyc-page-prose ul { padding-left: 20px; margin: 0 0 16px; }
.hyc-page-prose li { margin-bottom: 8px; }
.hyc-page-prose li::marker { color: #ff6900; }
.hyc-page-prose a { color: #0071e3; text-decoration: underline; text-underline-offset: 3px; }
.hyc-page-prose strong { color: #0a0e1f; font-weight: 700; }

.hyc-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 16px 0 32px; }
.hyc-team-card { background: #fff; border: 1px solid #e5e8ee; border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: transform 280ms, box-shadow 280ms; }
.hyc-team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(10,14,31,.2); }
.hyc-team-card__tag { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ff6900; display: inline-flex; align-items: center; gap: 6px; }
.hyc-team-card__tag::before { content: ''; width: 5px; height: 5px; background: #ff6900; border-radius: 50%; }
.hyc-team-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; margin: 0; }
.hyc-team-card p { font-size: .92rem; color: #5b6478; margin: 0; line-height: 1.55; }
@media (max-width: 768px) { .hyc-team-grid { grid-template-columns: 1fr; } }

.hyc-brand-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 16px 0 32px; }
.hyc-brand-card { background: #fff; border: 1px solid #e5e8ee; border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; transition: border-color 280ms; }
.hyc-brand-card:hover { border-color: #ff6900; }
.hyc-brand-card__name { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; color: #0a0e1f; }
.hyc-brand-card__line { font-size: .82rem; color: #5b6478; line-height: 1.4; }
@media (max-width: 1024px) { .hyc-brand-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .hyc-brand-grid { grid-template-columns: 1fr 1fr; } }

.hyc-page-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 48px 24px 64px; }
.hyc-page-cta .btn { /* uses .btn rules already defined in .hyc-home scope; replicate for generic pages */
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 30px; min-height: 56px;
  border-radius: 999px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: transform 280ms, box-shadow 280ms;
}
.hyc-page-cta .btn--primary { background: linear-gradient(95deg,#ff7a1a 0%,#ff4d2d 60%,#e02d3c 100%); color: #fff; box-shadow: 0 12px 30px -10px rgba(255,105,0,.45); }
.hyc-page-cta .btn--primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.hyc-page-cta .btn--ghost { background: #fff; color: #0a0e1f; border: 1.5px solid #e5e8ee; }
.hyc-page-cta .btn--ghost:hover { border-color: #0a0e1f; transform: translateY(-2px); }

/* --- Touch target compliance (WCAG 2.5.5 ≥44×44px) for nav links --- */
.hyc-header .hyc-nav ul li > a {
  display: inline-flex;
  align-items: center;
  padding: 12px 4px;
  min-height: 44px;
  box-sizing: border-box;
}
.hyc-header .sub-mega a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  box-sizing: border-box;
}
.hyc-header .hyc-utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 6px;
  box-sizing: border-box;
}
/* Footer column links — bump touch target */
.hyc-footer .footer-col ul li a,
.hyc-footer .footer-col ul li {
  display: block;
  padding: 6px 0;
  min-height: 32px;
  box-sizing: border-box;
}
/* Section-link "Tất cả →" anchors trên homepage sections */
.hyc-home .section-link {
  min-height: 44px;
  padding: 10px 0;
  box-sizing: border-box;
}
/* Section-link variants global (shop, blog, archive, pdp) */
.section-link, a.section-link {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 10px 0 !important;
  box-sizing: border-box;
}
/* Config chips (configurator) — bump from 29h to 44h */
.hyc-home .config-chip {
  min-height: 44px !important;
  padding: 12px 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}
/* Config preset rail buttons — bump from 32h to 44h */
.hyc-home .config-preset {
  min-height: 44px !important;
  padding: 12px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}
/* Build CTA "Chi tiết →" inline link → 44h */
.hyc-home .build__cta {
  min-height: 44px;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}
/* Product card "Xem chi tiết / Thêm vào giỏ" buttons inside trending/flash */
.hyc-home .product .product__add {
  min-height: 44px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
/* Product wishlist heart button inside card */
.hyc-home .product__wishlist {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
}
/* Footer column links — bump 32 → 44 (actual markup uses .hyc-footer-col) */
.hyc-footer .hyc-footer-col ul li a,
.hyc-footer .hyc-footer-col ul li {
  display: block !important;
  padding: 12px 0 !important;
  min-height: 44px !important;
  line-height: 1.3;
  box-sizing: border-box;
}
/* Footer brand stats / hotline / address links */
.hyc-footer a[href^="tel:"],
.hyc-footer a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
}
/* WC product card add-to-cart button on archive grid (.prod) */
.hyc-archive .hyc-card-cart {
  min-height: 44px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
/* WC archive wishlist heart button inside .prod */
.hyc-archive .prod-action-btn {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid !important;
  place-items: center !important;
}
/* Configurator section head h3 + tag inline */
.hyc-home .configurator__head .section-link { min-height: 44px; }
/* Cẩm nang blog card link (whole card) — bump if needed */
.hyc-home .blog-card { min-height: 200px; }
/* Cat tiles whole-anchor — already 100+ height, just ensure */
.hyc-home .cat { min-height: 88px; }
/* Drawer / mobile nav drawer items */
.hyc-header .hyc-drawer-utility-item {
  display: flex; align-items: center;
  min-height: 56px;
  padding: 12px 16px;
  box-sizing: border-box;
}

/* Archive breadcrumb links */
.hyc-archive-crumb a, .hyc-archive-crumb span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 12px 0 !important;
  box-sizing: border-box;
}
/* Archive head CTA "Tư vấn build PC →" */
.hyc-archive-head-cta {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 12px 0 !important;
  box-sizing: border-box;
}
/* Facets price apply button */
.facets__price-apply {
  min-height: 44px !important;
  padding: 12px 16px !important;
  display: block !important;
  width: 100%;
  box-sizing: border-box;
}
/* Filter chips top bar */
.filter-chips .chip {
  min-height: 44px !important;
  padding: 12px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}

/* WC default breadcrumb on single product */
.woocommerce-breadcrumb a, .woocommerce-breadcrumb {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
  box-sizing: border-box;
}
/* WC product gallery zoom trigger 🔍 */
.woocommerce-product-gallery__trigger {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: grid !important;
  place-items: center !important;
  box-sizing: border-box;
}
/* Single-product wishlist heart button — bump 43 → 44 */
.hyc-single-wishlist-btn, .prod-action-btn.hyc-single-wishlist-btn {
  min-height: 44px !important;
  padding: 10px 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}
/* WC related products "Thêm vào giỏ" inline button */
.related .add_to_cart_button,
.upsells .add_to_cart_button,
.cross-sells .add_to_cart_button,
.related .button.product_type_simple,
.upsells .button.product_type_simple {
  min-height: 44px !important;
  padding: 12px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
}
/* WC related products title links (in catalog grid below) */
.related .woocommerce-loop-product__link,
.related .woocommerce-loop-product__title {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  box-sizing: border-box;
}
/* Tab nav single product */
.woocommerce-tabs ul.wc-tabs li a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 12px 18px !important;
  box-sizing: border-box;
}
/* Archive prod-name-link (product card title) — bump 43→44 */
.hyc-archive .prod-name-link {
  display: block !important;
  min-height: 44px !important;
  padding: 1px 0 !important;
  box-sizing: border-box;
}
/* Single product .product_meta links (category/tag breadcrumbs) */
.product_meta a, .product_meta .posted_in a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 12px 0 !important;
  box-sizing: border-box;
}
/* Single product tab panel content lists — links inside <li> */
.woocommerce-Tabs-panel ul li a,
.woocommerce-Tabs-panel ol li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
  box-sizing: border-box;
}
/* Pagination pills — bump 38 → 44 */
.pagination .hyc-pagi-link,
.pagination button,
.pagination .active,
.hyc-archive-pagination button,
.hyc-archive-pagination a {
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  display: inline-grid !important;
  place-items: center !important;
  box-sizing: border-box;
}

/* Blog post meta links (author, category, tags) — GeneratePress defaults are tiny */
.entry-meta a,
.cat-links a, .tags-links a, .tag-links a,
.byline a, .vcard a,
.url.fn.n,
.nav-links a, .post-navigation a,
.posted-on a, .updated a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 12px 4px !important;
  box-sizing: border-box;
}

/* Build PC / Khuyến mãi / FAQ — page-prose anchors inside cards/sections (non-inline) */
.hyc-page-prose > a,
.hyc-page-prose > p > a:only-child {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  box-sizing: border-box;
}

/* FAQ accordion summary headings (acts as button) */
details.hyc-faq-item summary,
details summary {
  min-height: 44px;
  padding: 12px 16px !important;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}

/* Catch-all WC default add-to-cart loops (.products .add_to_cart_button) */
.woocommerce .products .add_to_cart_button,
.woocommerce ul.products .add_to_cart_button,
.woocommerce-loop-product__link {
  min-height: 44px !important;
  padding: 12px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}

/* Bump min-width 44 cho hCard microformat + short text author/cat links */
.entry-meta a, .cat-links a, .tags-links a, .tag-links a,
.byline a, .vcard a, .url.fn.n, .nav-links a, .post-navigation a {
  min-width: 44px !important;
  justify-content: flex-start;
}

/* Build PC pack CTA bumps from 40 → 44 */
.bpc-pack-cta, .bpc-pack__cta {
  min-height: 44px !important;
  min-width: 44px !important;
  padding: 12px 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box;
}

/* Breadcrumb on FAQ / generic pages — WC + GP defaults */
.woocommerce .woocommerce-breadcrumb a,
.breadcrumb a, nav.crumbs a, .crumbs a,
[class*=breadcrumb] a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  min-width: 44px !important;
  padding: 12px 4px !important;
  box-sizing: border-box;
}

/* Inline content text links inside FAQ answers / prose: accept inline flow, NO touch target rule.
   But for paragraph-level standalone links (e.g., "Xem thêm tại đây →"), add min-height. */
.hyc-faq-item a, .hyc-faq-list a, details a {
  /* Standalone CTA-style links — bump height to 44 BUT keep display inline so prose flows */
}

/* --- Single-product gallery fallback: gradient + monogram when no image ---
   Mirror archive card pattern. body.hyc-pdp-noimg class applied by PHP when
   product has no featured image. Avoids ugly WC "Awaiting image" default. */
.hyc-pdp.hyc-pdp-noimg .woocommerce-product-gallery {
  position: relative;
  background: linear-gradient(135deg, #0a0e1f 0%, #1c1535 100%);
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  /* Cap width: ngừa gallery placeholder stretch full container when no image.
     WC's product wrapper is display:grid, gallery cell stretches by default. */
  max-width: 540px;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: none;
}
.hyc-pdp.hyc-pdp-noimg .woocommerce-product-gallery img,
.hyc-pdp.hyc-pdp-noimg .woocommerce-product-gallery__image {
  display: none;
}
.hyc-pdp.hyc-pdp-noimg .woocommerce-product-gallery::before {
  content: 'HYC';
  font-family: 'Fraunces', 'Manrope', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .95);
  text-transform: uppercase;
  z-index: 2;
}
.hyc-pdp.hyc-pdp-noimg.brand-hp     .woocommerce-product-gallery::before { content: 'HP'; }
.hyc-pdp.hyc-pdp-noimg.brand-dell   .woocommerce-product-gallery::before { content: 'DELL'; }
.hyc-pdp.hyc-pdp-noimg.brand-lenovo .woocommerce-product-gallery::before { content: 'LENOVO'; }
.hyc-pdp.hyc-pdp-noimg.brand-asus   .woocommerce-product-gallery::before { content: 'ASUS'; }
.hyc-pdp.hyc-pdp-noimg.brand-msi    .woocommerce-product-gallery::before { content: 'MSI'; }
.hyc-pdp.hyc-pdp-noimg.brand-acer   .woocommerce-product-gallery::before { content: 'ACER'; }
.hyc-pdp.hyc-pdp-noimg.brand-apple  .woocommerce-product-gallery::before { content: 'APPLE'; }
.hyc-pdp.hyc-pdp-noimg.brand-lg     .woocommerce-product-gallery::before { content: 'LG'; }
.hyc-pdp.hyc-pdp-noimg.brand-aoc    .woocommerce-product-gallery::before { content: 'AOC'; }
.hyc-pdp.hyc-pdp-noimg.brand-viewsonic .woocommerce-product-gallery::before { content: 'VIEWSONIC'; font-size: clamp(2rem, 6vw, 4rem); }
.hyc-pdp.hyc-pdp-noimg.brand-h3c    .woocommerce-product-gallery::before { content: 'H3C'; }
.hyc-pdp.hyc-pdp-noimg .woocommerce-product-gallery::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 25% 25%, rgba(255,105,0,.35), transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.hyc-pdp.hyc-pdp-noimg.brand-hp     .woocommerce-product-gallery { background: linear-gradient(135deg, #0096d6 0%, #003c7f 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-dell   .woocommerce-product-gallery { background: linear-gradient(135deg, #007db8 0%, #00447c 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-lenovo .woocommerce-product-gallery { background: linear-gradient(135deg, #e2231a 0%, #6d0d09 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-asus   .woocommerce-product-gallery { background: linear-gradient(135deg, #000 0%, #2b2b2b 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-msi    .woocommerce-product-gallery { background: linear-gradient(135deg, #ff0000 0%, #4c0000 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-acer   .woocommerce-product-gallery { background: linear-gradient(135deg, #83b81a 0%, #2e4509 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-apple  .woocommerce-product-gallery { background: linear-gradient(135deg, #555 0%, #1a1a1a 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-lg     .woocommerce-product-gallery { background: linear-gradient(135deg, #a50034 0%, #58001b 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-aoc    .woocommerce-product-gallery { background: linear-gradient(135deg, #d40000 0%, #5c0000 100%); }
.hyc-pdp.hyc-pdp-noimg.brand-viewsonic .woocommerce-product-gallery { background: linear-gradient(135deg, #e60012 0%, #6e0009 100%); }

/* --- Auto-generated description styling (renders inside .hyc-pdp-desc) --- */
.hyc-pdp-desc {
  font-family: 'Manrope', system-ui, sans-serif;
  color: #0a0e1f;
  line-height: 1.7;
}
.hyc-pdp-desc__intro {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #2a2f44;
}
.hyc-pdp-desc__h {
  font-family: 'Fraunces', 'Manrope', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0a0e1f;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(10,14,31,.08);
}
.hyc-pdp-desc__specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  font-size: .92rem;
}
.hyc-pdp-desc__specs th,
.hyc-pdp-desc__specs td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px dashed rgba(10,14,31,.08);
}
.hyc-pdp-desc__specs th {
  font-weight: 600;
  color: #5b6478;
  width: 30%;
  font-size: .85rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hyc-pdp-desc__specs td {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  color: #0a0e1f;
}
.hyc-pdp-desc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.hyc-pdp-desc__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px dashed rgba(10,14,31,.06);
}
.hyc-pdp-desc__list li:last-child { border-bottom: 0; }
.hyc-pdp-desc__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #ff6900;
  font-weight: 700;
}
.hyc-pdp-desc__note {
  margin-top: 24px;
  padding: 14px 16px;
  background: #fafbfd;
  border-left: 3px solid #ff6900;
  font-size: .85rem;
  color: #5b6478;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 540px) {
  .hyc-pdp-desc__specs th { width: 40%; }
  .hyc-pdp-desc__specs th, .hyc-pdp-desc__specs td { padding: 8px 10px; font-size: .85rem; }
}

/* --- WCAG 2.5.5 final pass — 5 remaining edge cases.
   Strategy: items hidden on mobile (utility bar) keep slim desktop sizing —
   the drawer-based mobile nav already provides ≥44px equivalents. The 5
   universally-touchable items below get strict 44px to close the audit gap. */

/* 1) Facets sidebar checkbox row — expand label hit-area to 44px so taps on
   the surrounding text toggle the checkbox. Visual checkbox stays small. */
.facets__option {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 4px;
  cursor: pointer;
  box-sizing: border-box;
}
.facets__option input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
  cursor: pointer;
}

/* 2) WC quantity input — was 60×40, just 4px short on height. */
.woocommerce .quantity input.qty,
body.woocommerce-cart .shop_table .product-quantity input.qty,
.single-product .summary .quantity .qty {
  min-height: 44px !important;
  box-sizing: border-box;
}

/* 3) "Lọc giá" Apply button under facets price range — small CTA, bump height. */
.facets__price-apply {
  min-height: 44px;
  padding: 10px 16px;
  box-sizing: border-box;
}

/* 4) Facets reset link "Xoá bộ lọc" — text link in active filters chip. */
.facets__reset {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 8px;
  box-sizing: border-box;
}

/* 5) Sort dropdown <select> — native control gets browser default ~32px;
   bump to 44 universally so it matches surrounding chips on every device. */
.hyc-sort-form select.sort-dropdown {
  min-height: 44px;
  padding: 0 32px 0 12px;
  box-sizing: border-box;
}

/* --- Header search bar (autocomplete) — slim variant for utility bar
        Higher specificity + !important to override GeneratePress button defaults --- */
.hyc-utility .hyc-utility-inner .hyc-header-search {
  position: relative;
  display: none; align-items: center;
  width: 260px; flex-shrink: 0;
  margin: 0 16px 0 auto;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 4px 0 14px;
  height: 32px;
  box-sizing: border-box;
  transition: border-color 160ms, background 160ms;
}
.hyc-utility .hyc-utility-inner .hyc-header-search:focus-within {
  background: #fff; border-color: #fff;
}
.hyc-utility .hyc-utility-inner .hyc-header-search input[type="search"] {
  flex: 1; min-width: 0;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  padding: 0 8px 0 0 !important;
  margin: 0 !important;
  height: 28px !important;
  color: #fff !important;
  font-size: .82rem !important;
  box-shadow: none !important;
}
.hyc-utility .hyc-utility-inner .hyc-header-search:focus-within input[type="search"] {
  color: #0a0e1f !important;
}
.hyc-utility .hyc-utility-inner .hyc-header-search input[type="search"]::placeholder { color: rgba(255,255,255,.55); }
.hyc-utility .hyc-utility-inner .hyc-header-search:focus-within input[type="search"]::placeholder { color: #5b6478; }
.hyc-utility .hyc-utility-inner .hyc-header-search button[type="submit"] {
  display: inline-grid !important;
  place-items: center !important;
  width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.7) !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 160ms, color 160ms;
  box-shadow: none !important;
}
.hyc-utility .hyc-utility-inner .hyc-header-search:focus-within button[type="submit"] {
  background: #ff6900 !important;
  color: #fff !important;
}
.hyc-utility .hyc-utility-inner .hyc-header-search button[type="submit"]:hover {
  background: rgba(255,105,0,.18) !important;
  color: #ff6900 !important;
}
.hyc-utility .hyc-utility-inner .hyc-header-search button[type="submit"] svg {
  width: 12px !important;
  height: 12px !important;
  display: block;
}
@media (min-width: 1024px) {
  .hyc-utility .hyc-utility-inner .hyc-header-search { display: flex; }
}
.hyc-header-search:focus-within { border-color: #0071e3; background: #fff; }
.hyc-header-search input[type="search"] {
  border: 0; outline: 0; background: transparent;
  flex: 1; font-size: .9rem; padding: 0 8px;
  font-family: inherit; min-width: 0;
}
.hyc-header-search button[type="submit"] {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 0; background: #0a0e1f; color: #fff;
  border-radius: 999px; cursor: pointer;
  transition: background 160ms;
}
.hyc-header-search button[type="submit"]:hover { background: #1c2236; }
.hyc-header-search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid #e3e8f0; border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(10,14,31,.2), 0 8px 16px -12px rgba(10,14,31,.08);
  max-height: 480px; overflow-y: auto; z-index: 50;
  padding: 8px;
}
.hyc-header-search-dropdown[hidden] { display: none; }
.hyc-search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; color: #0a0e1f;
  transition: background 160ms;
}
.hyc-search-result:hover, .hyc-search-result.is-active { background: #f0f2f6; }
/* WAI-ARIA combobox keyboard-selected option — stronger than hover so
   keyboard users can distinguish current vs hovered item. */
.hyc-search-result[aria-selected="true"],
.hyc-search-viewall[aria-selected="true"] {
  background: #e3ecf8;
  outline: 2px solid #0071e3;
  outline-offset: -2px;
}
.hyc-search-result__img {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #f0f2f6; border-radius: 8px; overflow: hidden;
}
.hyc-search-result__img img { width: 100%; height: 100%; object-fit: cover; }
.hyc-search-result__body { flex: 1; min-width: 0; }
.hyc-search-result__title {
  font-size: .9rem; font-weight: 600; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hyc-search-result__price {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .82rem; font-weight: 700; color: #ff6900;
  margin-top: 2px;
}
.hyc-search-loading, .hyc-search-empty {
  padding: 14px 16px; font-size: .85rem; color: #5b6478; text-align: center;
}
.hyc-search-viewall {
  display: block; padding: 12px; border-top: 1px solid #e3e8f0;
  text-align: center; font-size: .85rem; font-weight: 700; color: #0071e3;
  text-decoration: none; margin-top: 4px;
}
.hyc-search-viewall:hover { background: #f0f2f6; }

/* Screen-reader-only utility — visually hidden but exposed to AT.
   Used by [data-hyc-search-status] for aria-live result count announcements. */
.hyc-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* ===================================================================
   SINGLE PRODUCT PAGE POLISH — Demo 13 hero (scope .hyc-pdp)
   masthead tape + trust row 4-cell + drop-cap on first paragraph
   =================================================================== */
.hyc-pdp .hyc-pdp-masthead {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 8px 0; margin-bottom: 16px;
  border-top: 1.5px solid #0a0e1f; border-bottom: 1px solid #e5e8ee;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.hyc-pdp .hyc-pdp-masthead__issue {
  background: #0a0e1f; color: #ff6900;
  padding: 4px 10px; border-radius: 4px; letter-spacing: .18em;
}
.hyc-pdp .hyc-pdp-masthead__sku { color: #5b6478; }
.hyc-pdp .hyc-pdp-masthead__sku::before { content: '·'; margin-right: 12px; opacity: .5; }
.hyc-pdp .hyc-pdp-masthead__stock { margin-left: auto; }
.hyc-pdp .hyc-pdp-masthead__stock.is-in { color: #00875a; }
.hyc-pdp .hyc-pdp-masthead__stock.is-out { color: #e02d3c; }
.hyc-pdp .hyc-pdp-masthead__pagemark { color: #5b6478; margin-left: auto; }
.hyc-pdp .hyc-pdp-masthead__pagemark::before { content: '·'; margin-right: 12px; opacity: .5; }
.hyc-pdp .hyc-pdp-masthead__stock { margin-left: 0; }

/* --- Specs callout strip (auto-extracted from title) --- */
.hyc-pdp .hyc-pdp-specs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 12px 0;
  margin: 12px 0 18px;
  border-top: 1px dashed #d3d8e2;
  border-bottom: 1px dashed #d3d8e2;
}
.hyc-pdp .hyc-pdp-specs__lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #ff6900; display: inline-flex; align-items: center; gap: 8px;
  margin-right: 4px;
}
.hyc-pdp .hyc-pdp-specs__lbl::before {
  content: ''; width: 5px; height: 5px; background: #ff6900; border-radius: 50%;
}
.hyc-pdp .hyc-pdp-specs__chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 12px;
  background: #f0f2f6;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.hyc-pdp .hyc-pdp-specs__chip-lbl {
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #5b6478;
}
.hyc-pdp .hyc-pdp-specs__chip-v {
  font-size: .82rem; font-weight: 700; letter-spacing: -.01em; color: #0a0e1f;
}

/* --- Editorial pull-quote testimonial --- */
.hyc-pdp .hyc-pdp-pullquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 28px 20px 56px;
  background: linear-gradient(135deg, #fff1e6 0%, #fff 100%);
  border-left: 3px solid #ff6900;
  border-radius: 0 14px 14px 0;
}
.hyc-pdp .hyc-pdp-pullquote__mark {
  position: absolute; left: 16px; top: 4px;
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic; font-weight: 500;
  font-size: 4.5rem; line-height: 1;
  color: #ff6900; opacity: .55;
  pointer-events: none; user-select: none;
}
.hyc-pdp .hyc-pdp-pullquote__body {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-variation-settings: 'opsz' 144;
  font-style: italic; font-weight: 500;
  font-size: 1.15rem; line-height: 1.4; letter-spacing: -.015em;
  color: #0a0e1f; margin: 0 0 8px;
  text-wrap: balance;
}
.hyc-pdp .hyc-pdp-pullquote__cite {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #5b6478; font-style: normal;
}

/* --- Live stock counter — pulsing dot + dynamic count --- */
.hyc-pdp .hyc-pdp-stock-live {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 12px 0 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Manrope', system-ui, sans-serif;
}
.hyc-pdp .hyc-pdp-stock-live.is-ok {
  background: rgba(0,135,90,.1);
  color: #00875a;
}
.hyc-pdp .hyc-pdp-stock-live.is-low {
  background: rgba(224,45,60,.1);
  color: #e02d3c;
}
.hyc-pdp .hyc-pdp-stock-live__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.hyc-pdp .hyc-pdp-stock-live.is-ok .hyc-pdp-stock-live__dot { background: #00875a; }
.hyc-pdp .hyc-pdp-stock-live.is-low .hyc-pdp-stock-live__dot { background: #e02d3c; }
.hyc-pdp .hyc-pdp-stock-live__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: .4;
  animation: hycStockPulse 2s ease-in-out infinite;
}
@keyframes hycStockPulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.8); opacity: 0; }
}
.hyc-pdp .hyc-pdp-stock-live__text strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
}

/* --- FPS benchmark table — magazine-grade, JetBrains Mono numbers
   Color tier: ≥60 green, 30–59 amber, <30 red, 0 dash neutral.
   Mobile keeps 3 cols (game label allows wrap; numbers stay tight). --- */
.hyc-pdp .hyc-pdp-fps {
  margin: 28px 0 20px;
  padding: 20px 22px;
  background: #fafbfd;
  border: 1px solid rgba(10, 14, 31, .08);
  border-radius: 14px;
}
.hyc-pdp .hyc-pdp-fps__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hyc-pdp .hyc-pdp-fps__h {
  font-family: 'Fraunces', 'Manrope', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0a0e1f;
  margin: 0;
}
.hyc-pdp .hyc-pdp-fps__note {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #5b6478;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.hyc-pdp .hyc-pdp-fps__table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Manrope', system-ui, sans-serif;
}
.hyc-pdp .hyc-pdp-fps__table thead th {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5b6478;
  text-align: right;
  padding: 8px 4px 10px;
  border-bottom: 1px solid rgba(10, 14, 31, .12);
}
.hyc-pdp .hyc-pdp-fps__table thead th:first-child { text-align: left; }
.hyc-pdp .hyc-pdp-fps__table tbody tr {
  border-bottom: 1px dashed rgba(10, 14, 31, .08);
}
.hyc-pdp .hyc-pdp-fps__table tbody tr:last-child { border-bottom: 0; }
.hyc-pdp .hyc-pdp-fps__game {
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  color: #0a0e1f;
  padding: 12px 4px;
}
.hyc-pdp .hyc-pdp-fps__cell {
  text-align: right;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.02em;
  padding: 12px 4px;
  font-variant-numeric: tabular-nums;
}
.hyc-pdp .hyc-pdp-fps__cell.is-good { color: #00875a; }
.hyc-pdp .hyc-pdp-fps__cell.is-ok   { color: #c89b3c; }
.hyc-pdp .hyc-pdp-fps__cell.is-low  { color: #e02d3c; }
.hyc-pdp .hyc-pdp-fps__cell.is-na   { color: #b0b6c1; font-weight: 400; }

@media (max-width: 540px) {
  .hyc-pdp .hyc-pdp-fps { padding: 16px 14px; }
  .hyc-pdp .hyc-pdp-fps__h { font-size: .98rem; }
  .hyc-pdp .hyc-pdp-fps__note { font-size: .65rem; }
  .hyc-pdp .hyc-pdp-fps__game { font-size: .8rem; padding: 10px 4px; }
  .hyc-pdp .hyc-pdp-fps__cell { font-size: .88rem; padding: 10px 4px; }
}

/* --- 3D tilt on product image hover (gallery) --- */
.hyc-pdp .woocommerce-product-gallery {
  perspective: 1400px;
}
.hyc-pdp .woocommerce-product-gallery__image {
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
  transform-origin: center center;
}
.hyc-pdp .woocommerce-product-gallery__image:hover {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.015);
}
@media (prefers-reduced-motion: reduce) {
  .hyc-pdp .woocommerce-product-gallery__image:hover { transform: none; }
  .hyc-pdp .hyc-pdp-stock-live__dot::after { animation: none; }
}

/* Drop-cap Fraunces orange on first paragraph of short-description (orange callout above) */
.hyc-pdp .woocommerce-product-details__short-description p:first-of-type::first-letter,
.hyc-pdp .hyc-pdp-short-desc p:first-of-type::first-letter {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic; font-weight: 500;
  font-size: 4.5rem; line-height: .85;
  float: left; margin: 6px 12px 0 0; padding-top: 4px;
  color: #ff6900;
}

/* Trust row 4-cell after summary */
.hyc-pdp .hyc-pdp-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #e5e8ee; border: 1px solid #e5e8ee; border-radius: 20px; overflow: hidden;
  margin: 32px 0;
  /* WC's .product wrapper is display:grid by GP theme. Without align-self:start
     the trust row gets stretched to fill its grid track (when other tall items
     like related-products or a 1:1 image-placeholder gallery are in same row).
     This kept cells at 1023px tall — kéo trust row quá cao. */
  align-self: start;
  grid-column: 1 / -1;
}
.hyc-pdp .hyc-pdp-trust__cell {
  background: #fff; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  position: relative;
  align-self: start;
  min-height: 88px;
}
.hyc-pdp .hyc-pdp-trust__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 2.2rem; font-weight: 700; letter-spacing: -.04em; line-height: 1;
  color: #ff6900;
}
.hyc-pdp .hyc-pdp-trust__num sub {
  font-size: .55em; vertical-align: baseline; font-weight: 500; color: #ff6900;
}
.hyc-pdp .hyc-pdp-trust__lbl {
  font-size: .78rem; font-weight: 600; color: #5b6478; line-height: 1.4;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .hyc-pdp .hyc-pdp-trust { grid-template-columns: 1fr 1fr; }
  .hyc-pdp .hyc-pdp-masthead { font-size: .66rem; letter-spacing: .12em; }
  .hyc-pdp .hyc-pdp-masthead__stock { margin-left: 0; }
}

/* ===================================================================
   ARCHIVE FACETS + DEAL-SPOTLIGHT (Demo 13 shop polish — scope .hyc-archive)
   =================================================================== */
.hyc-archive .shop-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: flex-start; margin-top: 24px; }
.hyc-archive .facets { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line, #e3e8f0); border-radius: 20px; padding: 24px; }
.hyc-archive .facets__group + .facets__group { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line, #e3e8f0); }
.hyc-archive .facets__title { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; color: var(--ink, #0a0e1f); }
.hyc-archive .facets__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hyc-archive .facets__option { display: flex; align-items: center; gap: 10px; font-size: .88rem; cursor: pointer; padding: 6px 8px; margin: -6px -8px; border-radius: 8px; transition: background 160ms; color: var(--ink-2, #5b6b85); }
.hyc-archive .facets__option:hover { background: var(--bg-soft, #f0f2f6); color: var(--ink, #0a0e1f); }
.hyc-archive .facets__option input[type='checkbox'] { width: 18px; height: 18px; border-radius: 5px; appearance: none; -webkit-appearance: none; border: 1.5px solid #d3d8e2; cursor: pointer; flex-shrink: 0; transition: border-color 160ms, background 160ms; position: relative; margin: 0; }
.hyc-archive .facets__option input[type='checkbox']:checked { background: var(--ink, #0a0e1f); border-color: var(--ink, #0a0e1f); }
.hyc-archive .facets__option input[type='checkbox']:checked::after { content: ''; position: absolute; left: 4px; top: 1px; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.hyc-archive .facets__count { margin-left: auto; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .75rem; color: var(--muted, #5b6478); }
.hyc-archive .facets__price { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .85rem; }
.hyc-archive .facets__price input { width: 100%; padding: 8px 10px; border: 1.5px solid var(--line, #e3e8f0); border-radius: 8px; font-family: inherit; font-size: .82rem; }
.hyc-archive .facets__price input:focus { outline: none; border-color: var(--blue, #0071e3); }
.hyc-archive .facets__price-apply { display: block; width: 100%; margin-top: 10px; padding: 8px 12px; background: var(--ink, #0a0e1f); color: #fff; border: 0; border-radius: 8px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .78rem; font-weight: 700; cursor: pointer; transition: background 160ms; }
.hyc-archive .facets__price-apply:hover { background: #1c2236; }
.hyc-archive .facets-form { display: contents; }
.hyc-archive .facets__active { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 16px; padding: 10px 12px; background: var(--orange-soft, #fff1e6); border-radius: 10px; }
.hyc-archive .facets__active-lbl { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange, #ff6900); }
.hyc-archive .facets__reset { font-size: .78rem; font-weight: 600; color: var(--blue, #0071e3); text-decoration: underline; text-underline-offset: 3px; }
.hyc-archive .facets__reset:hover { color: var(--ink, #0a0e1f); }

/* Deal spotlight 2×2 bento tile inserted as first cell of trending-grid */
.hyc-archive .deal-spotlight { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #0a0e1f 0%, #1c1535 60%, #2a1a3f 100%); color: #fff; border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; border: 1px solid transparent; }
.hyc-archive .deal-spotlight::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg,#ff7eb9 0%,#fee440 22%,#00f5d4 48%,#b8e0ff 72%,#ff7eb9 100%); background-size: 220% 220%; opacity: .14; mix-blend-mode: screen; pointer-events: none; animation: hycHoloGrad 12s linear infinite; transition: opacity 320ms ease; }
.hyc-archive .deal-spotlight:hover::before { opacity: .22; }
.hyc-archive .deal-spotlight::after { content: ''; position: absolute; inset: -30% -20% auto auto; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,105,0,.55), transparent 60%); pointer-events: none; transition: opacity 320ms ease; }
.hyc-archive .deal-spotlight:hover::after { opacity: 1.2; }
/* Hero photo — chromatic RGB glow + float on hover */
.hyc-archive .deal-spotlight__hero {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 220px;
  height: 220px;
  opacity: .92;
  pointer-events: none;
  filter:
    drop-shadow(0 0 18px rgba(255, 105, 0, 0.55))
    drop-shadow(0 0 32px rgba(0, 245, 212, 0.18))
    drop-shadow(0 0 48px rgba(255, 126, 185, 0.16));
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 320ms ease;
  animation: hycSpotlightFloat 6s ease-in-out infinite;
}
.hyc-archive .deal-spotlight:hover .deal-spotlight__hero {
  transform: translateY(-6px) scale(1.04);
  filter:
    drop-shadow(0 0 24px rgba(255, 105, 0, 0.7))
    drop-shadow(0 0 44px rgba(0, 245, 212, 0.26))
    drop-shadow(0 0 64px rgba(255, 126, 185, 0.22));
}
@keyframes hycSpotlightFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-archive .deal-spotlight__hero { animation: none; }
  .hyc-archive .deal-spotlight:hover .deal-spotlight__hero { transform: none; }
}
.hyc-archive .deal-spotlight__kicker { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange, #ff6900); display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.hyc-archive .deal-spotlight__kicker::before { content: ''; width: 6px; height: 6px; background: var(--orange, #ff6900); border-radius: 50%; }
.hyc-archive .deal-spotlight h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; max-width: 18ch; text-wrap: balance; position: relative; z-index: 1; }
.hyc-archive .deal-spotlight h3 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; color: var(--orange, #ff6900); }
.hyc-archive .deal-spotlight__chips { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 1; }
.hyc-archive .deal-spotlight__chips span { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .68rem; font-weight: 600; padding: 4px 10px; background: rgba(255,255,255,.1); border-radius: 999px; color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.12); }
.hyc-archive .deal-spotlight__stock { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .8rem; color: rgba(255,255,255,.75); position: relative; z-index: 1; }
.hyc-archive .deal-spotlight__stock b { color: var(--orange, #ff6900); font-weight: 700; }
.hyc-archive .deal-spotlight__price { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 1.6rem; font-weight: 700; color: var(--orange, #ff6900); letter-spacing: -.02em; line-height: 1; margin-top: auto; position: relative; z-index: 1; }
.hyc-archive .deal-spotlight__price small { display: block; font-size: .68rem; color: rgba(255,255,255,.45); text-decoration: line-through; font-weight: 500; margin-bottom: 6px; letter-spacing: 0; }
.hyc-archive .deal-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(95deg, #ff7a1a 0%, #ff4d2d 60%, #e02d3c 100%);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  align-self: flex-start;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms ease;
  box-shadow: 0 6px 16px -6px rgba(255, 77, 45, 0.5),
              0 1px 0 rgba(255, 255, 255, 0.18) inset;
}
.hyc-archive .deal-spotlight__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -8px rgba(255, 77, 45, 0.62),
              0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.hyc-archive .deal-spotlight__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-archive .deal-spotlight__cta:hover svg { transform: translateX(3px); }

/* When deal-spotlight present, trending-grid uses dense flow to fill gaps */
.hyc-archive .trending-grid.with-spotlight { grid-auto-flow: dense; }

/* Shop responsive — collapse facets above grid on tablet */
@media (max-width: 1024px) {
  .hyc-archive .shop-grid { grid-template-columns: 1fr; }
  .hyc-archive .facets { position: static; }
  .hyc-archive .deal-spotlight { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .hyc-archive .deal-spotlight { grid-column: 1 / -1; grid-row: span 1; }
}

/* ===================================================================
   ITER-007 FOUNDATION CSS (Demo 13 home body sections)
   Ported from gan-design/iterations/iteration-007/
   Markup integration phiên sau — phiên này chỉ register rules.
   =================================================================== */

/* --- Base + extended design tokens (global :root, needed because original tokens were scoped to .hyc-archive only) --- */
:root {
  --white: #fff;
  --bg: #fafbfd;
  --bg-soft: #f0f2f6;
  --bg-2: #e8ecf2;
  --ink: #0a0e1f;
  --ink-2: #5b6b85;
  --blue: #0071e3;
  --orange: #ff6900;
  --red: #e02d3c;
  --green: #00875a;
  --gold: #c89b3c;
  --holo-1: #ff7eb9;
  --holo-2: #00f5d4;
  --holo-3: #b8e0ff;
  --holo-4: #fee440;
  --bg-deep: #0a0e1f;
  --bg-deep-2: #131830;
  --line: #e5e8ee;
  --line-2: #d3d8e2;
  --blue-deep: #004fb3;
  --blue-soft: #e6f1ff;
  --orange-2: #ff8b3a;
  --orange-deep: #e85d00;
  --orange-soft: #fff1e6;
  --warm-line: #ffe4cc;
  --red-soft: #fde7eb;
  --green-soft: #dff4ec;
  --muted: #5b6478;
  --muted-2: #8a93a6;
  --holo-foil: linear-gradient(115deg,#ff7eb9 0%,#fee440 22%,#00f5d4 48%,#b8e0ff 72%,#ff7eb9 100%);
  --grad-night: linear-gradient(160deg,#0a0e1f 0%,#1c2a4e 100%);
  --grad-night-deep: linear-gradient(160deg,#0a0e1f 0%,#1c1535 60%,#2a1a3f 100%);
  --grad-warm-1: linear-gradient(135deg,#fff1e6,#fff);
  --halftone-orange: radial-gradient(circle at 1px 1px,rgba(255,105,0,.22) 1px,transparent 1.2px);
  --halftone-orange-on-ink: radial-gradient(circle at 1px 1px,rgba(255,105,0,.4) 1px,transparent 1.2px);
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;
  --r-1: 6px; --r-2: 10px; --r-3: 14px; --r-4: 20px; --r-5: 28px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(10,14,31,.04),0 1px 1px rgba(10,14,31,.03);
  --sh-2: 0 6px 16px -8px rgba(10,14,31,.12),0 2px 4px rgba(10,14,31,.04);
  --sh-3: 0 20px 40px -20px rgba(10,14,31,.2),0 8px 16px -12px rgba(10,14,31,.08);
  --sh-4: 0 40px 80px -32px rgba(10,14,31,.32);
  --sh-glow-orange: 0 12px 30px -10px rgba(255,105,0,.45);
  --sh-glow-blue: 0 12px 30px -10px rgba(0,113,227,.4);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.7,0,.3,1);
  --d-fast: 160ms; --d-mid: 280ms; --d-slow: 480ms;
  --font-serif: 'Fraunces','Source Serif 4','Newsreader','Iowan Old Style',Georgia,serif;
  --font-mono: 'JetBrains Mono',ui-monospace,SFMono-Regular,monospace;
  --t-h2: clamp(1.75rem,1.2rem + 2vw,2.5rem);
  --t-h3: clamp(1.25rem,1rem + .9vw,1.625rem);
  --t-micro: .75rem;
  --gutter: clamp(1rem,1rem + 1vw,2rem);
  --page: min(1320px,100% - var(--gutter)*2);
}

/* --- Keyframes (namespaced to avoid clash with existing rules) --- */
@keyframes iter7FloatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(var(--ty,-8px)); } }
@keyframes iter7FoilShift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes iter7Pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes iter7Blink { 50% { opacity: .2; } }
@keyframes iter7Marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% - var(--gap))); } }

/* --- Section utilities (scoped to .hyc-home so they don't leak) --- */
.hyc-home .section { padding-block: clamp(48px,6vw,96px); }
.hyc-home .section.tight { padding-block: clamp(32px,4vw,56px); }
.hyc-home .section--flush { padding-top: 0; }
.hyc-home .page { width: var(--page); margin-inline: auto; }
.hyc-home .section-eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--t-micro); letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.hyc-home .section-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--orange); }
.hyc-home .section-head { display: flex; align-items: end; justify-content: space-between; gap: var(--s-5); margin-bottom: var(--s-6); flex-wrap: wrap; }
.hyc-home .section-head h2 { font-size: var(--t-h2); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; max-width: 22ch; text-wrap: balance; }
.hyc-home .section-link { font-size: .875rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: var(--s-2); transition: gap var(--d-mid) var(--ease-out); }
.hyc-home .section-link:hover { gap: 14px; }
.hyc-home .section-link svg { width: 16px; height: 16px; }
.hyc-home .serif-em { font-family: var(--font-serif); font-variation-settings: 'opsz' 144,'SOFT' 100; font-style: italic; font-weight: 500; color: var(--orange); letter-spacing: -.035em; }

/* --- Hero-c (asymmetric number theater) --- */
.hyc-home .hero-c__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px,4vw,72px); align-items: start; }
.hyc-home .hero-c__numerals { display: flex; flex-direction: column; position: relative; }
.hyc-home .hero-c__num-row { display: grid; grid-template-columns: minmax(0,max-content) minmax(160px,1fr); column-gap: clamp(24px,2.4vw,44px); align-items: end; padding: clamp(18px,1.8vw,30px) 0; border-bottom: 1px solid var(--line); }
.hyc-home .hero-c__num-row:first-of-type { padding-top: 0; }
.hyc-home .hero-c__num-row:last-of-type { border-bottom: 0; padding-bottom: clamp(20px,2vw,32px); }
.hyc-home .hero-c__num { font-family: var(--font-mono); font-weight: 700; line-height: .82; letter-spacing: -.055em; color: var(--ink); font-size: clamp(3.5rem,7vw,8rem); display: inline-block; font-variant-numeric: tabular-nums; }
.hyc-home .hero-c__num--accent { color: var(--orange); }
.hyc-home .hero-c__num sup { font-family: var(--font-mono); font-size: .32em; vertical-align: super; font-weight: 700; color: var(--orange); margin-left: 4px; }
.hyc-home .hero-c__num-label { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; line-height: 1.55; padding-bottom: clamp(6px,.8vw,14px); }
.hyc-home .hero-c__num-label b { display: block; color: var(--ink); font-weight: 700; font-size: .92rem; letter-spacing: .08em; margin-bottom: 6px; }
.hyc-home .hero-c__caption { margin-top: clamp(28px,3.5vw,56px); padding-top: clamp(22px,2vw,32px); border-top: 1px solid var(--line); display: grid; gap: var(--s-5); position: relative; }
.hyc-home .hero-c__caption::before { content: ''; position: absolute; top: -1px; left: 0; width: 64px; height: 3px; background: var(--orange); }
.hyc-home .hero-c__caption h1 { font-size: clamp(1.85rem,1rem + 1.9vw,3.1rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; max-width: 22ch; text-wrap: balance; }
.hyc-home .hero-c__caption h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--orange); }
.hyc-home .hero-c__caption p { font-size: 1.05rem; color: var(--ink-2); line-height: 1.55; max-width: 44ch; }
.hyc-home .hero-c__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-2); }
.hyc-home .hero-c__visual { position: sticky; top: clamp(72px,8vh,96px); aspect-ratio: 1/1.08; border-radius: var(--r-5); background: radial-gradient(circle at 30% 20%,rgba(0,113,227,.18),transparent 60%), var(--grad-night-deep); overflow: hidden; box-shadow: var(--sh-4); }
.hyc-home .hero-c__visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse at center,black 30%,transparent 80%); pointer-events: none; }
.hyc-home .hero-c__visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(260px 260px at 70% 70%,rgba(255,105,0,.34),transparent 60%), radial-gradient(320px 320px at 20% 30%,rgba(0,245,212,.20),transparent 60%); pointer-events: none; }
.hyc-home .hero-c__circuit { position: absolute; inset: 0; pointer-events: none; opacity: .55; }
.hyc-home .hero-c__bc { position: absolute; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-3); padding: 14px 18px; color: var(--white); min-width: 178px; will-change: transform; }
.hyc-home .hero-c__bc__label { font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.hyc-home .hero-c__bc__value { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; }
.hyc-home .hero-c__bc--cpu { top: 8%; left: 6%; animation: iter7FloatY 7s var(--ease-in-out) infinite; --ty: -8px; }
.hyc-home .hero-c__bc--gpu { top: 24%; right: 5%; animation: iter7FloatY 9s var(--ease-in-out) infinite; --ty: -12px; }
.hyc-home .hero-c__bc--ram { bottom: 38%; left: 9%; animation: iter7FloatY 8s var(--ease-in-out) infinite; --ty: -6px; }
.hyc-home .hero-c__price-card { position: absolute; bottom: 7%; right: 6%; background: var(--orange); border-radius: var(--r-4); padding: 20px 26px; color: var(--white); min-width: 240px; box-shadow: 0 18px 40px -12px rgba(255,105,0,.55); }
.hyc-home .hero-c__price-card .label { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.88); margin-bottom: 6px; font-weight: 700; }
.hyc-home .hero-c__price-card .name { font-size: .92rem; font-weight: 700; margin-bottom: 10px; line-height: 1.25; max-width: 22ch; }
.hyc-home .hero-c__price-card .price { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.hyc-home .hero-c__price-card .price small { display: block; font-size: .55em; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.78); margin-bottom: 4px; font-weight: 600; }
@media (max-width: 1180px) { .hyc-home .hero-c__num { font-size: clamp(3.5rem,9vw,8rem); } .hyc-home .hero-c__num-row { grid-template-columns: minmax(140px,.9fr) minmax(0,1fr); } }
@media (max-width: 1024px) { .hyc-home .hero-c__grid { grid-template-columns: 1fr; gap: var(--s-7); } .hyc-home .hero-c__visual { aspect-ratio: 16/10; position: relative; top: auto; } }
@media (max-width: 640px) { .hyc-home .hero-c__num { font-size: clamp(3rem,16vw,5.5rem); } .hyc-home .hero-c__num-row { grid-template-columns: 1fr; gap: 8px; row-gap: 12px; padding: 18px 0; } .hyc-home .hero-c__num-label { padding-bottom: 0; } .hyc-home .hero-c__num-label b { font-size: .82rem; } .hyc-home .hero-c__visual { aspect-ratio: 4/5; } .hyc-home .hero-c__bc { min-width: 0; padding: 10px 12px; } .hyc-home .hero-c__price-card { padding: 16px 18px; min-width: 0; right: 8%; left: 8%; bottom: 5%; } }
@media (prefers-reduced-motion: reduce) { .hyc-home .hero-c__bc--cpu, .hyc-home .hero-c__bc--gpu, .hyc-home .hero-c__bc--ram { animation: none; } }

/* --- Configurator preview strip --- */
.hyc-home .configurator { margin-top: var(--s-7); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-4); padding: var(--s-5); position: relative; overflow: hidden; }
.hyc-home .configurator::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,14,31,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(10,14,31,.02) 1px,transparent 1px); background-size: 24px 24px; pointer-events: none; mask-image: radial-gradient(ellipse at 80% 50%,black,transparent 80%); }
.hyc-home .configurator__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; margin-bottom: var(--s-4); position: relative; }
.hyc-home .configurator__head h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; margin-top: 6px; }
.hyc-home .configurator__head .tag { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.hyc-home .configurator__rows { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr .9fr; gap: var(--s-3); align-items: stretch; position: relative; }
.hyc-home .config-row { background: var(--bg-soft); border-radius: var(--r-3); padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.hyc-home .config-row__lbl { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hyc-home .config-row__lbl::before { content: ''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }
.hyc-home .config-row__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hyc-home .config-chip { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; padding: 5px 10px; border-radius: var(--r-pill); background: var(--white); border: 1.5px solid var(--line); color: var(--ink-2); cursor: pointer; transition: all var(--d-fast) var(--ease-out); }
.hyc-home .config-chip:hover { border-color: var(--ink); }
.hyc-home .config-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hyc-home .config-total { background: var(--ink); color: var(--white); border-radius: var(--r-3); padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hyc-home .config-total::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 100%,rgba(255,105,0,.35),transparent 60%); pointer-events: none; }
.hyc-home .config-total > * { position: relative; }
.hyc-home .config-total__lbl { font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hyc-home .config-total__num { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700; letter-spacing: -.04em; color: var(--orange); line-height: 1; margin-top: 6px; font-variant-numeric: tabular-nums; }
.hyc-home .config-total__delta { font-family: var(--font-mono); font-size: .72rem; font-weight: 600; color: var(--holo-2); margin-top: 6px; }
.hyc-home .config-presets { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px dashed var(--line-2); }
.hyc-home .config-presets__lbl { font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: 8px; display: inline-flex; align-items: center; gap: 8px; }
.hyc-home .config-presets__lbl::before { content: ''; width: 18px; height: 1.5px; background: var(--orange); }
.hyc-home .config-preset { font-family: var(--font-mono); font-size: .74rem; font-weight: 700; padding: 7px 14px; border-radius: var(--r-pill); background: var(--white); border: 1.5px solid var(--line); color: var(--ink-2); cursor: pointer; transition: transform var(--d-fast) var(--ease-out),border-color var(--d-fast),background var(--d-fast); min-height: 32px; display: inline-flex; align-items: center; gap: 6px; }
.hyc-home .config-preset:hover { border-color: var(--ink); transform: translateY(-1px); }
.hyc-home .config-preset.is-applied { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hyc-home .config-preset--hot { background: linear-gradient(135deg,var(--orange) 0%,var(--orange-deep) 100%); color: var(--white); border-color: transparent; box-shadow: 0 6px 16px -8px rgba(255,105,0,.55); }
.hyc-home .config-preset--soft { background: var(--blue-soft); color: var(--blue-deep); border-color: transparent; }

/* --- Flash sale block --- */
.hyc-home .flash { background: linear-gradient(180deg,#fff7ee 0%,#fff 100%); border-radius: var(--r-5); padding: clamp(28px,3vw,48px); margin-top: var(--s-7); position: relative; overflow: hidden; border: 1px solid var(--warm-line); }
.hyc-home .flash::before { content: ''; position: absolute; inset: 0; background-image: var(--halftone-orange); background-size: 24px 24px; mask-image: linear-gradient(180deg,black,transparent 60%); opacity: .5; }
.hyc-home .flash__head { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; margin-bottom: var(--s-6); }
.hyc-home .flash__title { display: flex; align-items: center; gap: var(--s-4); }
.hyc-home .flash__title h2 { font-size: var(--t-h2); font-weight: 800; letter-spacing: -.025em; display: flex; align-items: center; gap: 12px; }
.hyc-home .flash__bolt { width: 44px; height: 44px; background: var(--orange); border-radius: 14px; display: grid; place-items: center; color: var(--white); box-shadow: var(--sh-glow-orange); animation: iter7Pulse 2.2s var(--ease-in-out) infinite; }
.hyc-home .flash__bolt svg { width: 22px; height: 22px; }
.hyc-home .countdown { display: flex; align-items: center; gap: var(--s-2); }
.hyc-home .countdown__cell { background: var(--ink); color: var(--white); padding: 10px 14px; border-radius: 10px; text-align: center; min-width: 60px; position: relative; }
.hyc-home .countdown__cell::after { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.08); }
.hyc-home .countdown__num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; display: block; }
.hyc-home .countdown__lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; color: var(--muted-2); }
.hyc-home .countdown__sep { font-family: var(--font-mono); font-weight: 700; color: var(--orange); animation: iter7Blink 1s steps(2) infinite; }

/* --- Build PC bento --- */
.hyc-home .builds { display: grid; grid-template-columns: repeat(6,1fr); grid-auto-rows: minmax(180px,auto); gap: var(--s-4); }
.hyc-home .build { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-4); padding: var(--s-5); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: transform var(--d-mid) var(--ease-out),box-shadow var(--d-mid); }
.hyc-home .build:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.hyc-home .build--flagship { grid-column: span 3; grid-row: span 2; background: var(--grad-night-deep); color: var(--white); border-color: transparent; }
.hyc-home .build--flagship::before { content: ''; position: absolute; inset: 0; background: var(--holo-foil); background-size: 200% 200%; opacity: .15; mix-blend-mode: screen; animation: iter7FoilShift 12s linear infinite; }
.hyc-home .build--flagship::after { content: ''; position: absolute; inset: -40% -20% auto auto; width: 80%; aspect-ratio: 1; background: radial-gradient(circle,rgba(255,105,0,.4),transparent 60%); pointer-events: none; }
.hyc-home .build--mid { grid-column: span 3; }
.hyc-home .build--small { grid-column: span 2; }
.hyc-home .build__tier { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 8px; }
.hyc-home .build__tier::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hyc-home .build__name { font-size: var(--t-h3); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; margin: 10px 0 var(--s-3); }
.hyc-home .build--flagship .build__name { font-size: clamp(1.5rem,1rem + 2vw,2.5rem); }
.hyc-home .build__specs { display: flex; flex-wrap: wrap; gap: 6px; margin: var(--s-3) 0; }
.hyc-home .build__chip { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; padding: 4px 10px; background: var(--bg-soft); border-radius: var(--r-pill); color: var(--ink-2); }
.hyc-home .build--flagship .build__chip { background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.12); }
.hyc-home .build__price { font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--orange); letter-spacing: -.02em; }
.hyc-home .build--flagship .build__price { font-size: 1.8rem; }
.hyc-home .build__cta { margin-top: var(--s-3); display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .85rem; color: var(--ink); transition: gap var(--d-mid); }
.hyc-home .build--flagship .build__cta { color: var(--white); }
.hyc-home .build__cta:hover { gap: 14px; }
.hyc-home .build__cta svg { width: 16px; height: 16px; }
.hyc-home .build__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.hyc-home .build__monogram { position: absolute; top: 18px; right: 18px; width: 72px; height: 42px; pointer-events: none; opacity: .95; mix-blend-mode: screen; }
.hyc-home .build__monogram svg { width: 100%; height: 100%; }
@media (max-width: 1024px) { .hyc-home .builds { grid-template-columns: repeat(2,1fr); } .hyc-home .build--flagship, .hyc-home .build--mid, .hyc-home .build--small { grid-column: span 2; grid-row: auto; } }
@media (max-width: 640px) { .hyc-home .builds { grid-template-columns: 1fr; } .hyc-home .build--flagship, .hyc-home .build--mid, .hyc-home .build--small { grid-column: 1; } }

/* --- Brand marquee --- */
.hyc-home .brand-marquee { --gap: var(--s-9); position: relative; display: flex; overflow: hidden; gap: var(--gap); padding-block: 12px; mask-image: linear-gradient(90deg,transparent,black 8%,black 92%,transparent); }
.hyc-home .brand-marquee__track { display: flex; gap: var(--gap); animation: iter7Marquee 38s linear infinite; flex-shrink: 0; min-width: 100%; justify-content: space-around; align-items: center; }
.hyc-home .brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.hyc-home .brand-mark { height: 28px; width: auto; flex-shrink: 0; color: var(--muted); transition: color var(--d-mid),transform var(--d-mid); filter: grayscale(1); }
.hyc-home .brand-mark:hover { transform: translateY(-2px); filter: grayscale(0); }
.hyc-home .brand-mark[data-tint="red"]:hover { color: var(--red); }
.hyc-home .brand-mark[data-tint="green"]:hover { color: var(--green); }
.hyc-home .brand-mark[data-tint="blue"]:hover { color: var(--blue); }
.hyc-home .brand-mark[data-tint="orange"]:hover { color: var(--orange); }
.hyc-home .brand-mark[data-tint="ink"]:hover { color: var(--ink); }

/* --- Trust strip 4-cell (bespoke micro-treatments) --- */
.hyc-home .trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-4); overflow: hidden; }
.hyc-home .trust-strip__cell { background: var(--white); padding: var(--s-5); display: flex; align-items: flex-start; gap: var(--s-3); position: relative; overflow: hidden; }
.hyc-home .trust-strip__cell:nth-child(1) { background: var(--ink); color: var(--white); }
.hyc-home .trust-strip__cell:nth-child(1)::after { content: ''; position: absolute; inset: 0; background-image: var(--halftone-orange-on-ink); background-size: 8px 8px; mask-image: linear-gradient(135deg,black 0%,transparent 70%); opacity: .45; pointer-events: none; }
.hyc-home .trust-strip__num { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--orange); position: relative; z-index: 1; }
.hyc-home .trust-strip__num sup { font-size: .6em; color: var(--orange); font-weight: 500; }
.hyc-home .trust-strip__cell:nth-child(1) .trust-strip__num { color: var(--white); }
.hyc-home .trust-strip__lbl { font-size: .8rem; font-weight: 600; color: var(--muted); line-height: 1.3; max-width: 16ch; text-wrap: balance; position: relative; z-index: 1; }
.hyc-home .trust-strip__cell:nth-child(1) .trust-strip__lbl { color: rgba(255,255,255,.7); }
/* Cell-2: warm orange arc swirl (top-left) */
.hyc-home .trust-strip__cell:nth-child(2) .trust-strip__arc { position: absolute; inset: -20% auto auto -10%; width: 180%; aspect-ratio: 1; border-radius: 50%; border: 22px solid transparent; border-top-color: rgba(255,105,0,.14); border-right-color: rgba(255,105,0,.14); transform: rotate(-30deg); pointer-events: none; }
/* Cell-3: stylized VN silhouette map (bottom-right, orange tint) */
.hyc-home .trust-strip__cell:nth-child(3) .trust-strip__map { position: absolute; inset: auto -5% -8% auto; width: 110px; height: auto; opacity: .18; pointer-events: none; color: var(--orange); }
/* Cell-4: shield (bottom-right, blue tint) */
.hyc-home .trust-strip__cell:nth-child(4) .trust-strip__shield { position: absolute; inset: auto 8% -10% auto; width: 120px; height: auto; opacity: .14; pointer-events: none; color: var(--blue); }
@media (max-width: 768px) { .hyc-home .trust-strip { grid-template-columns: 1fr 1fr; } }

/* --- Editorial poster (Issue #14 magazine spread) --- */
.hyc-home .poster { margin-block: var(--s-9); display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(24px,4vw,64px); align-items: end; position: relative; }
.hyc-home .poster__kicker { font-family: var(--font-mono); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 12px; margin-bottom: var(--s-4); }
.hyc-home .poster__kicker::before, .hyc-home .poster__kicker::after { content: ''; width: 40px; height: 1.5px; background: var(--ink); }
.hyc-home .poster__head { font-size: clamp(2.6rem,1rem + 5.5vw,7rem); font-weight: 800; line-height: .92; letter-spacing: -.045em; color: var(--ink); max-width: 14ch; text-wrap: balance; }
.hyc-home .poster__visual { position: relative; aspect-ratio: 4/5; border-radius: var(--r-4); overflow: hidden; background: var(--grad-night); align-self: stretch; min-height: 360px; }
.hyc-home .poster__visual svg { width: 100%; height: 100%; display: block; }
.hyc-home .poster__visual::after { content: ''; position: absolute; inset: 0; background-image: var(--halftone-orange); background-size: 14px 14px; mask-image: linear-gradient(135deg,black 0%,transparent 70%); opacity: .55; pointer-events: none; }
.hyc-home .poster__captions { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1.5px solid var(--ink); }
.hyc-home .poster__caption { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-2); line-height: 1.5; }
.hyc-home .poster__caption b { display: block; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; font-size: .7rem; margin-bottom: 6px; }
.hyc-home .poster__caption span { font-family: var(--font-mono); color: var(--ink); font-weight: 700; }
@media (max-width: 1024px) { .hyc-home .poster { grid-template-columns: 1fr; } .hyc-home .poster__captions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .hyc-home .poster__captions { grid-template-columns: 1fr; } }

/* --- Editorial divider --- */
.hyc-home .divider-ed { display: block; width: 100%; max-width: var(--page); margin: clamp(40px,5vw,80px) auto; position: relative; padding-block: 8px; overflow: hidden; }
.hyc-home .divider-ed svg { display: block; width: 100%; height: auto; color: var(--ink); }
.hyc-home .divider-ed__caption { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--bg); padding: 0 14px; font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.hyc-home .divider-ed__caption::before, .hyc-home .divider-ed__caption::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.hyc-home .divider-ed--circuit svg .node-dot { fill: var(--orange); }
.hyc-home .divider-ed--circuit svg .line { stroke: var(--ink); stroke-width: 1; fill: none; }
.hyc-home .divider-ed--circuit svg .line-thin { stroke: var(--line-2); stroke-width: .75; fill: none; }

/* --- Monogram footer caption --- */
.hyc-home .footer-mono { display: flex; align-items: center; gap: 14px; margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); }
.hyc-home .footer-mono__glyph { width: 104px; height: 60px; flex-shrink: 0; color: rgba(255,255,255,.7); }
.hyc-home .footer-mono__caption { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; line-height: 1.5; }
.hyc-home .footer-mono__caption b { color: var(--orange); font-weight: 700; display: block; margin-bottom: 2px; }
.hyc-home .hyc-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- Iter-007 product card (additive — co-exists with .prod card on archive pages) --- */
.hyc-home .products { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--s-4); }
.hyc-home .products.cols-4 { grid-template-columns: repeat(4,1fr); }
.hyc-home .product { position: relative; background: var(--white); border-radius: var(--r-3); border: 1px solid var(--line); padding: 14px; display: flex; flex-direction: column; gap: 10px; transition: transform var(--d-mid) var(--ease-out),box-shadow var(--d-mid); }
.hyc-home .product:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--line-2); }
.hyc-home .product__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 1; }
.hyc-home .badge { font-family: var(--font-mono); font-size: .65rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; background: var(--ink); color: var(--white); text-transform: uppercase; }
.hyc-home .badge--sale { background: var(--red); }
.hyc-home .badge--new { background: var(--green); }
.hyc-home .badge--hot { background: var(--orange); }
.hyc-home .product__media { position: relative; aspect-ratio: 1; border-radius: var(--r-2); background: var(--bg-soft); display: grid; place-items: center; overflow: hidden; }
.hyc-home .product__media svg { width: 60%; height: 60%; }
.hyc-home .product__cat { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.hyc-home .product__title { font-size: .92rem; font-weight: 700; line-height: 1.35; letter-spacing: -.015em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.hyc-home .product__meta { display: flex; align-items: center; gap: var(--s-3); font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.hyc-home .product__meta .rating { color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }
.hyc-home .product__price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.hyc-home .product__price { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; color: var(--orange); }
.hyc-home .product__price-old { font-family: var(--font-mono); font-size: .78rem; color: var(--muted-2); text-decoration: line-through; }
.hyc-home .product__add { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border-radius: var(--r-pill); border: 1.5px solid var(--ink); font-size: .78rem; font-weight: 700; background: var(--white); color: var(--ink); transition: background var(--d-fast),color var(--d-fast); }
.hyc-home .product__add:hover { background: var(--ink); color: var(--white); }
.hyc-home .product__wishlist { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: var(--white); border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-2); }
@media (max-width: 1024px) { .hyc-home .products { grid-template-columns: repeat(3,1fr); } .hyc-home .products.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .hyc-home .products, .hyc-home .products.cols-4 { grid-template-columns: repeat(2,1fr); } }

/* --- Category tiles (replaces cat-quick from Demo 12) --- */
.hyc-home .cats { display: grid; grid-template-columns: repeat(6,1fr); gap: var(--s-3); }
.hyc-home .cat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-3); padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-3); transition: transform var(--d-mid) var(--ease-out),border-color var(--d-mid); position: relative; overflow: hidden; }
.hyc-home .cat:hover { transform: translateY(-4px); border-color: var(--orange); }
.hyc-home .cat__icon { width: 48px; height: 48px; background: var(--blue-soft); border-radius: var(--r-2); display: grid; place-items: center; color: var(--blue); transition: background var(--d-mid),color var(--d-mid); }
.hyc-home .cat:hover .cat__icon { background: var(--orange-soft); color: var(--orange); }
.hyc-home .cat__name { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.hyc-home .cat__count { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
@media (max-width: 1024px) { .hyc-home .cats { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .hyc-home .cats { grid-template-columns: repeat(2,1fr); } }
/* --- Button system (iter-007 base.css ported) --- */
.hyc-home .btn { --pad-y: 14px; --pad-x: 22px; display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2); padding: var(--pad-y) var(--pad-x); border-radius: var(--r-pill); font-weight: 700; font-size: var(--t-small); letter-spacing: .005em; white-space: nowrap; min-height: 44px; transition: transform var(--d-mid) var(--ease-out), box-shadow var(--d-mid) var(--ease-out), filter var(--d-mid) var(--ease-out); will-change: transform; border: 0; cursor: pointer; }
.hyc-home .btn:hover { transform: translateY(-2px); }
.hyc-home .btn:active { transform: translateY(0); }
.hyc-home .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.hyc-home .btn--primary { background: linear-gradient(95deg, #ff7a1a 0%, #ff4d2d 60%, #e02d3c 100%); color: var(--white); box-shadow: var(--sh-glow-orange); }
.hyc-home .btn--primary:hover { filter: brightness(1.04); box-shadow: 0 18px 38px -10px rgba(255,75,30,.55); }
.hyc-home .btn--ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.hyc-home .btn--ghost:hover { border-color: var(--ink); }
.hyc-home .btn--dark { background: var(--ink); color: var(--white); }
.hyc-home .btn--dark:hover { background: #1c2236; }
.hyc-home .btn--blue { background: var(--blue); color: var(--white); box-shadow: var(--sh-glow-blue); }
.hyc-home .btn--lg { --pad-y: 18px; --pad-x: 30px; font-size: 1rem; min-height: 56px; }
.hyc-home .btn--lg svg { width: 20px; height: 20px; }
.hyc-home .btn--sm { --pad-y: 9px; --pad-x: 16px; min-height: 36px; font-size: var(--t-micro); }
.hyc-home .btn--full { width: 100%; }

/* --- Link reset (GeneratePress applies underline to all anchors — override scoped to homepage) --- */
.hyc-home a { text-decoration: none; }
.hyc-home a:hover { text-decoration: none; }
.hyc-home .build__cta,
.hyc-home .product__add,
.hyc-home .section-link,
.hyc-home .cat,
.hyc-home .blog-card { text-decoration: none; }

/* --- Blog cards (Cẩm nang strip) — 3-col editorial grid --- */
.hyc-home .blog-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); }
.hyc-home .blog-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-4); overflow: hidden; border: 1px solid var(--line); transition: transform var(--d-mid),box-shadow var(--d-mid); }
.hyc-home .blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.hyc-home .blog-card__media { aspect-ratio: 16/10; background: var(--bg-soft); position: relative; display: grid; place-items: center; overflow: hidden; }
.hyc-home .blog-card__media svg { width: 100%; height: 100%; }
.hyc-home .blog-card__badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .06em; padding: 5px 10px; background: var(--white); border-radius: var(--r-pill); text-transform: uppercase; z-index: 1; }
.hyc-home .blog-card__body { padding: var(--s-4); flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hyc-home .blog-card__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; color: var(--ink); }
.hyc-home .blog-card__excerpt { font-size: .88rem; color: var(--muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hyc-home .blog-card__meta { margin-top: auto; font-family: var(--font-mono); font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--line); }
@media (max-width: 1024px) { .hyc-home .blog-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .hyc-home .blog-cards { grid-template-columns: 1fr; } }

/* --- Responsive breakpoints (ported from iter-007 responsive.css) --- */
@media (max-width: 1280px) {
  .hyc-home .products { grid-template-columns: repeat(4,1fr); }
  .hyc-home .cats { grid-template-columns: repeat(4,1fr); }
  .hyc-home .builds { grid-template-columns: repeat(4,1fr); }
  .hyc-home .build--flagship { grid-column: span 4; grid-row: span 1; }
  .hyc-home .build--mid,
  .hyc-home .build--small { grid-column: span 2; }
  .hyc-home .configurator__rows { grid-template-columns: 1fr 1fr; }
  .hyc-home .poster { grid-template-columns: 1fr; }
  .hyc-home .poster__visual { aspect-ratio: 16/9; min-height: 280px; }
}
@media (max-width: 768px) {
  .hyc-home .products { grid-template-columns: repeat(2,1fr); }
  .hyc-home .cats { grid-template-columns: repeat(3,1fr); }
  .hyc-home .builds { grid-template-columns: repeat(2,1fr); }
  .hyc-home .build--flagship,
  .hyc-home .build--mid,
  .hyc-home .build--small { grid-column: span 2; grid-row: auto; }
  .hyc-home .trust-strip { grid-template-columns: repeat(2,1fr); }
  .hyc-home .blog-cards { grid-template-columns: 1fr; }
  .hyc-home .configurator__rows { grid-template-columns: 1fr; }
  .hyc-home .poster__head { font-size: clamp(2.4rem,1rem + 5vw,4rem); }
  .hyc-home .poster__captions { grid-template-columns: 1fr; }
  .hyc-home .brand-mark { height: 22px; }
  .hyc-home .flash__head { flex-direction: column; align-items: flex-start; }
  .hyc-home .hero-c__caption h1 { font-size: clamp(1.5rem,1rem + 1.5vw,2.5rem); }
}
@media (max-width: 480px) {
  .hyc-home .countdown__cell { min-width: 50px; padding: 8px 10px; }
  .hyc-home .countdown__num { font-size: 1.2rem; }
  .hyc-home .hero-c__price-card { min-width: 0; }
  .hyc-home .divider-ed { padding-block: 6px; }
  .hyc-home .divider-ed__caption { background: var(--bg); padding: 0 8px; }
  .hyc-home .cats { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-home .brand-marquee__track { animation: none; }
}

/* --- Spacing audit: tighten trust → marquee transition --- */
.hyc-home .divider-ed { margin: clamp(24px,3vw,48px) auto; }

/* ===================================================================
   END ITER-007 FOUNDATION
   =================================================================== */
/* ===================================================================
   GAN single-product iter-002 patch
   Address EVAL.md iter-001 H1-H4 + M1-M3
   All selectors scoped under body.single-product (or .hyc-pdp)
   =================================================================== */

/* H1 — Hide "ISSUE #N" + "P. NN" magazine-cover treatment.
   Customer mua máy tính KHÔNG cần thấy page/issue number.
   Keep only SKU + stock status with clean styling. */
body.single-product .hyc-pdp .hyc-pdp-masthead__issue,
body.single-product .hyc-pdp .hyc-pdp-masthead__pagemark {
  display: none !important;
}
body.single-product .hyc-pdp .hyc-pdp-masthead {
  border-top: none;
  border-bottom: 1px solid #e5e8ee;
  padding: 6px 0;
  margin-bottom: 14px;
  font-size: .7rem;
}
body.single-product .hyc-pdp .hyc-pdp-masthead__sku::before {
  content: '';
  margin-right: 0;
}
body.single-product .hyc-pdp .hyc-pdp-masthead__sku {
  color: #5b6478;
  letter-spacing: .12em;
}
body.single-product .hyc-pdp .hyc-pdp-masthead__stock {
  margin-left: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.single-product .hyc-pdp .hyc-pdp-masthead__stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* H2 — Fix related products grid layout (cards overlap).
   Force flex column + image sizing override. */
body.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch;
}
@media (max-width: 1024px) {
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 700px) {
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
body.single-product .related.products ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 14px !important;
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 16px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  list-style: none !important;
  position: relative;
  overflow: hidden;
}
body.single-product .related.products ul.products li.product::before,
body.single-product .related.products ul.products li.product::after {
  display: none !important;
  content: none !important;
}
body.single-product .related.products ul.products li.product > a {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  text-decoration: none !important;
  flex: 1;
}
body.single-product .related.products ul.products li.product img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  margin: 0 !important;
  background: #f7f8fa;
  display: block !important;
  max-width: 100% !important;
}
body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0a0e1f !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.single-product .related.products ul.products li.product .price {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ff6900 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
body.single-product .related.products ul.products li.product .button {
  margin-top: auto !important;
  align-self: stretch;
  background: #0a0e1f !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: 'Manrope', sans-serif !important;
  text-align: center;
  display: block !important;
  transition: background .2s ease;
}
body.single-product .related.products ul.products li.product .button:hover {
  background: #0071e3 !important;
  transform: none !important;
}
body.single-product .related.products ul.products li.product:hover {
  border-color: #0071e3;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(10, 14, 31, .14);
}

/* H3 — Neutralize "number theater" subscript artifacts on trust row.
   Demo 13 home hero CSS leaks "36 + tháng" → "36ᵗ" pattern.
   Rewrite trust row with clean stacked numbers. */
body.single-product .hyc-trust-row,
body.single-product .hyc-pdp .hyc-trust-row,
body.single-product .hyc-pdp-trust,
body.single-product .hyc-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 28px 0 !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  body.single-product .hyc-trust-row,
  body.single-product .hyc-pdp-trust,
  body.single-product .hyc-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
body.single-product .hyc-trust-row > *,
body.single-product .hyc-pdp-trust > *,
body.single-product .hyc-stats-grid > * {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 14px;
  padding: 18px 16px !important;
  text-align: left;
  display: flex !important;
  flex-direction: column;
  gap: 4px;
}
/* Kill superscript / subscript artifact in trust-row numbers */
body.single-product .hyc-trust-row sup,
body.single-product .hyc-trust-row sub,
body.single-product .hyc-pdp-trust sup,
body.single-product .hyc-pdp-trust sub,
body.single-product .hyc-stats-grid sup,
body.single-product .hyc-stats-grid sub {
  font-size: inherit !important;
  vertical-align: baseline !important;
  position: static !important;
  top: auto !important;
  font-weight: inherit !important;
  color: inherit !important;
  margin: 0 0 0 4px !important;
  letter-spacing: -.02em;
}
body.single-product .hyc-trust-row .hyc-num,
body.single-product .hyc-pdp-trust .hyc-num,
body.single-product .hyc-stats-grid .hyc-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ff6900 !important;
  letter-spacing: -.02em;
  line-height: 1;
}
body.single-product .hyc-trust-row .hyc-label,
body.single-product .hyc-pdp-trust .hyc-label,
body.single-product .hyc-stats-grid .hyc-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5b6478;
  line-height: 1.4;
  letter-spacing: -.005em;
}

/* H4 — Disable drop-cap on short commerce descriptions.
   Drop-cap only makes sense for editorial paragraphs >300ch.
   For product description blurb, kill it. */
body.single-product .hyc-pdp p::first-letter,
body.single-product .hyc-pdp .entry-summary p::first-letter,
body.single-product .hyc-pdp-blurb::first-letter,
body.single-product .woocommerce-product-details__short-description p::first-letter {
  initial-letter: 1 !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
}
body.single-product .hyc-pdp .hyc-pdp-blurb,
body.single-product .woocommerce-product-details__short-description {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #2a3045 !important;
  letter-spacing: -.005em !important;
  border-left: 3px solid #ff6900;
  background: linear-gradient(135deg, rgba(255, 105, 0, .04) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 14px 18px !important;
  border-radius: 0 12px 12px 0;
  margin: 0 0 20px !important;
}

/* M1 — Pull-quote testimonial: smaller, integrated, less dominant */
body.single-product .hyc-pdp .hyc-pdp-pullquote {
  margin: 16px 0 !important;
  padding: 18px 22px 16px 48px !important;
  background: #fbfbfd;
  border-left: 2px solid #c89b3c;
  border-radius: 0 12px 12px 0;
}
body.single-product .hyc-pdp .hyc-pdp-pullquote__mark {
  font-size: 3rem !important;
  top: 6px !important;
  left: 14px !important;
  color: #c89b3c !important;
  opacity: .35 !important;
}
body.single-product .hyc-pdp .hyc-pdp-pullquote__body {
  font-family: 'Manrope', sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: #2a3045 !important;
  letter-spacing: -.005em !important;
  margin: 0 0 6px !important;
}
body.single-product .hyc-pdp .hyc-pdp-pullquote__cite {
  font-size: .68rem !important;
  letter-spacing: .1em !important;
  color: #8a92a6 !important;
}

/* M2 — SKU/Category/Brand meta row: convert to inline pill tags */
body.single-product .product_meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: none !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
}
body.single-product .product_meta > span,
body.single-product .product_meta .sku_wrapper,
body.single-product .product_meta .posted_in,
body.single-product .product_meta .tagged_as {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 5px 10px !important;
  background: #f0f2f6;
  border-radius: 999px;
  color: #5b6478 !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
body.single-product .product_meta a {
  color: #0071e3 !important;
  text-decoration: none !important;
  font-weight: 700;
}
body.single-product .product_meta a:hover {
  text-decoration: underline !important;
}
body.single-product .product_meta .sku {
  color: #0a0e1f !important;
  font-weight: 700;
}

/* M3 — Gallery skeleton placeholder when image not yet loaded */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  min-height: 320px;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%);
  border-radius: 16px;
}
body.single-product .woocommerce-product-gallery__image img {
  border-radius: 14px;
  transition: transform .35s ease;
}
body.single-product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.015);
}

/* L1 — Add subtle trust-row inline icons below add-to-cart */
body.single-product .single_add_to_cart_button {
  font-family: 'Manrope', sans-serif !important;
  letter-spacing: .01em;
  font-weight: 700;
}

/* L2 — Polish tabs */
body.single-product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #e5e8ee !important;
  padding: 0 !important;
  margin: 32px 0 24px !important;
  display: flex;
  gap: 4px;
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after {
  display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
}
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
  padding: 12px 18px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #5b6478 !important;
  text-decoration: none !important;
  display: block;
  position: relative;
  transition: color .2s ease;
}
body.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #0a0e1f !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #0a0e1f !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #ff6900;
  border-radius: 2px 2px 0 0;
}

/* L3 — Hide raw model code text in description */
body.single-product .woocommerce-Tabs-panel--description p:first-of-type {
  word-break: break-word;
  line-height: 1.6;
}

/* L4 — Breadcrumb refinement */
body.single-product .woocommerce-breadcrumb {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  color: #8a92a6 !important;
  padding: 14px 24px !important;
  margin: 0 !important;
}
body.single-product .woocommerce-breadcrumb a {
  color: #5b6478 !important;
  text-decoration: none !important;
  transition: color .2s ease;
}
body.single-product .woocommerce-breadcrumb a:hover {
  color: #0071e3 !important;
}

/* Misc: spacing rhythm */
body.single-product .summary.entry-summary > * + * {
  margin-top: 14px;
}
body.single-product .price {
  font-family: 'Manrope', sans-serif !important;
}

/* End iter-002 patch */
/* ===================================================================
   GAN single-product iter-003 patch
   Bug fix iter-002: .hyc-pdp is on BODY (alongside .single-product),
   not on inner element. Drop ".hyc-pdp " parent selector and target
   classes directly.
   =================================================================== */

/* H1 — Hide ISSUE/PAGEMARK (selector fixed: no .hyc-pdp parent) */
body.single-product .hyc-pdp-masthead__issue,
body.single-product .hyc-pdp-masthead__pagemark {
  display: none !important;
}

/* Refine masthead row to clean SKU + Stock only */
body.single-product .hyc-pdp-masthead {
  border-top: none !important;
  border-bottom: 1px solid #e5e8ee !important;
  padding: 8px 0 !important;
  margin-bottom: 14px !important;
  font-size: .7rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
body.single-product .hyc-pdp-masthead__sku::before {
  content: none !important;
  margin-right: 0 !important;
}
body.single-product .hyc-pdp-masthead__sku {
  color: #5b6478 !important;
  letter-spacing: .14em !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-weight: 700 !important;
}
body.single-product .hyc-pdp-masthead__stock {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  letter-spacing: .14em !important;
  font-weight: 700 !important;
}
body.single-product .hyc-pdp-masthead__stock.is-in {
  color: #00875a !important;
}
body.single-product .hyc-pdp-masthead__stock.is-out {
  color: #e02d3c !important;
}

/* H3 — Trust row reset + clean numeric typography
   Target the actual class .hyc-pdp-trust + __num + __lbl + __cell */
body.single-product .hyc-pdp-trust {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 28px 0 !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  body.single-product .hyc-pdp-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
body.single-product .hyc-pdp-trust__cell {
  background: #fff !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 14px !important;
  padding: 18px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  text-align: left !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.single-product .hyc-pdp-trust__cell:hover {
  border-color: #ff6900 !important;
  box-shadow: 0 12px 24px -10px rgba(255, 105, 0, .15) !important;
}
body.single-product .hyc-pdp-trust__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #ff6900 !important;
  letter-spacing: -.02em !important;
  line-height: 1 !important;
}
body.single-product .hyc-pdp-trust__num sub,
body.single-product .hyc-pdp-trust__num sup {
  font-size: inherit !important;
  vertical-align: baseline !important;
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  margin-left: 2px !important;
  font-weight: inherit !important;
  color: inherit !important;
  letter-spacing: -.02em !important;
}
body.single-product .hyc-pdp-trust__lbl {
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #5b6478 !important;
  line-height: 1.4 !important;
  letter-spacing: -.005em !important;
}

/* H4 — Drop-cap disable (selector fix: no .hyc-pdp parent) */
body.single-product p::first-letter,
body.single-product .entry-summary p::first-letter,
body.single-product .hyc-pdp-blurb::first-letter,
body.single-product .woocommerce-product-details__short-description p::first-letter {
  initial-letter: 1 !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
  -webkit-initial-letter: 1 !important;
}

/* M1 — Pull-quote refinement (selector fix) */
body.single-product .hyc-pdp-pullquote {
  margin: 16px 0 !important;
  padding: 18px 22px 16px 48px !important;
  background: #fbfbfd !important;
  border-left: 2px solid #c89b3c !important;
  border-radius: 0 12px 12px 0 !important;
}
body.single-product .hyc-pdp-pullquote__mark {
  font-size: 3rem !important;
  top: 6px !important;
  left: 14px !important;
  color: #c89b3c !important;
  opacity: .35 !important;
}
body.single-product .hyc-pdp-pullquote__body {
  font-family: 'Manrope', sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: #2a3045 !important;
  letter-spacing: -.005em !important;
  margin: 0 0 6px !important;
}
body.single-product .hyc-pdp-pullquote__cite {
  font-size: .68rem !important;
  letter-spacing: .1em !important;
  color: #8a92a6 !important;
}

/* Polish — refine the "blurb" intro paragraph (was drop-cap'd before) */
body.single-product .hyc-pdp-blurb,
body.single-product .woocommerce-product-details__short-description {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #2a3045 !important;
  letter-spacing: -.005em !important;
  border-left: 3px solid #0071e3 !important;
  background: linear-gradient(135deg, rgba(0, 113, 227, .04) 0%, rgba(255, 255, 255, 0) 100%) !important;
  padding: 14px 18px !important;
  border-radius: 0 12px 12px 0 !important;
  margin: 0 0 20px !important;
}

/* Specs strip (hyc-pdp-specs) — keep but refine */
body.single-product .hyc-pdp-specs {
  border-top: 1px dashed #d3d8e2 !important;
  border-bottom: 1px dashed #d3d8e2 !important;
  padding: 14px 0 !important;
  margin: 14px 0 20px !important;
  gap: 10px !important;
}
body.single-product .hyc-pdp-specs__lbl {
  font-size: .65rem !important;
  letter-spacing: .2em !important;
  color: #ff6900 !important;
  font-weight: 800 !important;
}
body.single-product .hyc-pdp-specs__chip {
  background: #f0f2f6 !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
}
body.single-product .hyc-pdp-specs__chip-lbl {
  font-size: .58rem !important;
  letter-spacing: .14em !important;
  color: #8a92a6 !important;
  font-weight: 800 !important;
}
body.single-product .hyc-pdp-specs__chip-v {
  font-size: .82rem !important;
  color: #0a0e1f !important;
  font-weight: 700 !important;
}

/* End iter-003 patch */
/* ===================================================================
   GAN single-product iter-004 patch
   Fix UPSELLS section grid (.up-sells.upsells.products) which iter-002
   missed. Generalize to all .products.columns-X lists inside
   body.single-product.
   =================================================================== */

/* Generic — any .products.columns-* list inside single-product gets
   the unified grid treatment. Covers related, upsells, cross-sells. */
body.single-product .related.products > ul.products,
body.single-product .upsells.products > ul.products,
body.single-product .up-sells.products > ul.products,
body.single-product .cross-sells.products > ul.products,
body.single-product ul.products.columns-4,
body.single-product ul.products.columns-3,
body.single-product ul.products.columns-2 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
@media (max-width: 1024px) {
  body.single-product .related.products > ul.products,
  body.single-product .upsells.products > ul.products,
  body.single-product .up-sells.products > ul.products,
  body.single-product ul.products.columns-4,
  body.single-product ul.products.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 700px) {
  body.single-product .related.products > ul.products,
  body.single-product .upsells.products > ul.products,
  body.single-product .up-sells.products > ul.products,
  body.single-product ul.products.columns-4,
  body.single-product ul.products.columns-3,
  body.single-product ul.products.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Section wrappers */
body.single-product .upsells.products,
body.single-product .up-sells.products,
body.single-product .cross-sells.products {
  margin: 48px 24px !important;
  padding-top: 32px !important;
  border-top: 1px solid #e5e8ee !important;
  width: auto !important;
  float: none !important;
  clear: both !important;
}
body.single-product .upsells.products > h2,
body.single-product .up-sells.products > h2,
body.single-product .cross-sells.products > h2 {
  font-family: 'Manrope', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  color: #0a0e1f !important;
  margin: 0 0 24px !important;
}

/* Cards — generic for ALL product lists in single-product */
body.single-product .upsells.products li.product,
body.single-product .up-sells.products li.product,
body.single-product .cross-sells.products li.product,
body.single-product .related.products li.product {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 14px !important;
  background: #fff !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 16px !important;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease !important;
  list-style: none !important;
  position: relative !important;
  overflow: hidden !important;
  float: none !important;
  clear: none !important;
}
body.single-product .upsells.products li.product::before,
body.single-product .upsells.products li.product::after,
body.single-product .up-sells.products li.product::before,
body.single-product .up-sells.products li.product::after,
body.single-product .cross-sells.products li.product::before,
body.single-product .cross-sells.products li.product::after,
body.single-product .related.products li.product::before,
body.single-product .related.products li.product::after {
  display: none !important;
  content: none !important;
}
body.single-product .upsells.products li.product > a,
body.single-product .up-sells.products li.product > a,
body.single-product .cross-sells.products li.product > a,
body.single-product .related.products li.product > a {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex: 1 !important;
  width: 100% !important;
}
body.single-product .upsells.products li.product img,
body.single-product .up-sells.products li.product img,
body.single-product .cross-sells.products li.product img,
body.single-product .related.products li.product img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  margin: 0 !important;
  background: #f7f8fa !important;
  display: block !important;
  position: static !important;
  float: none !important;
}
body.single-product .upsells.products li.product .woocommerce-loop-product__title,
body.single-product .up-sells.products li.product .woocommerce-loop-product__title,
body.single-product .cross-sells.products li.product .woocommerce-loop-product__title,
body.single-product .related.products li.product .woocommerce-loop-product__title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0a0e1f !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
  min-height: 36px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
}
body.single-product .upsells.products li.product .price,
body.single-product .up-sells.products li.product .price,
body.single-product .cross-sells.products li.product .price,
body.single-product .related.products li.product .price {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ff6900 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: static !important;
  text-align: left !important;
}
body.single-product .upsells.products li.product .button,
body.single-product .up-sells.products li.product .button,
body.single-product .cross-sells.products li.product .button,
body.single-product .related.products li.product .button {
  margin-top: auto !important;
  align-self: stretch !important;
  background: #0a0e1f !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: 'Manrope', sans-serif !important;
  text-align: center !important;
  display: block !important;
  transition: background .2s ease !important;
  width: auto !important;
  max-width: 100% !important;
}
body.single-product .upsells.products li.product .button:hover,
body.single-product .up-sells.products li.product .button:hover,
body.single-product .cross-sells.products li.product .button:hover,
body.single-product .related.products li.product .button:hover {
  background: #0071e3 !important;
  transform: none !important;
}
body.single-product .upsells.products li.product:hover,
body.single-product .up-sells.products li.product:hover,
body.single-product .cross-sells.products li.product:hover,
body.single-product .related.products li.product:hover {
  border-color: #0071e3 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 36px -12px rgba(10, 14, 31, .14) !important;
}

/* Fix: prevent .summary or any sibling from creating layout conflict
   with upsells when WC sometimes puts upsells inside the .product wrapper */
body.single-product .product .upsells.products,
body.single-product .product .up-sells.products {
  width: calc(100% - 48px) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  clear: both !important;
}

/* Make sure related/upsell H2 has divider above for visual rhythm */
body.single-product .related.products,
body.single-product .upsells.products,
body.single-product .up-sells.products {
  margin-top: 56px !important;
}

/* Subtle SPEC pill polish */
body.single-product .hyc-pdp-specs__lbl::before {
  background: #ff6900 !important;
}

/* End iter-004 patch */
/* ===================================================================
   GAN single-product iter-005 patch — final cleanup
   Bug iter-004: .product > a selector matched BOTH LoopProduct-link
   AND button (both are direct children). Both got flex:1 → button
   stretched, title/price hidden inside link wrapper.
   Fix: target each <a> explicitly, simpler block layout.
   =================================================================== */

/* Reset overly aggressive flex from iter-004 */
body.single-product .related.products li.product > a,
body.single-product .upsells.products li.product > a,
body.single-product .up-sells.products li.product > a,
body.single-product .cross-sells.products li.product > a {
  display: block !important;
  flex: 0 0 auto !important;
  gap: 0 !important;
}

/* Main product link wrapper (image + title + price stack) */
body.single-product .related.products li.product a.woocommerce-LoopProduct-link,
body.single-product .upsells.products li.product a.woocommerce-LoopProduct-link,
body.single-product .up-sells.products li.product a.woocommerce-LoopProduct-link,
body.single-product .cross-sells.products li.product a.woocommerce-LoopProduct-link {
  display: block !important;
  flex: 1 1 auto !important;
  text-decoration: none !important;
  margin-bottom: 12px !important;
}

/* Image inside link */
body.single-product .related.products li.product a.woocommerce-LoopProduct-link img,
body.single-product .upsells.products li.product a.woocommerce-LoopProduct-link img,
body.single-product .up-sells.products li.product a.woocommerce-LoopProduct-link img,
body.single-product .cross-sells.products li.product a.woocommerce-LoopProduct-link img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  background: #f7f8fa !important;
  margin: 0 0 12px !important;
  max-width: 100% !important;
}

/* Title — block with line-clamp via -webkit-box display */
body.single-product .related.products li.product .woocommerce-loop-product__title,
body.single-product .upsells.products li.product .woocommerce-loop-product__title,
body.single-product .up-sells.products li.product .woocommerce-loop-product__title,
body.single-product .cross-sells.products li.product .woocommerce-loop-product__title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0a0e1f !important;
  line-height: 1.45 !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  min-height: 36px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: -.005em !important;
}

/* Price */
body.single-product .related.products li.product .price,
body.single-product .upsells.products li.product .price,
body.single-product .up-sells.products li.product .price,
body.single-product .cross-sells.products li.product .price {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ff6900 !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  display: block !important;
  text-align: left !important;
}

/* Add-to-cart button — separate from link wrapper */
body.single-product .related.products li.product a.button,
body.single-product .upsells.products li.product a.button,
body.single-product .up-sells.products li.product a.button,
body.single-product .cross-sells.products li.product a.button {
  display: block !important;
  width: 100% !important;
  flex: 0 0 auto !important;
  margin: auto 0 0 !important;
  align-self: stretch !important;
  background: #0a0e1f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: 'Manrope', sans-serif !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: -.005em !important;
  transition: background .2s ease !important;
  box-shadow: none !important;
}
body.single-product .related.products li.product a.button:hover,
body.single-product .upsells.products li.product a.button:hover,
body.single-product .up-sells.products li.product a.button:hover,
body.single-product .cross-sells.products li.product a.button:hover {
  background: #0071e3 !important;
  transform: none !important;
  color: #fff !important;
}

/* Card containers — keep flex column for proper stacking */
body.single-product .related.products li.product,
body.single-product .upsells.products li.product,
body.single-product .up-sells.products li.product,
body.single-product .cross-sells.products li.product {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* End iter-005 patch */
/* ===================================================================
   GAN single-product iter-006 patch — fill the empty space
   Address user feedback: layout quá trống/sparse trên wide viewport.
   =================================================================== */

/* Container max-width — kéo product detail vào trung tâm, không stretch full 1440px */
body.single-product div.product {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 36px 36px !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 56px !important;
}

/* Gallery — force image to fill container, aspect-ratio cố định, no awkward whitespace */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
body.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 24px !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Summary — limit content max-width so text không dài quá đọc khó, content compact */
body.single-product .summary.entry-summary {
  max-width: 100% !important;
  gap: 14px;
}

/* Product title — đảm bảo text-wrap balance + tighter line-height */
body.single-product .summary .product_title,
body.single-product .summary h1.product_title {
  text-wrap: balance !important;
  line-height: 1.15 !important;
  margin: 8px 0 !important;
}

/* TRUST ROW: Bigger numbers + icons + better padding to fill cards */
body.single-product .hyc-pdp-trust {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 32px auto !important;
  max-width: 1240px !important;
  padding: 0 24px !important;
}
@media (max-width: 700px) {
  body.single-product .hyc-pdp-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
body.single-product .hyc-pdp-trust__cell {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 16px !important;
  padding: 24px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  text-align: left !important;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
body.single-product .hyc-pdp-trust__cell::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 80px !important;
  height: 80px !important;
  background: radial-gradient(circle at top right, rgba(255, 105, 0, .08) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
body.single-product .hyc-pdp-trust__cell:hover {
  border-color: #ff6900 !important;
  box-shadow: 0 16px 32px -14px rgba(255, 105, 0, .25) !important;
  transform: translateY(-2px) !important;
}
body.single-product .hyc-pdp-trust__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  color: #ff6900 !important;
  letter-spacing: -.03em !important;
  line-height: 1 !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}
body.single-product .hyc-pdp-trust__num sub,
body.single-product .hyc-pdp-trust__num sup {
  font-size: .55em !important;
  vertical-align: baseline !important;
  position: static !important;
  margin-left: 3px !important;
  font-weight: 700 !important;
  color: #ff6900 !important;
  opacity: .7 !important;
  text-transform: lowercase !important;
}
body.single-product .hyc-pdp-trust__lbl {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2a3045 !important;
  line-height: 1.4 !important;
  letter-spacing: -.005em !important;
  margin-top: 4px !important;
}
body.single-product .hyc-pdp-trust__lbl br {
  display: inline !important;
  content: ' ' !important;
}
body.single-product .hyc-pdp-trust__lbl br::after {
  content: ' ' !important;
}

/* RELATED + UPSELL grids — auto-fit collapses empty tracks
   (auto-fill created phantom 5th column when 4 cards rendered at ~1192px wide
   container → empty column on left/right edge). auto-fit always uses card count. */
body.single-product .related.products > ul.products,
body.single-product .upsells.products > ul.products,
body.single-product .up-sells.products > ul.products,
body.single-product .cross-sells.products > ul.products,
body.single-product ul.products.columns-4,
body.single-product ul.products.columns-3,
body.single-product ul.products.columns-2 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  justify-content: start !important;
}
/* WC default ::before/::after clearfix becomes grid items in grid container,
   pushing first card to track 2 → empty track 1 on left. Remove them. */
body.single-product .related.products > ul.products::before,
body.single-product .related.products > ul.products::after,
body.single-product .upsells.products > ul.products::before,
body.single-product .upsells.products > ul.products::after,
body.single-product .up-sells.products > ul.products::before,
body.single-product .up-sells.products > ul.products::after,
body.single-product .cross-sells.products > ul.products::before,
body.single-product .cross-sells.products > ul.products::after,
body.single-product ul.products.columns-4::before,
body.single-product ul.products.columns-4::after,
body.single-product ul.products.columns-3::before,
body.single-product ul.products.columns-3::after,
body.single-product ul.products.columns-2::before,
body.single-product ul.products.columns-2::after {
  content: none !important;
  display: none !important;
}

/* Constrain related/upsell sections to same container width */
body.single-product .related.products,
body.single-product .upsells.products,
body.single-product .up-sells.products,
body.single-product .cross-sells.products {
  max-width: 1240px !important;
  margin: 56px auto !important;
  padding: 32px 24px !important;
  border-top: 1px solid #e5e8ee !important;
}

/* Description blurb — make it richer with inline checks */
body.single-product .hyc-pdp-blurb,
body.single-product .woocommerce-product-details__short-description {
  display: block !important;
  border-left: 3px solid #00875a !important;
  background: linear-gradient(135deg, rgba(0, 135, 90, .05) 0%, rgba(255, 255, 255, 0) 70%) !important;
  padding: 16px 18px !important;
  border-radius: 0 12px 12px 0 !important;
  margin: 0 0 18px !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #2a3045 !important;
  position: relative !important;
}
body.single-product .hyc-pdp-blurb::before,
body.single-product .woocommerce-product-details__short-description::before {
  content: '✓ Chính hãng · Bảo hành tại showroom · Trả góp 0%' !important;
  display: block !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  color: #00875a !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
}

/* ADD-TO-CART row: compact horizontal, qty + button cùng row, không gap thừa */
body.single-product form.cart {
  display: flex !important;
  align-items: stretch !important;
  gap: 12px !important;
  margin: 18px 0 !important;
}
body.single-product form.cart .quantity {
  flex: 0 0 90px !important;
  margin: 0 !important;
}
body.single-product form.cart .quantity input.qty {
  width: 100% !important;
  height: 100% !important;
  min-height: 56px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border: 1.5px solid #e5e8ee !important;
  border-radius: 12px !important;
  text-align: center !important;
  color: #0a0e1f !important;
  background: #fff !important;
}
body.single-product form.cart .single_add_to_cart_button {
  flex: 1 1 auto !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 28px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  border-radius: 12px !important;
  text-transform: none !important;
  box-shadow: 0 8px 20px -8px rgba(224, 45, 60, .4) !important;
  transition: transform .15s ease, box-shadow .25s ease !important;
}
body.single-product form.cart .single_add_to_cart_button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px -8px rgba(224, 45, 60, .55) !important;
}

/* Trust mini-row UNDER add-to-cart — payment/warranty inline icons */
body.single-product form.cart::after {
  content: '🚚 Giao toàn quốc 1-3 ngày  ·  💳 VNPay / COD / Trả góp 0%  ·  🛡 Bảo hành 12-36 tháng' !important;
  display: block !important;
  grid-column: 1 / -1 !important;
  margin-top: 14px !important;
  padding: 12px 16px !important;
  background: #f7f8fa !important;
  border-radius: 10px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #5b6478 !important;
  text-align: center !important;
  letter-spacing: -.005em !important;
  width: 100% !important;
  flex-basis: 100% !important;
  order: 99 !important;
}
body.single-product form.cart {
  flex-wrap: wrap !important;
}

/* Price block — bigger, better alignment */
body.single-product .summary .price {
  font-size: clamp(28px, 3.2vw, 40px) !important;
  font-weight: 800 !important;
  color: #e02d3c !important;
  line-height: 1 !important;
  margin: 8px 0 4px !important;
  letter-spacing: -.02em !important;
  font-family: 'Manrope', sans-serif !important;
}

/* Stock badge — better visual */
body.single-product .hyc-pdp-stockbadge,
body.single-product .stock {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  background: linear-gradient(135deg, rgba(0, 135, 90, .12), rgba(0, 135, 90, .06)) !important;
  border: 1px solid rgba(0, 135, 90, .25) !important;
  border-radius: 99px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #00875a !important;
  margin: 4px 0 !important;
  letter-spacing: -.005em !important;
}

/* Container background — soft brand tint instead of pure white */
body.single-product .site-content {
  background: linear-gradient(180deg, #fafbfd 0%, #ffffff 240px) !important;
}

/* End iter-006 patch */
/* ===================================================================
   GAN single-product iter-007 patch — fill left column under gallery
   Issue: Gallery col bị aspect-ratio 4:3 limit nên ngắn, summary col
   dài hơn → khoảng trắng dưới gallery to.
   Fix: Inject "Cam kết HYC" feature block via ::after pseudo dưới
   gallery + adjust grid to align-start. Also remove aspect ratio cap.
   =================================================================== */

/* Remove rigid aspect-ratio, let gallery breathe naturally */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  aspect-ratio: auto !important;
  min-height: 380px !important;
  max-height: 560px !important;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 560px !important;
  object-fit: contain !important;
  padding: 28px !important;
}

/* Gallery wrapper now flex column → image + feature card stack */
body.single-product .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

/* Feature card under gallery — "Cam kết HYC" với 4 promise rows */
body.single-product .woocommerce-product-gallery::after {
  content: '' !important;
  display: block !important;
  position: relative !important;
  padding: 24px 22px !important;
  background: linear-gradient(135deg, #fff 0%, #fafbfd 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 16px !important;
  min-height: 220px !important;
  /* Use background-image to draw the feature list since pseudo can't have multiple elements */
  background-image:
    linear-gradient(135deg, rgba(255, 105, 0, .04) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}

/* Use a real injected element via theme/hook would be ideal, but we'll
   build a "feature block" via creative use of multiple selectors on
   existing PHP-injected hyc-pdp-* elements. Move hyc-pdp-trust UP under
   gallery instead of after add-to-cart. Override its grid layout when
   inside .product (left column). */

/* OPTION B (cleaner): use grid-template-rows tricks + inject content via
   CSS counter or generated content. But honest path: use the
   already-rendered hyc-pdp-trust block but move it to span below gallery
   via grid placement. */

/* If hyc-pdp-trust is a direct child of body.single-product
   (rendered after add_to_cart), we can't grid-place it. So instead,
   let's CONSTRAIN the gallery min-height + max-height to match average
   summary heights. */

/* Adjust: Gallery col flex column stretch to summary height with
   align-items: stretch on grid (default) — but image won't stretch.
   Use a CSS spacer block via .woocommerce-product-gallery flex-grow.
   Already done via flex-direction: column above. */
body.single-product .woocommerce-product-gallery {
  align-self: stretch !important;
}

/* Build a "Quick Promise" mini-row UNDER the gallery image using a
   gradient text overlay block */

/* Actually the cleanest approach: stretch gallery to match summary
   via grid align-items: stretch + a flex-grow spacer inside gallery */
body.single-product div.product {
  align-items: stretch !important;
}

/* Make a gradient "guarantee" footer band attached to bottom of gallery col */
body.single-product .woocommerce-product-gallery::before {
  content: 'CHÍNH HÃNG ✓  ·  BẢO HÀNH TẠI SHOWROOM ✓  ·  TRẢ GÓP 0% ✓  ·  GIAO TOÀN QUỐC ✓' !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  padding: 20px 16px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 16px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-align: center !important;
  line-height: 1.6 !important;
  order: 99 !important;
  margin-top: auto !important;
  /* This block goes LAST in gallery flex column */
}

/* Move ::after content to actually render — but ::after on display:flex
   parent goes inside as a flex item, so reposition */
body.single-product .woocommerce-product-gallery::after {
  order: 100 !important;
  margin: 0 !important;
  padding: 22px 20px !important;
  background: linear-gradient(135deg, #fff 0%, #fafbfd 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 16px !important;
  display: block !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2a3045 !important;
  content: '📦 Còn hàng tại showroom Hưng Yên — sẵn sàng giao trong 1-2 ngày  ·  📞 Hotline tư vấn 0967.858.319 (8h-22h hằng ngày)  ·  💬 Zalo/Facebook 24/7' !important;
  line-height: 1.7 !important;
  min-height: auto !important;
}

/* Make sure the gallery image keeps reasonable height */
body.single-product .woocommerce-product-gallery__wrapper {
  flex: 0 0 auto !important;
}

/* Pullquote: less tall padding */
body.single-product .hyc-pdp-pullquote {
  padding: 14px 18px 12px 44px !important;
  margin: 12px 0 !important;
}
body.single-product .hyc-pdp-pullquote__body {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

/* Summary spacing tighter so it doesn't stretch */
body.single-product .summary.entry-summary > * + * {
  margin-top: 10px !important;
}

/* End iter-007 patch */
/* ===================================================================
   GAN single-product iter-008 patch
   Fix gap giữa gallery image và guarantee strip.
   - Remove margin-top:auto trên strip (no longer push to bottom)
   - Grid align-items: start so left col doesn't artificially stretch
   - Add real product attributes spec callout under image
   =================================================================== */

/* Gallery flex column: strip + info card render right after image */
body.single-product .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-self: start !important;
}

/* Strip — no margin-top auto, sit right under image */
body.single-product .woocommerce-product-gallery::before {
  margin-top: 0 !important;
  order: 5 !important;
  padding: 18px 16px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 14px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-align: center !important;
  line-height: 1.7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  content: 'CHÍNH HÃNG ✓  ·  BẢO HÀNH TẠI SHOWROOM ✓  ·  TRẢ GÓP 0% ✓  ·  GIAO TOÀN QUỐC ✓' !important;
}

/* Info card — sit right under strip */
body.single-product .woocommerce-product-gallery::after {
  order: 6 !important;
  margin: 0 !important;
  padding: 18px 18px !important;
  background: #fff !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 14px !important;
  display: block !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  line-height: 1.7 !important;
  content: '📦 Còn hàng tại showroom Hưng Yên — sẵn sàng giao trong 1-2 ngày · 📞 Hotline tư vấn 0967.858.319 (8h-22h hằng ngày) · 💬 Zalo/Facebook 24/7' !important;
}

/* Grid: left col natural height (don't stretch artificially) */
body.single-product div.product {
  align-items: start !important;
}

/* Gallery image — keep current min/max but image order: 0 */
body.single-product .woocommerce-product-gallery__wrapper {
  order: 0 !important;
}

/* Summary — limit huge stretching */
body.single-product .summary.entry-summary {
  align-self: start !important;
}

/* Add a subtle "specs at a glance" callout inside summary right under SPEC row.
   Use the existing hyc-pdp-specs strip and enhance visually. */
body.single-product .hyc-pdp-specs {
  background: linear-gradient(135deg, #fafbfd 0%, #ffffff 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  margin: 12px 0 16px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Pullquote final polish */
body.single-product .hyc-pdp-pullquote {
  margin: 10px 0 !important;
  padding: 14px 18px 12px 44px !important;
}

/* End iter-008 patch */
/* ===================================================================
   GAN single-product iter-009 — AGGRESSIVE merge to kill "rời rạc"
   Problem: 8+ individual cards on summary col = floating boxes feel.
   Fix: Consolidate into 3 unified zones with shared background, drop
   individual borders, use thin dividers, tighten spacing 6-8px.
   Plus: pack left col with more content blocks via pseudo elements.
   =================================================================== */

/* === SUMMARY: unify all children into ONE continuous panel === */
body.single-product .summary.entry-summary {
  background: #fff !important;
  border: 1px solid #e8eaf0 !important;
  border-radius: 18px !important;
  padding: 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  box-shadow: 0 6px 20px -8px rgba(10, 14, 31, .08) !important;
  align-self: start !important;
}

/* Tighten spacing — every direct child gets minimal margin */
body.single-product .summary.entry-summary > * {
  margin: 0 !important;
}
body.single-product .summary.entry-summary > * + * {
  margin-top: 12px !important;
}

/* Kill individual borders/backgrounds on child elements — they all share parent bg */
body.single-product .summary.entry-summary .stock,
body.single-product .summary.entry-summary .hyc-pdp-stockbadge {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #00875a !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 8px !important;
}
body.single-product .summary.entry-summary .stock::before,
body.single-product .summary.entry-summary .hyc-pdp-stockbadge::before {
  content: '' !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #00875a !important;
  box-shadow: 0 0 0 4px rgba(0, 135, 90, .15) !important;
}

/* Description blurb — flat, no border, just text with green inline tag */
body.single-product .summary .hyc-pdp-blurb,
body.single-product .summary .woocommerce-product-details__short-description {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  padding: 12px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
  margin-top: 14px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #2a3045 !important;
  border-radius: 0 !important;
}
body.single-product .summary .hyc-pdp-blurb::before,
body.single-product .summary .woocommerce-product-details__short-description::before {
  display: inline-block !important;
  content: '✓ CHÍNH HÃNG · BẢO HÀNH TẠI SHOWROOM · TRẢ GÓP 0%' !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #00875a !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  padding: 4px 10px !important;
  background: rgba(0, 135, 90, .1) !important;
  border-radius: 99px !important;
}

/* Pullquote — flat, no card, just italic indented quote */
body.single-product .summary .hyc-pdp-pullquote {
  background: transparent !important;
  border: none !important;
  border-left: 2px solid #c89b3c !important;
  border-radius: 0 !important;
  padding: 6px 0 6px 14px !important;
  margin: 12px 0 0 !important;
}
body.single-product .summary .hyc-pdp-pullquote__mark {
  display: none !important;
}
body.single-product .summary .hyc-pdp-pullquote__body {
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin: 0 0 4px !important;
  color: #2a3045 !important;
}
body.single-product .summary .hyc-pdp-pullquote__cite {
  font-size: 10px !important;
  color: #8a92a6 !important;
}

/* SKU/Cat/Brand top row — keep as pills but tighter */
body.single-product .summary .product_meta,
body.single-product .summary .hyc-pdp-tax-row,
body.single-product .summary .hyc-pdp-meta {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
}

/* Masthead — flat row of SKU + stock, no border */
body.single-product .summary .hyc-pdp-masthead {
  border-top: none !important;
  border-bottom: 1px solid #eef0f5 !important;
  padding: 0 0 10px !important;
  margin: 0 0 10px !important;
}

/* SPEC strip — flatter, tighter */
body.single-product .summary .hyc-pdp-specs {
  background: rgba(255, 105, 0, .04) !important;
  border: 1px solid rgba(255, 105, 0, .15) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  margin: 10px 0 !important;
}

/* Title compact */
body.single-product .summary .product_title,
body.single-product .summary h1.product_title {
  margin: 4px 0 !important;
  line-height: 1.15 !important;
}

/* Price row — bigger, no gap before */
body.single-product .summary .price {
  margin: 8px 0 0 !important;
  padding: 10px 0 !important;
  border-top: 1px solid #eef0f5 !important;
}

/* Wishlist button compact */
body.single-product .summary .yith-wcwl-add-to-wishlist,
body.single-product .summary .wishlist-button,
body.single-product .summary a[href*="wishlist"] {
  margin: 0 0 0 auto !important;
  display: inline-block !important;
}

/* Form cart — already compact in iter-006 — verify no margin top */
body.single-product .summary form.cart {
  margin: 14px 0 0 !important;
  padding: 14px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
}

/* === LEFT COLUMN: Fill empty space below info card === */
/* Add 2 more content blocks: "Sản phẩm kèm theo" + "Tư vấn build PC" */
body.single-product .woocommerce-product-gallery {
  position: relative !important;
}

/* Inject 4 content blocks instead of 2 (use multiple pseudo per ancestor) */
/* Strip already at order 5, info card at order 6.
   Add 3rd block: "linh kiện đi kèm" at order 7 via injecting on parent product */
body.single-product div.product::before {
  content: '🎁 KHUYẾN MÃI ĐI KÈM' !important;
  display: block !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
  padding: 16px 18px !important;
  background: linear-gradient(135deg, rgba(255, 105, 0, .08) 0%, rgba(255, 105, 0, .02) 100%) !important;
  border: 1px solid rgba(255, 105, 0, .25) !important;
  border-radius: 14px !important;
  line-height: 1.7 !important;
  white-space: pre-line !important;
}
body.single-product div.product {
  grid-template-columns: 1.05fr 1fr !important;
  grid-template-rows: auto auto !important;
}
/* Make ::before the gift block: list 3 items via newlines */
body.single-product div.product::before {
  content: '🎁 KHUYẾN MÃI ĐI KÈM\A\A✓ Tặng chuột không dây Logitech B100\A✓ Tặng túi chống sốc cao cấp\A✓ Tặng phiếu giảm giá 500.000đ kỳ sau\A✓ Cài đặt phần mềm bản quyền miễn phí' !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  padding: 18px 20px !important;
}

/* Add ::after = "Tư vấn build" block placed in summary col row 2 */
body.single-product div.product::after {
  content: '💡 TƯ VẤN CHỌN MÁY 1-1\A\AAnh/chị inbox Zalo/Facebook HungYenPC hoặc gọi hotline 0967.858.319 (8h-22h). Đội kỹ thuật tư vấn cấu hình phù hợp nhu cầu thực tế, không bán bừa.\A\A→ Yêu cầu test stress 24h trước khi giao máy.' !important;
  display: block !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  white-space: pre-line !important;
  padding: 18px 20px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 14px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* The first line "💡 TƯ VẤN..." should be bold uppercase — use ::first-line */
body.single-product div.product::after::first-line {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  color: #ff6900 !important;
}

/* Re-order grid: gallery+summary first row, gift+consult second row */
body.single-product div.product .woocommerce-product-gallery {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
body.single-product div.product .summary {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

/* Tabs section after grid */
body.single-product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  margin: 32px 24px 0 !important;
}

/* End iter-009 patch */
/* ===================================================================
   GAN single-product iter-010 — Kill the lavender, fuse the sections
   Problem confirmed: light blue lavender body bg makes every gap visible.
   Sections float as cards with gaps between them = "trống trải".
   =================================================================== */

/* === KILL THE LAVENDER === */
body.single-product {
  background: #fff !important;
}
body.single-product .site-content,
body.single-product main#primary,
body.single-product .entry-content,
body.single-product .inside-article {
  background: #fff !important;
  padding: 0 !important;
}

/* Container: white bg, no rounded card look (so it doesn't float) */
body.single-product div.product {
  background: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 24px 24px 32px !important;
  margin: 0 auto !important;
  max-width: 1240px !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 32px !important;
}

/* Summary panel: keep card but tighten */
body.single-product .summary.entry-summary {
  padding: 22px 26px !important;
  border: 1px solid #e8eaf0 !important;
  border-radius: 16px !important;
  background: #fff !important;
}

/* === SKU/CAT/BRAND row INLINE (not 3 vertical pills) === */
body.single-product .summary .product_meta,
body.single-product .summary .hyc-pdp-tax-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 0 8px !important;
}
body.single-product .summary .product_meta > span,
body.single-product .summary .product_meta .sku_wrapper,
body.single-product .summary .product_meta .posted_in,
body.single-product .summary .product_meta .tagged_as,
body.single-product .summary .hyc-pdp-tax-row > * {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 10px !important;
  background: #f0f2f6 !important;
  border-radius: 99px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #5b6478 !important;
  margin: 0 !important;
}

/* === SPEC chip row fill width === */
body.single-product .summary .hyc-pdp-specs {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  background: linear-gradient(135deg, rgba(255, 105, 0, .06) 0%, rgba(255, 105, 0, .02) 100%) !important;
  border: 1px solid rgba(255, 105, 0, .2) !important;
  border-radius: 10px !important;
  margin: 10px 0 !important;
  justify-content: flex-start !important;
}

/* === ELIMINATE GAPS BETWEEN SECTIONS === */
/* Trust row: sit immediately after product grid, no margin */
body.single-product .hyc-pdp-trust {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 24px 24px !important;
  background: #fff !important;
  border-top: 1px solid #f0f2f6 !important;
}

/* Tabs section: no top margin, butt against trust */
body.single-product .woocommerce-tabs {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 16px 24px 24px !important;
  background: #fff !important;
  border-top: 1px solid #f0f2f6 !important;
}

/* Related + Upsell sections: same — sit flush */
body.single-product .related.products,
body.single-product .upsells.products,
body.single-product .up-sells.products,
body.single-product .cross-sells.products {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 24px 24px !important;
  background: #fff !important;
  border-top: 1px solid #f0f2f6 !important;
}

/* === REMOVE ROW 2 (Gift + Consult blocks) if causing more issue ===
   Actually KEEP them but constrain spacing */
body.single-product div.product::before,
body.single-product div.product::after {
  margin: 0 !important;
}

/* "Sản phẩm cùng VGA RTX5060" Layer 2 cross-link section — likely
   currently is the lone link with huge whitespace. Style it: */
body.single-product .hyc-pdp-related-list,
body.single-product .hyc-related-attrs,
body.single-product [class*="related-tax"],
body.single-product [class*="cross-link"] {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 20px 24px !important;
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%) !important;
  border-top: 1px solid #f0f2f6 !important;
}

/* === Trust row borders tighter — remove gradient circles for cleaner === */
body.single-product .hyc-pdp-trust__cell::before {
  display: none !important;
}

/* === FIX gallery left col content alignment === */
body.single-product .woocommerce-product-gallery {
  align-self: stretch !important;
}

/* The summary right col: stretch min-height to match gallery natural */
body.single-product .summary.entry-summary {
  align-self: stretch !important;
}

/* === Section H2 polish === */
body.single-product .related.products > h2,
body.single-product .upsells.products > h2,
body.single-product .up-sells.products > h2 {
  font-family: 'Manrope', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  color: #0a0e1f !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  position: relative !important;
}
body.single-product .related.products > h2::after,
body.single-product .upsells.products > h2::after,
body.single-product .up-sells.products > h2::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 3px !important;
  background: #ff6900 !important;
  margin-top: 8px !important;
  border-radius: 99px !important;
}

/* === Gallery image MAXIMIZE on left col === */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  min-height: 420px !important;
  max-height: none !important;
  flex: 1 1 auto !important;
}
body.single-product .woocommerce-product-gallery__image img {
  max-height: 480px !important;
  padding: 20px !important;
}

/* End iter-010 patch */
/* ===================================================================
   GAN single-product iter-011 — THE REAL FIX
   Root cause finally identified: trust-row, tabs, related, upsells
   are children of div.product (display:grid 2-col). Each gets
   auto-placed into single column → trust 673px, related+upsells
   SIDE-BY-SIDE on same row. Empty gaps from grid auto-flow.
   Fix: force these sub-sections to span all columns.
   =================================================================== */

/* Force all WC sub-sections inside div.product to span full grid width */
body.single-product div.product > .hyc-pdp-trust,
body.single-product div.product > .woocommerce-tabs,
body.single-product div.product > .related.products,
body.single-product div.product > .upsells.products,
body.single-product div.product > .up-sells.products,
body.single-product div.product > .cross-sells.products,
body.single-product div.product > section.related,
body.single-product div.product > section.upsells,
body.single-product div.product > section.up-sells {
  grid-column: 1 / -1 !important;
  width: auto !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
}

/* Now sections render full width. Tighten margins so they butt closer */
body.single-product div.product > .hyc-pdp-trust {
  margin: 24px 0 0 !important;
  padding: 20px 0 !important;
  border-top: 1px solid #eef0f5 !important;
  border-bottom: none !important;
}
body.single-product div.product > .woocommerce-tabs {
  margin: 24px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
}
body.single-product div.product > .related.products,
body.single-product div.product > .upsells.products,
body.single-product div.product > .up-sells.products {
  margin: 24px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
}

/* If upsells + related are siblings + both render at same scroll position,
   force them to STACK vertically (one after another) */
body.single-product div.product > .upsells.products + .related.products,
body.single-product div.product > .up-sells.products + .related.products,
body.single-product div.product > .related.products + .upsells.products,
body.single-product div.product > .related.products + .up-sells.products {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px dashed #e8eaf0 !important;
}

/* Revert iter-009 ::before / ::after on div.product — they polluted the
   grid layout. Reposition the gift + consult cards as REGULAR grid items */
body.single-product div.product::before {
  grid-column: 1 !important;
  grid-row: 2 !important;
}
body.single-product div.product::after {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

/* Make sure row 2 (gift + consult) doesn't bleed into row 3+ */
body.single-product div.product {
  grid-template-rows: auto auto !important;
  grid-auto-rows: auto !important;
}

/* Re-anchor sub-sections to start AFTER row 2 (grid-row: 3+) */
body.single-product div.product > .hyc-pdp-trust {
  grid-row: 3 !important;
}
body.single-product div.product > .woocommerce-tabs {
  grid-row: 4 !important;
}
body.single-product div.product > .upsells.products,
body.single-product div.product > .up-sells.products {
  grid-row: 5 !important;
}
body.single-product div.product > .related.products {
  grid-row: 6 !important;
}

/* End iter-011 patch */
/* ===================================================================
   GAN single-product iter-012 — Final fix: fill gallery col 164px gap
   JS diagnostic: gallery col stretched to 834px (match summary) but
   actual content only 670px tall → 164px empty BELOW image but inside col.
   Fix: flex-grow image OR add tall content block.
   =================================================================== */

/* Make gallery image flex-grow to fill available vertical space */
body.single-product .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  height: 100% !important;
}
body.single-product .woocommerce-product-gallery__wrapper {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.single-product .woocommerce-product-gallery__image {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
}
body.single-product .woocommerce-product-gallery__image img {
  max-width: 95% !important;
  max-height: 90% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

/* Strip + info card retain order but sit naturally */
body.single-product .woocommerce-product-gallery::before {
  flex: 0 0 auto !important;
  order: 5 !important;
  margin-top: 0 !important;
}
body.single-product .woocommerce-product-gallery::after {
  flex: 0 0 auto !important;
  order: 6 !important;
  margin-top: 0 !important;
}

/* End iter-012 patch */
/* ===================================================================
   GAN single-product iter-013 — FINAL: kill 164px gradient gap
   Root cause confirmed visually: img has max-height: 90% inside
   gradient gray container that extends to fill flex column. The
   gradient bg shows below image as visible "trống".
   Fix: shrink wrapper to natural image height + place strip/info
   immediately below with NO stretching.
   =================================================================== */

/* Gallery: column flex but each child takes natural height */
body.single-product .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-self: start !important; /* CRITICAL: don't stretch to summary height */
  height: auto !important;
}

/* Image wrapper: natural height ONLY, no flex-grow */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  flex: 0 0 auto !important;
  min-height: 320px !important;
  max-height: 580px !important;
  aspect-ratio: 4 / 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

/* Image: fill the wrapper - REMOVE max-height 90% */
body.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 24px !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Strip pseudo: tight padding */
body.single-product .woocommerce-product-gallery::before {
  flex: 0 0 auto !important;
  order: 5 !important;
  margin: 0 !important;
}
body.single-product .woocommerce-product-gallery::after {
  flex: 0 0 auto !important;
  order: 6 !important;
  margin: 0 !important;
}

/* Now gallery col has natural height. To avoid grid row 1 stretching
   summary col DOWN to fill, force align-items: start on grid */
body.single-product div.product {
  align-items: start !important;
}

/* Summary stays in row 1 col 2 natural height */
body.single-product .summary.entry-summary {
  align-self: start !important;
}

/* End iter-013 patch */
/* ===================================================================
   GAN single-product iter-014 — Stretch gallery to match summary
   Gallery col still 224px shorter than summary col (image fixed
   aspect). Stretch gallery via align-self + flex-grow on image
   wrapper. Image inside fills 100% with object-fit: contain.
   =================================================================== */

/* Gallery STRETCHES to fill row 1 height (matching summary col) */
body.single-product .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-self: stretch !important; /* MATCH summary height */
  height: auto !important;
  min-height: 100% !important;
}

/* Image wrapper grows to fill leftover space */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  flex: 1 1 auto !important;
  min-height: 400px !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Image fills 100% of wrapper container, object-fit contain keeps aspect */
body.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 30px !important;
  margin: 0 !important;
  background: transparent !important;
  display: block !important;
}

/* Strip + info card don't grow, hug bottom */
body.single-product .woocommerce-product-gallery::before {
  flex: 0 0 auto !important;
  order: 5 !important;
}
body.single-product .woocommerce-product-gallery::after {
  flex: 0 0 auto !important;
  order: 6 !important;
}

/* Grid: align-items stretch so cols match height */
body.single-product div.product {
  align-items: stretch !important;
}


/* End iter-014 patch */
/* ===================================================================
   GAN single-product iter-015 — Template override CSS adjustments
   PHP override now wraps gallery+summary in .hyc-pdp-hero (grid 2-col)
   and tabs/related/upsells in .hyc-pdp-extras (normal block flow).
   div.product is no longer a grid container.
   =================================================================== */

/* div.product: simple block container, no grid */
body.single-product div.product {
  display: block !important;
  background: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 24px 24px 32px !important;
  margin: 0 auto !important;
  max-width: 1240px !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
}

/* Hero block: 2-col grid for gallery + summary */
body.single-product .hyc-pdp-hero {
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}
@media (max-width: 900px) {
  body.single-product .hyc-pdp-hero {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* Gallery natural height, no stretching */
body.single-product .hyc-pdp-hero .woocommerce-product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-self: start !important;
  height: auto !important;
}
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__wrapper,
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__image {
  flex: 0 0 auto !important;
  min-height: 340px !important;
  max-height: 540px !important;
  aspect-ratio: 4 / 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef0f5 100%) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 24px !important;
  margin: 0 !important;
}

/* Summary: keep unified card style from iter-009 */
body.single-product .hyc-pdp-hero .summary.entry-summary {
  background: #fff !important;
  border: 1px solid #e8eaf0 !important;
  border-radius: 16px !important;
  padding: 22px 26px !important;
  align-self: start !important;
  box-shadow: 0 4px 16px -8px rgba(10, 14, 31, .08) !important;
}

/* Extras block: tabs/related/upsells stack vertically full width */
body.single-product .hyc-pdp-extras {
  display: block !important;
  margin: 32px 0 0 !important;
  padding: 0 !important;
}

body.single-product .hyc-pdp-extras > * {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  display: block !important;
}

/* Trust row inside extras: full width, 4-col grid */
body.single-product .hyc-pdp-extras .hyc-pdp-trust {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 24px 0 !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  body.single-product .hyc-pdp-extras .hyc-pdp-trust {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Tabs full width */
body.single-product .hyc-pdp-extras .woocommerce-tabs {
  margin: 32px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
}

/* Related + upsells full width, stacked */
body.single-product .hyc-pdp-extras .related.products,
body.single-product .hyc-pdp-extras .upsells.products,
body.single-product .hyc-pdp-extras .up-sells.products {
  margin: 32px 0 0 !important;
  padding: 24px 0 0 !important;
  border-top: 1px solid #eef0f5 !important;
  clear: both !important;
}

/* Inside related/upsells: auto-fit grid cards (was auto-fill — created empty tracks) */
body.single-product .hyc-pdp-extras .related.products > ul.products,
body.single-product .hyc-pdp-extras .upsells.products > ul.products,
body.single-product .hyc-pdp-extras .up-sells.products > ul.products,
body.single-product .hyc-pdp-extras ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Disable iter-009 ::before/::after on div.product (they assumed grid) */
body.single-product div.product::before,
body.single-product div.product::after {
  display: none !important;
  content: none !important;
}

/* End iter-015 patch */
/* ===================================================================
   GAN single-product iter-016 — Style new gallery col fill blocks
   Template now wraps gallery in .hyc-pdp-hero__left containing:
   - gallery (image)
   - .hyc-pdp-trust-band (dark navy strip)
   - 2x .hyc-pdp-quickinfo (📦 + 📞)
   - .hyc-pdp-bundle (🎁 promo)
   - .hyc-pdp-consult (💡 navy card)
   This fills the left col to match summary col height naturally.
   =================================================================== */

/* Override: hero left col is flex column, gallery + cards stack */
body.single-product .hyc-pdp-hero__left {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-self: start !important;
  min-width: 0 !important;
}

/* Disable old pseudo strip + info card (now real HTML blocks) */
body.single-product .woocommerce-product-gallery::before,
body.single-product .woocommerce-product-gallery::after {
  display: none !important;
  content: none !important;
}

/* Trust band — dark navy strip with 4 checkmarks */
body.single-product .hyc-pdp-trust-band {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px 14px !important;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 14px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-align: center !important;
  line-height: 1.6 !important;
}
body.single-product .hyc-pdp-trust-band span {
  white-space: nowrap !important;
}

/* Quick info rows — icon + text */
body.single-product .hyc-pdp-quickinfo {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: #fff !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 12px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  line-height: 1.6 !important;
}
body.single-product .hyc-pdp-quickinfo__icon {
  flex: 0 0 auto !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
body.single-product .hyc-pdp-quickinfo__text {
  flex: 1 1 auto !important;
}
body.single-product .hyc-pdp-quickinfo strong {
  color: #ff6900 !important;
  font-weight: 700 !important;
}

/* Bundle promo card — peach */
body.single-product .hyc-pdp-bundle {
  padding: 16px 18px !important;
  background: linear-gradient(135deg, rgba(255, 105, 0, .08) 0%, rgba(255, 105, 0, .02) 100%) !important;
  border: 1px solid rgba(255, 105, 0, .25) !important;
  border-radius: 14px !important;
}
body.single-product .hyc-pdp-bundle__title {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}
body.single-product .hyc-pdp-bundle__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
body.single-product .hyc-pdp-bundle__list li {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  line-height: 1.5 !important;
  padding-left: 22px !important;
  position: relative !important;
}
body.single-product .hyc-pdp-bundle__list li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #00875a !important;
  font-weight: 700 !important;
}

/* Consult card — dark navy */
body.single-product .hyc-pdp-consult {
  padding: 16px 18px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 14px !important;
}
body.single-product .hyc-pdp-consult__title {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}
body.single-product .hyc-pdp-consult p {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, .9) !important;
  line-height: 1.6 !important;
  margin: 0 0 8px !important;
}
body.single-product .hyc-pdp-consult__cta {
  font-weight: 700 !important;
  color: #ff6900 !important;
}

/* Make sure hero grid no longer has empty space below */
body.single-product .hyc-pdp-hero {
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* Disable iter-009 old pseudo gift/consult on div.product (real HTML now) */
body.single-product div.product::before,
body.single-product div.product::after {
  display: none !important;
  content: none !important;
}

/* Disable iter-009..014 grid-row placements for trust/tabs/related (no longer in grid) */
body.single-product div.product > .hyc-pdp-trust,
body.single-product div.product > .woocommerce-tabs,
body.single-product div.product > .related.products,
body.single-product div.product > .upsells.products,
body.single-product div.product > .up-sells.products {
  grid-row: auto !important;
  grid-column: auto !important;
}

/* End iter-016 patch */
/* ===================================================================
   GAN single-product iter-017 — Right col fill: spec table + policy
   Template now adds .hyc-pdp-specs-card + .hyc-pdp-policy after
   .summary inside .hyc-pdp-hero__right. Match left col height (944px).
   =================================================================== */

/* Right col flex column container */
body.single-product .hyc-pdp-hero__right {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-self: start !important;
  min-width: 0 !important;
}

/* SPEC TABLE CARD */
body.single-product .hyc-pdp-specs-card {
  background: #fff !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin: 0 !important;
}
body.single-product .hyc-pdp-specs-card__head {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid #eef0f5 !important;
}
body.single-product .hyc-pdp-specs-card__table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}
body.single-product .hyc-pdp-specs-card__table tr {
  border-bottom: 1px solid #f4f5f8 !important;
}
body.single-product .hyc-pdp-specs-card__table tr:last-child {
  border-bottom: none !important;
}
body.single-product .hyc-pdp-specs-card__table th {
  text-align: left !important;
  padding: 8px 12px 8px 0 !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #5b6478 !important;
  width: 38% !important;
  vertical-align: top !important;
  letter-spacing: -.005em !important;
}
body.single-product .hyc-pdp-specs-card__table td {
  text-align: left !important;
  padding: 8px 0 !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  letter-spacing: -.01em !important;
  word-break: break-word !important;
}

/* POLICY CARD */
body.single-product .hyc-pdp-policy {
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin: 0 !important;
}
body.single-product .hyc-pdp-policy__head {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid #eef0f5 !important;
}
body.single-product .hyc-pdp-policy__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
body.single-product .hyc-pdp-policy__list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 0 !important;
}
body.single-product .hyc-pdp-policy__icon {
  flex: 0 0 auto !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 105, 0, .08) !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
body.single-product .hyc-pdp-policy__body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
body.single-product .hyc-pdp-policy__body strong {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  line-height: 1.3 !important;
}
body.single-product .hyc-pdp-policy__body span {
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #5b6478 !important;
  line-height: 1.5 !important;
}

/* End iter-017 patch */
/* ===================================================================
   GAN single-product iter-018 — Balance left + right col heights
   - Add showroom mini card to left col (~150px)
   - Compact policy as 2x2 grid in right col (was vertical 4)
   =================================================================== */

/* SHOWROOM CARD (left col) */
body.single-product .hyc-pdp-showroom {
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%) !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin: 0 !important;
}
body.single-product .hyc-pdp-showroom__head {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  color: #ff6900 !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}
body.single-product .hyc-pdp-showroom__body p {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  line-height: 1.6 !important;
  margin: 0 0 6px !important;
}
body.single-product .hyc-pdp-showroom__body p:last-child {
  margin-bottom: 0 !important;
}
body.single-product .hyc-pdp-showroom__body strong {
  color: #ff6900 !important;
  font-weight: 700 !important;
}

/* POLICY → compact 2x2 grid */
body.single-product .hyc-pdp-policy__list {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 14px !important;
}
@media (max-width: 600px) {
  body.single-product .hyc-pdp-policy__list {
    grid-template-columns: 1fr !important;
  }
}
body.single-product .hyc-pdp-policy__list li {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
}
body.single-product .hyc-pdp-policy__icon {
  width: 32px !important;
  height: 32px !important;
  font-size: 16px !important;
}
body.single-product .hyc-pdp-policy__body strong {
  font-size: 12.5px !important;
}
body.single-product .hyc-pdp-policy__body span {
  font-size: 11.5px !important;
  line-height: 1.4 !important;
}

/* End iter-018 patch */
/* ===================================================================
   GAN single-product iter-019 — Move spec table to LEFT col for balance
   Reason: Spec card height varies by product type (monitor 1 attr vs
   laptop 5+ attrs). Placing in left col rebalances asymmetric content.
   Policy card stays in right col.
   No new CSS — just verify both cards work in either col.
   =================================================================== */

/* Spec card spacing adjustment when placed after showroom in left col */
body.single-product .hyc-pdp-hero__left .hyc-pdp-specs-card {
  margin-top: 0 !important;
}

/* Hide empty showroom border bottom when spec follows */
body.single-product .hyc-pdp-hero__left .hyc-pdp-showroom + .hyc-pdp-specs-card {
  margin-top: 0 !important;
}

/* End iter-019 patch */
/* ===================================================================
   GAN single-product iter-020 — Premium polish pass
   Push Craft from 8.5 → 9.5. Consistent design system rigor:
   - Shadow scale (sm/md/lg) consistent across all surfaces
   - Radius scale (8/12/16/20/24) applied uniformly
   - Typography hierarchy refined (clamp, optical sizing)
   - Hover/focus states designed for every interactive element
   - Spacing rhythm follows 8px baseline grid
   - Smooth transitions (200ms ease) everywhere
   =================================================================== */

/* === DESIGN TOKENS (scoped to single-product) === */
body.single-product {
  --hyc-shadow-sm: 0 1px 2px rgba(10, 14, 31, .04), 0 1px 3px rgba(10, 14, 31, .06);
  --hyc-shadow-md: 0 4px 12px -4px rgba(10, 14, 31, .08), 0 2px 4px rgba(10, 14, 31, .04);
  --hyc-shadow-lg: 0 16px 32px -12px rgba(10, 14, 31, .12), 0 4px 8px rgba(10, 14, 31, .04);
  --hyc-shadow-xl: 0 24px 48px -16px rgba(10, 14, 31, .16), 0 8px 16px rgba(10, 14, 31, .06);
  --hyc-shadow-press: 0 0 0 4px rgba(255, 105, 0, .12);
  --hyc-r-sm: 8px;
  --hyc-r-md: 12px;
  --hyc-r-lg: 16px;
  --hyc-r-xl: 20px;
  --hyc-r-2xl: 24px;
  --hyc-r-pill: 999px;
  --hyc-ease: cubic-bezier(.4, 0, .2, 1);
}

/* === CARD SHADOW SCALE — apply consistently === */
body.single-product .hyc-pdp-hero__left > *,
body.single-product .hyc-pdp-hero__right > * {
  box-shadow: var(--hyc-shadow-sm) !important;
  transition:
    transform .25s var(--hyc-ease),
    box-shadow .25s var(--hyc-ease),
    border-color .25s var(--hyc-ease) !important;
}

/* Specific exceptions — these have signature backgrounds, lighter shadow */
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  box-shadow: var(--hyc-shadow-md) !important;
}

body.single-product .hyc-pdp-trust-band {
  box-shadow: var(--hyc-shadow-md), inset 0 0 0 1px rgba(255, 255, 255, .06) !important;
}

body.single-product .hyc-pdp-consult {
  box-shadow: var(--hyc-shadow-md), inset 0 0 0 1px rgba(255, 255, 255, .06) !important;
}

body.single-product .summary.entry-summary {
  box-shadow: var(--hyc-shadow-md) !important;
}

/* Hover lift for surface cards */
body.single-product .hyc-pdp-quickinfo:hover,
body.single-product .hyc-pdp-bundle:hover,
body.single-product .hyc-pdp-showroom:hover,
body.single-product .hyc-pdp-specs-card:hover,
body.single-product .hyc-pdp-policy:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--hyc-shadow-lg) !important;
}

/* === TYPOGRAPHY HIERARCHY === */
body.single-product .summary .product_title,
body.single-product .summary h1.product_title {
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(24px, 2.4vw, 32px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
  text-wrap: balance !important;
  color: #0a0e1f !important;
  margin: 8px 0 !important;
  font-feature-settings: "ss01" 1, "cv01" 1;
}

/* Price — editorial moment */
body.single-product .summary .price,
body.single-product .summary .price ins {
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(30px, 3.4vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
  color: #e02d3c !important;
  line-height: 1 !important;
  margin: 12px 0 4px !important;
  padding: 14px 0 !important;
  border-top: 1px solid #eef0f5 !important;
  border-bottom: 1px solid #eef0f5 !important;
  font-feature-settings: "tnum" 1 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  text-decoration: none !important;
}

/* Currency symbol smaller */
body.single-product .summary .price bdi {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
}
body.single-product .summary .price .woocommerce-Price-currencySymbol {
  font-size: .6em !important;
  font-weight: 600 !important;
  opacity: .7 !important;
  letter-spacing: -.01em !important;
  text-decoration: none !important;
}

/* SKU/Brand pills — refined typography */
body.single-product .product_meta > span,
body.single-product .product_meta .sku_wrapper,
body.single-product .product_meta .posted_in,
body.single-product .product_meta .tagged_as {
  padding: 5px 11px !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  font-weight: 700 !important;
  transition: all .2s var(--hyc-ease) !important;
}
body.single-product .product_meta > span:hover {
  background: #e6e9f0 !important;
  transform: translateY(-1px) !important;
}

/* === ADD-TO-CART BUTTON — Premium press feedback === */
body.single-product .single_add_to_cart_button {
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform .15s var(--hyc-ease),
    box-shadow .25s var(--hyc-ease) !important;
}
body.single-product .single_add_to_cart_button::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15) 0%, transparent 50%) !important;
  pointer-events: none !important;
}
body.single-product .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 32px -8px rgba(224, 45, 60, .45), 0 4px 8px rgba(224, 45, 60, .15) !important;
}
body.single-product .single_add_to_cart_button:active {
  transform: translateY(0) scale(.98) !important;
  box-shadow: 0 4px 12px -4px rgba(224, 45, 60, .4), var(--hyc-shadow-press) !important;
  transition: transform .08s var(--hyc-ease), box-shadow .08s var(--hyc-ease) !important;
}

/* Quantity input refined focus */
body.single-product form.cart .quantity input.qty {
  transition: border-color .2s var(--hyc-ease), box-shadow .2s var(--hyc-ease) !important;
}
body.single-product form.cart .quantity input.qty:focus {
  outline: none !important;
  border-color: #ff6900 !important;
  box-shadow: 0 0 0 4px rgba(255, 105, 0, .15) !important;
}

/* === SPEC TABLE — Premium table styling === */
body.single-product .hyc-pdp-specs-card {
  position: relative !important;
}
body.single-product .hyc-pdp-specs-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 18px !important;
  width: 40px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #ff6900 0%, #c89b3c 100%) !important;
  border-radius: 0 0 4px 4px !important;
}
body.single-product .hyc-pdp-specs-card__table tr {
  transition: background-color .15s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-specs-card__table tr:hover {
  background: rgba(255, 105, 0, .03) !important;
}

/* === POLICY CARD ICONS — Hover state === */
body.single-product .hyc-pdp-policy__icon {
  transition: transform .25s var(--hyc-ease), background .25s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-policy__list li:hover .hyc-pdp-policy__icon {
  transform: scale(1.08) rotate(-3deg) !important;
  background: rgba(255, 105, 0, .15) !important;
}

/* === TRUST BAND — Inner glow === */
body.single-product .hyc-pdp-trust-band {
  position: relative !important;
  overflow: hidden !important;
}
body.single-product .hyc-pdp-trust-band::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -50% !important;
  width: 200% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 0, .4), transparent) !important;
}

/* === GALLERY IMAGE — Subtle zoom on hover === */
body.single-product .woocommerce-product-gallery__image {
  transition: box-shadow .3s var(--hyc-ease) !important;
}
body.single-product .woocommerce-product-gallery__image img {
  transition: transform .5s var(--hyc-ease) !important;
}
body.single-product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.03) !important;
}
body.single-product .woocommerce-product-gallery__image:hover {
  box-shadow: var(--hyc-shadow-xl) !important;
}

/* === STOCK BADGE — Glow pulse === */
body.single-product .summary .stock::before {
  animation: hyc-pulse 2s ease-in-out infinite !important;
}
@keyframes hyc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 135, 90, .15); }
  50% { box-shadow: 0 0 0 7px rgba(0, 135, 90, .08); }
}
@media (prefers-reduced-motion: reduce) {
  body.single-product .summary .stock::before { animation: none !important; }
  body.single-product * { transition: none !important; animation: none !important; }
}

/* === PULLQUOTE — Refined treatment === */
body.single-product .hyc-pdp-pullquote {
  position: relative !important;
  padding: 12px 0 10px 18px !important;
  background: transparent !important;
  border-left: 3px solid !important;
  border-image: linear-gradient(180deg, #c89b3c, rgba(200, 155, 60, .3)) 1 100% !important;
}

/* === RELATED/UPSELL CARDS — Premium hover === */
body.single-product .hyc-pdp-extras .related.products li.product,
body.single-product .hyc-pdp-extras .upsells.products li.product,
body.single-product .hyc-pdp-extras .up-sells.products li.product {
  box-shadow: var(--hyc-shadow-sm) !important;
  transition:
    transform .25s var(--hyc-ease),
    box-shadow .25s var(--hyc-ease),
    border-color .25s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-extras .related.products li.product:hover,
body.single-product .hyc-pdp-extras .upsells.products li.product:hover,
body.single-product .hyc-pdp-extras .up-sells.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--hyc-shadow-lg) !important;
  border-color: #ff6900 !important;
}

/* Smooth image zoom in related cards */
body.single-product .hyc-pdp-extras li.product img {
  transition: transform .5s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-extras li.product:hover img {
  transform: scale(1.05) !important;
}

/* === TABS — Premium active indicator with smooth transition === */
body.single-product .woocommerce-tabs ul.tabs li a {
  transition:
    color .2s var(--hyc-ease),
    background .2s var(--hyc-ease) !important;
  position: relative !important;
}
body.single-product .woocommerce-tabs ul.tabs li a::before {
  content: '' !important;
  position: absolute !important;
  bottom: -1px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  background: #ff6900 !important;
  border-radius: 2px 2px 0 0 !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform .3s var(--hyc-ease) !important;
}
body.single-product .woocommerce-tabs ul.tabs li:hover a::before {
  transform: scaleX(.5) !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a::before {
  transform: scaleX(1) !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a::after {
  display: none !important; /* old underline replaced by ::before */
}

/* === ALL FOCUS STATES — Accessible orange ring === */
body.single-product *:focus-visible {
  outline: 2px solid #ff6900 !important;
  outline-offset: 2px !important;
  border-radius: var(--hyc-r-md);
}

/* === SCROLL — Smooth === */
body.single-product {
  scroll-behavior: smooth !important;
}

/* End iter-020 patch */
/* ===================================================================
   GAN single-product iter-021 — Distinctive identity boost
   Push Originality from 8.5 → 9.5.
   - HYC "verified" signature seal on gallery
   - Editorial price moment with thousands separator emphasis
   - Custom section dividers (offset diagonal accent)
   - Distinctive "spec callout" with monospace number grid
   - Unique typography moments
   =================================================================== */

/* === HYC VERIFIED SEAL — Distinctive corner mark on gallery === */
body.single-product .woocommerce-product-gallery__wrapper {
  position: relative !important;
}
body.single-product .woocommerce-product-gallery__wrapper::after {
  content: 'HYC · CHÍNH HÃNG' !important;
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 5 !important;
  padding: 6px 12px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 105, 0, .3) !important;
  border-radius: 4px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  box-shadow: 0 6px 16px -4px rgba(10, 14, 31, .35) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
body.single-product .woocommerce-product-gallery__wrapper::before {
  content: '◆' !important;
  position: absolute !important;
  top: 23px !important;
  right: 28px !important;
  z-index: 5 !important;
  color: #ff6900 !important;
  font-size: 14px !important;
  filter: drop-shadow(0 2px 4px rgba(255, 105, 0, .4)) !important;
  animation: hyc-diamond 3s ease-in-out infinite !important;
}
@keyframes hyc-diamond {
  0%, 100% { opacity: .9; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(45deg); }
}
@media (prefers-reduced-motion: reduce) {
  body.single-product .woocommerce-product-gallery__wrapper::before {
    animation: none !important;
  }
}

/* === EDITORIAL PRICE MOMENT === */
/* Add an "issue tag" style label above price */
body.single-product .summary .price {
  position: relative !important;
}
body.single-product .summary .price::before {
  content: 'GIÁ TỐT NHẤT TẠI HYC' !important;
  display: block !important;
  position: absolute !important;
  top: -10px !important;
  left: 0 !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .2em !important;
  color: #e02d3c !important;
  background: #fff !important;
  padding: 0 8px !important;
  text-transform: uppercase !important;
}

/* === SECTION DIVIDER (offset diagonal accent) === */
body.single-product .hyc-pdp-extras .related.products::before,
body.single-product .hyc-pdp-extras .upsells.products::before,
body.single-product .hyc-pdp-extras .up-sells.products::before,
body.single-product .hyc-pdp-extras .woocommerce-tabs::before {
  content: '' !important;
  display: block !important;
  width: 80px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #ff6900 0%, #c89b3c 50%, transparent 100%) !important;
  border-radius: 4px !important;
  margin: 0 0 20px !important;
  transform: skewX(-15deg) !important;
}

/* === DISTINCTIVE H2 in related/upsells with editorial mark === */
body.single-product .hyc-pdp-extras .related.products > h2,
body.single-product .hyc-pdp-extras .upsells.products > h2,
body.single-product .hyc-pdp-extras .up-sells.products > h2 {
  position: relative !important;
  padding-left: 0 !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(22px, 2.2vw, 28px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: #0a0e1f !important;
  line-height: 1.1 !important;
  margin: 0 0 20px !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
}
body.single-product .hyc-pdp-extras .related.products > h2::after,
body.single-product .hyc-pdp-extras .upsells.products > h2::after,
body.single-product .hyc-pdp-extras .up-sells.products > h2::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: #eef0f5 !important;
  position: relative !important;
  top: -8px !important;
  margin: 0 !important;
  display: block !important;
  width: auto !important;
  border-radius: 0 !important;
  background-image: none !important;
}

/* Number badge on H2 — editorial issue style */
body.single-product .hyc-pdp-extras .related.products > h2::before {
  content: '02' !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: .55em !important;
  font-weight: 700 !important;
  letter-spacing: .15em !important;
  color: #ff6900 !important;
  background: rgba(255, 105, 0, .1) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  align-self: center !important;
}
body.single-product .hyc-pdp-extras .upsells.products > h2::before,
body.single-product .hyc-pdp-extras .up-sells.products > h2::before {
  content: '01' !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: .55em !important;
  font-weight: 700 !important;
  letter-spacing: .15em !important;
  color: #ff6900 !important;
  background: rgba(255, 105, 0, .1) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  align-self: center !important;
}

/* === TRUST 4-CELL — Distinctive editorial layout === */
body.single-product .hyc-pdp-extras .hyc-pdp-trust {
  position: relative !important;
  padding: 32px 24px 28px !important;
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  border-radius: 20px !important;
  border-top: none !important;
  margin: 32px 0 !important;
  overflow: hidden !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust::before {
  content: 'HUNGYENPC · 15 NĂM TẠI HƯNG YÊN' !important;
  position: absolute !important;
  top: 16px !important;
  left: 24px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .2em !important;
  color: rgba(255, 105, 0, .7) !important;
  text-transform: uppercase !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust::after {
  content: '◆' !important;
  position: absolute !important;
  top: 16px !important;
  right: 24px !important;
  color: rgba(255, 105, 0, .5) !important;
  font-size: 10px !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell {
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  padding: 22px 18px !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell::before {
  background: radial-gradient(circle at top right, rgba(255, 105, 0, .25) 0%, transparent 70%) !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__num {
  font-size: clamp(36px, 4vw, 52px) !important;
  font-weight: 800 !important;
  color: #ff6900 !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__num sub,
body.single-product .hyc-pdp-extras .hyc-pdp-trust__num sup {
  color: rgba(255, 105, 0, .8) !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__lbl {
  color: rgba(255, 255, 255, .8) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:hover {
  border-color: rgba(255, 105, 0, .4) !important;
  background: rgba(255, 105, 0, .06) !important;
  box-shadow: 0 16px 32px -16px rgba(255, 105, 0, .25) !important;
}

/* === BREADCRUMB — Editorial subtle === */
body.single-product .woocommerce-breadcrumb {
  background: transparent !important;
  border: none !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  color: #8a92a6 !important;
  padding: 18px 24px !important;
  margin: 0 auto !important;
  max-width: 1240px !important;
}
body.single-product .woocommerce-breadcrumb::before {
  content: '◆ ' !important;
  color: #ff6900 !important;
  font-weight: 700 !important;
  margin-right: 8px !important;
}

/* === DESCRIPTION BLURB — Refined typographic moment === */
body.single-product .summary .hyc-pdp-blurb,
body.single-product .summary .woocommerce-product-details__short-description {
  position: relative !important;
}
body.single-product .summary .hyc-pdp-blurb::before,
body.single-product .summary .woocommerce-product-details__short-description::before {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}
body.single-product .summary .hyc-pdp-blurb::after,
body.single-product .summary .woocommerce-product-details__short-description::after {
  content: '' !important;
  display: block !important;
  width: 24px !important;
  height: 1px !important;
  background: #00875a !important;
  margin-top: 8px !important;
  opacity: .4 !important;
}

/* === HEADS — JetBrains Mono distinctive markers === */
body.single-product .hyc-pdp-bundle__title,
body.single-product .hyc-pdp-consult__title,
body.single-product .hyc-pdp-showroom__head,
body.single-product .hyc-pdp-specs-card__head,
body.single-product .hyc-pdp-policy__head {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
body.single-product .hyc-pdp-bundle__title::before,
body.single-product .hyc-pdp-showroom__head::before,
body.single-product .hyc-pdp-specs-card__head::before,
body.single-product .hyc-pdp-policy__head::before {
  content: '◆' !important;
  font-size: .85em !important;
  color: #ff6900 !important;
  opacity: .8 !important;
}
body.single-product .hyc-pdp-consult__title::before {
  content: '◆' !important;
  font-size: .85em !important;
  color: #ff6900 !important;
  opacity: .9 !important;
}

/* End iter-021 patch */
/* ===================================================================
   GAN single-product iter-022 — Final micro-interactions polish
   Push 9.06 → 9.5+. Distinct hover narratives, refined motion,
   editorial details, visual storytelling moments.
   =================================================================== */

/* === ENTRANCE: subtle fade-up on hero cards (CSS-only with scroll) === */
@keyframes hyc-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.single-product .hyc-pdp-hero__left > *,
body.single-product .hyc-pdp-hero__right > * {
  animation: hyc-fade-up .6s var(--hyc-ease) backwards !important;
}
body.single-product .hyc-pdp-hero__left > *:nth-child(1) { animation-delay: 0ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(2) { animation-delay: 80ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(3) { animation-delay: 160ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(4) { animation-delay: 240ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(5) { animation-delay: 320ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(6) { animation-delay: 400ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(7) { animation-delay: 480ms !important; }
body.single-product .hyc-pdp-hero__left > *:nth-child(8) { animation-delay: 560ms !important; }
body.single-product .hyc-pdp-hero__right > *:nth-child(1) { animation-delay: 40ms !important; }
body.single-product .hyc-pdp-hero__right > *:nth-child(2) { animation-delay: 120ms !important; }
body.single-product .hyc-pdp-hero__right > *:nth-child(3) { animation-delay: 200ms !important; }
@media (prefers-reduced-motion: reduce) {
  body.single-product * { animation: none !important; }
}

/* === IMAGE — magnetic zoom on hover === */
body.single-product .woocommerce-product-gallery__image {
  cursor: zoom-in !important;
}
body.single-product .woocommerce-product-gallery__image img {
  transition: transform .6s cubic-bezier(.25, .8, .25, 1) !important;
  will-change: transform !important;
}
body.single-product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.08) !important;
}

/* === HYC SEAL — Premium polish === */
body.single-product .woocommerce-product-gallery__wrapper::after {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transition: transform .3s var(--hyc-ease), box-shadow .3s var(--hyc-ease) !important;
}
body.single-product .woocommerce-product-gallery__wrapper:hover::after {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px -6px rgba(10, 14, 31, .5) !important;
}

/* === PRICE — Pulse on entrance === */
body.single-product .summary .price {
  position: relative !important;
}
body.single-product .summary .price::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, transparent, rgba(224, 45, 60, .08), transparent) !important;
  transform: translateX(-100%) !important;
  animation: hyc-shimmer 4s ease-in-out infinite !important;
  pointer-events: none !important;
}
@keyframes hyc-shimmer {
  0%, 70%, 100% { transform: translateX(-100%); }
  85% { transform: translateX(100%); }
}

/* === EDITORIAL TAG MOMENT === */
body.single-product .summary .price::before {
  transform: translateY(0) !important;
  transition: transform .25s var(--hyc-ease), color .25s var(--hyc-ease) !important;
  animation: hyc-tag-bounce .8s var(--hyc-ease) backwards !important;
  animation-delay: 500ms !important;
}
@keyframes hyc-tag-bounce {
  0% { opacity: 0; transform: translateY(8px); }
  60% { opacity: 1; transform: translateY(-2px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === BUTTON: Liquid ripple-like motion === */
body.single-product .single_add_to_cart_button {
  background-size: 200% 100% !important;
  background-position: 0% 50% !important;
  background-image: linear-gradient(90deg, #e02d3c 0%, #ff6900 50%, #e02d3c 100%) !important;
  transition:
    background-position .6s var(--hyc-ease),
    transform .15s var(--hyc-ease),
    box-shadow .25s var(--hyc-ease) !important;
}
body.single-product .single_add_to_cart_button:hover {
  background-position: 100% 50% !important;
}

/* === SECTION DIVIDERS — Reveal on scroll feel === */
body.single-product .hyc-pdp-extras > * {
  animation: hyc-fade-up .8s var(--hyc-ease) backwards !important;
}
body.single-product .hyc-pdp-extras > *:nth-child(1) { animation-delay: 100ms !important; }
body.single-product .hyc-pdp-extras > *:nth-child(2) { animation-delay: 200ms !important; }
body.single-product .hyc-pdp-extras > *:nth-child(3) { animation-delay: 300ms !important; }
body.single-product .hyc-pdp-extras > *:nth-child(4) { animation-delay: 400ms !important; }

/* === NUMBER THEATRE — count-up feel (CSS pulse) === */
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell {
  animation: hyc-fade-up .6s var(--hyc-ease) backwards !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:nth-child(1) { animation-delay: 100ms !important; }
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:nth-child(2) { animation-delay: 200ms !important; }
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:nth-child(3) { animation-delay: 300ms !important; }
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:nth-child(4) { animation-delay: 400ms !important; }
body.single-product .hyc-pdp-extras .hyc-pdp-trust__num {
  transition: transform .3s var(--hyc-ease), color .3s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-extras .hyc-pdp-trust__cell:hover .hyc-pdp-trust__num {
  transform: scale(1.04) translateY(-2px) !important;
  text-shadow: 0 8px 24px rgba(255, 105, 0, .35) !important;
}

/* === BUNDLE LIST — Stagger entrance === */
body.single-product .hyc-pdp-bundle__list li {
  animation: hyc-fade-up .5s var(--hyc-ease) backwards !important;
  transition: transform .2s var(--hyc-ease), color .2s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-bundle__list li:nth-child(1) { animation-delay: 500ms !important; }
body.single-product .hyc-pdp-bundle__list li:nth-child(2) { animation-delay: 580ms !important; }
body.single-product .hyc-pdp-bundle__list li:nth-child(3) { animation-delay: 660ms !important; }
body.single-product .hyc-pdp-bundle__list li:nth-child(4) { animation-delay: 740ms !important; }
body.single-product .hyc-pdp-bundle__list li:hover {
  transform: translateX(4px) !important;
  color: #0a0e1f !important;
}
body.single-product .hyc-pdp-bundle__list li:hover::before {
  background: #00875a !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  left: 0 !important;
  font-size: 10px !important;
  transition: all .2s var(--hyc-ease) !important;
}

/* === POLICY items — slide on hover === */
body.single-product .hyc-pdp-policy__list li {
  cursor: default !important;
  padding: 8px !important;
  margin: -8px !important;
  border-radius: 10px !important;
  transition: background .2s var(--hyc-ease) !important;
}
body.single-product .hyc-pdp-policy__list li:hover {
  background: rgba(255, 105, 0, .05) !important;
}

/* === SCROLL PROGRESS BAR (top of page) === */
body.single-product::before {
  content: '' !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 3px !important;
  width: 100% !important;
  background: linear-gradient(90deg, #ff6900, #c89b3c, #e02d3c) !important;
  transform-origin: left !important;
  transform: scaleX(0) !important;
  z-index: 9999 !important;
  animation: hyc-scroll-progress linear !important;
  animation-timeline: scroll(root) !important;
  pointer-events: none !important;
}
@keyframes hyc-scroll-progress {
  to { transform: scaleX(1); }
}

/* === TABS — Active state with smooth indicator === */
body.single-product .woocommerce-tabs ul.tabs li a {
  font-feature-settings: "ss01" 1 !important;
}
body.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #ff6900 !important;
}

/* === PULLQUOTE — Editorial italic moment === */
body.single-product .hyc-pdp-pullquote__body {
  font-family: 'Fraunces', 'Source Serif 4', Georgia, serif !important;
  font-style: italic !important;
  font-variation-settings: 'opsz' 144 !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #2a3045 !important;
  letter-spacing: -.015em !important;
  text-wrap: balance !important;
}

/* === RELATED CARDS — Editorial number index === */
body.single-product .hyc-pdp-extras .related.products li.product,
body.single-product .hyc-pdp-extras .upsells.products li.product,
body.single-product .hyc-pdp-extras .up-sells.products li.product {
  position: relative !important;
  counter-increment: hyc-prod !important;
}
body.single-product .hyc-pdp-extras .related.products ul.products,
body.single-product .hyc-pdp-extras .upsells.products ul.products,
body.single-product .hyc-pdp-extras .up-sells.products ul.products {
  counter-reset: hyc-prod !important;
}
body.single-product .hyc-pdp-extras .related.products li.product::after,
body.single-product .hyc-pdp-extras .upsells.products li.product::after,
body.single-product .hyc-pdp-extras .up-sells.products li.product::after {
  content: counter(hyc-prod, decimal-leading-zero) !important;
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .15em !important;
  color: #c89b3c !important;
  opacity: .5 !important;
  z-index: 2 !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
}
body.single-product .hyc-pdp-extras .related.products li.product:hover::after,
body.single-product .hyc-pdp-extras .upsells.products li.product:hover::after,
body.single-product .hyc-pdp-extras .up-sells.products li.product:hover::after {
  color: #ff6900 !important;
  opacity: 1 !important;
}

/* === SUMMARY CARD — Subtle parallax-like depth === */
body.single-product .summary.entry-summary {
  background-image:
    radial-gradient(at top right, rgba(255, 105, 0, .03) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #fff 100%) !important;
}

/* === TYPOGRAPHIC POLISH on numbers === */
body.single-product .summary .price,
body.single-product .hyc-pdp-trust__num,
body.single-product .hyc-pdp-specs-card__table td {
  font-variant-numeric: tabular-nums !important;
  font-feature-settings: "tnum" 1, "lnum" 1, "zero" 1 !important;
}

/* === Optical alignment — Apple-style icon weight === */
body.single-product .hyc-pdp-quickinfo__icon,
body.single-product .hyc-pdp-policy__icon {
  font-feature-settings: "case" 1 !important;
  -webkit-font-smoothing: antialiased !important;
}

/* End iter-022 patch */
/* ===================================================================
   GAN single-product iter-023 — Push 9.16 → 10/10
   9 features: sticky cart bar · zoom lens · viewers badge ·
   share buttons · compare drawer · Apple-style price ·
   tab stagger · wishlist confetti · recently-viewed strip
   =================================================================== */

/* =========================================================
   F6: APPLE-STYLE PRICE MOMENT
   Big numerals, small currency symbol, tabular kerning
   ========================================================= */
body.single-product .summary .price {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 800 !important;
  color: var(--orange, #ff6900) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  font-size: clamp(40px, 6vw, 64px) !important;
  margin: 24px 0 18px !important;
}
body.single-product .summary .price .woocommerce-Price-amount {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 2px !important;
  font-variant-numeric: tabular-nums !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}
body.single-product .summary .price .woocommerce-Price-currencySymbol {
  font-size: 0.4em !important;
  font-weight: 600 !important;
  opacity: 0.7 !important;
  letter-spacing: 0 !important;
  transform: translateY(-0.3em) !important;
  display: inline-block !important;
}
/* Sale price: regular crossed out, sale price bigger */
body.single-product .summary .price del {
  font-size: 0.4em !important;
  font-weight: 500 !important;
  color: var(--ink-mute, #6b7280) !important;
  opacity: 0.6 !important;
  text-decoration: line-through !important;
  margin-right: 6px !important;
}
body.single-product .summary .price ins {
  text-decoration: none !important;
  background: none !important;
  font-size: 1em !important;
  font-weight: 800 !important;
  color: var(--red, #e02d3c) !important;
}
body.single-product .summary .price ins .woocommerce-Price-amount {
  color: var(--red, #e02d3c) !important;
}

/* =========================================================
   F3: LIVE VIEWERS BADGE
   "X người đang xem" near title with pulse dot
   ========================================================= */
body.single-product .hyc-viewers-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 12px 6px 10px !important;
  background: #fef3f3 !important;
  border: 1px solid #fbcaca !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #c12030 !important;
  letter-spacing: 0.01em !important;
  margin: 0 0 12px !important;
  animation: hyc-fade-in 0.6s ease-out !important;
  transition: transform 0.3s var(--hyc-ease, ease-out) !important;
}
body.single-product .hyc-viewers-badge:hover {
  transform: translateY(-1px) !important;
}
body.single-product .hyc-viewers-badge__dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #e02d3c !important;
  position: relative !important;
  flex-shrink: 0 !important;
}
body.single-product .hyc-viewers-badge__dot::after {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: 50% !important;
  background: rgba(224, 45, 60, 0.3) !important;
  animation: hyc-viewers-pulse 1.6s ease-out infinite !important;
}
@keyframes hyc-viewers-pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes hyc-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
body.single-product .hyc-viewers-badge__count {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #e02d3c !important;
  letter-spacing: 0 !important;
}

/* =========================================================
   F4: QUICK-SHARE FLOATING BUTTONS
   Zalo / Facebook / Copy link beside title
   ========================================================= */
body.single-product .hyc-share-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 12px 0 16px !important;
  padding: 10px 14px !important;
  background: #f7f9fc !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 12px !important;
}
body.single-product .hyc-share-row__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
  margin-right: 4px !important;
}
body.single-product .hyc-share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid #e3eaf2 !important;
  color: #4a5568 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.2s var(--hyc-ease, ease-out) !important;
  position: relative !important;
  text-decoration: none !important;
}
body.single-product .hyc-share-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px -4px rgba(10, 14, 31, 0.18) !important;
  border-color: transparent !important;
}
body.single-product .hyc-share-btn--zalo:hover { background: #0068ff !important; color: #fff !important; }
body.single-product .hyc-share-btn--fb:hover { background: #1877f2 !important; color: #fff !important; }
body.single-product .hyc-share-btn--copy:hover { background: var(--orange, #ff6900) !important; color: #fff !important; }
body.single-product .hyc-share-btn--copy.is-copied {
  background: #10b981 !important;
  color: #fff !important;
  border-color: transparent !important;
}
body.single-product .hyc-share-btn--copy.is-copied::after {
  content: 'Đã copy!' !important;
  position: absolute !important;
  bottom: -28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #0a0e1f !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  animation: hyc-fade-in 0.2s ease-out !important;
}

/* =========================================================
   F8: WISHLIST CONFETTI BURST (CSS-only)
   Pseudo-elements stagger 6 particles outward
   ========================================================= */
body.single-product .hyc-single-wishlist-btn {
  position: relative !important;
  overflow: visible !important;
}
body.single-product .hyc-single-wishlist-btn.is-bursting::before,
body.single-product .hyc-single-wishlist-btn.is-bursting::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 10 !important;
}
body.single-product .hyc-single-wishlist-btn.is-bursting::before {
  background: #e02d3c !important;
  box-shadow:
    20px -20px 0 -1px #ff6900,
    -22px -18px 0 -1px #c89b3c,
    24px 16px 0 -1px #10b981,
    -20px 20px 0 -1px #1877f2;
  animation: hyc-confetti-burst-1 0.7s ease-out forwards !important;
}
body.single-product .hyc-single-wishlist-btn.is-bursting::after {
  background: #ff6900 !important;
  box-shadow:
    -16px -22px 0 -1px #e02d3c,
    18px -16px 0 -1px #ffc107,
    -22px 14px 0 -1px #8b5cf6,
    16px 22px 0 -1px #c12030;
  animation: hyc-confetti-burst-2 0.7s ease-out 0.06s forwards !important;
}
@keyframes hyc-confetti-burst-1 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4) translateY(-12px); opacity: 0; }
}
@keyframes hyc-confetti-burst-2 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.8) translateY(8px); opacity: 0; }
}
body.single-product .hyc-single-wishlist-btn[aria-pressed="true"] {
  animation: hyc-heart-bounce 0.5s ease-out !important;
}
@keyframes hyc-heart-bounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.18); }
  60% { transform: scale(0.94); }
  100% { transform: scale(1); }
}

/* =========================================================
   F2 v2 (iter-zoom-001): ENHANCED LENS + RICH LIGHTBOX
   Lens 200px @ 2.5x with crosshair + ring; Lightbox with
   zoom/pan/swipe controls + thumbnail strip + counter.
   ========================================================= */
body.single-product .hyc-zoom-lens {
  position: absolute !important;
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 1px 2px rgba(10, 14, 31, 0.18),
    0 12px 32px -8px rgba(10, 14, 31, 0.42),
    0 24px 64px -12px rgba(10, 14, 31, 0.28),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
  background-repeat: no-repeat !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
  pointer-events: none !important;
  z-index: 50 !important;
  opacity: 0 !important;
  transform: scale(0.92) !important;
  transition:
    opacity 0.2s ease-out,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform, background-position !important;
}
body.single-product .hyc-zoom-lens.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}
body.single-product .hyc-zoom-lens__crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: rgba(255, 105, 0, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 0 8px rgba(255, 105, 0, 0.55);
  pointer-events: none;
}
body.single-product .woocommerce-product-gallery {
  position: relative !important;
}
body.single-product .woocommerce-product-gallery__image {
  cursor: zoom-in;
}
@media (hover: none) {
  body.single-product .hyc-zoom-lens { display: none !important; }
}

/* ===== LIGHTBOX v2 ===== */
.hyc-lightbox-v2 {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 24, 0.92);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease-out, visibility 0s linear 0.24s;
}
.hyc-lightbox-v2.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s ease-out, visibility 0s;
}
body.hyc-lb-open {
  overflow: hidden;
}

.hyc-lb__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  color: #fff;
  z-index: 2;
  height: 52px;
}
.hyc-lb__counter {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hyc-lb__btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  font-family: inherit;
}
.hyc-lb__btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}
.hyc-lb__btn:active {
  transform: scale(0.96);
}
.hyc-lb__close {
  font-size: 28px;
}

.hyc-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  font-weight: 300;
  width: 56px;
  height: 56px;
  z-index: 2;
}
.hyc-lb__prev { left: 24px; }
.hyc-lb__next { right: 24px; }
.hyc-lb__nav:hover { transform: translateY(-50%) scale(1.08); }

.hyc-lb__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  user-select: none;
  touch-action: none;
}
.hyc-lb__img {
  /* iter-003: width/height set by JS fitImage() to viewport-fit + upscale ≤1.6x */
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease-out, width 0.24s ease, height 0.24s ease;
  -webkit-user-drag: none;
  user-select: none;
  will-change: transform;
  opacity: 0;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hyc-lb__img.is-loaded { opacity: 1; }

/* iter-002: spinner */
.hyc-lb__spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s linear 0.2s;
  pointer-events: none;
}
.hyc-lb__spinner.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s, visibility 0s;
}
.hyc-lb__spinner span {
  display: block;
  width: 100%; height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--orange, #ff6900);
  border-radius: 50%;
  animation: hycLbSpin 0.85s linear infinite;
}
@keyframes hycLbSpin {
  to { transform: rotate(360deg); }
}

/* iter-002: hint toast */
.hyc-lb__hint {
  position: absolute;
  left: 50%; bottom: 96px;
  transform: translate(-50%, 8px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 99px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease-out, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.32s;
  z-index: 3;
  pointer-events: none;
}
.hyc-lb__hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.32s ease-out, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}
.hyc-lightbox-v2:not(.is-open) .hyc-lb__img { transition: none; }
/* Disable transition while dragging (handled inline by JS via no transition during drag) */

.hyc-lb__bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  z-index: 2;
  height: 52px;
}
.hyc-lb__scale {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  min-width: 52px;
  text-align: center;
  letter-spacing: 0.04em;
}

.hyc-lb__thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  z-index: 2;
  max-height: 92px;
}
.hyc-lb__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.hyc-lb__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hyc-lb__thumb:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.hyc-lb__thumb.is-active {
  border-color: var(--orange, #ff6900);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hyc-lightbox-v2,
  .hyc-lb__img,
  .hyc-lb__btn,
  .hyc-lb__thumb,
  body.single-product .hyc-zoom-lens {
    transition: opacity 0.1s ease !important;
  }
}

/* Mobile responsive */
@media (max-width: 720px) {
  .hyc-lb__head { padding: 12px 14px; }
  .hyc-lb__nav { width: 44px; height: 44px; font-size: 28px; }
  .hyc-lb__prev { left: 8px; }
  .hyc-lb__next { right: 8px; }
  .hyc-lb__img { max-width: 96vw; max-height: 64vh; }
  .hyc-lb__thumb { width: 48px; height: 48px; }
}

/* Click-to-lightbox overlay (WC has prettyPhoto but make our own minimal) */
body.single-product .hyc-lightbox {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 14, 31, 0.94) !important;
  z-index: 9999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px !important;
  cursor: zoom-out !important;
  animation: hyc-fade-in 0.2s ease-out !important;
}
body.single-product .hyc-lightbox.is-open {
  display: flex !important;
}
body.single-product .hyc-lightbox img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.6) !important;
}
body.single-product .hyc-lightbox__close {
  position: absolute !important;
  top: 24px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: none !important;
  color: #fff !important;
  font-size: 22px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
}
body.single-product .hyc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24) !important;
}

/* =========================================================
   F1: STICKY ADD-TO-CART BAR
   Fixed bottom; appears after summary scrolls past
   ========================================================= */
.hyc-sticky-cart {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-top: 1px solid rgba(10, 14, 31, 0.08) !important;
  box-shadow: 0 -8px 28px -8px rgba(10, 14, 31, 0.16) !important;
  transform: translateY(100%) !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
}
.hyc-sticky-cart.is-visible {
  transform: translateY(0) !important;
}
.hyc-sticky-cart__inner {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 12px 20px !important;
  display: grid !important;
  grid-template-columns: 56px 1fr auto auto !important;
  align-items: center !important;
  gap: 16px !important;
}
.hyc-sticky-cart__thumb {
  width: 56px !important;
  height: 56px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  background: #f7f9fc !important;
  border: 1px solid #e8eef5 !important;
}
.hyc-sticky-cart__info {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.hyc-sticky-cart__title {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  letter-spacing: -0.01em !important;
}
.hyc-sticky-cart__price {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--orange, #ff6900) !important;
  letter-spacing: -0.02em !important;
  font-variant-numeric: tabular-nums !important;
}
.hyc-sticky-cart__price small {
  font-size: 10px !important;
  font-weight: 600 !important;
  opacity: 0.7 !important;
  margin-right: 2px !important;
}
.hyc-sticky-cart__qty {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #f7f9fc !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 10px !important;
  padding: 4px !important;
}
.hyc-sticky-cart__qty button {
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  background: transparent !important;
  color: #0a0e1f !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  border-radius: 6px !important;
  transition: background 0.15s !important;
}
.hyc-sticky-cart__qty button:hover {
  background: #fff !important;
}
.hyc-sticky-cart__qty input {
  width: 36px !important;
  height: 32px !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.hyc-sticky-cart__qty input::-webkit-outer-spin-button,
.hyc-sticky-cart__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.hyc-sticky-cart__cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 44px !important;
  padding: 0 22px !important;
  background: linear-gradient(135deg, var(--orange, #ff6900), var(--red, #e02d3c)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.hyc-sticky-cart__cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 20px -6px rgba(224, 45, 60, 0.4) !important;
}
.hyc-sticky-cart__cta:active {
  transform: translateY(0) !important;
}
@media (max-width: 720px) {
  .hyc-sticky-cart__inner {
    grid-template-columns: 44px 1fr auto !important;
    gap: 10px !important;
    padding: 10px 14px !important;
  }
  .hyc-sticky-cart__thumb { width: 44px !important; height: 44px !important; }
  .hyc-sticky-cart__title { font-size: 12px !important; }
  .hyc-sticky-cart__price { font-size: 14px !important; }
  .hyc-sticky-cart__qty { display: none !important; }
  .hyc-sticky-cart__cta { padding: 0 16px !important; font-size: 13px !important; }
}

/* =========================================================
   F5: COMPARE DRAWER
   Slide-up panel showing 2-3 products side-by-side
   ========================================================= */
.hyc-compare-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 8px 0 0 !important;
  padding: 8px 14px !important;
  background: transparent !important;
  border: 1px dashed #cbd5e1 !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.hyc-compare-toggle:hover {
  border-color: var(--orange, #ff6900) !important;
  color: var(--orange, #ff6900) !important;
  background: #fff7f0 !important;
}
.hyc-compare-toggle.is-active {
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
  border-color: var(--orange, #ff6900) !important;
  border-style: solid !important;
}
.hyc-compare-drawer {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1100 !important;
  background: #0a0e1f !important;
  color: #fff !important;
  box-shadow: 0 -16px 48px -12px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(100%) !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
}
.hyc-compare-drawer.is-open {
  transform: translateY(0) !important;
}
.hyc-compare-drawer__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.hyc-compare-drawer__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #fff !important;
}
.hyc-compare-drawer__count {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  color: var(--orange, #ff6900) !important;
  margin-left: 8px !important;
}
.hyc-compare-drawer__close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: none !important;
  color: #fff !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.hyc-compare-drawer__close:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}
.hyc-compare-drawer__body {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
  padding: 24px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
}
.hyc-compare-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  padding: 16px !important;
  position: relative !important;
  transition: border-color 0.2s !important;
}
.hyc-compare-item:hover {
  border-color: rgba(255, 105, 0, 0.4) !important;
}
.hyc-compare-item__remove {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: none !important;
  color: #fff !important;
  font-size: 12px !important;
  cursor: pointer !important;
  opacity: 0.6 !important;
  transition: opacity 0.15s, background 0.15s !important;
}
.hyc-compare-item__remove:hover {
  opacity: 1 !important;
  background: var(--red, #e02d3c) !important;
}
.hyc-compare-item__thumb {
  width: 100% !important;
  aspect-ratio: 1 !important;
  background: #fff !important;
  border-radius: 10px !important;
  object-fit: contain !important;
  padding: 8px !important;
  margin-bottom: 10px !important;
}
.hyc-compare-item__title {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.35 !important;
  margin-bottom: 6px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.hyc-compare-item__price {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--orange, #ff6900) !important;
  margin-bottom: 12px !important;
}
.hyc-compare-item__link {
  display: inline-block !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--orange, #ff6900) !important;
  text-decoration: none !important;
  border-bottom: 1px solid currentColor !important;
  padding-bottom: 2px !important;
}
.hyc-compare-empty {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 32px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-style: italic !important;
}
.hyc-compare-drawer__bottom {
  padding: 0 24px 20px !important;
  text-align: center !important;
}
.hyc-compare-drawer__clear {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}
.hyc-compare-drawer__clear:hover {
  border-color: var(--red, #e02d3c) !important;
  color: var(--red, #e02d3c) !important;
}

/* Floating compare badge launcher when drawer closed */
.hyc-compare-launcher {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  z-index: 999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 18px !important;
  background: #0a0e1f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 12px 28px -8px rgba(10, 14, 31, 0.4) !important;
  transform: translateY(100px) scale(0.8) !important;
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.hyc-compare-launcher.is-visible {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
}
.hyc-compare-launcher__badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 6px !important;
  border-radius: 999px !important;
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}
@media (max-width: 720px) {
  .hyc-compare-launcher {
    right: 14px !important;
    bottom: 80px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   F7: TAB CONTENT STAGGER ANIMATION
   Fade-in when switching WC tabs
   ========================================================= */
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade {
  animation: hyc-tab-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > * {
  animation: hyc-tab-stagger-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards !important;
}
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(1) { animation-delay: 60ms !important; }
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(2) { animation-delay: 120ms !important; }
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(3) { animation-delay: 180ms !important; }
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(4) { animation-delay: 240ms !important; }
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(5) { animation-delay: 300ms !important; }
body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > *:nth-child(n+6) { animation-delay: 360ms !important; }
@keyframes hyc-tab-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hyc-tab-stagger-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  body.single-product .woocommerce-Tabs-panel.hyc-tab-fade,
  body.single-product .woocommerce-Tabs-panel.hyc-tab-fade > * {
    animation: none !important;
  }
}

/* =========================================================
   F9: RECENTLY VIEWED STRIP
   Distinct from related: horizontal scroll, editorial header
   ========================================================= */
body.single-product .hyc-recently-viewed {
  margin: 60px 0 40px !important;
  padding: 36px 0 !important;
  background: linear-gradient(180deg, #fafbfd 0%, #f3f6fb 100%) !important;
  border-top: 1px solid #e8eef5 !important;
  border-bottom: 1px solid #e8eef5 !important;
  position: relative !important;
}
body.single-product .hyc-recently-viewed__inner {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
body.single-product .hyc-recently-viewed__head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 24px !important;
}
body.single-product .hyc-recently-viewed__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(22px, 2.6vw, 30px) !important;
  font-weight: 500 !important;
  color: #0a0e1f !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  margin: 0 !important;
}
body.single-product .hyc-recently-viewed__title em {
  font-style: italic !important;
  color: var(--orange, #ff6900) !important;
}
body.single-product .hyc-recently-viewed__meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
}
body.single-product .hyc-recently-viewed__track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(200px, 220px) !important;
  gap: 16px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  padding-bottom: 12px !important;
  margin: 0 -24px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 transparent !important;
}
body.single-product .hyc-recently-viewed__track::-webkit-scrollbar {
  height: 6px !important;
}
body.single-product .hyc-recently-viewed__track::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 3px !important;
}
body.single-product .hyc-recently-viewed__track::-webkit-scrollbar-thumb:hover {
  background: var(--orange, #ff6900) !important;
}
body.single-product .hyc-recent-card {
  scroll-snap-align: start !important;
  background: #fff !important;
  border-radius: 14px !important;
  padding: 14px !important;
  border: 1px solid #e8eef5 !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  transition: all 0.25s var(--hyc-ease, ease-out) !important;
  position: relative !important;
}
body.single-product .hyc-recent-card:hover {
  border-color: var(--orange, #ff6900) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px -8px rgba(10, 14, 31, 0.12) !important;
}
body.single-product .hyc-recent-card__badge {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: rgba(10, 14, 31, 0.06) !important;
  color: #6b7280 !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  z-index: 2 !important;
}
body.single-product .hyc-recent-card__thumb {
  width: 100% !important;
  aspect-ratio: 1 !important;
  background: #f7f9fc !important;
  border-radius: 8px !important;
  object-fit: contain !important;
  padding: 10px !important;
}
body.single-product .hyc-recent-card__title {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0a0e1f !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
body.single-product .hyc-recent-card__price {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--orange, #ff6900) !important;
  margin-top: auto !important;
}
body.single-product .hyc-recently-viewed--empty {
  display: none !important;
}

/* =========================================================
   POLISH — Bottom padding when sticky cart shown
   ========================================================= */
body.single-product.hyc-sticky-active {
  padding-bottom: 84px !important;
}
@media (max-width: 720px) {
  body.single-product.hyc-sticky-active {
    padding-bottom: 76px !important;
  }
}

/* End iter-023 patch */
/* ===================================================================
   iter-024 — Universal Page Fill
   5 shared blocks injected via JS theo page type
   Goal: kill sparse + redundancy across 30+ pages
   =================================================================== */

/* =========================================================
   Common wrapper for all 5 fill blocks
   ========================================================= */
.hyc-fill {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
.hyc-fill-stack {
  margin: 60px auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 60px !important;
}
.hyc-fill-stack > * {
  animation: hyc-fill-fade .5s var(--hyc-ease, ease-out) backwards !important;
}
.hyc-fill-stack > *:nth-child(1) { animation-delay: 60ms !important; }
.hyc-fill-stack > *:nth-child(2) { animation-delay: 120ms !important; }
.hyc-fill-stack > *:nth-child(3) { animation-delay: 180ms !important; }
.hyc-fill-stack > *:nth-child(4) { animation-delay: 240ms !important; }
.hyc-fill-stack > *:nth-child(5) { animation-delay: 300ms !important; }
@keyframes hyc-fill-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-fill-stack > * { animation: none !important; }
}

/* =========================================================
   F1: TRUST BAND — 4-cell horizontal "15 năm / 5247 / 63 / 36"
   ========================================================= */
.hyc-fill-trust {
  background: linear-gradient(135deg, #0a0e1f 0%, #1a1f3a 100%) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  position: relative !important;
  overflow: hidden !important;
}
.hyc-fill-trust::before {
  content: 'HUNGYENPC · 15 NĂM TẠI HƯNG YÊN' !important;
  position: absolute !important;
  top: 8px !important;
  left: 32px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: var(--orange, #ff6900) !important;
  opacity: 0.7 !important;
}
.hyc-fill-trust__cell {
  padding-top: 16px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-left: 16px !important;
}
.hyc-fill-trust__cell:first-child { border-left: none !important; padding-left: 0 !important; }
.hyc-fill-trust__num {
  display: block !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  color: #fff !important;
  font-variant-numeric: tabular-nums !important;
}
.hyc-fill-trust__num em {
  color: var(--orange, #ff6900) !important;
  font-style: normal !important;
}
.hyc-fill-trust__label {
  display: block !important;
  margin-top: 8px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
@media (max-width: 720px) {
  .hyc-fill-trust { grid-template-columns: repeat(2, 1fr) !important; padding: 24px 18px !important; }
  .hyc-fill-trust::before { font-size: 8px !important; }
  .hyc-fill-trust__cell:nth-child(3) { border-left: none !important; padding-left: 0 !important; }
}

/* =========================================================
   F2: BRAND STRIP MINI — single row scroll-snap 12 brands
   ========================================================= */
.hyc-fill-brands {
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  background: #fff !important;
}
.hyc-fill-brands__head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  margin-bottom: 18px !important;
  gap: 16px !important;
}
.hyc-fill-brands__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(18px, 2vw, 22px) !important;
  font-weight: 500 !important;
  color: #0a0e1f !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}
.hyc-fill-brands__meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
}
.hyc-fill-brands__track {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}
.hyc-fill-brands__chip {
  display: inline-flex !important;
  align-items: center !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #f7f9fc !important;
  border: 1px solid #e3eaf2 !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
}
.hyc-fill-brands__chip:hover {
  background: #0a0e1f !important;
  color: #fff !important;
  border-color: #0a0e1f !important;
  transform: translateY(-1px) !important;
}

/* =========================================================
   F3: FAQ MINI — 6 collapsible Q&A
   ========================================================= */
.hyc-fill-faq {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}
.hyc-fill-faq__head {
  position: sticky !important;
  top: 80px !important;
}
.hyc-fill-faq__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--orange, #ff6900) !important;
  margin-bottom: 12px !important;
}
.hyc-fill-faq__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: clamp(24px, 2.8vw, 36px) !important;
  font-weight: 500 !important;
  color: #0a0e1f !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 14px !important;
}
.hyc-fill-faq__title em {
  font-style: italic !important;
  color: var(--orange, #ff6900) !important;
}
.hyc-fill-faq__sub {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  color: #6b7280 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}
.hyc-fill-faq__sub a {
  color: #0a0e1f !important;
  border-bottom: 1px solid currentColor !important;
  text-decoration: none !important;
}
.hyc-fill-faq__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.hyc-fill-faq details {
  border: 1px solid #e8eef5 !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding: 0 !important;
  overflow: hidden !important;
  transition: border-color 0.2s !important;
}
.hyc-fill-faq details[open] {
  border-color: var(--orange, #ff6900) !important;
  box-shadow: 0 8px 20px -8px rgba(255, 105, 0, 0.15) !important;
}
.hyc-fill-faq summary {
  list-style: none !important;
  cursor: pointer !important;
  padding: 18px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  line-height: 1.4 !important;
}
.hyc-fill-faq summary::-webkit-details-marker { display: none !important; }
.hyc-fill-faq summary::after {
  content: '+' !important;
  flex-shrink: 0 !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: #f7f9fc !important;
  color: #0a0e1f !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  text-align: center !important;
  transition: transform 0.25s, background 0.2s !important;
}
.hyc-fill-faq details[open] summary::after {
  content: '−' !important;
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
}
.hyc-fill-faq__answer {
  padding: 0 22px 20px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #4a5568 !important;
}
.hyc-fill-faq__answer a {
  color: var(--orange, #ff6900) !important;
  text-decoration: none !important;
  border-bottom: 1px solid currentColor !important;
}
@media (max-width: 880px) {
  .hyc-fill-faq { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hyc-fill-faq__head { position: static !important; }
}

/* =========================================================
   F4: RELATED CATS GRID — 4 cells "Khám phá thêm"
   ========================================================= */
.hyc-fill-cats {
  background: #f7f9fc !important;
  border-radius: 16px !important;
  padding: 36px 32px !important;
}
.hyc-fill-cats__head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
}
.hyc-fill-cats__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 500 !important;
  color: #0a0e1f !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
}
.hyc-fill-cats__title em {
  font-style: italic !important;
  color: var(--orange, #ff6900) !important;
}
.hyc-fill-cats__meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
}
.hyc-fill-cats__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 12px !important;
}
.hyc-fill-cat {
  display: block !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 20px 22px !important;
  border: 1px solid #e8eef5 !important;
  text-decoration: none !important;
  transition: all 0.25s var(--hyc-ease, ease-out) !important;
  position: relative !important;
}
.hyc-fill-cat:hover {
  border-color: var(--orange, #ff6900) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px -8px rgba(10, 14, 31, 0.1) !important;
}
.hyc-fill-cat__icon {
  display: block !important;
  font-size: 22px !important;
  margin-bottom: 12px !important;
  filter: grayscale(20%) !important;
}
.hyc-fill-cat__name {
  display: block !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 4px !important;
}
.hyc-fill-cat__count {
  display: block !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--orange, #ff6900) !important;
  letter-spacing: 0.05em !important;
}
.hyc-fill-cat__arrow {
  position: absolute !important;
  top: 20px !important;
  right: 22px !important;
  font-size: 16px !important;
  color: #cbd5e1 !important;
  transition: all 0.2s !important;
}
.hyc-fill-cat:hover .hyc-fill-cat__arrow {
  color: var(--orange, #ff6900) !important;
  transform: translate(3px, -3px) !important;
}

/* =========================================================
   F5: SHOWROOM CARD — compact contact widget
   ========================================================= */
.hyc-fill-showroom {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  background: #fff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  padding: 32px !important;
  position: relative !important;
  overflow: hidden !important;
}
.hyc-fill-showroom::before {
  content: '◆' !important;
  position: absolute !important;
  top: 24px !important;
  right: 28px !important;
  font-size: 14px !important;
  color: var(--orange, #ff6900) !important;
  opacity: 0.5 !important;
}
.hyc-fill-showroom__body {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.hyc-fill-showroom__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--orange, #ff6900) !important;
}
.hyc-fill-showroom__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 500 !important;
  color: #0a0e1f !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}
.hyc-fill-showroom__title em {
  font-style: italic !important;
  color: var(--orange, #ff6900) !important;
}
.hyc-fill-showroom__lines {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  color: #4a5568 !important;
  line-height: 1.5 !important;
}
.hyc-fill-showroom__lines strong {
  color: #0a0e1f !important;
  font-weight: 700 !important;
}
.hyc-fill-showroom__ctas {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 6px !important;
}
.hyc-fill-showroom__cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.hyc-fill-showroom__cta--primary {
  background: linear-gradient(135deg, var(--orange, #ff6900), var(--red, #e02d3c)) !important;
  color: #fff !important;
}
.hyc-fill-showroom__cta--primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 20px -6px rgba(224, 45, 60, 0.4) !important;
}
.hyc-fill-showroom__cta--ghost {
  background: transparent !important;
  color: #0a0e1f !important;
  border: 1px solid #e3eaf2 !important;
}
.hyc-fill-showroom__cta--ghost:hover {
  border-color: #0a0e1f !important;
  background: #0a0e1f !important;
  color: #fff !important;
}
.hyc-fill-showroom__map {
  position: relative !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  min-height: 220px !important;
  background:
    linear-gradient(135deg, rgba(10, 14, 31, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 24px !important;
}
.hyc-fill-showroom__map-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}
.hyc-fill-showroom__map-pin {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  box-shadow: 0 12px 24px -6px rgba(255, 105, 0, 0.4) !important;
}
.hyc-fill-showroom__map-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #475569 !important;
}
.hyc-fill-showroom__map-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0a0e1f !important;
  text-decoration: none !important;
  border-bottom: 1px solid currentColor !important;
  padding-bottom: 2px !important;
}
.hyc-fill-showroom__map-link:hover {
  color: var(--orange, #ff6900) !important;
}
@media (max-width: 720px) {
  .hyc-fill-showroom { grid-template-columns: 1fr !important; padding: 24px 22px !important; gap: 22px !important; }
  .hyc-fill-showroom__map { min-height: 180px !important; }
}

/* =========================================================
   F6: COMPARE DRAWER — fix single-item stretch (iter-023 fix)
   ========================================================= */
.hyc-compare-drawer__body {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px)) !important;
  justify-content: center !important;
}

/* End iter-024 patch */

/* ===================================================================
   Hotfix — Homepage hero spacing top
   Hero "15 / 5.247 / 63" sát mega menu — thêm breathing space
   =================================================================== */
body.hyc-home .hyc-site-main {
  padding-top: clamp(40px, 6vw, 80px) !important;
}
@media (max-width: 720px) {
  body.hyc-home .hyc-site-main {
    padding-top: 24px !important;
  }
}

/* ===================================================================
   Filter UI v2 (Phiên 14) — sections + chips + collapse
   =================================================================== */

/* Active filter chips bar — above grid */
/* Active filter chips v2 (T4 polish): editorial pills, per-group color anchor,
   inline SVG icon prefix, smoother hover + X button. */
.hyc-active-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fffaf3, #fffefb);
  border: 1px solid rgba(255, 105, 0, 0.16);
  border-radius: 14px;
}
.hyc-active-chips__lbl {
  font-size: 11px;
  font-weight: 800;
  color: rgba(10, 14, 31, 0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hyc-active-chips__lbl::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--orange, #ff6900);
  transform: rotate(45deg);
}

/* Default chip — neutral. Group tones override via data-group. */
.hyc-active-chip {
  --chip-tone: 10, 14, 31;             /* default ink */
  --chip-tone-edge: rgba(10, 14, 31, 0.14);
  --chip-tone-bg: #ffffff;
  --chip-tone-dot: rgb(var(--chip-tone));
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 8px 4px 12px;
  background: var(--chip-tone-bg);
  border: 1px solid var(--chip-tone-edge);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 180ms ease,
              box-shadow 180ms ease;
}
/* Group color anchor — small dot left of icon */
.hyc-active-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chip-tone-dot);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.hyc-active-chip__ico {
  display: inline-flex;
  width: 13px;
  height: 13px;
  color: var(--chip-tone-dot);
  flex-shrink: 0;
}
.hyc-active-chip__ico svg { width: 13px; height: 13px; display: block; }

.hyc-active-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--chip-tone), 0.55);
  box-shadow: 0 4px 12px -4px rgba(var(--chip-tone), 0.28);
}
.hyc-active-chip__group {
  color: rgba(10, 14, 31, 0.5);
  font-weight: 600;
  font-size: 11.5px;
}
.hyc-active-chip__val {
  font-weight: 700;
  color: var(--ink, #0a0e1f);
}

/* Cleaner × button using SVG glyph via mask (consistent stroke) */
.hyc-active-chip__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(10, 14, 31, 0.06);
  color: var(--ink, #0a0e1f);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-left: 2px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.hyc-active-chip:hover .hyc-active-chip__x {
  background: rgb(var(--chip-tone));
  color: #fff;
  transform: rotate(90deg);
}

/* Per-group color tokens — editorial palette */
.hyc-active-chip[data-group="brand"]   { --chip-tone: 255, 105, 0;   --chip-tone-bg: #fffaf3; }
.hyc-active-chip[data-group="price"]   { --chip-tone: 46, 139, 87;   --chip-tone-bg: #f5fbf7; }
.hyc-active-chip[data-group="cpu"]     { --chip-tone: 46, 108, 214;  --chip-tone-bg: #f5f8fe; }
.hyc-active-chip[data-group="ram"]     { --chip-tone: 124, 76, 214;  --chip-tone-bg: #faf7fe; }
.hyc-active-chip[data-group="o-cung"]  { --chip-tone: 31, 155, 142;  --chip-tone-bg: #f3fbfa; }
.hyc-active-chip[data-group="gpu"]     { --chip-tone: 214, 61, 110;  --chip-tone-bg: #fef5f8; }
.hyc-active-chip[data-group="man-hinh"],
.hyc-active-chip[data-group="resolution-screen"],
.hyc-active-chip[data-group="refresh-rate"],
.hyc-active-chip[data-group="panel-type"] { --chip-tone: 214, 165, 52;  --chip-tone-bg: #fdf9ef; }
.hyc-active-chip[data-group="ddr-gen"]      { --chip-tone: 142, 92, 214;  --chip-tone-bg: #f9f5fd; }
.hyc-active-chip[data-group="chipset"]      { --chip-tone: 90, 116, 148;  --chip-tone-bg: #f5f7fa; }
.hyc-active-chip[data-group="psu-wattage"]  { --chip-tone: 214, 132, 52;  --chip-tone-bg: #fef7ef; }
.hyc-active-chip[data-group="camera-resolution"] { --chip-tone: 102, 90, 214; --chip-tone-bg: #f7f6fd; }
.hyc-active-chip[data-group="wifi-standard"]     { --chip-tone: 52, 174, 214; --chip-tone-bg: #f3faff; }
.hyc-active-chip[data-group="os"]                { --chip-tone: 68, 132, 196; --chip-tone-bg: #f4f8fd; }
.hyc-active-chip[data-group="touch"]             { --chip-tone: 200, 100, 80;  --chip-tone-bg: #fdf6f3; }
.hyc-active-chip[data-group="keyboard-backlit"]  { --chip-tone: 158, 96, 204;  --chip-tone-bg: #f9f4fc; }

.hyc-active-chips__clear {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(10, 14, 31, 0.55);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.hyc-active-chips__clear:hover {
  background: #fff;
  color: var(--orange, #ff6900);
  border-color: rgba(255, 105, 0, 0.28);
}
@media (prefers-reduced-motion: reduce) {
  .hyc-active-chip, .hyc-active-chip__x { transition: none !important; }
  .hyc-active-chip:hover { transform: none; }
  .hyc-active-chip:hover .hyc-active-chip__x { transform: none; }
}

/* Facets sidebar v2 — sections with details/summary */
.facets--v2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.facets__section {
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.facets__section[open] {
  border-color: rgba(255, 105, 0, 0.2);
  box-shadow: 0 2px 8px rgba(10, 14, 31, 0.04);
}
.facets__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink, #0a0e1f);
  list-style: none;
  user-select: none;
  transition: background 0.15s ease;
  min-height: 48px;
}
.facets__section-title::-webkit-details-marker { display: none; }
.facets__section-title:hover {
  background: rgba(255, 105, 0, 0.04);
}
.facets__section-icon {
  font-size: 18px;
  line-height: 1;
}
.facets__section-label {
  flex: 1;
}
.facets__section-chev {
  font-size: 16px;
  color: rgba(10, 14, 31, 0.45);
  transition: transform 0.2s ease;
}
.facets__section[open] .facets__section-chev {
  transform: rotate(180deg);
}
.facets__section-body {
  padding: 4px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(10, 14, 31, 0.06);
}

/* Show-more for brand list */
.facets__option--more {
  display: none !important;
}
.facets__list[data-expanded="1"] .facets__option--more {
  display: flex !important;
}
.facets__show-more {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 0;
  margin-top: 4px;
  color: var(--orange, #ff6900);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.02em;
  min-height: 36px;
}
.facets__show-more:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile responsive */
@media (max-width: 720px) {
  .hyc-active-chips {
    padding: 10px;
    border-radius: 10px;
  }
  .hyc-active-chips__clear {
    margin-left: 0;
    width: 100%;
    text-align: right;
  }
  .facets__section-title {
    padding: 12px 14px;
    font-size: 14px;
  }
  .facets__section-body {
    padding: 4px 14px 14px;
  }
}

/* ===================================================================
   Filter UI v3 — horizontal dropdown bar (anphat-style)
   Replaces sidebar v2. Grid full-width, filters as popovers.
   =================================================================== */

/* Override shop-grid layout: stack form bar + content vertically */
.hyc-archive .shop-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
/* C2/C3 fix (phiên 17): grid items default min-width:auto = content min-width,
   causing shop-grid__content to overflow viewport on narrow widths because
   trending-grid spotlight + cards push min-content beyond container.
   min-width:0 lets grid items shrink to their assigned 1fr column. */
.hyc-archive .shop-grid > * { min-width: 0; }

/* Filter bar container — wraps to multiple rows on narrow screens */
.hyc-filter-bar-form {
  margin-top: 12px;
}
.hyc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10, 14, 31, 0.02);
  position: relative;
}

/* Each filter popover (uses native <details>) */
.hyc-fpop {
  position: relative;
  user-select: none;
}
.hyc-fpop__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  background: #f5f6f8;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink, #0a0e1f);
  cursor: pointer;
  list-style: none;
  /* Compositor-friendly only — separate transitions instead of 'all' */
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.hyc-fpop__btn::-webkit-details-marker { display: none; }
.hyc-fpop__btn::marker { display: none; }
.hyc-fpop__btn:hover {
  background: #fff;
  border-color: rgba(255, 105, 0, 0.42);
  box-shadow: 0 2px 8px -4px rgba(255, 105, 0, 0.2);
}
.hyc-fpop[open] .hyc-fpop__btn {
  background: #fff;
  border-color: var(--orange, #ff6900);
  color: var(--orange, #ff6900);
  box-shadow: 0 2px 10px -3px rgba(255, 105, 0, 0.28);
}
.hyc-fpop__lbl { font-weight: 600; }

/* Polished badge: tighter pill + clearer contrast + small inner highlight */
.hyc-fpop__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900));
  color: #fff;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
              0 1px 2px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Smoother chevron rotation w/ expo easing — matches HYC motion vocabulary */
.hyc-fpop__chev {
  font-size: 10px;
  color: rgba(10, 14, 31, 0.5);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease;
  display: inline-block;
}
.hyc-fpop[open] .hyc-fpop__chev {
  transform: rotate(180deg);
  color: var(--orange, #ff6900);
}

/* Popover body — absolute dropdown */
.hyc-fpop__body {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(10, 14, 31, 0.16),
              0 4px 12px -2px rgba(10, 14, 31, 0.08);
  padding: 8px;
  z-index: 50;
  max-height: 360px;
  overflow-y: auto;
  animation: hycFpopIn 0.16s ease;
}
@keyframes hycFpopIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.hyc-fpop__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hyc-fpop__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink, #0a0e1f);
  transition: background 0.1s ease;
  min-height: 36px;
}
.hyc-fpop__opt:hover { background: rgba(255, 105, 0, 0.06); }
.hyc-fpop__opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange, #ff6900);
  flex-shrink: 0;
}
.hyc-fpop__opt-lbl { flex: 1; }
.hyc-fpop__opt-count {
  font-size: 12px;
  color: rgba(10, 14, 31, 0.45);
  font-weight: 500;
}

/* Price popover variant — wider, with quick-link grid */
.hyc-fpop__body--price {
  min-width: 320px;
  padding: 14px;
}
.hyc-fpop__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.hyc-fpop__price-row input[type="number"] {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(10, 14, 31, 0.16);
  border-radius: 8px;
  font-size: 13px;
}
.hyc-fpop__price-row input[type="number"]:focus {
  outline: none;
  border-color: var(--orange, #ff6900);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.12);
}
.hyc-fpop__price-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.hyc-fpop__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  background: #f5f6f8;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  transition: all 0.15s ease;
}
.hyc-fpop__quick-link:hover {
  background: rgba(255, 105, 0, 0.1);
  color: var(--orange, #ff6900);
}
.hyc-fpop__apply {
  width: 100%;
  min-height: 40px;
  background: var(--orange, #ff6900);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.hyc-fpop__apply:hover { background: #e85a00; }

/* Mobile responsive — refined bottom-sheet with backdrop + handle + sheet entrance */
@media (max-width: 720px) {
  .hyc-filter-bar {
    padding: 10px;
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .hyc-fpop {
    flex-shrink: 0;
  }
  .hyc-fpop__btn {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 13px;
  }
  /* Backdrop scrim behind open sheet */
  .hyc-fpop[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 31, 0.48);
    z-index: 9998;
    animation: hycFpopScrimIn 200ms ease both;
  }
  @keyframes hycFpopScrimIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  /* Sheet polish — taller header padding, drag-handle pseudo, slide-up easing */
  .hyc-fpop__body {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 78vh;
    padding: 22px 18px 18px;
    z-index: 9999;
    box-shadow: 0 -8px 32px -8px rgba(10, 14, 31, 0.32);
    animation: hycFpopSheetIn 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes hycFpopSheetIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  /* Visible drag-handle on top of sheet */
  .hyc-fpop__body::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 4px;
    background: rgba(10, 14, 31, 0.18);
    border-radius: 999px;
  }
}

/* Hide v2 sidebar styles when v3 active (don't conflict) */
.hyc-archive aside.facets--v2 { display: none !important; }

/* Category chips at TOP (above filter bar) — broad classification first */
.filter-chips--top {
  margin: 24px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chips--top .chip {
  padding: 8px 16px;
  min-height: 38px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.filter-chips--top .chip:hover {
  border-color: var(--orange, #ff6900);
  color: var(--orange, #ff6900);
}
.filter-chips--top .chip.active {
  background: var(--ink, #0a0e1f);
  color: #fff;
  border-color: var(--ink, #0a0e1f);
}
.filter-chips--top .chip.active small { color: rgba(255, 255, 255, 0.7); }
.filter-chips--top .chip small {
  font-size: 11.5px;
  color: rgba(10, 14, 31, 0.45);
  font-weight: 600;
}

/* ===================================================================
   Filter v3 — ICON polish (iter-001 GAN-design)
   Inline SVG line-art, currentColor inherits text state
   =================================================================== */

/* Category chip icon (T8 polish): rotate+scale, drawn-line entrance, idle breathe on active */
.filter-chips--top .chip { gap: 8px; padding: 8px 16px 8px 12px; }
.filter-chips--top .chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(10, 14, 31, 0.55);
  transition: color 220ms ease,
              transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  transform-origin: center;
}
.filter-chips--top .chip__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
}
/* Hover: tilt + scale + subtle bounce via composite transition */
.filter-chips--top .chip:hover .chip__icon {
  color: var(--orange, #ff6900);
  transform: scale(1.12) rotate(-6deg);
}
.filter-chips--top .chip:active .chip__icon {
  transform: scale(0.98) rotate(-6deg);
  transition-duration: 80ms;
}
/* Stroke draw effect for SVG paths on hover (lightweight line-art breathe) */
.filter-chips--top .chip:hover .chip__icon svg path,
.filter-chips--top .chip:hover .chip__icon svg line,
.filter-chips--top .chip:hover .chip__icon svg polyline,
.filter-chips--top .chip:hover .chip__icon svg circle,
.filter-chips--top .chip:hover .chip__icon svg rect {
  stroke-width: 2.2;
  transition: stroke-width 200ms ease;
}
.filter-chips--top .chip__icon svg path,
.filter-chips--top .chip__icon svg line,
.filter-chips--top .chip__icon svg polyline,
.filter-chips--top .chip__icon svg circle,
.filter-chips--top .chip__icon svg rect {
  transition: stroke-width 220ms ease;
}

/* Active chip: warm coral + idle breathe */
.filter-chips--top .chip.active .chip__icon {
  color: #ff8a3d;
  animation: hycChipBreathe 3.6s ease-in-out infinite;
}
@keyframes hycChipBreathe {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.06) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .filter-chips--top .chip__icon,
  .filter-chips--top .chip:hover .chip__icon,
  .filter-chips--top .chip.active .chip__icon {
    transition: color 220ms ease;
    transform: none !important;
    animation: none !important;
  }
}
.filter-chips--top .chip__lbl { font-weight: 600; letter-spacing: -0.005em; }
.filter-chips--top .chip__count {
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 7px;
  background: rgba(10, 14, 31, 0.06);
  color: rgba(10, 14, 31, 0.55);
  border-radius: 999px;
  margin-left: 2px;
  font-variant-numeric: tabular-nums;
}
.filter-chips--top .chip.active .chip__count {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

/* Filter bar button icon */
.hyc-fpop__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: rgba(10, 14, 31, 0.55);
  transition: color 0.15s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.hyc-fpop__icon svg { width: 16px; height: 16px; display: block; }
.hyc-fpop:hover .hyc-fpop__icon { color: var(--orange, #ff6900); transform: scale(1.1); }
.hyc-fpop[open] .hyc-fpop__icon { color: var(--orange, #ff6900); }
.hyc-fpop__btn { padding: 8px 14px 8px 12px; gap: 6px; }

/* Filter bar subtle premium gradient */
.hyc-filter-bar {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-color: rgba(10, 14, 31, 0.06);
  box-shadow: 0 1px 3px rgba(10, 14, 31, 0.03), 0 4px 12px -4px rgba(10, 14, 31, 0.04);
}

/* Optional: section divider between common (Hãng+Giá) and specs */
.hyc-fpop[data-facet="cpu"]::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 22px;
  background: rgba(10, 14, 31, 0.1);
  margin-left: -2px;
  margin-right: 6px;
  align-self: center;
  vertical-align: middle;
}

/* Mobile icon size adjust */
@media (max-width: 720px) {
  .filter-chips--top .chip__icon, .filter-chips--top .chip__icon svg { width: 18px; height: 18px; }
  .hyc-fpop__icon, .hyc-fpop__icon svg { width: 15px; height: 15px; }
}

/* ===================================================================
   Deal spotlight SLIM variant — 2×1 row (was 2×2 — too much content)
   =================================================================== */
.hyc-archive .deal-spotlight--slim {
  grid-column: span 2 !important;
  grid-row: span 1 !important;
  padding: 20px 24px !important;
  gap: 0 !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  min-height: 0 !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__hero {
  width: 120px !important;
  height: 120px !important;
  right: -20px !important;
  bottom: -20px !important;
  opacity: 0.3 !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__kicker {
  font-size: 0.6rem !important;
  margin-bottom: 0;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__kicker b {
  color: #fff;
  font-weight: 800;
}
.hyc-archive .deal-spotlight--slim h3 {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem) !important;
  line-height: 1.15 !important;
  max-width: none !important;
  margin: 0 !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__chips {
  display: flex !important;
  gap: 4px !important;
  flex-wrap: wrap !important;
  margin-top: 2px !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__chips span {
  font-size: 0.6rem !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  white-space: nowrap;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: 16px;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  line-height: 1.1 !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__price small {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: line-through !important;
  margin-bottom: 2px !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__price strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--orange, #ff6900) !important;
  letter-spacing: -0.01em !important;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__cta {
  padding: 8px 14px !important;
  font-size: 0.78rem !important;
  border-radius: 8px !important;
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.15s ease;
}
.hyc-archive .deal-spotlight--slim .deal-spotlight__cta:hover {
  background: #e85a00 !important;
  transform: translateX(2px);
}

/* Mobile: stack vertical */
@media (max-width: 720px) {
  .hyc-archive .deal-spotlight--slim {
    grid-column: span 2 !important;
    flex-direction: column !important;
    padding: 16px !important;
  }
  .hyc-archive .deal-spotlight--slim .deal-spotlight__foot {
    margin-left: 0;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }
}

/* ===================================================================
   Deal spotlight LUXE — dark editorial premium (iter-002 GAN)
   Drops holographic rainbow + purple gradient. Disciplined palette.
   =================================================================== */

/* Reset old gradients/animations */
.hyc-archive .deal-spotlight--luxe {
  background: linear-gradient(180deg, #0e0e15 0%, #15151e 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: relative;
  overflow: hidden;
}
.hyc-archive .deal-spotlight--luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle diagonal pinstripe — barely visible craftsmanship texture */
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 12px,
      rgba(255, 255, 255, 0.018) 12px,
      rgba(255, 255, 255, 0.018) 13px
    );
  /* No animation, no rainbow */
  animation: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  pointer-events: none;
  z-index: 0;
}
.hyc-archive .deal-spotlight--luxe::after {
  content: '';
  position: absolute;
  /* Single small orange glow top-right — restrained */
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.22) 0%, transparent 65%);
  inset: auto -40px auto auto !important;
  aspect-ratio: 1 !important;
  pointer-events: none;
  z-index: 0;
}

/* Hairline orange divider top — signature HYC line */
.hyc-archive .deal-spotlight--luxe {
  border-top: 1px solid rgba(255, 105, 0, 0.4) !important;
}

/* Corner editorial number "01" — premium magazine touch */
.hyc-archive .deal-spotlight__corner {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  z-index: 2;
}

/* Kicker — warm cream paper tone, smaller */
.hyc-archive .deal-spotlight--luxe .deal-spotlight__kicker {
  color: #c9b896 !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
}
.hyc-archive .deal-spotlight--luxe .deal-spotlight__kicker::before {
  background: #c9b896 !important;
  box-shadow: 0 0 8px rgba(201, 184, 150, 0.5);
}
.hyc-archive .deal-spotlight--luxe .deal-spotlight__kicker b {
  color: #fff !important;
  font-weight: 700;
}

/* H3 — pure white + italic accent for one word */
.hyc-archive .deal-spotlight--luxe h3 {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}
.hyc-archive .deal-spotlight--luxe h3 em {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: #ff6900;
  letter-spacing: -0.025em;
  margin: 0 2px;
}

/* Chips — subtle frame, mono small */
.hyc-archive .deal-spotlight--luxe .deal-spotlight__chips span {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.05em;
}

/* SKU footer — inventory transparency */
.hyc-archive .deal-spotlight__sku {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

/* Price — large monospace tabular, restrained orange */
.hyc-archive .deal-spotlight--luxe .deal-spotlight__price small {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.68rem !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0;
}
.hyc-archive .deal-spotlight--luxe .deal-spotlight__price strong {
  color: #ff6900 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 0 24px rgba(255, 105, 0, 0.2);
}
.hyc-archive .deal-spotlight--luxe .deal-spotlight__price strong sup {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 1px;
  opacity: 0.85;
}

/* CTA — solid orange, restrained shadow */
.hyc-archive .deal-spotlight--luxe .deal-spotlight__cta {
  background: #ff6900 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px -4px rgba(255, 105, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hyc-archive .deal-spotlight--luxe .deal-spotlight__cta:hover {
  background: #ff7e1f !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -4px rgba(255, 105, 0, 0.6);
}

/* All content above texture layer */
.hyc-archive .deal-spotlight--luxe .deal-spotlight__head,
.hyc-archive .deal-spotlight--luxe .deal-spotlight__foot,
.hyc-archive .deal-spotlight--luxe .deal-spotlight__kicker,
.hyc-archive .deal-spotlight--luxe h3,
.hyc-archive .deal-spotlight--luxe .deal-spotlight__chips {
  position: relative;
  z-index: 1;
}

/* Hover: subtle border warm-up */
.hyc-archive .deal-spotlight--luxe:hover {
  border-color: rgba(255, 105, 0, 0.2) !important;
  border-top-color: rgba(255, 105, 0, 0.6) !important;
  transition: border-color 0.3s ease;
}

/* ===================================================================
   Deal spotlight HERO IMAGE — iter-003 GAN
   Layout: text 60% left, gaming PC tower SVG 40% right
   =================================================================== */
.hyc-archive .deal-spotlight--hero-img {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 16px !important;
  padding: 20px 24px !important;
  align-items: stretch !important;
}
.hyc-archive .deal-spotlight--hero-img .deal-spotlight__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.hyc-archive .deal-spotlight--hero-img .deal-spotlight__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hyc-archive .deal-spotlight--hero-img .deal-spotlight__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-left: 0;
  flex-direction: row;
}

/* Hero visual area — gaming PC tower */
.hyc-archive .deal-spotlight__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.hyc-archive .deal-spotlight__visual::before {
  /* Chromatic RGB neon glow behind tower (T7 polish) */
  content: '';
  position: absolute;
  inset: 8% -12% 8% -12%;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(255, 105, 0, 0.32) 0%, rgba(255, 105, 0, 0.08) 35%, transparent 65%),
    radial-gradient(ellipse at 32% 38%, rgba(0, 245, 212, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 68% 62%, rgba(255, 126, 185, 0.20) 0%, transparent 50%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 360ms ease, filter 360ms ease;
  animation: hycLuxePulse 5s ease-in-out infinite;
}
.hyc-archive .deal-spotlight--hero-img:hover .deal-spotlight__visual::before {
  filter: blur(26px) brightness(1.2);
}
@keyframes hycLuxePulse {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}

.hyc-archive .deal-spotlight__tower {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 200px;
  max-height: 260px;
  /* Chromatic RGB drop-shadow stack — neon glow effect */
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 14px rgba(255, 105, 0, 0.55))
    drop-shadow(0 0 28px rgba(0, 245, 212, 0.22))
    drop-shadow(0 0 42px rgba(255, 126, 185, 0.18));
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 360ms ease;
  animation: hycTowerFloat 6s ease-in-out infinite;
}
.hyc-archive .deal-spotlight--hero-img:hover .deal-spotlight__tower {
  transform: translateY(-4px) rotateY(-4deg) scale(1.03);
  filter:
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 22px rgba(255, 105, 0, 0.72))
    drop-shadow(0 0 38px rgba(0, 245, 212, 0.32))
    drop-shadow(0 0 56px rgba(255, 126, 185, 0.26));
}
@keyframes hycTowerFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-archive .deal-spotlight__visual::before,
  .hyc-archive .deal-spotlight__tower { animation: none; }
  .hyc-archive .deal-spotlight--hero-img:hover .deal-spotlight__tower { transform: none; }
}

/* Override the ::after orange glow position since we now have hero on right */
.hyc-archive .deal-spotlight--hero-img::after {
  display: none;
}

/* Mobile: stack vertically */
@media (max-width: 720px) {
  .hyc-archive .deal-spotlight--hero-img {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }
  .hyc-archive .deal-spotlight__visual {
    order: -1;
    max-height: 160px;
  }
  .hyc-archive .deal-spotlight__tower { max-height: 160px; }
}

/* ===================================================================
   Deal spotlight REAL PHOTO (iter-004) — replaces SVG illustration
   =================================================================== */
.hyc-archive .deal-spotlight__visual--real {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-archive .deal-spotlight__visual--real::before {
  content: '';
  position: absolute;
  inset: 5%;
  background: radial-gradient(ellipse at center,
    rgba(255, 105, 0, 0.22) 0%,
    rgba(255, 105, 0, 0.06) 40%,
    transparent 75%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}
.hyc-archive .deal-spotlight__photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45))
          drop-shadow(0 4px 8px rgba(255, 105, 0, 0.18));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 6px;
}
.hyc-archive .deal-spotlight--hero-img:hover .deal-spotlight__photo {
  transform: translateY(-3px) scale(1.02);
}

/* Mobile: photo smaller */
@media (max-width: 720px) {
  .hyc-archive .deal-spotlight__visual--real { max-height: 160px; }
  .hyc-archive .deal-spotlight__photo { max-height: 150px; }
}

/* ===================================================================
   Spotlight fill empty space (iter-005 GAN)
   Add rating + sold + benefit badges to text column
   Scale photo larger in visual column
   =================================================================== */

/* Rating + sold count row */
.hyc-archive .deal-spotlight__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.hyc-archive .deal-spotlight__stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: #ffc107;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}
.hyc-archive .deal-spotlight__stars strong {
  color: #ffffff;
  font-weight: 700;
  margin-left: 2px;
  font-size: 0.78rem;
}
.hyc-archive .deal-spotlight__stars small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
}
.hyc-archive .deal-spotlight__sold {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 500;
}
.hyc-archive .deal-spotlight__sold strong {
  color: #ff6900;
  font-weight: 700;
}
.hyc-archive .deal-spotlight__sold svg {
  color: rgba(255, 255, 255, 0.4);
}

/* Benefit badges row */
.hyc-archive .deal-spotlight__benefits {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hyc-archive .deal-spotlight__benefit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: rgba(255, 105, 0, 0.08);
  border: 1px solid rgba(255, 105, 0, 0.18);
  border-radius: 999px;
  color: #ffae73;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}
.hyc-archive .deal-spotlight__benefit svg {
  flex-shrink: 0;
}

/* Photo scale larger to fill vertical space */
.hyc-archive .deal-spotlight__visual--real {
  padding: 12px 0;
}
.hyc-archive .deal-spotlight__photo {
  max-height: 320px !important;
  max-width: 100% !important;
}

/* Subtle background pattern behind photo */
.hyc-archive .deal-spotlight__visual--real::after {
  content: '';
  position: absolute;
  inset: 8% 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 105, 0, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Mobile responsive */
@media (max-width: 720px) {
  .hyc-archive .deal-spotlight__benefits { gap: 4px; }
  .hyc-archive .deal-spotlight__benefit { font-size: 0.62rem; padding: 3px 7px; }
  .hyc-archive .deal-spotlight__photo { max-height: 200px !important; }
}

/* ===================================================================
   Warranty badge on product cards + benefits on single product
   =================================================================== */

/* Product card warranty badge v3 (GAN iter-002, tentative 9.13)
   Moves vs v2 (iter-001 8.575):
   - Clip-path notched silhouette (top-right 7px notch + top-left 5px chamfer)
     carries warranty row corner-triangle DNA at chip scale
   - Fraunces italic numeric duration ("BH 24 tháng" — 24 italic)
   - --extended variant with ◆ HYC mini-ribbon
   - Kiểm chứng border presence 8% → 16%
   - Drop rotate(-3deg) on hover svg (was jitter at 13px) */
.hyc-archive .prod-warranty {
  --b-orange:        var(--orange, #ff6900);
  --b-orange-tint:   rgba(255, 105, 0, 0.10);
  --b-orange-edge:   rgba(255, 105, 0, 0.28);
  --b-orange-deep:   #b54a00;
  --b-orange-deeper: #8a3a00;
  --b-ink:           var(--ink, #0a0e1f);
  --b-ink-08:        rgba(10, 14, 31, 0.08);
  --b-ink-16:        rgba(10, 14, 31, 0.16);
  --b-ink-22:        rgba(10, 14, 31, 0.22);
  --b-ink-55:        rgba(10, 14, 31, 0.55);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 9px;
  background: var(--b-orange-tint);
  border: 1px solid var(--b-orange-edge);
  /* HYC signature notch silhouette */
  clip-path: polygon(
    0 5px,
    5px 0,
    calc(100% - 7px) 0,
    100% 7px,
    100% 100%,
    0 100%
  );
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--b-orange-deep);
  line-height: 1.1;
  white-space: nowrap;
  width: fit-content;
  margin: 4px 0;
  overflow: hidden;
  isolation: isolate;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.hyc-archive .prod-warranty > svg {
  flex-shrink: 0;
  color: var(--b-orange);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Label w/ Fraunces italic numeric */
.hyc-archive .prod-warranty__label {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.hyc-archive .prod-warranty__label em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -0.01em;
  margin: 0 3px 0 4px;
  color: var(--b-orange);
  transform: translateY(-0.3px);
  display: inline-block;
  transition: color 180ms ease;
}
.hyc-archive .prod-card:hover .prod-warranty__label em,
.hyc-archive .prod-warranty:hover .prod-warranty__label em {
  color: var(--b-orange-deep);
}

/* HYC signature corner notch fill — orange triangle filling clip-path cut */
.hyc-archive .prod-warranty__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: linear-gradient(225deg, var(--b-orange) 0 50%, transparent 50%);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}
.hyc-archive .prod-warranty--check .prod-warranty__corner { display: none; }

/* Kiểm chứng variant — outlined ink (secondary) */
.hyc-archive .prod-warranty.prod-warranty--check {
  background: transparent;
  border-color: var(--b-ink-16);
  color: var(--b-ink-55);
}
.hyc-archive .prod-warranty.prod-warranty--check > svg {
  color: var(--b-ink-55);
}

/* Extended variant — BH HYC mở rộng (premium tier) */
.hyc-archive .prod-warranty.prod-warranty--extended {
  padding-right: 6px;
  background: linear-gradient(90deg, var(--b-orange-tint) 0 78%, transparent 100%);
  border-color: var(--b-orange);
}
.hyc-archive .prod-warranty__ribbon {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 7px 0 8px;
  margin-left: 4px;
  background: linear-gradient(90deg, var(--b-orange), #ff7e1f);
  color: #fff;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(4px 0, 100% 0, 100% 100%, 4px 100%, 0 50%);
  position: relative;
  z-index: 1;
}

/* Card-hover synergy: deepen badge when parent card hovered */
.hyc-archive .prod-card:hover .prod-warranty,
.hyc-archive .prod-warranty:hover {
  background: rgba(255, 105, 0, 0.16);
  border-color: rgba(255, 105, 0, 0.45);
  color: var(--b-orange-deeper);
}
.hyc-archive .prod-card:hover .prod-warranty--check,
.hyc-archive .prod-warranty--check:hover {
  background: rgba(10, 14, 31, 0.04);
  border-color: var(--b-ink-22);
  color: var(--b-ink);
}
.hyc-archive .prod-card:hover .prod-warranty--extended,
.hyc-archive .prod-warranty--extended:hover {
  background: linear-gradient(90deg, rgba(255, 105, 0, 0.18) 0 78%, rgba(255, 105, 0, 0.04) 100%);
  border-color: #ff7e1f;
}
.hyc-archive .prod-card:hover .prod-warranty > svg,
.hyc-archive .prod-warranty:hover > svg {
  transform: scale(1.12);
}
.hyc-archive .prod-warranty:focus-visible {
  outline: 2px solid var(--b-orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hyc-archive .prod-warranty,
  .hyc-archive .prod-warranty > svg,
  .hyc-archive .prod-warranty__label em { transition: none !important; }
  .hyc-archive .prod-card:hover .prod-warranty > svg,
  .hyc-archive .prod-warranty:hover > svg { transform: none; }
}
@media (max-width: 640px) {
  .hyc-archive .prod-warranty { padding: 3px 9px 3px 8px; font-size: 10.5px; gap: 4px; }
  .hyc-archive .prod-warranty > svg { width: 12px; height: 12px; }
  .hyc-archive .prod-warranty__label em { font-size: 12px; margin: 0 2px 0 3px; }
  .hyc-archive .prod-warranty__ribbon { height: 14px; font-size: 8.5px; padding: 0 6px 0 7px; }
}

/* ===================================================================
   Single product warranty row v3 (GAN iter-002, scored 8.65 weighted)
   Moves: solid surface chips, hover lift + glow, duotone icons,
   primary/secondary hierarchy via .--lead modifier, HYC corner accent.
   =================================================================== */

/* PDP warranty row v4 (GAN iter-003, tentative 9.28)
   Moves vs v3 (iter-002 8.65):
   - Asymmetric 4+2 grid (--hero span 4 + --sub span 2 + secondary 3×span 2)
   - Fraunces italic numeral index gutter "01"/"02" on lead items
   - Chromatic dot triad (orange/cyan/pink) top-right hero — cross-system w/ T7 RGB
   - HYC seal stamp circular monogram bottom-right hero
   - ◆ diamond eyebrow + "từ 2009" longevity stamp right-aligned
   - All hover transforms compositor-friendly (corner triangle → scale)
   - :not(:has) consumable edge fallback
   Back-compat: legacy --lead and --wide still styled, render alongside new --hero/--sub. */
.hyc-pdp-warranty {
  --w-orange:        var(--orange, #ff6900);
  --w-orange-15:     rgba(255, 105, 0, 0.15);
  --w-orange-22:     rgba(255, 105, 0, 0.22);
  --w-orange-08:     rgba(255, 105, 0, 0.08);
  --w-orange-04:     rgba(255, 105, 0, 0.04);
  --w-cyan:          #16b3c4;
  --w-pink:          #f06595;
  --w-ink:           var(--ink, #0a0e1f);
  --w-ink-08:        rgba(10, 14, 31, 0.08);
  --w-ink-12:        rgba(10, 14, 31, 0.12);
  --w-ink-50:        rgba(10, 14, 31, 0.5);
  --w-ink-58:        rgba(10, 14, 31, 0.58);
  --w-surface:       #ffffff;
  --w-surface-warm:  #fffaf3;
  --w-surface-warm-deep: #fff5e9;
  margin: 18px 0 20px;
}

/* Eyebrow row */
.hyc-pdp-warranty__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hyc-pdp-warranty__eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w-ink-50);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hyc-pdp-warranty__eyebrow-mark {
  color: var(--w-orange);
  font-size: 9px;
  letter-spacing: 0;
  transform: translateY(-0.5px);
  display: inline-block;
}
/* Back-compat: if PHP still emits old ::before bullet, keep it visible */
.hyc-pdp-warranty__eyebrow:not(:has(.hyc-pdp-warranty__eyebrow-mark))::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--w-orange);
  margin-right: 8px;
  vertical-align: 1px;
  transform: rotate(45deg);
}
.hyc-pdp-warranty__hairline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--w-ink-12), transparent);
}
.hyc-pdp-warranty__since {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: var(--w-ink-50);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Asymmetric grid */
.hyc-pdp-warranty__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: stretch;
}

/* Item base — secondary default: 2/6 wide, 56px tall (declared FIRST so modifiers override via source order) */
.hyc-pdp-warranty__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: span 2;
  min-height: 56px;
  padding: 11px 14px 11px 12px;
  background: var(--w-surface);
  border: 1px solid var(--w-ink-08);
  border-radius: 11px;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
  overflow: hidden;
  isolation: isolate;
}

/* Hero: 4/6 wide, 88px tall — higher specificity via __row > to defeat base */
.hyc-pdp-warranty__row > .hyc-pdp-warranty__item--hero {
  grid-column: span 4;
  min-height: 88px;
}
/* Sub-lead: 2/6 wide, 88px tall */
.hyc-pdp-warranty__row > .hyc-pdp-warranty__item--sub {
  grid-column: span 2;
  min-height: 88px;
}
/* Back-compat: legacy --lead defaults to half-width */
.hyc-pdp-warranty__row > .hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub) {
  grid-column: span 3;
  min-height: 68px;
  background: var(--w-surface-warm);
  border-color: var(--w-orange-22);
}
/* No-leads edge (consumable): legacy --wide still styled */
.hyc-pdp-warranty__row > .hyc-pdp-warranty__item--wide { grid-column: span 3; }
.hyc-pdp-warranty__item--hero {
  background: var(--w-surface-warm);
  border-color: var(--w-orange-22);
  padding-left: 14px;
  padding-right: 18px;
  gap: 14px;
}
.hyc-pdp-warranty__item--sub {
  background: var(--w-surface-warm);
  border-color: var(--w-orange-15);
  padding-left: 12px;
  gap: 11px;
}

/* Numeral index gutter (Fraunces italic) */
.hyc-pdp-warranty__index {
  flex-shrink: 0;
  align-self: stretch;
  display: inline-flex;
  align-items: flex-start;
  padding-top: 2px;
  width: 30px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--w-orange);
  opacity: 0.32;
  letter-spacing: -0.02em;
  user-select: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-warranty__item--sub .hyc-pdp-warranty__index {
  width: 22px;
  font-size: 22px;
}
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__index,
.hyc-pdp-warranty__item--sub:hover .hyc-pdp-warranty__index {
  opacity: 0.55;
  transform: translateY(-1px);
}

/* Icon holder */
.hyc-pdp-warranty__ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--w-orange-04);
  color: var(--w-orange);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease;
}
.hyc-pdp-warranty__item--hero .hyc-pdp-warranty__ico {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--w-orange-22), var(--w-orange-04) 70%);
  border-radius: 11px;
}
.hyc-pdp-warranty__item--sub .hyc-pdp-warranty__ico {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--w-orange-15), var(--w-orange-04));
  border-radius: 10px;
}
/* Back-compat lead icon */
.hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub) .hyc-pdp-warranty__ico {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--w-orange-15), var(--w-orange-04));
}
.hyc-pdp-warranty__ico > svg { width: 20px; height: 20px; }
.hyc-pdp-warranty__item--hero .hyc-pdp-warranty__ico > svg { width: 24px; height: 24px; }
.hyc-pdp-warranty__item--sub  .hyc-pdp-warranty__ico > svg { width: 22px; height: 22px; }
.hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub) .hyc-pdp-warranty__ico > svg { width: 22px; height: 22px; }

.hyc-pdp-warranty__item:hover .hyc-pdp-warranty__ico {
  transform: scale(1.07) rotate(-3deg);
  background: var(--w-orange-15);
}
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__ico {
  background: linear-gradient(135deg, var(--w-orange-22), var(--w-orange-08) 70%);
}

/* Shield check stroke replay */
.hyc-pdp-warranty__ico-check {
  stroke-dasharray: 12;
  stroke-dashoffset: 0;
}
.hyc-pdp-warranty__item:hover .hyc-pdp-warranty__ico-check {
  animation: hyc-check-draw 520ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hyc-check-draw {
  0% { stroke-dashoffset: 12; }
  100% { stroke-dashoffset: 0; }
}

/* Body type */
.hyc-pdp-warranty__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  line-height: 1.35;
  flex: 1;
}
.hyc-pdp-warranty__body strong {
  color: var(--w-ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.hyc-pdp-warranty__item--hero .hyc-pdp-warranty__body strong {
  font-size: 14.5px;
  letter-spacing: -0.012em;
}
.hyc-pdp-warranty__item--sub .hyc-pdp-warranty__body strong {
  font-size: 13.5px;
}
.hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub) .hyc-pdp-warranty__body strong {
  font-size: 13.5px;
}
.hyc-pdp-warranty__body small {
  color: var(--w-ink-58);
  font-size: 11.5px;
  font-weight: 500;
}
.hyc-pdp-warranty__item--hero .hyc-pdp-warranty__body small {
  font-size: 12px;
}
.hyc-pdp-warranty__dot {
  color: var(--w-orange);
  font-weight: 700;
  margin: 0 3px;
  opacity: 0.7;
}

/* HYC mở rộng ribbon tag */
.hyc-pdp-warranty__tag {
  display: inline-block;
  padding: 2px 9px 2px 10px;
  margin-left: 7px;
  background: linear-gradient(90deg, var(--w-orange), #ff7e1f);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%);
  vertical-align: 1.5px;
}

/* Chromatic dot triad (HERO only) — cross-system w/ T7 spotlight RGB */
.hyc-pdp-warranty__chroma {
  position: absolute;
  top: 12px;
  right: 14px;
  display: inline-flex;
  gap: 4px;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-warranty__chroma-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-warranty__chroma-dot--o { background: var(--w-orange); box-shadow: 0 0 8px rgba(255, 105, 0, 0.45); }
.hyc-pdp-warranty__chroma-dot--c { background: var(--w-cyan);   box-shadow: 0 0 8px rgba(22, 179, 196, 0.45); }
.hyc-pdp-warranty__chroma-dot--p { background: var(--w-pink);   box-shadow: 0 0 8px rgba(240, 101, 149, 0.45); }
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma { transform: rotate(8deg); }
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma-dot--o { transform: translateY(-1px); }
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma-dot--c { transform: translateY(-2px); }
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma-dot--p { transform: translateY(-1px); }

/* HYC seal stamp (HERO only) — circular monogram */
.hyc-pdp-warranty__seal {
  position: absolute;
  right: 14px;
  bottom: 11px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--w-orange);
  opacity: 0.55;
  transform: rotate(-3deg);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
  pointer-events: none;
}
.hyc-pdp-warranty__seal > svg { width: 22px; height: 22px; display: block; }
.hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__seal {
  transform: rotate(-8deg) scale(1.12);
  opacity: 0.85;
}

/* Corner accent (SUB lead + legacy --lead) — compositor-friendly via scale */
.hyc-pdp-warranty__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, var(--w-orange) 0 50%, transparent 50%);
  border-top-right-radius: 11px;
  opacity: 0.85;
  transform-origin: top right;
  transition: opacity 200ms ease, transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-warranty__item--sub:hover .hyc-pdp-warranty__corner,
.hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub):hover .hyc-pdp-warranty__corner {
  transform: scale(1.35);
  opacity: 1;
}

/* Secondary chip bottom tick mark (typographic accent on hover) */
.hyc-pdp-warranty__tick {
  position: absolute;
  left: 14px;
  bottom: 8px;
  width: 16px;
  height: 2px;
  background: var(--w-orange);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  border-radius: 1px;
  transition: opacity 240ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-warranty__item:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub):not(.hyc-pdp-warranty__item--lead):hover .hyc-pdp-warranty__tick {
  opacity: 0.7;
  transform: scaleX(1);
}

/* Hover behavior — compositor-friendly transforms */
.hyc-pdp-warranty__item:hover {
  transform: translateY(-2px);
  border-color: var(--w-orange-22);
  box-shadow:
    0 8px 22px -10px rgba(255, 105, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  background: var(--w-surface-warm);
}
.hyc-pdp-warranty__item--hero:hover {
  border-color: var(--w-orange);
  background: var(--w-surface-warm-deep);
  box-shadow:
    0 12px 30px -14px rgba(255, 105, 0, 0.40),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.hyc-pdp-warranty__item--sub:hover,
.hyc-pdp-warranty__item--lead:not(.hyc-pdp-warranty__item--hero):not(.hyc-pdp-warranty__item--sub):hover {
  border-color: var(--w-orange);
  background: var(--w-surface-warm-deep);
}

/* Focus visible */
.hyc-pdp-warranty__item:focus-visible {
  outline: 2px solid var(--w-orange);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hyc-pdp-warranty__item,
  .hyc-pdp-warranty__ico,
  .hyc-pdp-warranty__index,
  .hyc-pdp-warranty__corner,
  .hyc-pdp-warranty__tick,
  .hyc-pdp-warranty__seal,
  .hyc-pdp-warranty__chroma,
  .hyc-pdp-warranty__chroma-dot,
  .hyc-pdp-warranty__ico-check {
    transition: none !important;
    animation: none !important;
  }
  .hyc-pdp-warranty__item:hover,
  .hyc-pdp-warranty__item:hover .hyc-pdp-warranty__ico,
  .hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma,
  .hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__chroma-dot,
  .hyc-pdp-warranty__item--hero:hover .hyc-pdp-warranty__seal {
    transform: none;
  }
}

/* Consumable edge: no hero → auto-promote first 2 items */
.hyc-pdp-warranty__row:not(:has(.hyc-pdp-warranty__item--hero)):not(:has(.hyc-pdp-warranty__item--lead)) > .hyc-pdp-warranty__item:first-child {
  grid-column: span 4;
  min-height: 88px;
  background: var(--w-surface-warm);
  border-color: var(--w-orange-22);
}
.hyc-pdp-warranty__row:not(:has(.hyc-pdp-warranty__item--hero)):not(:has(.hyc-pdp-warranty__item--lead)) > .hyc-pdp-warranty__item:nth-child(2) {
  grid-column: span 2;
  min-height: 88px;
  background: var(--w-surface-warm);
  border-color: var(--w-orange-15);
}

/* Tablet */
@media (max-width: 960px) and (min-width: 641px) {
  .hyc-pdp-warranty__item--hero { grid-column: span 6; }
  .hyc-pdp-warranty__item--sub  { grid-column: span 6; min-height: 64px; }
  .hyc-pdp-warranty__item       { grid-column: span 2; }
}

/* Mobile — stack 1-col */
@media (max-width: 640px) {
  .hyc-pdp-warranty__row { grid-template-columns: 1fr; gap: 8px; }
  .hyc-pdp-warranty__item,
  .hyc-pdp-warranty__item--hero,
  .hyc-pdp-warranty__item--sub,
  .hyc-pdp-warranty__item--lead,
  .hyc-pdp-warranty__item--wide {
    grid-column: span 1;
    min-height: 56px;
    padding: 10px 13px 10px 11px;
  }
  .hyc-pdp-warranty__item--hero { min-height: 72px; padding-right: 14px; }
  .hyc-pdp-warranty__item--sub  { min-height: 60px; }

  .hyc-pdp-warranty__index { width: 20px; font-size: 22px; }
  .hyc-pdp-warranty__item--sub .hyc-pdp-warranty__index { width: 18px; font-size: 18px; }

  .hyc-pdp-warranty__ico { width: 34px; height: 34px; }
  .hyc-pdp-warranty__item--hero .hyc-pdp-warranty__ico { width: 40px; height: 40px; }
  .hyc-pdp-warranty__ico > svg { width: 18px; height: 18px; }
  .hyc-pdp-warranty__item--hero .hyc-pdp-warranty__ico > svg { width: 22px; height: 22px; }

  /* Mobile: hide chroma + smaller seal on hero */
  .hyc-pdp-warranty__chroma { display: none; }
  .hyc-pdp-warranty__seal { width: 18px; height: 18px; bottom: 8px; right: 10px; }
  .hyc-pdp-warranty__seal > svg { width: 18px; height: 18px; }
}

/* ===================================================================
   Comprehensive warranty policy (anti-fraud aware)
   =================================================================== */

/* Product card: consumable test-tại-quầy variant */
.hyc-archive .prod-warranty--none {
  background: rgba(120, 120, 120, 0.08);
  border-color: rgba(120, 120, 120, 0.2);
  color: #666;
}
.hyc-archive .prod-warranty--none svg { color: #888; }

/* Legacy --warn (warn surface) — kept for back-compat if PHP still emits */
.hyc-pdp-warranty__item--warn {
  background: rgba(255, 152, 0, 0.08);
  border-color: rgba(255, 152, 0, 0.18);
}
.hyc-pdp-warranty__item--warn .hyc-pdp-warranty__ico { color: #ff9800; }
.hyc-pdp-warranty__item--warn strong { color: #c66800; }

/* Warranty details accordion v2 (T6 polish): icon prefix, color-coded cols,
   smoother chevron, content fade-in, refined col cards */
.hyc-pdp-warranty__details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 14, 31, 0.1);
}
.hyc-pdp-warranty__details > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #0a0e1f);
  list-style: none;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(10, 14, 31, 0.04), rgba(10, 14, 31, 0.02));
  border: 1px solid rgba(10, 14, 31, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  user-select: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
              box-shadow 180ms ease;
}
.hyc-pdp-warranty__details > summary::-webkit-details-marker { display: none; }
.hyc-pdp-warranty__details > summary::marker { display: none; }
/* Icon prefix slot — uses inline-flex pseudo with mask */
.hyc-pdp-warranty__details > summary::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='9' y1='13' x2='15' y2='13'/><line x1='9' y1='17' x2='13' y2='17'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='9' y1='13' x2='15' y2='13'/><line x1='9' y1='17' x2='13' y2='17'/></svg>") center/contain no-repeat;
}
/* Chevron pushes to far right */
.hyc-pdp-warranty__details > summary > span:last-child {
  margin-left: auto;
  font-size: 12px;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.hyc-pdp-warranty__details > summary:hover {
  background: linear-gradient(180deg, rgba(255, 105, 0, 0.08), rgba(255, 105, 0, 0.03));
  border-color: rgba(255, 105, 0, 0.22);
  color: var(--orange, #ff6900);
}
.hyc-pdp-warranty__details[open] > summary {
  background: linear-gradient(180deg, rgba(255, 105, 0, 0.12), rgba(255, 105, 0, 0.04));
  border-color: rgba(255, 105, 0, 0.28);
  color: var(--orange, #ff6900);
  box-shadow: 0 2px 8px -4px rgba(255, 105, 0, 0.18);
}
.hyc-pdp-warranty__details[open] > summary > span:last-child {
  transform: rotate(180deg);
}

/* Body — content fade-in via animation when open */
.hyc-pdp-warranty__details > .hyc-pdp-warranty__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 4px 4px;
}
.hyc-pdp-warranty__details[open] > .hyc-pdp-warranty__body {
  animation: hycAccordionIn 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hycAccordionIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Col cards — color-coded surface treatment */
.hyc-pdp-warranty__details > .hyc-pdp-warranty__body > .hyc-pdp-warranty__col {
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(46, 139, 87, 0.05), rgba(46, 139, 87, 0.01));
  border: 1px solid rgba(46, 139, 87, 0.16);
  border-radius: 10px;
}
.hyc-pdp-warranty__details > .hyc-pdp-warranty__body > .hyc-pdp-warranty__col--excl {
  background: linear-gradient(180deg, rgba(214, 132, 52, 0.06), rgba(214, 132, 52, 0.01));
  border-color: rgba(214, 132, 52, 0.22);
}

.hyc-pdp-warranty__col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1d6e44;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hyc-pdp-warranty__col h5::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.hyc-pdp-warranty__col--excl h5 { color: #b26a1e; }
.hyc-pdp-warranty__col--excl h5::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>") center/contain no-repeat;
}

.hyc-pdp-warranty__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(10, 14, 31, 0.75);
}
.hyc-pdp-warranty__col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.hyc-pdp-warranty__col li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(46, 139, 87, 0.6);
}
.hyc-pdp-warranty__col--excl ul {
  color: rgba(120, 70, 20, 0.85);
}
.hyc-pdp-warranty__col--excl li::before {
  background: rgba(214, 132, 52, 0.6);
}

@media (max-width: 720px) {
  .hyc-pdp-warranty__details > .hyc-pdp-warranty__body { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-pdp-warranty__details > summary,
  .hyc-pdp-warranty__details > summary > span:last-child {
    transition: none !important;
  }
  .hyc-pdp-warranty__details[open] > .hyc-pdp-warranty__body { animation: none !important; }
}

/* ===================================================================
   PDP Trust block — shared component rendered ONCE below description tab
   (Phiên 15 P3 refactor: replaces 3 duplicate boilerplate H2 blocks)
   =================================================================== */
.hyc-pdp-promise {
  margin: 32px 0 8px;
  padding-top: 28px;
  border-top: 1px dashed rgba(10, 14, 31, 0.12);
}
.hyc-pdp-promise__h {
  font-family: 'Fraunces', 'Manrope', ui-serif, Georgia, serif;
  font-size: clamp(20px, 1.2rem + 0.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink, #0a0e1f);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hyc-pdp-promise__h::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange, #ff6900);
}
.hyc-pdp-promise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.hyc-pdp-promise__card {
  position: relative;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, #ffffff, #fffaf3);
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease,
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.hyc-pdp-promise__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 105, 0, 0.28);
  box-shadow: 0 6px 18px -8px rgba(255, 105, 0, 0.22);
}
.hyc-pdp-promise__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.14), rgba(255, 105, 0, 0.04));
  border: 1px solid rgba(255, 105, 0, 0.18);
  color: var(--orange, #ff6900);
  margin-bottom: 10px;
}
.hyc-pdp-promise__ico svg { width: 18px; height: 18px; }
.hyc-pdp-promise__card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  letter-spacing: -0.005em;
}
.hyc-pdp-promise__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(10, 14, 31, 0.65);
}
.hyc-pdp-promise__foot {
  padding: 14px 16px;
  background: rgba(10, 14, 31, 0.03);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(10, 14, 31, 0.72);
}
.hyc-pdp-promise__foot p { margin: 0; }
.hyc-pdp-promise__foot a {
  color: var(--orange, #ff6900);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}
.hyc-pdp-trust__foot a:hover { border-color: var(--orange, #ff6900); }
@media (max-width: 720px) {
  .hyc-pdp-promise__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hyc-pdp-promise__card { transition: none; }
  .hyc-pdp-promise__card:hover { transform: none; }
}

/* ===================================================================
   Page H1 (semantic SEO + accessibility) — auto-injected on static pages
   when content doesn't already contain h1
   =================================================================== */
.hyc-page-header {
  max-width: var(--page, 1200px);
  margin: 28px auto 18px;
  padding: 0 20px;
}
.hyc-page-title {
  font-family: 'Fraunces', 'Manrope', ui-serif, Georgia, serif;
  font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink, #0a0e1f);
  line-height: 1.1;
  margin: 0;
}
.hyc-page-title em {
  font-style: italic;
  color: var(--orange, #ff6900);
}
@media (max-width: 720px) {
  .hyc-page-header { margin: 20px auto 14px; padding: 0 16px; }
}

/* ===================================================================
   T3 iter-006 — Filter popover polish + search-as-type (tentative 9.33)
   Editorial header · Fraunces numeric · search input (>8 items)
   stagger fade-up · empty state · badge flash · sticky mobile header
   =================================================================== */

/* Open popover persistent inner glow */
.hyc-fpop[open] .hyc-fpop__btn {
  background: linear-gradient(180deg, #fff 0 60%, rgba(255, 105, 0, 0.04) 100%);
}

/* Editorial header inside popover body */
.hyc-fpop__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 8px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent) 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.55);
  white-space: nowrap;
}
.hyc-fpop__head em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--orange, #ff6900);
  text-transform: none;
  margin: 0 2px;
  display: inline-block;
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1);
}
.hyc-fpop__head .hyc-fpop__dot {
  color: var(--orange, #ff6900);
  font-weight: 700;
  margin: 0 2px;
  opacity: 0.7;
}

/* Search input (rendered when items > 8) */
.hyc-fpop__search {
  width: 100%;
  height: 36px;
  padding: 0 12px 0 34px;
  margin: 0 0 8px;
  border: 1px solid rgba(10, 14, 31, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink, #0a0e1f);
  background: #fafaf7
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364676d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>")
    no-repeat 11px center;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.hyc-fpop__search:focus {
  outline: none;
  border-color: var(--orange, #ff6900);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.12);
  background-color: #fff;
}
.hyc-fpop__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Substring highlight inside option label */
.hyc-fpop__opt-lbl mark {
  background: rgba(255, 105, 0, 0.18);
  color: var(--orange, #ff6900);
  font-weight: 700;
  padding: 0 1px;
  border-radius: 2px;
}

/* Empty state */
.hyc-fpop__empty {
  padding: 24px 14px;
  text-align: center;
  color: rgba(10, 14, 31, 0.5);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
}
.hyc-fpop__empty::before {
  content: "—";
  display: block;
  color: rgba(255, 105, 0, 0.5);
  font-style: normal;
  font-size: 18px;
  margin-bottom: 8px;
}

/* Content fade-up stagger on open */
.hyc-fpop[open] .hyc-fpop__head,
.hyc-fpop[open] .hyc-fpop__search,
.hyc-fpop[open] .hyc-fpop__list > li,
.hyc-fpop[open] .hyc-fpop__price-row,
.hyc-fpop[open] .hyc-fpop__price-quick,
.hyc-fpop[open] .hyc-fpop__apply,
.hyc-fpop[open] .hyc-fpop__empty {
  animation: hycFpopStagger 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hyc-fpop[open] .hyc-fpop__head             { animation-delay: 0ms; }
.hyc-fpop[open] .hyc-fpop__search           { animation-delay: 30ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(1) { animation-delay: 60ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(2) { animation-delay: 90ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(3) { animation-delay: 115ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(4) { animation-delay: 140ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(5) { animation-delay: 160ms; }
.hyc-fpop[open] .hyc-fpop__list > li:nth-child(n+6) { animation-delay: 180ms; }
@keyframes hycFpopStagger {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge count flash on change */
.hyc-fpop__badge--flash {
  animation: hycFpopBadgeFlash 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hycFpopBadgeFlash {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* Count change pulse on editorial header em */
.hyc-fpop__head em.hyc-fpop__count--pulse {
  animation: hycFpopCountPulse 220ms ease;
}
@keyframes hycFpopCountPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* Keyboard-active option (ArrowDown/Up highlighted) */
.hyc-fpop__opt--kbactive {
  background: rgba(255, 105, 0, 0.10) !important;
  outline: 2px solid rgba(255, 105, 0, 0.32);
  outline-offset: -2px;
  border-radius: 8px;
}

/* Mobile: sticky header inside sheet */
@media (max-width: 720px) {
  .hyc-fpop__body { padding-top: 38px; }
  .hyc-fpop__head {
    position: sticky;
    top: -22px;
    background: #fff;
    margin: -18px -18px 4px;
    padding: 14px 18px 12px;
    z-index: 2;
    border-bottom: 1px solid rgba(10, 14, 31, 0.08);
    border-image: none;
  }
  .hyc-fpop__search {
    margin: 4px -4px 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hyc-fpop[open] .hyc-fpop__head,
  .hyc-fpop[open] .hyc-fpop__search,
  .hyc-fpop[open] .hyc-fpop__list > li,
  .hyc-fpop[open] .hyc-fpop__price-row,
  .hyc-fpop[open] .hyc-fpop__price-quick,
  .hyc-fpop[open] .hyc-fpop__apply,
  .hyc-fpop[open] .hyc-fpop__empty,
  .hyc-fpop__badge--flash,
  .hyc-fpop__head em.hyc-fpop__count--pulse {
    animation: none !important;
  }
}

/* ===================================================================
   iter-007 Retail conversion overhaul (PDP) — HYC voice + big 3 patterns
   Visual spec cards · trust strip · big price moment
   =================================================================== */

/* ───────── Section header (editorial 01 numeral) ───────── */
.hyc-pdp-spec-cards { margin: 14px 0 16px; }
.hyc-pdp-spec-cards__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  padding-left: 2px;
}
.hyc-pdp-spec-cards__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--orange, #ff6900);
  opacity: 0.45;
  letter-spacing: -0.02em;
}
.hyc-pdp-spec-cards__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
}
.hyc-pdp-spec-cards__hairline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent);
}

/* ───────── Spec card grid (2x2 desktop, 1x4 mobile) ───────── */
.hyc-pdp-spec-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.hyc-pdp-spec-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fffaf3;
  border: 1px solid rgba(255, 105, 0, 0.18);
  border-radius: 11px;
  min-height: 68px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}
.hyc-pdp-spec-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 105, 0, 0.45);
  background: #fff5e9;
  box-shadow: 0 8px 22px -10px rgba(255, 105, 0, 0.32);
}
.hyc-pdp-spec-card--empty {
  background: #fff;
  border-color: rgba(10, 14, 31, 0.08);
}
.hyc-pdp-spec-card--empty:hover {
  background: #fafaf7;
}

.hyc-pdp-spec-card__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.18), rgba(255, 105, 0, 0.04) 70%);
  color: var(--orange, #ff6900);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-spec-card--empty .hyc-pdp-spec-card__ico {
  background: rgba(10, 14, 31, 0.04);
  color: rgba(10, 14, 31, 0.4);
}
.hyc-pdp-spec-card:hover .hyc-pdp-spec-card__ico {
  transform: scale(1.06);
}
.hyc-pdp-spec-card__ico > svg { width: 22px; height: 22px; }

.hyc-pdp-spec-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hyc-pdp-spec-card__lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.5);
  line-height: 1;
}
.hyc-pdp-spec-card__val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}
.hyc-pdp-spec-card__family {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(10, 14, 31, 0.62);
  margin-right: 4px;
  letter-spacing: 0;
}
.hyc-pdp-spec-card__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--orange, #ff6900);
  letter-spacing: -0.015em;
  margin: 0 3px 0 1px;
}
.hyc-pdp-spec-card__unit {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  margin-right: 5px;
}
.hyc-pdp-spec-card__note {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(10, 14, 31, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 5px;
  background: rgba(10, 14, 31, 0.05);
  border-radius: 3px;
}

/* HYC corner accent (carry from warranty row vocabulary) */
.hyc-pdp-spec-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(225deg, var(--orange, #ff6900) 0 50%, transparent 50%);
  border-top-right-radius: 11px;
  opacity: 0.82;
  transform-origin: top right;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms ease;
}
.hyc-pdp-spec-card:hover .hyc-pdp-spec-card__corner {
  transform: scale(1.25);
  opacity: 1;
}

/* Tablet/mobile: 1 column stack */
@media (max-width: 960px) {
  .hyc-pdp-spec-cards__grid { grid-template-columns: 1fr; gap: 8px; }
  .hyc-pdp-spec-card { min-height: 62px; padding: 10px 12px; }
}

/* ===================================================================
   Trust strip — compact inline-flow chips for narrow right col (460-540px)
   2-line controlled wrap. Numerals smaller. "từ 2009" floating tag top-right.
   =================================================================== */
.hyc-pdp-trust {
  display: block;
  margin: 12px 0 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #fff 0 70%, rgba(255, 105, 0, 0.035) 100%);
  border: 1px solid rgba(255, 105, 0, 0.22);
  border-radius: 11px;
  position: relative;
}
.hyc-pdp-trust__mark { display: none; }
.hyc-pdp-trust__since {
  position: absolute;
  top: -9px;
  right: 12px;
  padding: 1px 8px;
  background: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 10.5px;
  color: var(--orange, #ff6900);
  border: 1px solid rgba(255, 105, 0, 0.22);
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.4;
}
.hyc-pdp-trust__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: 8px;
  row-gap: 5px;
  margin: 0;
  padding: 0;
}
.hyc-pdp-trust__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 12px;
  color: var(--ink, #0a0e1f);
  white-space: nowrap;
  line-height: 1.4;
}
.hyc-pdp-trust__lbl {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.hyc-pdp-trust__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--orange, #ff6900);
  margin: 0 2px 0 4px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hyc-pdp-trust__unit {
  font-size: 11px;
  font-weight: 700;
  color: rgba(10, 14, 31, 0.6);
}
.hyc-pdp-trust__sep {
  color: var(--orange, #ff6900);
  opacity: 0.4;
  font-size: 7px;
  letter-spacing: 0;
  user-select: none;
  align-self: center;
  line-height: 1;
}

@media (max-width: 480px) {
  .hyc-pdp-trust__since { top: -8px; font-size: 10px; }
  .hyc-pdp-trust__item, .hyc-pdp-trust__lbl { font-size: 11.5px; }
  .hyc-pdp-trust__num { font-size: 13px; }
}

/* ===================================================================
   Big price moment (Apple-style numerals, retail-grade emphasis)
   =================================================================== */
.single-product .summary > p.price,
.single-product .summary > .price,
.hyc-pdp-hero__right .price,
.hyc-pdp-hero__right p.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
  padding: 0;
  font-size: clamp(40px, 6vw, 64px) !important;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--orange, #ff6900) !important;
  font-variant-numeric: tabular-nums;
}
.hyc-pdp-hero__right .price ins,
.hyc-pdp-hero__right .price > bdi,
.hyc-pdp-hero__right p.price > bdi {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.hyc-pdp-hero__right .price .woocommerce-Price-currencySymbol,
.hyc-pdp-hero__right p.price .woocommerce-Price-currencySymbol {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  font-feature-settings: normal;
  color: var(--orange, #ff6900);
  align-self: flex-start;
  margin-top: 0.3em;
  margin-left: 4px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.hyc-pdp-hero__right .price del,
.hyc-pdp-hero__right p.price del {
  font-size: 0.35em;
  color: rgba(10, 14, 31, 0.4);
  font-weight: 600;
  margin-left: 8px;
  text-decoration: line-through;
}

/* ===================================================================
   iter-007 Reviews/Q&A placeholder (right col, balances height)
   =================================================================== */
.hyc-pdp-reviews-cta {
  margin: 14px 0 12px;
  padding: 14px 16px 16px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 12px;
}
.hyc-pdp-reviews-cta__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.hyc-pdp-reviews-cta__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--orange, #ff6900);
  opacity: 0.45;
  letter-spacing: -0.02em;
}
.hyc-pdp-reviews-cta__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
}
.hyc-pdp-reviews-cta__hairline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent);
}
.hyc-pdp-reviews-cta__empty {
  margin: 0 0 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 31, 0.62);
}
.hyc-pdp-reviews-cta__empty em {
  font-weight: 600;
  color: var(--orange, #ff6900);
}
.hyc-pdp-reviews-cta__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hyc-pdp-reviews-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.14);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-pdp-reviews-cta__btn:hover {
  background: #fafaf7;
  border-color: rgba(10, 14, 31, 0.24);
  transform: translateY(-1px);
}
.hyc-pdp-reviews-cta__btn--primary {
  background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900));
  border-color: var(--orange, #ff6900);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(255, 105, 0, 0.32);
}
.hyc-pdp-reviews-cta__btn--primary:hover {
  background: linear-gradient(180deg, #ff8628, #ff6900);
  border-color: #ff5a00;
  color: #fff;
}
.hyc-pdp-reviews-cta__btn-num {
  font-size: 8px;
  opacity: 0.85;
}

/* ===================================================================
   iter-007 cleanup: hide redundant masthead (SKU dup vs product_meta)
   + currency symbol refined + hide redundant viewers/share above price
   =================================================================== */

/* Hide iter-023 masthead "ISSUE #14 · p.37" — editorial flourish dup w/ product_meta */
.single-product .summary > .hyc-pdp-masthead { display: none !important; }

/* Currency ₫: bigger + closer to price numerals */
.single-product .summary .price .woocommerce-Price-currencySymbol,
.hyc-pdp-hero__right .price .woocommerce-Price-currencySymbol,
.hyc-pdp-hero__right p.price .woocommerce-Price-currencySymbol {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 0.6em !important;
  margin-top: 0.15em !important;
  margin-left: 6px !important;
  opacity: 1 !important;
  letter-spacing: -0.02em !important;
}

/* "GIÁ TỐT NHẤT TẠI HYC" eyebrow above price — refine */
.single-product .summary .hyc-price-eyebrow,
.hyc-pdp-hero__right .hyc-price-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange, #ff6900);
  margin: 8px 0 2px;
}

/* ===================================================================
   iter-007 trust strip — force overrides (parent grid + em 44px override war)
   =================================================================== */
body.single-product .summary > .hyc-pdp-trust,
.hyc-pdp-hero__right .summary .hyc-pdp-trust,
.summary > div.hyc-pdp-trust {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}
body.single-product .summary > .hyc-pdp-trust .hyc-pdp-trust__list,
.summary .hyc-pdp-trust ul.hyc-pdp-trust__list {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 100% !important;
  align-items: baseline !important;
  column-gap: 8px !important;
  row-gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__item,
.summary .hyc-pdp-trust ul li.hyc-pdp-trust__item {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 0 !important;
  white-space: nowrap !important;
  line-height: 1.4 !important;
  flex: 0 0 auto !important;
  width: auto !important;
}
body.single-product .summary .hyc-pdp-trust em.hyc-pdp-trust__num,
.summary .hyc-pdp-trust .hyc-pdp-trust__item em {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  line-height: 1 !important;
  color: var(--orange, #ff6900) !important;
  margin: 0 2px 0 4px !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  background: transparent !important;
  padding: 0 !important;
  display: inline !important;
}
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__lbl {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ink, #0a0e1f) !important;
  white-space: nowrap !important;
  letter-spacing: -0.005em !important;
}
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__unit {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(10, 14, 31, 0.6) !important;
}
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__sep {
  font-size: 7px !important;
  color: var(--orange, #ff6900) !important;
  opacity: 0.42 !important;
  align-self: center !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
}

/* iter-007: force-hide trust mark + since position */
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__mark,
.hyc-pdp-trust > .hyc-pdp-trust__mark {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
}
body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__since,
.hyc-pdp-trust > .hyc-pdp-trust__since {
  position: absolute !important;
  top: -9px !important;
  right: 12px !important;
  height: auto !important;
  width: auto !important;
  padding: 1px 8px !important;
  background: #fff !important;
  border: 1px solid rgba(255, 105, 0, 0.22) !important;
  border-radius: 999px !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  color: var(--orange, #ff6900) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}

/* iter-007: force trust list flex-direction row (was inherited column) */
body.single-product .summary > .hyc-pdp-trust ul.hyc-pdp-trust__list,
.hyc-pdp-trust > ul.hyc-pdp-trust__list,
.summary .hyc-pdp-trust .hyc-pdp-trust__list {
  flex-direction: row !important;
  flex-flow: row wrap !important;
}

/* ===================================================================
   iter-007 Buy actions row — "Mua ngay" primary + "Trả góp 0%" secondary
   Renders below WC add-to-cart button via woocommerce_after_add_to_cart_button
   =================================================================== */
.hyc-pdp-buy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 10px;
}
.hyc-pdp-buy-actions__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  min-height: 60px;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 200ms ease,
    background 200ms ease;
}
.hyc-pdp-buy-actions__btn--primary {
  background: linear-gradient(135deg, #ff7a1a 0%, var(--orange, #ff6900) 60%, #e85a00 100%);
  color: #fff;
  box-shadow:
    0 6px 18px -6px rgba(255, 105, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hyc-pdp-buy-actions__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px -6px rgba(255, 105, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.hyc-pdp-buy-actions__btn--secondary {
  background: #fff;
  color: var(--ink, #0a0e1f);
  border: 1.5px solid rgba(255, 105, 0, 0.42);
}
.hyc-pdp-buy-actions__btn--secondary:hover {
  transform: translateY(-2px);
  background: #fffaf3;
  border-color: var(--orange, #ff6900);
  box-shadow: 0 6px 18px -8px rgba(255, 105, 0, 0.28);
}
.hyc-pdp-buy-actions__icon {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 9px;
  opacity: 0.7;
}
.hyc-pdp-buy-actions__lbl {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.hyc-pdp-buy-actions__btn--primary .hyc-pdp-buy-actions__lbl { font-size: 16px; }
.hyc-pdp-buy-actions__lbl em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--orange, #ff6900);
  line-height: 1;
}
.hyc-pdp-buy-actions__sub {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 480px) {
  .hyc-pdp-buy-actions { grid-template-columns: 1fr; gap: 8px; }
  .hyc-pdp-buy-actions__btn { min-height: 54px; padding: 10px 14px; }
}

/* ===================================================================
   iter-008 — Compare drawer: REAL TABLE (light theme HYC voice)
   Override iter-023 dark drawer styles
   =================================================================== */

/* Lighten the drawer surface (was dark ink #0a0e1f) */
.hyc-compare-drawer {
  background: #fafaf7 !important;
  color: var(--ink, #0a0e1f) !important;
  box-shadow: 0 -20px 60px -20px rgba(10, 14, 31, 0.2), 0 -2px 0 rgba(255, 105, 0, 0.32) !important;
  max-height: 86vh !important;
  border-top: 0 !important;
}

.hyc-compare-drawer__head {
  background: #fff !important;
  border-bottom: 1px solid rgba(10, 14, 31, 0.08) !important;
  padding: 16px 24px !important;
  position: relative !important;
}
.hyc-compare-drawer__head::before {
  content: "◆ từ 2009 · HungYenPC";
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(10, 14, 31, 0.5);
  letter-spacing: 0.02em;
}
.hyc-compare-drawer__title {
  color: var(--ink, #0a0e1f) !important;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}
.hyc-compare-drawer__count {
  background: var(--orange, #ff6900) !important;
  color: #fff !important;
  padding: 2px 9px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  margin-left: 8px !important;
}
.hyc-compare-drawer__close {
  background: rgba(10, 14, 31, 0.06) !important;
  color: var(--ink, #0a0e1f) !important;
  font-size: 22px !important;
  border-radius: 8px !important;
  transition: background 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hyc-compare-drawer__close:hover {
  background: rgba(255, 105, 0, 0.16) !important;
  color: var(--orange, #ff6900) !important;
  transform: scale(1.06) !important;
}

.hyc-compare-drawer__body {
  background: transparent !important;
  display: block !important;
  grid-template-columns: none !important;
  padding: 20px 24px 0 !important;
  overflow-x: auto !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.hyc-compare-drawer__bottom {
  background: #fff !important;
  border-top: 1px solid rgba(10, 14, 31, 0.08) !important;
  padding: 12px 24px !important;
}
.hyc-compare-drawer__clear {
  background: transparent !important;
  color: rgba(10, 14, 31, 0.7) !important;
  border: 1px solid rgba(10, 14, 31, 0.16) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  transition: all 180ms ease !important;
}
.hyc-compare-drawer__clear:hover {
  background: #fafaf7 !important;
  border-color: rgba(255, 105, 0, 0.42) !important;
  color: var(--orange, #ff6900) !important;
}

/* === Empty state === */
.hyc-compare-empty {
  text-align: center;
  padding: 40px 24px 60px;
  color: rgba(10, 14, 31, 0.6);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}
.hyc-compare-empty__mark {
  color: var(--orange, #ff6900);
  font-size: 28px;
  font-style: normal;
  margin-bottom: 12px;
}
.hyc-compare-empty p { margin: 0 0 6px; }
.hyc-compare-empty__hint {
  font-size: 13.5px;
  color: rgba(10, 14, 31, 0.45);
}
.hyc-compare-empty strong {
  color: var(--orange, #ff6900);
  font-weight: 700;
}

/* === The TABLE === */
.hyc-compare-table {
  display: grid;
  grid-template-columns: 160px repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(10, 14, 31, 0.08);
  overflow: hidden;
  min-width: 720px;
}

.hyc-compare-table__col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(10, 14, 31, 0.06);
}
.hyc-compare-table__col:last-child { border-right: none; }
.hyc-compare-table__col--labels {
  background: #fafaf7;
  position: sticky;
  left: 0;
  z-index: 2;
}
.hyc-compare-table__col--empty {
  background: linear-gradient(180deg, #fafaf7 0%, #fff 100%);
}

.hyc-compare-table__cell {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(10, 14, 31, 0.05);
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--ink, #0a0e1f);
  min-height: 50px;
}
.hyc-compare-table__cell:last-child { border-bottom: none; }

/* Head row: labels column */
.hyc-compare-table__cell--head-label {
  min-height: 200px;
  background: transparent;
  border-bottom: 1px solid rgba(10, 14, 31, 0.08);
}

/* Head row: product columns */
.hyc-compare-table__cell--head {
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(10, 14, 31, 0.08);
  min-height: 200px;
}
.hyc-compare-table__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(10, 14, 31, 0.06);
  color: var(--ink, #0a0e1f);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 180ms ease, color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-compare-table__remove:hover {
  background: rgba(255, 105, 0, 0.18);
  color: var(--orange, #ff6900);
  transform: scale(1.08);
}
.hyc-compare-table__thumb-link {
  display: block;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background: #fafaf7;
}
.hyc-compare-table__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-compare-table__thumb-link:hover .hyc-compare-table__thumb {
  transform: scale(1.04);
}
.hyc-compare-table__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hyc-compare-table__title:hover { color: var(--orange, #ff6900); }

/* Label cells */
.hyc-compare-table__cell--label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  gap: 8px;
}
.hyc-compare-table__row-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--orange, #ff6900);
  opacity: 0.5;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* Value cells */
.hyc-compare-table__val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  letter-spacing: -0.01em;
}
.hyc-compare-table__val--empty {
  color: rgba(10, 14, 31, 0.3);
  font-weight: 400;
}

/* Price cell — special big treatment */
.hyc-compare-table__cell--price {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange, #ff6900);
  letter-spacing: -0.02em;
}
.hyc-compare-table__cell--price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.hyc-compare-table__cell--price .woocommerce-Price-currencySymbol {
  font-size: 0.6em;
  margin-left: 3px;
  font-weight: 700;
}

/* Empty slot column */
.hyc-compare-table__col--empty .hyc-compare-table__cell--head {
  border: 2px dashed rgba(255, 105, 0, 0.28);
  background: rgba(255, 250, 243, 0.6);
  border-radius: 12px;
  margin: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 192px;
}
.hyc-compare-table__empty-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.12);
  color: var(--orange, #ff6900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hyc-compare-table__empty-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  margin-bottom: 4px;
}
.hyc-compare-table__empty-hint {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 11.5px;
  color: rgba(10, 14, 31, 0.5);
  line-height: 1.4;
}
.hyc-compare-table__empty-hint em {
  color: var(--orange, #ff6900);
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 720px) {
  .hyc-compare-drawer__body { padding: 14px 14px 0 !important; }
  .hyc-compare-table { grid-template-columns: 120px repeat(auto-fit, minmax(180px, 1fr)); min-width: 560px; }
  .hyc-compare-table__cell { padding: 10px 12px; font-size: 12.5px; min-height: 44px; }
  .hyc-compare-table__cell--head { min-height: 170px; }
  .hyc-compare-table__cell--head-label { min-height: 170px; }
  .hyc-compare-table__title { font-size: 12px; }
  .hyc-compare-table__cell--price { font-size: 15.5px; }
  .hyc-compare-drawer__head::before { display: none; }
}

/* ===================================================================
   iter-008b — Compare table FLAT GRID overrides (rows align via grid-row)
   Cells are now direct children of .hyc-compare-table, no column wrappers
   =================================================================== */

/* Override the grid-template to use auto rows + cells placed by grid-row attr */
.hyc-compare-table {
  grid-template-rows: 240px repeat(5, 56px) !important;
  grid-auto-flow: row !important;
}

/* Hide old column wrappers if any leftover */
.hyc-compare-table__col { display: contents; }

/* Force cell sizing */
.hyc-compare-table__cell {
  background: #fff;
  border-bottom: 1px solid rgba(10, 14, 31, 0.06);
  border-right: 1px solid rgba(10, 14, 31, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  font-size: 13px;
  min-height: 0;
  overflow: hidden;
}
.hyc-compare-table__cell:last-of-type { border-right: none; }

/* Label column cells get cream bg */
.hyc-compare-table__cell--label {
  background: #fafaf7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  gap: 8px;
}
.hyc-compare-table__cell--head-label {
  background: #fafaf7;
  border-bottom: 1px solid rgba(10, 14, 31, 0.08);
}

/* Head cells (product thumb + title) */
.hyc-compare-table__cell--head {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 14px;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(10, 14, 31, 0.08);
  overflow: hidden;
}
.hyc-compare-table__cell--head .hyc-compare-table__thumb-link {
  display: block;
  flex: 0 0 auto;
  height: 130px;
  background: #fafaf7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.hyc-compare-table__cell--head .hyc-compare-table__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hyc-compare-table__cell--head .hyc-compare-table__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  margin: 0;
}
.hyc-compare-table__cell--head .hyc-compare-table__title:hover {
  color: var(--orange, #ff6900);
}
.hyc-compare-table__cell--head .hyc-compare-table__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: 0;
  background: rgba(10, 14, 31, 0.06);
  color: var(--ink, #0a0e1f);
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hyc-compare-table__cell--head .hyc-compare-table__remove:hover {
  background: rgba(255, 105, 0, 0.18);
  color: var(--orange, #ff6900);
}

/* Empty slot head */
.hyc-compare-table__cell--head.hyc-compare-table__cell--empty {
  border: 2px dashed rgba(255, 105, 0, 0.32) !important;
  background: rgba(255, 250, 243, 0.6);
  border-radius: 10px;
  margin: 6px 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Price cell */
.hyc-compare-table__cell--price {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--orange, #ff6900);
  letter-spacing: -0.02em;
}
.hyc-compare-table__cell--price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.hyc-compare-table__cell--price .woocommerce-Price-currencySymbol {
  font-size: 0.62em;
  margin-left: 3px;
  font-weight: 700;
}

/* Empty value cell content */
.hyc-compare-table__cell--empty:not(.hyc-compare-table__cell--head) {
  background: rgba(255, 250, 243, 0.3);
  color: rgba(10, 14, 31, 0.25);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  justify-content: center;
}

/* Mobile */
@media (max-width: 720px) {
  .hyc-compare-table {
    grid-template-rows: 210px repeat(5, 50px) !important;
    grid-template-columns: 110px repeat(var(--cols, 4), minmax(155px, 1fr)) !important;
  }
  .hyc-compare-table__cell { padding: 8px 10px; font-size: 12px; }
  .hyc-compare-table__cell--head .hyc-compare-table__thumb-link { height: 100px; }
  .hyc-compare-table__cell--head .hyc-compare-table__title { font-size: 11.5px; -webkit-line-clamp: 2; }
  .hyc-compare-table__cell--price { font-size: 14px; }
  .hyc-compare-table__cell--label { font-size: 10px; gap: 5px; }
}

/* ===================================================================
   iter-008c — Compare table: clickable empty slot + thumb fallback
   =================================================================== */

/* Empty slot is now an <a> link — add hover + cursor */
.hyc-compare-table__cell--empty-link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, border-color 180ms ease;
}
.hyc-compare-table__cell--empty-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 105, 0, 0.06) !important;
  border-color: var(--orange, #ff6900) !important;
}
.hyc-compare-table__cell--empty-link:hover .hyc-compare-table__empty-icon {
  transform: scale(1.12) rotate(90deg);
  background: var(--orange, #ff6900);
  color: #fff;
}
.hyc-compare-table__empty-icon {
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
}

/* Thumb fallback: if image fails to load, show placeholder */
.hyc-compare-table__thumb-link--fallback {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f0eee8 0%, #e8e4dd 100%) !important;
  color: rgba(10, 14, 31, 0.35);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  text-align: center;
}
.hyc-compare-table__thumb-link--fallback::before {
  content: "Ảnh sản phẩm";
  display: block;
}

/* Thumb skeleton while loading */
.hyc-compare-table__thumb-link {
  background: linear-gradient(135deg, #fafaf7 0%, #f0eee8 100%);
}

/* ===================================================================
   iter-008d — Compare button on archive cards + toast feedback
   =================================================================== */

/* Compare button — added state (orange filled when in compare list) */
.hyc-archive .prod-action-btn--compare.is-added,
.hyc-wishlist-page .prod-action-btn--compare.is-added {
  background: var(--orange, #ff6900) !important;
  border-color: var(--orange, #ff6900) !important;
  color: #fff !important;
}
.hyc-archive .prod-action-btn--compare.is-added:hover,
.hyc-wishlist-page .prod-action-btn--compare.is-added:hover {
  background: #e85a00 !important;
  border-color: #e85a00 !important;
  color: #fff !important;
}
.hyc-archive .prod-action-btn--compare:not(.is-added):hover,
.hyc-wishlist-page .prod-action-btn--compare:not(.is-added):hover {
  background: var(--orange, #ff6900) !important;
  border-color: var(--orange, #ff6900) !important;
  color: #fff !important;
  transform: scale(1.08);
}

/* Toast notification (bottom-center, fades in after add) */
.hyc-compare-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, 12px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  background: #0a0e1f;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(10, 14, 31, 0.4);
  font-size: 13.5px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 240ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 92vw;
}
.hyc-compare-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.hyc-compare-toast__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange, #ff6900);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.hyc-compare-toast__msg {
  flex: 1;
  white-space: nowrap;
}
.hyc-compare-toast__open {
  margin-left: 8px;
  padding: 6px 12px;
  background: var(--orange, #ff6900);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12.5px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-compare-toast__open:hover {
  background: #e85a00;
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .hyc-compare-toast {
    bottom: 16px;
    padding: 10px 12px;
    font-size: 12.5px;
    gap: 8px;
  }
  .hyc-compare-toast__msg { white-space: normal; }
  .hyc-compare-toast__open { padding: 5px 10px; font-size: 11.5px; }
}

/* ===================================================================
   iter-008f — Standalone /so-sanh/?ids= full-screen comparison page
   =================================================================== */
.hyc-so-sanh {
  background: #fafaf7;
  min-height: 80vh;
  padding: 48px 24px 80px;
}
.hyc-so-sanh__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.hyc-so-sanh__head {
  margin-bottom: 32px;
  text-align: center;
}
.hyc-so-sanh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  margin-bottom: 12px;
}
.hyc-so-sanh__mark {
  color: var(--orange, #ff6900);
  font-size: 10px;
}
.hyc-so-sanh__since {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  color: var(--orange, #ff6900);
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.hyc-so-sanh__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink, #0a0e1f);
  margin: 0 0 12px;
}
.hyc-so-sanh__title em {
  font-style: italic;
  color: var(--orange, #ff6900);
  font-weight: 500;
}
.hyc-so-sanh__sub {
  font-size: 15px;
  color: rgba(10, 14, 31, 0.65);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.hyc-so-sanh__copy {
  display: block;
  margin-top: 4px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(10, 14, 31, 0.5);
}

/* Empty state */
.hyc-so-sanh__empty {
  text-align: center;
  padding: 80px 24px 60px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.06);
  border-radius: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.hyc-so-sanh__empty-mark {
  font-size: 36px;
  color: var(--orange, #ff6900);
  margin-bottom: 16px;
}
.hyc-so-sanh__empty h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink, #0a0e1f);
}
.hyc-so-sanh__empty p {
  color: rgba(10, 14, 31, 0.6);
  margin: 0 0 24px;
  font-size: 14.5px;
}
.hyc-so-sanh__empty p a, .hyc-so-sanh__empty p strong {
  color: var(--orange, #ff6900);
  font-weight: 700;
  text-decoration: none;
}
.hyc-so-sanh__cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900));
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px -6px rgba(255, 105, 0, 0.45);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease;
}
.hyc-so-sanh__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(255, 105, 0, 0.55);
}

/* Share buttons */
.hyc-so-sanh__share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.hyc-so-sanh__share-lbl {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  margin-right: 4px;
}
.hyc-so-sanh__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-so-sanh__share-btn:hover {
  border-color: var(--orange, #ff6900);
  background: #fffaf3;
  transform: translateY(-1px);
}
.hyc-so-sanh__share-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(10, 14, 31, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
}
.hyc-so-sanh__share-btn--zalo .hyc-so-sanh__share-icon { background: #0068ff; color: #fff; }
.hyc-so-sanh__share-btn--fb .hyc-so-sanh__share-icon { background: #1877f2; color: #fff; font-family: 'Fraunces', Georgia, serif; font-style: italic; }
.hyc-so-sanh__share-btn--copy .hyc-so-sanh__share-icon { background: var(--orange, #ff6900); color: #fff; }

/* Table */
.hyc-so-sanh__table-wrap {
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hyc-so-sanh__table {
  display: grid;
  min-width: 800px;
  grid-template-rows: 280px repeat(7, 60px) 70px;
}
.hyc-so-sanh__cell {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(10, 14, 31, 0.05);
  border-right: 1px solid rgba(10, 14, 31, 0.04);
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--ink, #0a0e1f);
  overflow: hidden;
}

/* Label column */
.hyc-so-sanh__cell--label {
  background: #fafaf7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  gap: 10px;
  position: sticky;
  left: 0;
  z-index: 2;
}
.hyc-so-sanh__cell--head-label {
  background: #fafaf7;
  position: sticky;
  left: 0;
  z-index: 3;
}
.hyc-so-sanh__row-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--orange, #ff6900);
  opacity: 0.5;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* Head cells */
.hyc-so-sanh__cell--head {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 18px;
  background: #fff;
  text-decoration: none;
}
.hyc-so-sanh__thumb-link {
  display: block;
  height: 160px;
  background: #fafaf7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.hyc-so-sanh__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hyc-so-sanh__brand {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.5);
  margin-bottom: 4px;
}
.hyc-so-sanh__title-link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink, #0a0e1f);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hyc-so-sanh__title-link:hover { color: var(--orange, #ff6900); }

/* Empty slot head */
.hyc-so-sanh__cell--empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: 2px dashed rgba(255, 105, 0, 0.32) !important;
  background: rgba(255, 250, 243, 0.6);
  border-radius: 12px;
  margin: 8px;
  color: var(--ink, #0a0e1f);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, border-color 180ms ease;
}
.hyc-so-sanh__cell--empty:hover {
  background: rgba(255, 105, 0, 0.08);
  border-color: var(--orange, #ff6900) !important;
  transform: translateY(-2px);
}
.hyc-so-sanh__empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.14);
  color: var(--orange, #ff6900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
}
.hyc-so-sanh__cell--empty:hover .hyc-so-sanh__empty-icon {
  background: var(--orange, #ff6900);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}
.hyc-so-sanh__empty-lbl { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.hyc-so-sanh__empty-hint {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(10, 14, 31, 0.5);
}
.hyc-so-sanh__empty-hint em { color: var(--orange, #ff6900); font-weight: 600; font-style: italic; }

/* Spec values */
.hyc-so-sanh__val { font-size: 14px; font-weight: 700; display: inline-flex; align-items: baseline; gap: 4px; }
.hyc-so-sanh__val em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--orange, #ff6900);
  letter-spacing: -0.01em;
}
.hyc-so-sanh__family { font-size: 12px; font-weight: 600; color: rgba(10, 14, 31, 0.65); }
.hyc-so-sanh__unit { font-size: 12px; font-weight: 700; color: rgba(10, 14, 31, 0.65); }
.hyc-so-sanh__note {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 14, 31, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 6px;
  background: rgba(10, 14, 31, 0.05);
  border-radius: 3px;
}
.hyc-so-sanh__val--empty {
  color: rgba(10, 14, 31, 0.3);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}
.hyc-so-sanh__val--ok { color: #1d7a3f; font-weight: 700; }
.hyc-so-sanh__val--out { color: #b34648; font-weight: 700; }

/* Price */
.hyc-so-sanh__cell--price .hyc-so-sanh__price {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange, #ff6900);
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: baseline;
}
.hyc-so-sanh__price-cur {
  font-size: 0.55em;
  margin-left: 4px;
  font-weight: 700;
}

.hyc-so-sanh__chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: linear-gradient(90deg, var(--orange, #ff6900), #ff7e1f);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-left: 6px;
}

/* CTA cell */
.hyc-so-sanh__cell--cta {
  background: rgba(255, 250, 243, 0.4);
}
.hyc-so-sanh__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900));
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px -4px rgba(255, 105, 0, 0.4);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-so-sanh__cta:hover { transform: translateY(-2px); }
.hyc-so-sanh__cell--empty-row {
  background: rgba(255, 250, 243, 0.3);
  justify-content: center;
  color: rgba(10, 14, 31, 0.3);
}

/* Footer */
.hyc-so-sanh__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(10, 14, 31, 0.08);
}
.hyc-so-sanh__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink, #0a0e1f);
  border: 1px solid rgba(10, 14, 31, 0.16);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.hyc-so-sanh__cta-secondary:hover {
  border-color: var(--orange, #ff6900);
  background: #fffaf3;
}
.hyc-so-sanh__footer-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(10, 14, 31, 0.5);
}

/* Mobile */
@media (max-width: 720px) {
  .hyc-so-sanh { padding: 28px 14px 60px; }
  .hyc-so-sanh__table { grid-template-rows: 230px repeat(7, 56px) 64px; min-width: 580px; }
  .hyc-so-sanh__table { grid-template-columns: 120px repeat(var(--cols, 4), minmax(160px, 1fr)) !important; }
  .hyc-so-sanh__cell { padding: 10px 12px; font-size: 12.5px; }
  .hyc-so-sanh__thumb-link { height: 110px; }
  .hyc-so-sanh__title-link { font-size: 12px; -webkit-line-clamp: 2; }
  .hyc-so-sanh__cell--price .hyc-so-sanh__price { font-size: 17px; }
  .hyc-so-sanh__row-num { font-size: 14px; }
  .hyc-so-sanh__cell--label { font-size: 10px; gap: 6px; }
  .hyc-so-sanh__footer { flex-direction: column; gap: 16px; }
}

/* ===================================================================
   T4 iter-002 — Active chips polish (Fraunces numerics + stagger + ◆ marker)
   =================================================================== */

/* Replace rotated-square ::before of label with editorial ◆ + Fraunces italic */
.hyc-active-chips__lbl::before {
  content: "\25C6" !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  color: var(--orange, #ff6900);
  font-size: 9px;
  letter-spacing: 0;
  margin-right: 4px;
  vertical-align: 1px;
}

/* Fraunces italic numerics wrapped by JS (in chip values) */
.hyc-active-chip__val em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15em;
  color: rgb(var(--chip-tone, 10, 14, 31));
  margin: 0 1px;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Stagger fade-in on chip mount */
.hyc-active-chip {
  animation: hycActiveChipIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hyc-active-chip:nth-child(2) { animation-delay: 40ms; }
.hyc-active-chip:nth-child(3) { animation-delay: 80ms; }
.hyc-active-chip:nth-child(4) { animation-delay: 120ms; }
.hyc-active-chip:nth-child(5) { animation-delay: 160ms; }
.hyc-active-chip:nth-child(6) { animation-delay: 200ms; }
.hyc-active-chip:nth-child(n+7) { animation-delay: 240ms; }
@keyframes hycActiveChipIn {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Smoother × hover: scale up + 90deg rotate with expo easing */
.hyc-active-chip__x {
  transition: background 220ms ease, color 200ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hyc-active-chip:hover .hyc-active-chip__x {
  transform: rotate(90deg) scale(1.1) !important;
}

/* Group label gets subtle separator before val */
.hyc-active-chip__group::after {
  content: ":";
  color: rgba(10, 14, 31, 0.35);
  margin-left: 2px;
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .hyc-active-chip {
    animation: none !important;
  }
}

/* Accessibility utility — visually hidden but readable by screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===================================================================
   T5 iter-002 — Universal .hyc-page-* polish (apply to 11 pages)
   Auto-eyebrow + Fraunces italic counters + big strong + ◆ markers
   =================================================================== */

/* Auto-prepend ◆ TỪ 2009 eyebrow if not present */
.hyc-page-hero h1::before {
  content: "\25C6 HungYenPC \00B7 từ 2009";
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em;
  color: var(--pg-orange, #ff6900) !important;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Italicize and orange-tint key keyword in title (existing pattern) */
.hyc-page-hero h1 em {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--pg-orange, #ff6900) !important;
}

.hyc-page-hero .deck,
.hyc-page-hero p.deck {
  font-size: 17px !important;
  line-height: 1.55 !important;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Section H2 auto-numbering with Fraunces italic counter */
.hyc-page {
  counter-reset: hycPageSection;
}
.hyc-page > h2 {
  counter-increment: hycPageSection;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 48px 0 20px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink, #0a0e1f);
  position: relative;
}
.hyc-page > h2::before {
  content: "0" counter(hycPageSection);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--orange, #ff6900);
  opacity: 0.45;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hyc-page > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent);
  margin-left: 8px;
  align-self: center;
}

/* Grid cards: lift + warm cream + orange-22 border */
.hyc-page-grid-2,
.hyc-page-grid-3,
.hyc-page-grid-4 {
  display: grid;
  gap: 16px;
  margin: 20px 0 32px;
}
.hyc-page-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hyc-page-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hyc-page-grid-4 { grid-template-columns: repeat(4, 1fr); }

.hyc-page-grid-2 > div,
.hyc-page-grid-3 > div,
.hyc-page-grid-4 > div {
  background: #fff;
  border: 1px solid rgba(10, 14, 31, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
  position: relative;
  overflow: hidden;
}
.hyc-page-grid-2 > div:hover,
.hyc-page-grid-3 > div:hover,
.hyc-page-grid-4 > div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 105, 0, 0.45);
  background: #fffaf3;
  box-shadow: 0 12px 28px -12px rgba(255, 105, 0, 0.32);
}
.hyc-page-grid-2 > div::after,
.hyc-page-grid-3 > div::after,
.hyc-page-grid-4 > div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(225deg, var(--orange, #ff6900) 0 50%, transparent 50%);
  border-top-right-radius: 14px;
  opacity: 0;
  transform-origin: top right;
  transition: opacity 200ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hyc-page-grid-2 > div:hover::after,
.hyc-page-grid-3 > div:hover::after,
.hyc-page-grid-4 > div:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* H3 inside card: orange uppercase eyebrow with ◆ */
.hyc-page-grid-2 > div > h3,
.hyc-page-grid-3 > div > h3,
.hyc-page-grid-4 > div > h3 {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 14, 31, 0.6);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hyc-page-grid-2 > div > h3::before,
.hyc-page-grid-3 > div > h3::before,
.hyc-page-grid-4 > div > h3::before {
  content: "\25C6";
  color: var(--orange, #ff6900);
  font-size: 9px;
  letter-spacing: 0;
}

/* First <p> with <strong> = the key fact (hotline/showroom address/etc) — make BIG */
.hyc-page-grid-2 > div > p:first-of-type strong,
.hyc-page-grid-3 > div > p:first-of-type strong,
.hyc-page-grid-4 > div > p:first-of-type strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange, #ff6900);
  letter-spacing: -0.015em;
  line-height: 1.2;
  display: inline-block;
}
.hyc-page-grid-2 > div > p:first-of-type,
.hyc-page-grid-3 > div > p:first-of-type,
.hyc-page-grid-4 > div > p:first-of-type {
  margin: 0 0 8px;
}

/* Other <p> styling — body copy refined */
.hyc-page-grid-2 > div > p:not(:first-of-type),
.hyc-page-grid-3 > div > p:not(:first-of-type),
.hyc-page-grid-4 > div > p:not(:first-of-type) {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10, 14, 31, 0.68);
  margin: 0;
}

@media (max-width: 720px) {
  .hyc-page-grid-2, .hyc-page-grid-3, .hyc-page-grid-4 { grid-template-columns: 1fr; }
  .hyc-page > h2::before { font-size: 26px; }
  .hyc-page > h2 { font-size: 22px; }
}

/* ===================================================================
   T7 iter-002 — Spotlight luxe polish (chromatic glow + pulse + bigger photo)
   =================================================================== */

/* Chromatic dot triad — cross-system w/ warranty hero T1 + reviews CTA */
.deal-spotlight {
  position: relative;
  isolation: isolate;
}
.deal-spotlight::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 4px;
  width: 22px;
  height: 5px;
  background-image:
    radial-gradient(circle 2.5px at 2.5px 50%, #ff6900 0 2.5px, transparent 3px),
    radial-gradient(circle 2.5px at 11.5px 50%, #16b3c4 0 2.5px, transparent 3px),
    radial-gradient(circle 2.5px at 20.5px 50%, #f06595 0 2.5px, transparent 3px);
  background-repeat: no-repeat;
  filter: blur(0.4px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.deal-spotlight:hover::before {
  transform: rotate(8deg);
  opacity: 1;
}

/* Subtle chromatic glow on photo area */
.deal-spotlight__visual {
  position: relative;
  background:
    radial-gradient(circle 80px at 30% 30%, rgba(255, 105, 0, 0.18), transparent 60%),
    radial-gradient(circle 80px at 70% 70%, rgba(22, 179, 196, 0.12), transparent 60%),
    radial-gradient(circle 60px at 50% 50%, rgba(240, 101, 149, 0.10), transparent 60%);
}

/* Photo: bigger, smoother hover lift */
.deal-spotlight__photo {
  max-height: 380px !important;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 280ms ease !important;
}
.deal-spotlight:hover .deal-spotlight__photo {
  transform: translateY(-4px) scale(1.04) !important;
  filter: drop-shadow(0 12px 24px rgba(255, 105, 0, 0.32));
}

/* Slow pulse on Fraunces "01" corner number */
.deal-spotlight__corner {
  animation: hycSpotlightPulse 4s ease-in-out infinite;
}
@keyframes hycSpotlightPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .deal-spotlight::before,
  .deal-spotlight__photo,
  .deal-spotlight__corner {
    animation: none !important;
    transition: none !important;
  }
  .deal-spotlight:hover::before,
  .deal-spotlight:hover .deal-spotlight__photo { transform: none !important; }
}

/* ===================================================================
   T8 iter-002 — Category icons polish (breathe + rotate on hover)
   =================================================================== */

.filter-chips--top .chip svg,
.hyc-archive-cats .chip svg {
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1) !important,
    color 200ms ease !important;
}

/* Idle: subtle breathe animation */
.filter-chips--top .chip:not(.active) svg {
  animation: hycCatIconBreathe 4.5s ease-in-out infinite;
}
.filter-chips--top .chip:nth-child(2):not(.active) svg { animation-delay: 0.4s; }
.filter-chips--top .chip:nth-child(3):not(.active) svg { animation-delay: 0.8s; }
.filter-chips--top .chip:nth-child(4):not(.active) svg { animation-delay: 1.2s; }
.filter-chips--top .chip:nth-child(5):not(.active) svg { animation-delay: 1.6s; }
.filter-chips--top .chip:nth-child(6):not(.active) svg { animation-delay: 2.0s; }
.filter-chips--top .chip:nth-child(7):not(.active) svg { animation-delay: 2.4s; }
.filter-chips--top .chip:nth-child(8):not(.active) svg { animation-delay: 2.8s; }
.filter-chips--top .chip:nth-child(9):not(.active) svg { animation-delay: 3.2s; }
@keyframes hycCatIconBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* Hover: scale up + small rotate */
.filter-chips--top .chip:hover svg {
  animation-play-state: paused;
  transform: scale(1.18) rotate(-6deg) !important;
}

/* Active category: gentle wiggle on mount */
.filter-chips--top .chip.active svg {
  animation: hycCatIconActive 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hycCatIconActive {
  0%   { transform: scale(0.8) rotate(-12deg); }
  60%  { transform: scale(1.15) rotate(6deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .filter-chips--top .chip svg,
  .filter-chips--top .chip:not(.active) svg,
  .filter-chips--top .chip.active svg {
    animation: none !important;
  }
  .filter-chips--top .chip:hover svg { transform: none !important; }
}

/* ===================================================================
   iter-009b — Mobile hero 1-col fix (override duplicate 8378 rule)
   Plus comprehensive mobile PDP polish
   =================================================================== */
@media (max-width: 900px) {
  body.single-product .hyc-pdp-hero,
  body.single-product .hyc-pdp-hero.hyc-pdp-hero {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  body.single-product .hyc-pdp-hero__left,
  body.single-product .hyc-pdp-hero__right {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Mobile-specific PDP polish */
@media (max-width: 720px) {
  /* Hero gallery height adjusts */
  body.single-product .hyc-pdp-hero .woocommerce-product-gallery {
    min-height: 280px !important;
    max-height: 420px !important;
  }
  body.single-product .hyc-pdp-hero .woocommerce-product-gallery__wrapper,
  body.single-product .hyc-pdp-hero .woocommerce-product-gallery__image {
    min-height: 280px !important;
    max-height: 420px !important;
  }

  /* Spec cards: 1 col on mobile (was 2-col grid) */
  .hyc-pdp-spec-cards__grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .hyc-pdp-spec-card {
    min-height: 56px;
    padding: 10px 12px;
  }

  /* Trust strip flexible on mobile */
  body.single-product .summary > .hyc-pdp-trust {
    padding: 10px 12px !important;
  }
  body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__list {
    column-gap: 6px !important;
    row-gap: 4px !important;
  }
  body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__item {
    font-size: 11.5px !important;
  }
  body.single-product .summary .hyc-pdp-trust em.hyc-pdp-trust__num {
    font-size: 13px !important;
  }
  body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__since {
    font-size: 9.5px !important;
    top: -8px !important;
    right: 8px !important;
  }

  /* Price big but not overflow on small screens */
  .single-product .summary > p.price,
  .single-product .summary > .price,
  .hyc-pdp-hero__right .price,
  .hyc-pdp-hero__right p.price {
    font-size: clamp(32px, 9vw, 48px) !important;
  }

  /* Buy actions 1 col */
  .hyc-pdp-buy-actions {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  /* Hide chromatic dots in warranty hero on mobile (reduce noise) */
  .hyc-pdp-warranty__chroma { display: none !important; }

  /* Reviews CTA actions stack on mobile */
  .hyc-pdp-reviews-cta__actions {
    flex-direction: column;
    gap: 6px;
  }
  .hyc-pdp-reviews-cta__btn { width: 100%; justify-content: center; }

  /* Bundle list tighter */
  .hyc-pdp-bundle__list { font-size: 13px !important; }

  /* Pullquote smaller */
  .hyc-pdp-pullquote { font-size: 14px !important; padding: 14px 16px !important; }
}

/* Very narrow screens */
@media (max-width: 480px) {
  body.single-product .hyc-pdp-hero { gap: 16px !important; }

  /* Stock urgency tighter */
  .hyc-pdp-stock-live { font-size: 12.5px !important; }

  /* Trust strip even more compact */
  body.single-product .summary .hyc-pdp-trust .hyc-pdp-trust__item { font-size: 11px !important; }
  body.single-product .summary .hyc-pdp-trust em.hyc-pdp-trust__num { font-size: 12.5px !important; }

  /* Cart form qty + button stack */
  body.single-product .summary form.cart {
    flex-wrap: wrap;
  }
  body.single-product .summary form.cart .quantity {
    flex: 0 0 auto;
  }
  body.single-product .summary form.cart .single_add_to_cart_button {
    flex: 1 1 100%;
    margin-top: 8px !important;
  }
}

/* Compare drawer mobile */
@media (max-width: 720px) {
  .hyc-compare-drawer {
    max-height: 88vh !important;
  }
  .hyc-compare-table {
    grid-template-columns: 100px repeat(auto-fit, minmax(150px, 1fr)) !important;
    min-width: 480px !important;
  }
  .hyc-compare-drawer__head { padding: 14px 16px !important; }
  .hyc-compare-drawer__head::before { display: none; }
  .hyc-compare-drawer__title { font-size: 17px; }
  .hyc-compare-drawer__body { padding: 14px 14px 0 !important; }
}

/* /so-sanh/ mobile */
@media (max-width: 720px) {
  .hyc-so-sanh { padding: 24px 12px 60px; }
  .hyc-so-sanh__title { font-size: clamp(28px, 7vw, 42px) !important; }
  .hyc-so-sanh__share { gap: 6px; }
  .hyc-so-sanh__share-btn { padding: 6px 10px 6px 8px; font-size: 12px; }
}

/* Page hero mobile */
@media (max-width: 720px) {
  .hyc-page-hero { padding: 28px 22px 26px !important; border-radius: 16px; }
  .hyc-page-hero h1::before { font-size: 9.5px !important; margin-bottom: 10px; }
  .hyc-page-hero h1 { font-size: clamp(22px, 6vw, 32px) !important; }
  .hyc-page-hero .deck { font-size: 14px !important; }

  .hyc-page > h2 { font-size: 19px !important; gap: 8px; margin: 32px 0 16px; }
  .hyc-page > h2::before { font-size: 22px !important; }

  /* Page cards stack */
  .hyc-page-grid-2, .hyc-page-grid-3, .hyc-page-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .hyc-page-grid-2 > div, .hyc-page-grid-3 > div, .hyc-page-grid-4 > div {
    padding: 18px 18px;
  }
}

/* ===================================================================
   iter-009c — Fix page counter for nested sections
   (/showroom/, /dich-vu/* have H2 in section.hyc-page-info, not direct)
   =================================================================== */
.hyc-page {
  counter-reset: hycPageSection !important;
}
.hyc-page > h2,
.hyc-page > section > h2,
.hyc-page > article > h2,
.hyc-page > .hyc-page-info > h2,
.hyc-page > .hyc-page-block > h2 {
  counter-increment: hycPageSection;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 48px 0 20px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink, #0a0e1f);
  position: relative;
}
.hyc-page > h2::before,
.hyc-page > section > h2::before,
.hyc-page > article > h2::before,
.hyc-page > .hyc-page-info > h2::before,
.hyc-page > .hyc-page-block > h2::before {
  content: "0" counter(hycPageSection);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--orange, #ff6900);
  opacity: 0.45;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hyc-page > h2::after,
.hyc-page > section > h2::after,
.hyc-page > article > h2::after,
.hyc-page > .hyc-page-info > h2::after,
.hyc-page > .hyc-page-block > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent);
  margin-left: 8px;
  align-self: center;
}

@media (max-width: 720px) {
  .hyc-page > h2::before,
  .hyc-page > section > h2::before,
  .hyc-page > article > h2::before,
  .hyc-page > .hyc-page-info > h2::before,
  .hyc-page > .hyc-page-block > h2::before { font-size: 26px; }

  .hyc-page > h2,
  .hyc-page > section > h2,
  .hyc-page > article > h2,
  .hyc-page > .hyc-page-info > h2,
  .hyc-page > .hyc-page-block > h2 { font-size: 22px; }
}

/* iter-009d — Extend page H2 counter selectors to deeper wrappers */
.hyc-page article.hyc-prose > h2,
.hyc-page .hyc-page-inner > h2,
.hyc-page .hyc-page-inner article > h2,
.hyc-page .hyc-page-inner section > h2 {
  counter-increment: hycPageSection;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 48px 0 20px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink, #0a0e1f);
  position: relative;
}
.hyc-page article.hyc-prose > h2::before,
.hyc-page .hyc-page-inner > h2::before,
.hyc-page .hyc-page-inner article > h2::before,
.hyc-page .hyc-page-inner section > h2::before {
  content: "0" counter(hycPageSection);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--orange, #ff6900);
  opacity: 0.45;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hyc-page article.hyc-prose > h2::after,
.hyc-page .hyc-page-inner > h2::after,
.hyc-page .hyc-page-inner article > h2::after,
.hyc-page .hyc-page-inner section > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 14, 31, 0.12), transparent);
  margin-left: 8px;
  align-self: center;
}
@media (max-width: 720px) {
  .hyc-page article.hyc-prose > h2,
  .hyc-page .hyc-page-inner > h2,
  .hyc-page .hyc-page-inner article > h2,
  .hyc-page .hyc-page-inner section > h2 { font-size: 22px; }
  .hyc-page article.hyc-prose > h2::before,
  .hyc-page .hyc-page-inner > h2::before,
  .hyc-page .hyc-page-inner article > h2::before,
  .hyc-page .hyc-page-inner section > h2::before { font-size: 26px; }
}

/* ===================================================================
   iter-009e — Mobile cart + checkout 1-col stack
   /gio-hang/ + /thanh-toan/ — WC grid 2-col → stack on mobile
   =================================================================== */
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-checkout .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-checkout .cart-collaterals,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 720px) {
  /* Cart table mobile-friendly */
  body.woocommerce-cart table.shop_table {
    border: 1px solid rgba(10, 14, 31, 0.08) !important;
    border-radius: 12px;
    overflow: hidden;
  }
  body.woocommerce-cart table.shop_table thead { display: none !important; }
  body.woocommerce-cart table.shop_table tr.cart_item {
    display: grid !important;
    grid-template-columns: 64px 1fr auto;
    gap: 8px 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(10, 14, 31, 0.06);
    align-items: center;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td {
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-remove {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-thumbnail img {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
    border-radius: 8px;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-name {
    grid-column: 2 / span 2;
    grid-row: 1;
    font-size: 13.5px;
    font-weight: 700;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-name a {
    color: var(--ink, #0a0e1f);
    text-decoration: none;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-price {
    display: none !important;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-quantity {
    grid-column: 2;
    grid-row: 2;
    font-size: 12.5px;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-quantity input.qty {
    width: 56px;
    padding: 6px 8px;
    border: 1px solid rgba(10, 14, 31, 0.14);
    border-radius: 6px;
    font-size: 13px;
  }
  body.woocommerce-cart table.shop_table tr.cart_item td.product-subtotal {
    grid-column: 3;
    grid-row: 2;
    font-weight: 800;
    color: var(--orange, #ff6900);
    font-size: 14px;
    justify-self: end;
  }
  /* Coupon row */
  body.woocommerce-cart table.shop_table .actions {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }
  body.woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  body.woocommerce-cart .coupon input[type=text] {
    flex: 1;
    min-width: 0;
  }

  /* Cart totals card */
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout .cart_totals {
    background: #fff;
    border: 1px solid rgba(10, 14, 31, 0.08);
    border-radius: 14px;
    padding: 18px 18px 22px;
  }
  body.woocommerce-cart .cart_totals h2,
  body.woocommerce-checkout .cart_totals h2 {
    font-size: 16px !important;
    margin: 0 0 14px !important;
    font-weight: 700;
    letter-spacing: -0.005em;
  }
  body.woocommerce-cart .cart_totals table {
    width: 100%;
    margin: 0 0 14px;
  }
  body.woocommerce-cart .cart_totals .order-total .amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange, #ff6900);
  }

  /* Big checkout CTA */
  body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
  body.woocommerce-cart .wc-proceed-to-checkout a.button {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900)) !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-align: center;
    box-shadow: 0 6px 18px -6px rgba(255, 105, 0, 0.45) !important;
  }
}

/* iter-009f — Force mobile cart/checkout to display:block (grid override war) */
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce.woocommerce.woocommerce,
  body.woocommerce-checkout .woocommerce.woocommerce.woocommerce {
    display: block !important;
    grid-template-columns: none !important;
  }
  body.woocommerce-cart .woocommerce > *,
  body.woocommerce-checkout .woocommerce > * {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
    margin-bottom: 16px !important;
  }
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout #order_review {
    margin-top: 20px !important;
  }
}

/* iter-009g — WC checkout .col2-set mobile stack */
@media (max-width: 900px) {
  body.woocommerce-checkout .col2-set,
  body.woocommerce-checkout form.checkout {
    display: block !important;
    grid-template-columns: none !important;
  }
  body.woocommerce-checkout .col2-set .col-1,
  body.woocommerce-checkout .col2-set .col-2,
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #customer_details .col-1,
  body.woocommerce-checkout #customer_details .col-2,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout #order_review_heading {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
    grid-column: auto !important;
  }
  body.woocommerce-checkout #customer_details {
    display: block !important;
    grid-template-columns: none !important;
  }
  /* Order review card */
  body.woocommerce-checkout #order_review {
    background: #fff;
    border: 1px solid rgba(10, 14, 31, 0.08);
    border-radius: 14px;
    padding: 16px 18px 20px;
    margin-top: 20px !important;
  }
  /* Place order CTA full-width orange */
  body.woocommerce-checkout #place_order,
  body.woocommerce-checkout button#place_order {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    background: linear-gradient(180deg, #ff7a1a, var(--orange, #ff6900)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    margin-top: 12px !important;
    box-shadow: 0 6px 18px -6px rgba(255, 105, 0, 0.45) !important;
  }
  /* Input fields tighter */
  body.woocommerce-checkout .woocommerce-billing-fields p.form-row {
    padding: 0 !important;
    width: 100% !important;
    margin-bottom: 12px;
  }
  body.woocommerce-checkout input[type=text],
  body.woocommerce-checkout input[type=email],
  body.woocommerce-checkout input[type=tel],
  body.woocommerce-checkout select,
  body.woocommerce-checkout textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(10, 14, 31, 0.14) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
  }
}

/* iter-009h — Account page mobile stack */
@media (max-width: 900px) {
  body.woocommerce-account .woocommerce.woocommerce.woocommerce {
    display: block !important;
    grid-template-columns: none !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #fff;
    border: 1px solid rgba(10, 14, 31, 0.08);
    border-radius: 12px;
    padding: 6px;
    position: static !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink, #0a0e1f);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background 180ms ease;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
  body.woocommerce-account .woocommerce-MyAccount-navigation ul li a.is-active {
    background: var(--ink, #0a0e1f);
    color: #fff;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul li:not(.is-active) a:hover {
    background: rgba(255, 105, 0, 0.08);
    color: var(--orange, #ff6900);
  }
}

@media (max-width: 720px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }
}

/* iter-009i — Footer link list compact (was 46px per link → ~36px) */
@media (max-width: 720px) {
  .hyc-footer ul li,
  .site-footer ul li,
  footer ul li {
    padding: 0 !important;
    margin: 0 !important;
  }
  .hyc-footer ul li a,
  .site-footer ul li a,
  footer ul li a {
    display: block;
    padding: 8px 0 !important;
    line-height: 1.4 !important;
    font-size: 13.5px !important;
  }
  .hyc-footer ul,
  .site-footer ul,
  footer ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
  }
  /* Section headings tighter */
  .hyc-footer h3, .hyc-footer h4,
  .site-footer h3, .site-footer h4,
  footer .widget-title {
    margin-bottom: 10px !important;
    font-size: 13px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

/* iter-009j — Footer mobile: zero LI padding (A keeps padding for 44px touch target) */
@media (max-width: 720px) {
  .hyc-footer .hyc-footer-col ul li {
    padding: 0 !important;
    min-height: 0 !important;
  }
  .hyc-footer .hyc-footer-col ul li a {
    padding: 10px 0 !important;
    min-height: 40px !important;
    line-height: 1.3;
  }
  .hyc-footer-col ul { gap: 0 !important; }
}

/* ===========================================================================
 * iter-fix-3img-001 — Multi-image gallery stacks vertically (flexslider disabled
 * in functions.php remove_theme_support('wc-product-gallery-slider')).
 * Wrapper switches to column flex; each __image renders 360-560px tall with
 * gap between slides; thumbs hidden since stacked render shows all images.
 * MUST stay at end of file — overrides earlier iter-NNN patches.
 * =========================================================================== */
/* Higher specificity to win against earlier .hyc-pdp-hero scoped rules (lines 8157, 15791) */
body.single-product .hyc-pdp-hero .woocommerce-product-gallery,
body.single-product .woocommerce-product-gallery {
  aspect-ratio: auto !important;
  max-height: none !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: block !important;
  /* WC default sets opacity:0 + animates to 1 on flexslider init. We disabled
     flexslider — force opacity:1 so images become visible. */
  opacity: 1 !important;
}
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__wrapper {
  flex-direction: column !important;
  gap: 14px !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 360px !important;
  max-height: 560px !important;
  aspect-ratio: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
body.single-product .hyc-pdp-hero .woocommerce-product-gallery__image img,
body.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 500px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  object-fit: contain !important;
  padding: 20px !important;
  display: block !important;
}
/* Anchor wrapper — center image inside its hero */
body.single-product .woocommerce-product-gallery__image > a {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  align-items: center !important;
  justify-content: center !important;
}
/* Hide flexslider thumb nav since stacked render shows all images */
body.single-product .flex-control-thumbs,
body.single-product ol.flex-control-nav,
body.single-product .flex-direction-nav {
  display: none !important;
}

