@charset "UTF-8";
/* ============================================================================
   PCgate — White Commerce theme  (v12.9 full-image/filter alignment patch)
   White canvas · orange (#e8853a) accent · clean commerce panels.
   Display: Space Grotesk · Body: Inter · Data/labels: IBM Plex Mono.
   Built from scratch against the real PHP-rendered DOM in functions.php.
   Scope: every rule is namespaced under body.pcgate-pro-store so it cannot
   leak into wp-admin or other contexts.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;450;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ----------------------------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store {
  /* surfaces */
  --bg:        #222222;   /* page canvas */
  --bg-2:      #222222;   /* alternating band */
  --panel:     #222222;   /* raised panel / hero card */
  --card:      #222222;   /* product / content card */
  --card-2:    #222222;   /* nested well, inputs */
  --well:      #222222;   /* image wells, search */

  /* lines */
  --line:        rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --line-orange: rgba(232,133,58,.45);

  /* text */
  --text:    #f5f5f5;
  --text-2:  #d1d5db;
  --muted:   #a7adb7;
  --faint:   #7f8792;

  /* accent */
  --orange:      #e8853a;
  --orange-soft: #ffb168;
  --orange-deep: #c96a23;
  --orange-ink:  #1a0f05;          /* text on orange fills */
  --orange-glow: rgba(232,133,58,.22);
  --orange-wash: rgba(232,133,58,.10);

  /* status */
  --green:  #34d399;
  --red:    #ff5a52;

  /* shape */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow:    0 18px 50px rgba(0,0,0,.32);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.24);

  --maxw: 1180px;
  --gut: clamp(18px, 4vw, 40px);

  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

/* ----------------------------------------------------------------------------
   2. RESET / BASE
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.pcgate-pro-store *,
body.pcgate-pro-store *::before,
body.pcgate-pro-store *::after { box-sizing: border-box; }

body.pcgate-pro-store img { max-width: 100%; height: auto; display: block; }

body.pcgate-pro-store a { color: var(--text); text-decoration: none; transition: color .18s ease; }
body.pcgate-pro-store a:hover { color: var(--orange-soft); }

body.pcgate-pro-store h1,
body.pcgate-pro-store h2,
body.pcgate-pro-store h3,
body.pcgate-pro-store h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--text);
}
body.pcgate-pro-store p { margin: 0 0 1em; color: var(--text-2); }

body.pcgate-pro-store ::selection { background: var(--orange); color: var(--orange-ink); }

body.pcgate-pro-store :focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

body.pcgate-pro-store .pcg-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* generic section rhythm */
body.pcgate-pro-store .pcg-section { padding-block: clamp(56px, 9vw, 104px); }
body.pcgate-pro-store .pcg-section:nth-of-type(even) { background: var(--bg-2); }

/* shared eyebrow — mono kicker with orange tick */
body.pcgate-pro-store .pcg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 18px;
}
body.pcgate-pro-store .pcg-eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--orange);
}

/* section heads (used on home, product, catalog) */
body.pcgate-pro-store .pcg-section-head { max-width: 640px; margin-bottom: 38px; }
body.pcgate-pro-store .pcg-section-head > span {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 14px;
}
body.pcgate-pro-store .pcg-section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 12px;
}
body.pcgate-pro-store .pcg-section-head p { color: var(--muted); margin: 0; font-size: 1.02rem; }

/* ----------------------------------------------------------------------------
   3. HEADER / NAV
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
/* signature orange hairline rail */
body.pcgate-pro-store .pcg-header::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 40%, transparent 75%);
}
body.pcgate-pro-store .pcg-nav-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gut);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 26px;
}

body.pcgate-pro-store .pcg-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -.02em;
  color: var(--text);
}
body.pcgate-pro-store .pcg-brand:hover { color: var(--text); }
body.pcgate-pro-store .pcg-logo-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: var(--orange-ink);
  box-shadow: 0 6px 18px var(--orange-glow);
}
body.pcgate-pro-store .pcg-logo-mark svg { width: 22px; height: 22px; }

body.pcgate-pro-store .pcg-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  min-width: 0;
  flex-wrap: nowrap;
}
body.pcgate-pro-store .pcg-nav-links a {
  position: relative;
  padding: 9px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  white-space: nowrap;
}
body.pcgate-pro-store .pcg-nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
body.pcgate-pro-store .pcg-nav-links a.is-active { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-nav-links a.is-active::after {
  content: "";
  position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

body.pcgate-pro-store .pcg-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

/* --- navbar search: RAW, NO BUBBLE --- */
body.pcgate-pro-store .pcg-navbar-search { display: flex; position: relative; margin-left: 18px; }
body.pcgate-pro-store .pcg-navbar-search-box {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 200px;
  min-width: 0;
  height: 40px;
  padding: 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color .2s ease;
}
body.pcgate-pro-store .pcg-navbar-search:focus-within .pcg-navbar-search-box { border-bottom-color: var(--orange); }
body.pcgate-pro-store .pcg-navbar-search-icon,
body.pcgate-pro-store .pcg-navbar-search-icon svg {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  color: var(--muted);
}
body.pcgate-pro-store .pcg-navbar-search-icon svg * { fill: none; stroke: currentColor; }
body.pcgate-pro-store .pcg-navbar-search input[type="search"] {
  background: transparent;
  border: 0; outline: 0;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  height: 38px;
  width: 100%;
}
body.pcgate-pro-store .pcg-navbar-search input[type="search"]::placeholder { color: var(--faint); }
body.pcgate-pro-store .pcg-navbar-search input[type="search"]::-webkit-search-cancel-button { display: none; }
body.pcgate-pro-store .pcg-navbar-search button[type="submit"] {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  padding: 0; margin: 0;
  background: transparent;
  border: 0; border-radius: 0;
  color: var(--muted);
  cursor: pointer;
  transition: color .18s ease;
}
body.pcgate-pro-store .pcg-navbar-search button[type="submit"]:hover { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-navbar-search button[type="submit"] svg { width: 16px; height: 16px; }
body.pcgate-pro-store .pcg-navbar-search button[type="submit"] svg * { fill: none; stroke: currentColor; }

/* cart link */
body.pcgate-pro-store .pcg-cart {
  position: relative;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
body.pcgate-pro-store .pcg-cart:hover { border-color: var(--line-orange); background: var(--card-2); transform: translateY(-1px); color: var(--text); }
body.pcgate-pro-store .pcg-cart-icon,
body.pcgate-pro-store .pcg-cart-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 1;
  flex: 0 0 20px;
}
body.pcgate-pro-store .pcg-cart-icon svg,
body.pcgate-pro-store .pcg-cart .pcg-cart-icon-svg svg {
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
}
body.pcgate-pro-store .pcg-icon-cart-link .pcg-cart-icon-svg { transform: translateY(1px); }
body.pcgate-pro-store .pcg-cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--orange-ink);
  font-family: var(--ff-mono);
  font-size: 11px; font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--bg);
}
body.pcgate-pro-store .pcg-cart-count-empty { display: none; }

/* hamburger (mobile) */
body.pcgate-pro-store .pcg-mobile-menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  cursor: pointer;
}
body.pcgate-pro-store .pcg-mobile-menu-toggle svg { width: 22px; height: 22px; }
body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex: 0 0 22px;
  line-height: 0;
}
body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 1px rgba(255,255,255,.02);
}
body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span {
  background: currentColor;
}

/* mobile drawer */
body.pcgate-pro-store .pcg-mobile-menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  z-index: 120;
  background: var(--panel);
  border-left: 1px solid var(--line-strong);
  padding: 22px;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
body.pcgate-pro-store .pcg-mobile-menu-panel[hidden] { display: block; }
html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel { transform: translateX(0); }
body.pcgate-pro-store .pcg-mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
body.pcgate-pro-store .pcg-mobile-menu-head strong {
  font-family: var(--ff-display); font-size: 1.2rem;
}
body.pcgate-pro-store .pcg-mobile-menu-close {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; position: relative;
}
body.pcgate-pro-store .pcg-mobile-menu-close-lines,
body.pcgate-pro-store .pcg-mobile-menu-close-lines::before {
  content: ""; position: absolute;
  width: 16px; height: 2px; background: var(--text); border-radius: 2px;
}
body.pcgate-pro-store .pcg-mobile-menu-close-lines { transform: rotate(45deg); }
body.pcgate-pro-store .pcg-mobile-menu-close-lines::before { transform: rotate(-90deg); }
body.pcgate-pro-store .pcg-mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; }
body.pcgate-pro-store .pcg-mobile-menu-inner a {
  padding: 13px 12px;
  font-size: 16px; font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
}
body.pcgate-pro-store .pcg-mobile-menu-inner a:hover { background: rgba(255,255,255,.05); color: var(--text); }
body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active { color: var(--orange-soft); background: var(--orange-wash); }

/* ----------------------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-family: var(--ff-body);
  font-size: 14.5px; font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
body.pcgate-pro-store .pcg-btn:active { transform: translateY(1px); }

/* primary = orange */
body.pcgate-pro-store .pcg-btn-dark,
body.pcgate-pro-store .pcg-btn-checkout {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: var(--orange-ink);
  box-shadow: 0 10px 26px var(--orange-glow);
}
body.pcgate-pro-store .pcg-btn-dark:hover,
body.pcgate-pro-store .pcg-btn-checkout:hover {
  color: var(--orange-ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px var(--orange-glow);
}

/* secondary = outline */
body.pcgate-pro-store .pcg-btn-light {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
body.pcgate-pro-store .pcg-btn-light:hover {
  color: var(--text);
  border-color: var(--orange);
  background: var(--orange-wash);
}

/* ghost */
body.pcgate-pro-store .pcg-btn-ghost {
  background: var(--card);
  color: var(--text-2);
  border-color: var(--line);
}
body.pcgate-pro-store .pcg-btn-ghost:hover { color: var(--text); border-color: var(--line-strong); }

/* small buttons in product cards */
body.pcgate-pro-store .pcg-small-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 15px;
  font-size: 13px; font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: var(--orange-ink);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
body.pcgate-pro-store .pcg-small-btn:hover { color: var(--orange-ink); transform: translateY(-1px); box-shadow: 0 8px 18px var(--orange-glow); }
body.pcgate-pro-store .pcg-small-btn-secondary {
  background: transparent;
  color: var(--text-2);
  border-color: var(--line-strong);
}
body.pcgate-pro-store .pcg-small-btn-secondary:hover { color: var(--text); border-color: var(--orange); background: transparent; }

body.pcgate-pro-store .pcg-actions { display: flex; flex-wrap: wrap; gap: 12px; }
body.pcgate-pro-store .pcg-actions-center { justify-content: center; }

/* ----------------------------------------------------------------------------
   5. HERO  (.pcg-catalog-hero / .pcg-home-hero / .pcg-product-top / .pcg-woo-hero)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-catalog-hero {
  position: relative;
  padding-block: clamp(64px, 12vw, 130px);
  background:
    radial-gradient(1100px 460px at 78% -8%, var(--orange-wash), transparent 60%),
    linear-gradient(180deg, #0c0c10 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* blueprint grid texture */
body.pcgate-pro-store .pcg-catalog-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 520px at 75% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(900px 520px at 75% 0%, #000 0%, transparent 72%);
  opacity: .6;
  pointer-events: none;
}
body.pcgate-pro-store .pcg-catalog-hero .pcg-container { position: relative; z-index: 1; }
body.pcgate-pro-store .pcg-catalog-hero h1 {
  font-size: clamp(2.4rem, 6.6vw, 4.6rem);
  margin: 0 0 18px;
  letter-spacing: -.035em;
}
body.pcgate-pro-store .pcg-catalog-hero > .pcg-container > p {
  max-width: 600px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-2);
}
body.pcgate-pro-store .pcg-catalog-hero .pcg-actions { margin-top: 26px; }
body.pcgate-pro-store .pcg-catalog-hero-compact { padding-block: clamp(48px, 8vw, 88px); }

/* home hero centered */
body.pcgate-pro-store .pcg-home-hero { text-align: center; }
body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow { justify-content: center; }
body.pcgate-pro-store .pcg-home-hero > .pcg-container > p { margin-inline: auto; }
body.pcgate-pro-store .pcg-home-hero h1 {
  background: linear-gradient(180deg, #fff 0%, #c9c9d2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------------------------
   6. TABS / FILTER CHIPS  (.pcg-tabs)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 30px;
}
body.pcgate-pro-store .pcg-tabs a {
  padding: 9px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .16s ease;
}
body.pcgate-pro-store .pcg-tabs a:hover { color: var(--text); border-color: var(--line-strong); }
body.pcgate-pro-store .pcg-tabs a.is-active {
  color: var(--orange-ink);
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
}

/* sort chip */
body.pcgate-pro-store .pcg-sort-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: .04em;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

/* ----------------------------------------------------------------------------
   7. CATEGORY GRID  (.pcg-category-grid / .pcg-category-card)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
body.pcgate-pro-store .pcg-category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 190px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
body.pcgate-pro-store .pcg-category-card:hover {
  border-color: var(--line-orange);
  transform: translateY(-3px);
  background: var(--card-2);
}
body.pcgate-pro-store .pcg-category-card.pcg-card-dark {
  background: linear-gradient(150deg, #16110b 0%, #110d09 100%);
  border-color: rgba(232,133,58,.22);
}
body.pcgate-pro-store .pcg-category-body { position: relative; z-index: 1; max-width: 70%; }
body.pcgate-pro-store .pcg-category-body > span {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 10px;
}
body.pcgate-pro-store .pcg-category-card h3 { font-size: 1.2rem; margin: 0 0 6px; }
body.pcgate-pro-store .pcg-category-card p { font-size: .92rem; color: var(--muted); margin: 0; }
body.pcgate-pro-store .pcg-category-card img {
  width: 90px; height: 90px;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
  flex-shrink: 0;
}

/* ----------------------------------------------------------------------------
   8. PRODUCT GRID + CARD
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-grid,
body.pcgate-pro-store .pcg-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}
body.pcgate-pro-store .pcg-product-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.pcgate-pro-store .pcg-product-card:hover {
  border-color: var(--line-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
body.pcgate-pro-store .pcg-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(172px, 14vw, 210px);
  min-height: 172px;
  aspect-ratio: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  isolation: isolate;
}
body.pcgate-pro-store .pcg-product-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transition: transform .3s ease;
}
body.pcgate-pro-store .pcg-product-card:hover .pcg-product-img img { transform: scale(1.01); }

body.pcgate-pro-store .pcg-product-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
body.pcgate-pro-store .pcg-stock-in  { color: var(--green); }
body.pcgate-pro-store .pcg-stock-out { color: var(--red); }

body.pcgate-pro-store .pcg-product-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
}
body.pcgate-pro-store .pcg-product-card h3 a { color: var(--text); }
body.pcgate-pro-store .pcg-product-card h3 a:hover { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-product-card > p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
body.pcgate-pro-store .pcg-product-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
body.pcgate-pro-store .pcg-product-bottom > strong {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-soft);
  letter-spacing: -.01em;
}
body.pcgate-pro-store .pcg-product-actions-row { display: flex; gap: 8px; }
body.pcgate-pro-store .pcg-product-actions-row .pcg-small-btn { flex: 1; }

/* ----------------------------------------------------------------------------
   9. SERVICES GRID  (.pcg-services-grid / .pcg-service-card)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.pcgate-pro-store .pcg-service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
body.pcgate-pro-store .pcg-service-card:hover { border-color: var(--line-orange); transform: translateY(-3px); }
body.pcgate-pro-store .pcg-service-card > span {
  font-family: var(--ff-mono);
  font-size: 13px; font-weight: 600;
  color: var(--orange);
  display: block;
  margin-bottom: 18px;
}
body.pcgate-pro-store .pcg-service-card h3 { font-size: 1.2rem; margin: 0 0 10px; }
body.pcgate-pro-store .pcg-service-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ----------------------------------------------------------------------------
   10. CONTACT BAND  (.pcg-contact-band / .pcg-contact-card)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-contact-band { padding-block: clamp(48px, 8vw, 90px); }
body.pcgate-pro-store .pcg-contact-card {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(700px 300px at 90% 10%, var(--orange-wash), transparent 60%),
    linear-gradient(150deg, var(--panel), #0c0c10);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  padding: clamp(30px, 5vw, 54px);
}
body.pcgate-pro-store .pcg-contact-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 12px; }
body.pcgate-pro-store .pcg-contact-card p { color: var(--text-2); margin: 0; }
body.pcgate-pro-store .pcg-contact-card .pcg-actions { justify-content: flex-end; }

/* ----------------------------------------------------------------------------
   11. SINGLE PRODUCT
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
body.pcgate-pro-store .pcg-product-media-panel {
  display: grid; place-items: center;
  background: var(--well);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 5vw, 56px);
  min-height: 360px;
}
body.pcgate-pro-store .pcg-product-media-panel img { max-height: 440px; object-fit: contain; }

body.pcgate-pro-store .pcg-product-summary-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 40px);
}
body.pcgate-pro-store .pcg-product-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-soft);
  background: var(--orange-wash);
  border: 1px solid var(--line-orange);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
body.pcgate-pro-store .pcg-product-summary-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 16px;
}
body.pcgate-pro-store .pcg-product-lead { color: var(--text-2); font-size: 1rem; }
body.pcgate-pro-store .pcg-product-price-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  margin: 8px 0 20px;
  border-block: 1px solid var(--line);
}
body.pcgate-pro-store .pcg-product-price-row strong {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 700;
  color: var(--orange-soft);
  letter-spacing: -.02em;
}
body.pcgate-pro-store .pcg-product-help-box {
  margin-top: 24px;
  padding: 22px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
body.pcgate-pro-store .pcg-product-help-box strong { display: block; margin-bottom: 8px; font-family: var(--ff-display); }
body.pcgate-pro-store .pcg-product-help-box p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }

/* product content grid (description + specs) */
body.pcgate-pro-store .pcg-product-content-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 28px;
}
body.pcgate-pro-store .pcg-product-description {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px);
}
body.pcgate-pro-store .pcg-product-description h2 { font-size: 1.4rem; margin: 0 0 16px; }
body.pcgate-pro-store .pcg-product-description p { color: var(--text-2); }

/* spec table */
body.pcgate-pro-store .pcg-product-specs,
body.pcgate-pro-store .pcg-spec-grid {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  height: fit-content;
}
body.pcgate-pro-store .pcg-product-specs h2,
body.pcgate-pro-store .pcg-spec-grid h2 { font-size: 1.2rem; margin: 0 0 16px; }
body.pcgate-pro-store .pcg-spec {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
body.pcgate-pro-store .pcg-spec:last-child { border-bottom: 0; }
body.pcgate-pro-store .pcg-spec > span:first-child { color: var(--muted); font-family: var(--ff-mono); font-size: 12px; }
body.pcgate-pro-store .pcg-spec > span:last-child,
body.pcgate-pro-store .pcg-spec strong { color: var(--text); text-align: right; }

/* ----------------------------------------------------------------------------
   12. CART
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-cart-page { padding-block: clamp(40px, 6vw, 70px); }
body.pcgate-pro-store .pcg-cart-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 26px;
}
body.pcgate-pro-store .pcg-cart-top h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0; }
body.pcgate-pro-store .pcg-cart-back { color: var(--orange-soft); font-weight: 500; font-size: .95rem; }

body.pcgate-pro-store .pcg-cart-grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 22px;
  align-items: start;
}

body.pcgate-pro-store .pcg-cart-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px);
}
body.pcgate-pro-store .pcg-cart-card-head h2 {
  font-size: 1.35rem; margin: 0 0 6px;
}
body.pcgate-pro-store .pcg-cart-card-head h2 span { color: var(--muted); font-weight: 500; }
body.pcgate-pro-store .pcg-cart-card-head p { color: var(--muted); font-size: .92rem; margin: 0 0 22px; }

/* delivery options */
body.pcgate-pro-store .pcg-cart-delivery-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
body.pcgate-pro-store .pcg-delivery-option {
  padding: 14px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
body.pcgate-pro-store .pcg-delivery-option.is-active { border-color: var(--orange); background: var(--orange-wash); }
body.pcgate-pro-store .pcg-delivery-option strong { display: block; font-size: .9rem; margin-bottom: 4px; }
body.pcgate-pro-store .pcg-delivery-option span { font-size: .8rem; color: var(--muted); }

body.pcgate-pro-store .pcg-cart-arrival-note {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  margin-bottom: 6px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .9rem; color: var(--text-2);
}
body.pcgate-pro-store .pcg-cart-arrival-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-cart-arrival-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* cart items */
body.pcgate-pro-store .pcg-cart-items { margin-top: 18px; }
body.pcgate-pro-store .pcg-cart-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 64px max-content 30px;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
body.pcgate-pro-store .pcg-cart-item-thumb {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
body.pcgate-pro-store .pcg-cart-item-thumb a,
body.pcgate-pro-store .pcg-wc-thumb-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.pcgate-pro-store .pcg-cart-product-img-frame {
  width: 58px;
  height: 58px;
  display: block;
  background-color: #ffffff;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
}
body.pcgate-pro-store .pcg-cart-product-img,
body.pcgate-pro-store .pcg-wc-thumb-img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}
body.pcgate-pro-store .pcg-cart-item-info { min-width: 0; }
body.pcgate-pro-store .pcg-cart-item-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1.35;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
body.pcgate-pro-store .pcg-cart-item-name:hover { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-cart-item-meta { font-size: .82rem; color: var(--muted); }
body.pcgate-pro-store .pcg-cart-stock { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .05em; }
body.pcgate-pro-store .pcg-cart-stock-in  { color: var(--green); }
body.pcgate-pro-store .pcg-cart-stock-out { color: var(--red); }
body.pcgate-pro-store .pcg-cart-item-price {
  font-family: var(--ff-display);
  font-weight: 600; font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
}
body.pcgate-pro-store .pcg-cart-item-remove .pcg-remove {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 18px; line-height: 1;
}
body.pcgate-pro-store .pcg-cart-item-remove .pcg-remove:hover { color: var(--red); border-color: var(--red); }

/* qty input */
body.pcgate-pro-store .pcg-cart-item-qty {
  width: 68px;
  min-width: 0;
}
body.pcgate-pro-store .pcg-cart-item-qty .quantity {
  width: 100%;
}
body.pcgate-pro-store .pcg-cart-item-qty .quantity input.qty {
  width: 100%;
  min-width: 0;
  height: 38px;
  text-align: center;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--ff-mono);
  padding-inline: 6px;
}
body.pcgate-pro-store .pcg-cart-card { container-type: inline-size; }

/* cart card foot / coupon */
body.pcgate-pro-store .pcg-cart-card-foot {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
body.pcgate-pro-store .pcg-coupon-title { display: block; font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
body.pcgate-pro-store .pcg-coupon-row { display: flex; gap: 8px; }
body.pcgate-pro-store .pcg-coupon-row input {
  height: 42px; padding: 0 14px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
}

/* summary card */
body.pcgate-pro-store .pcg-cart-summary { position: sticky; top: 92px; }
body.pcgate-pro-store .pcg-summary-card {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
}
body.pcgate-pro-store .pcg-summary-card h2 { font-size: 1.3rem; margin: 0 0 20px; }
body.pcgate-pro-store .pcg-summary-rows { display: flex; flex-direction: column; gap: 12px; }
body.pcgate-pro-store .pcg-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; color: var(--text-2);
}
body.pcgate-pro-store .pcg-summary-row strong { color: var(--text); }
body.pcgate-pro-store .pcg-summary-discount { color: var(--green); }
body.pcgate-pro-store .pcg-summary-discount strong { color: var(--green); }
body.pcgate-pro-store .pcg-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}
body.pcgate-pro-store .pcg-summary-total span { color: var(--muted); font-size: .95rem; }
body.pcgate-pro-store .pcg-summary-total strong {
  font-family: var(--ff-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-btn-checkout { width: 100%; }
body.pcgate-pro-store .pcg-summary-mini-help {
  margin-top: 18px; padding: 16px;
  background: var(--card-2); border: 1px solid var(--line);
  border-radius: var(--r);
}
body.pcgate-pro-store .pcg-summary-mini-help strong { display: block; font-size: .9rem; margin-bottom: 6px; }
body.pcgate-pro-store .pcg-summary-mini-help span { font-size: .82rem; color: var(--muted); }

body.pcgate-pro-store .pcg-pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
}
body.pcgate-pro-store .pcg-pay-icons img {
  display: block;
  width: 48px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}
body.pcgate-pro-store .pcg-trust {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
body.pcgate-pro-store .pcg-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; color: var(--text-2);
}
body.pcgate-pro-store .pcg-trust li span { color: var(--orange); font-weight: 700; }

/* cart empty state */
body.pcgate-pro-store .pcg-cart-empty {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
body.pcgate-pro-store .pcg-cart-empty-icon { font-size: 3rem; margin-bottom: 18px; }
body.pcgate-pro-store .pcg-cart-empty h2 { font-size: 1.5rem; margin: 0 0 10px; }
body.pcgate-pro-store .pcg-cart-empty p { color: var(--muted); margin: 0 0 24px; }
body.pcgate-pro-store .pcg-cart-notices { margin-bottom: 18px; }

/* ----------------------------------------------------------------------------
   13. FILTER PANEL  (.pcg-filter-panel)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-filter-panel {
  margin-top: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px);
  text-align: left;
}

/* V146: breathing room between filter panel and results/empty state */
body.pcgate-pro-store .pcg-filter-panel + .pcg-product-grid,
body.pcgate-pro-store .pcg-filter-panel + .pcg-empty,
body.pcgate-pro-store .pcg-filter-panel + .woocommerce-info {
  margin-top: clamp(16px, 3.5vw, 28px);
}

body.pcgate-pro-store .pcg-filter-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 18px;
}
body.pcgate-pro-store .pcg-filter-kicker {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-filter-reset { color: var(--muted); font-size: .85rem; }
body.pcgate-pro-store .pcg-filter-reset:hover { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr)) minmax(250px, auto);
  gap: 14px;
  align-items: end;
}
body.pcgate-pro-store .pcg-filter-field { display: flex; flex-direction: column; gap: 7px; }
body.pcgate-pro-store .pcg-filter-field > span {
  font-size: 12px; color: var(--muted); font-family: var(--ff-mono); letter-spacing: .04em;
}
body.pcgate-pro-store .pcg-filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  min-height: 42px;
  align-self: end;
  white-space: nowrap;
}
body.pcgate-pro-store .pcg-filter-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  margin: 0;
  font-size: .9rem;
  color: var(--text-2);
  cursor: pointer;
}
body.pcgate-pro-store .pcg-filter-check input { accent-color: var(--orange); width: 16px; height: 16px; flex: 0 0 16px; }
body.pcgate-pro-store .pcg-filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: center;
  width: auto;
  min-width: 118px;
  height: 40px;
  margin-top: 0;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: var(--orange-ink);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 14px var(--orange-glow);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
body.pcgate-pro-store .pcg-filter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px var(--orange-glow);
}
body.pcgate-pro-store .pcg-filter-submit:active { transform: translateY(0); }


/* ----------------------------------------------------------------------------
   14. FORM CONTROLS  (dark, theme-wide)
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store input:not([type="search"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
body.pcgate-pro-store textarea,
body.pcgate-pro-store select,
body.pcgate-pro-store .pcg-checkout-input,
body.pcgate-pro-store .pcg-filter-field select,
body.pcgate-pro-store .pcg-filter-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
body.pcgate-pro-store textarea { height: auto; min-height: 120px; padding: 12px 14px; line-height: 1.6; }
body.pcgate-pro-store input::placeholder,
body.pcgate-pro-store textarea::placeholder { color: var(--faint); }
body.pcgate-pro-store input:focus,
body.pcgate-pro-store textarea:focus,
body.pcgate-pro-store select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-wash);
  outline: none;
}
body.pcgate-pro-store select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a96' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
body.pcgate-pro-store label { color: var(--text-2); font-size: .9rem; }

/* ----------------------------------------------------------------------------
   15. WOOCOMMERCE CHECKOUT  (.pcg-checkout-shell wraps [woocommerce_checkout])
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-checkout-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 42px);
}
body.pcgate-pro-store .pcg-checkout-shell h3,
body.pcgate-pro-store .woocommerce-checkout h3,
body.pcgate-pro-store #order_review_heading {
  font-family: var(--ff-display);
  color: var(--text);
}
body.pcgate-pro-store .woocommerce form .form-row label,
body.pcgate-pro-store .woocommerce-checkout label { color: var(--text-2); }
body.pcgate-pro-store .woocommerce form .form-row input.input-text,
body.pcgate-pro-store .woocommerce form .form-row textarea,
body.pcgate-pro-store .select2-container--default .select2-selection--single {
  background: var(--card-2) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--text) !important;
  border-radius: var(--r-sm) !important;
}
body.pcgate-pro-store .select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--text) !important; line-height: 44px !important; }
body.pcgate-pro-store .select2-dropdown {
  background: var(--panel) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--text) !important;
}
body.pcgate-pro-store .select2-results__option { color: var(--text-2) !important; }
body.pcgate-pro-store .select2-results__option--highlighted { background: var(--orange) !important; color: var(--orange-ink) !important; }

body.pcgate-pro-store .woocommerce-checkout-review-order,
body.pcgate-pro-store #order_review {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}
body.pcgate-pro-store .woocommerce-checkout-review-order-table { color: var(--text-2); width: 100%; }
body.pcgate-pro-store .woocommerce-checkout-review-order-table th,
body.pcgate-pro-store .woocommerce-checkout-review-order-table td {
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
}
body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total td,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total th { color: var(--text); }
body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total .amount { color: var(--orange-soft); font-size: 1.3rem; }

body.pcgate-pro-store #payment,
body.pcgate-pro-store .woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: var(--r);
}
body.pcgate-pro-store #payment ul.payment_methods {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
}
body.pcgate-pro-store #payment ul.payment_methods li { color: var(--text-2); }
body.pcgate-pro-store #payment div.payment_box {
  background: var(--well) !important;
  color: var(--muted);
  border-radius: var(--r-sm);
}
body.pcgate-pro-store #payment div.payment_box::before { border-bottom-color: var(--well) !important; }

body.pcgate-pro-store #place_order,
body.pcgate-pro-store .woocommerce #payment #place_order {
  width: 100%;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep)) !important;
  color: var(--orange-ink) !important;
  border: 0 !important;
  border-radius: var(--r-sm) !important;
  padding: 15px !important;
  font-family: var(--ff-body) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  box-shadow: 0 10px 26px var(--orange-glow) !important;
}
body.pcgate-pro-store #place_order:hover { transform: translateY(-2px); }

/* Woo notices */
body.pcgate-pro-store .woocommerce-message,
body.pcgate-pro-store .woocommerce-info,
body.pcgate-pro-store .woocommerce-error {
  background: var(--card-2);
  border-left: 3px solid var(--orange);
  color: var(--text-2);
  border-radius: var(--r-sm);
  padding: 14px 18px;
}
body.pcgate-pro-store .woocommerce-error { border-left-color: var(--red); }
body.pcgate-pro-store .woocommerce a.button,
body.pcgate-pro-store .woocommerce-info a {
  color: var(--orange-soft);
}

/* ----------------------------------------------------------------------------
   16. LIVE SEARCH DROPDOWN
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-live-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, 88vw);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 90;
  max-height: 70vh;
  overflow-y: auto;
}
body.pcgate-pro-store .pcg-live-search-results[hidden] { display: none; }
body.pcgate-pro-store .pcg-live-search-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
body.pcgate-pro-store .pcg-live-search-head strong { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-live-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border-radius: var(--r-sm);
  color: var(--text);
}
body.pcgate-pro-store .pcg-live-search-item:hover { background: var(--card-2); color: var(--text); }
body.pcgate-pro-store .pcg-live-search-item img { width: 44px; height: 44px; object-fit: contain; background: var(--well); border-radius: 8px; padding: 4px; }
body.pcgate-pro-store .pcg-live-search-info { flex: 1; min-width: 0; }
body.pcgate-pro-store .pcg-live-search-info strong { display: block; font-size: .92rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.pcgate-pro-store .pcg-live-search-info small { color: var(--muted); font-size: .78rem; }
body.pcgate-pro-store .pcg-live-search-price { font-family: var(--ff-display); font-weight: 600; color: var(--orange-soft); white-space: nowrap; }
body.pcgate-pro-store .pcg-live-search-all {
  display: block; text-align: center;
  padding: 11px;
  margin-top: 4px;
  color: var(--orange-soft);
  font-size: .88rem; font-weight: 500;
  border-top: 1px solid var(--line);
}
body.pcgate-pro-store .pcg-live-search-empty,
body.pcgate-pro-store .pcg-live-search-loading {
  padding: 22px 14px; text-align: center; color: var(--muted); font-size: .9rem;
}
body.pcgate-pro-store .pcg-live-search-empty strong { display: block; color: var(--text); margin-bottom: 4px; }

/* ----------------------------------------------------------------------------
   17. EMPTY STATES
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-empty {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 24px;
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
}
body.pcgate-pro-store .pcg-empty h2 { font-size: 1.4rem; margin: 0 0 10px; }
body.pcgate-pro-store .pcg-empty p { color: var(--muted); margin: 0; }

/* ----------------------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 72px) 0;
  margin-top: clamp(40px, 6vw, 80px);
}
body.pcgate-pro-store .pcg-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 44px;
}
body.pcgate-pro-store .pcg-footer h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
}
body.pcgate-pro-store .pcg-footer h4 {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-soft);
  margin: 0 0 16px;
}
body.pcgate-pro-store .pcg-footer p { color: var(--muted); font-size: .92rem; max-width: 300px; }
body.pcgate-pro-store .pcg-footer-grid > div a,
body.pcgate-pro-store .pcg-footer-grid > div span {
  display: block;
  color: var(--text-2);
  font-size: .92rem;
  padding: 5px 0;
}
body.pcgate-pro-store .pcg-footer-grid > div a:hover { color: var(--orange-soft); }
body.pcgate-pro-store .pcg-footer-grid > div span { color: var(--muted); }
body.pcgate-pro-store .pcg-legal {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: .82rem;
  color: var(--faint);
}

/* contact page v140 */
body.pcgate-pro-store .pcg-contact-section {
  padding-block: clamp(46px, 7vw, 88px);
}
body.pcgate-pro-store .pcg-contact-layout-v140 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}
body.pcgate-pro-store .pcg-contact-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(24px, 3.4vw, 38px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 88% 0%, rgba(232, 133, 58, .12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--panel);
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}
body.pcgate-pro-store .pcg-contact-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
}
body.pcgate-pro-store .pcg-contact-panel > * { position: relative; z-index: 1; }
body.pcgate-pro-store .pcg-contact-panel-details {
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 133, 58, .14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--panel);
}
body.pcgate-pro-store .pcg-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 14px;
}
body.pcgate-pro-store .pcg-contact-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
}
body.pcgate-pro-store .pcg-contact-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: .98;
  margin: 0 0 14px;
}
body.pcgate-pro-store .pcg-contact-lead {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--text-2);
  font-size: 1rem;
}
body.pcgate-pro-store .pcg-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
body.pcgate-pro-store .pcg-contact-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  color: var(--text);
}
body.pcgate-pro-store a.pcg-contact-row:hover {
  border-color: var(--line-orange);
  background: rgba(232,133,58,.08);
  color: var(--text);
}
body.pcgate-pro-store .pcg-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(232,133,58,.13);
  border: 1px solid rgba(232,133,58,.32);
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
body.pcgate-pro-store .pcg-contact-row strong,
body.pcgate-pro-store .pcg-contact-row em {
  display: block;
  min-width: 0;
}
body.pcgate-pro-store .pcg-contact-row strong {
  color: var(--text);
  font-size: .95rem;
  margin-bottom: 3px;
}
body.pcgate-pro-store .pcg-contact-row em {
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}
body.pcgate-pro-store .pcg-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
body.pcgate-pro-store .pcg-contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: .9rem;
}
body.pcgate-pro-store .pcg-contact-cta {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
}
body.pcgate-pro-store .pcg-contact-panel-help {
  display: flex;
  flex-direction: column;
}

/* added-to-cart feedback state */
body.pcgate-pro-store .pcg-added-state {
  background: var(--green) !important;
  color: #07140e !important;
}

/* ----------------------------------------------------------------------------
   19. RESPONSIVE
   ---------------------------------------------------------------------------- */

@media (min-width: 1100px) {
  body.pcgate-pro-store .pcg-product-img { height: clamp(180px, 13.5vw, 215px); min-height: 180px; }
}


@media (max-width: 1150px) {
  body.pcgate-pro-store .pcg-filter-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  body.pcgate-pro-store .pcg-filter-actions { grid-column: 1 / -1; justify-content: flex-end; }
}

@media (max-width: 1024px) {
  body.pcgate-pro-store .pcg-cart-grid { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-cart-summary { position: static; }
  body.pcgate-pro-store .pcg-product-detail-card { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-product-content-grid { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-footer-grid { grid-template-columns: 1fr 1fr; }
  body.pcgate-pro-store .pcg-contact-card { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-contact-card .pcg-actions { justify-content: flex-start; }
}


@media (max-width: 900px) {
  body.pcgate-pro-store .pcg-contact-layout-v140 { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-contact-panel { min-height: 0; }
}

@media (max-width: 600px) {
  body.pcgate-pro-store .pcg-contact-panel { padding: 22px 16px; }
  body.pcgate-pro-store .pcg-contact-row { grid-template-columns: 40px minmax(0, 1fr); padding: 12px; }
  body.pcgate-pro-store .pcg-contact-icon { width: 40px; height: 40px; border-radius: 13px; }
  body.pcgate-pro-store .pcg-contact-tags { gap: 8px; }
  body.pcgate-pro-store .pcg-contact-tags span { font-size: .84rem; padding: 6px 10px; }
}

@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-nav-links,
  body.pcgate-pro-store .pcg-navbar-search { display: none; }
  body.pcgate-pro-store .pcg-mobile-menu-toggle { display: inline-flex; }
}

/* desktop nav: keep search compact so the 7-item Greek menu always has room */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-navbar-search-box { width: 168px; }
  body.pcgate-pro-store .pcg-navbar-search { margin-left: 22px; }
}
@media (min-width: 961px) and (max-width: 1280px) {
  body.pcgate-pro-store .pcg-navbar-search-box { width: 148px; }
  body.pcgate-pro-store .pcg-nav-links a { padding: 9px 9px; font-size: 13.5px; }
  body.pcgate-pro-store .pcg-nav-wrap { gap: 14px; }
  body.pcgate-pro-store .pcg-navbar-search { margin-left: 12px; }
}

@media (max-width: 860px) {
  body.pcgate-pro-store .pcg-services-grid { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-category-grid { grid-template-columns: 1fr; }
}


@media (max-width: 920px) {
  body.pcgate-pro-store .pcg-cart-item {
    grid-template-columns: 64px minmax(180px, 1fr) 76px minmax(64px, max-content) 30px;
    gap: 10px 12px;
  }
  body.pcgate-pro-store .pcg-cart-item-thumb { width: 64px; height: 64px; padding: 5px; }
  body.pcgate-pro-store .pcg-cart-item-qty { width: 76px; }
}

@media (max-width: 760px) {
  body.pcgate-pro-store .pcg-cart-item {
    grid-template-columns: 64px minmax(0, 1fr) auto 30px;
    grid-template-areas:
      "thumb info info remove"
      "thumb qty  price remove";
    align-items: center;
    gap: 8px 12px;
  }
  body.pcgate-pro-store .pcg-cart-item-thumb { grid-area: thumb; width: 64px; height: 64px; padding: 5px; }
  body.pcgate-pro-store .pcg-cart-item-info { grid-area: info; }
  body.pcgate-pro-store .pcg-cart-item-price { grid-area: price; justify-self: end; }
  body.pcgate-pro-store .pcg-cart-item-qty { grid-area: qty; width: 74px; min-width: 0; }
  body.pcgate-pro-store .pcg-cart-item-remove { grid-area: remove; justify-self: end; }
}

@media (max-width: 600px) {
  body.pcgate-pro-store { font-size: 15px; }
  body.pcgate-pro-store .pcg-nav-wrap { height: 62px; gap: 12px; }
  body.pcgate-pro-store .pcg-product-grid,
  body.pcgate-pro-store .pcg-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  body.pcgate-pro-store .pcg-product-card { padding: 10px; }
  body.pcgate-pro-store .pcg-product-img { height: clamp(118px, 38vw, 158px); min-height: 118px; padding: 6px; margin-bottom: 10px; }
  body.pcgate-pro-store .pcg-product-img img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
  body.pcgate-pro-store .pcg-filter-panel { padding: 18px 14px; }

  body.pcgate-pro-store .pcg-filter-panel + .pcg-product-grid,
  body.pcgate-pro-store .pcg-filter-panel + .pcg-empty,
  body.pcgate-pro-store .pcg-filter-panel + .woocommerce-info {
    margin-top: 16px;
  }
  body.pcgate-pro-store .pcg-filter-grid { grid-template-columns: 1fr; gap: 12px; }
  body.pcgate-pro-store .pcg-filter-actions { justify-content: space-between; width: 100%; }
  body.pcgate-pro-store .pcg-filter-submit { min-width: 112px; height: 40px; }
  body.pcgate-pro-store .pcg-product-card > p { display: none; }
  body.pcgate-pro-store .pcg-product-bottom { flex-direction: column; align-items: stretch; gap: 10px; }
  body.pcgate-pro-store .pcg-product-actions-row { justify-content: stretch; }
  body.pcgate-pro-store .pcg-product-actions-row .pcg-small-btn { flex: 1; }
  body.pcgate-pro-store .pcg-footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* compact mobile cart row */
  body.pcgate-pro-store .pcg-cart-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb info remove"
      "thumb qty  price";
    gap: 8px 10px;
    row-gap: 8px;
  }
  body.pcgate-pro-store .pcg-cart-item-thumb { grid-area: thumb; width: 58px; height: 58px; padding: 5px; }
  body.pcgate-pro-store .pcg-cart-item-info { grid-area: info; }
  body.pcgate-pro-store .pcg-cart-item-price { grid-area: price; justify-self: end; }
  body.pcgate-pro-store .pcg-cart-item-qty { grid-area: qty; width: 70px; min-width: 0; }
  body.pcgate-pro-store .pcg-cart-item-remove { grid-area: remove; justify-self: end; }
}

@media (max-width: 380px) {
  body.pcgate-pro-store .pcg-product-grid { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-product-img { height: 180px; }
}

/* ----------------------------------------------------------------------------
   20. MOTION / ACCESSIBILITY
   ---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  body.pcgate-pro-store *,
  body.pcgate-pro-store *::before,
  body.pcgate-pro-store *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}


/* ----------------------------------------------------------------------------
   V130: contain WooCommerce add-to-cart feedback inside the product card
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-actions-row {
  width: 100%;
  min-width: 0;
  align-items: stretch;
  overflow: hidden;
}
body.pcgate-pro-store .pcg-product-actions-row .pcg-small-btn {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.pcgate-pro-store .pcg-product-actions-row .pcg-small-btn-secondary { flex: 1 1 0; }
body.pcgate-pro-store .pcg-product-actions-row .pcg-add-cart-button { flex: 1 1 0; }
body.pcgate-pro-store .pcg-product-card a.added_to_cart,
body.pcgate-pro-store .pcg-product-card a.added_to_cart.wc-forward,
body.pcgate-pro-store .pcg-product-actions-row a.added_to_cart,
body.pcgate-pro-store .pcg-product-actions-row a.added_to_cart.wc-forward {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}
body.pcgate-pro-store .pcg-add-cart-button.pcg-added-state {
  background: var(--green) !important;
  color: #07140e !important;
  border-color: transparent !important;
  font-size: 13px;
}
body.pcgate-pro-store .pcg-add-cart-button.added:not(.pcg-added-state) {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep)) !important;
  color: var(--orange-ink) !important;
}

/* V131: center desktop cart icon perfectly inside its button */
body.pcgate-pro-store .pcg-icon-cart-link { padding: 0; }

/* V132: prevent cart image crop and make quantity fit cleanly */


/* V134: tiny full-image cart thumbnails + responsive cart controls */
@container (max-width: 700px) {
  body.pcgate-pro-store .pcg-cart-item {
    grid-template-columns: 64px minmax(0, 1fr) max-content 30px;
    grid-template-areas:
      "thumb info info remove"
      "thumb qty  price remove";
    gap: 8px 10px;
    align-items: center;
  }
  body.pcgate-pro-store .pcg-cart-item-thumb { grid-area: thumb; width: 64px; height: 64px; padding: 0; }
  body.pcgate-pro-store .pcg-cart-item-info { grid-area: info; }
  body.pcgate-pro-store .pcg-cart-item-price { grid-area: price; justify-self: end; font-size: .98rem; }
  body.pcgate-pro-store .pcg-cart-item-qty { grid-area: qty; width: 64px; min-width: 0; justify-self: start; }
  body.pcgate-pro-store .pcg-cart-item-remove { grid-area: remove; justify-self: end; align-self: center; }
}

@container (max-width: 460px) {
  body.pcgate-pro-store .pcg-cart-item {
    grid-template-columns: 58px minmax(0, 1fr) 30px;
    grid-template-areas:
      "thumb info remove"
      "thumb price remove"
      "thumb qty remove";
  }
  body.pcgate-pro-store .pcg-cart-item-thumb { width: 58px; height: 58px; }
  body.pcgate-pro-store .pcg-cart-item-price { justify-self: start; }
  body.pcgate-pro-store .pcg-cart-item-qty { width: 62px; }
}


/* V136: larger cart thumbnails, still full-image contain frames */
body.pcgate-pro-store .pcg-cart-item-thumb,
body.pcgate-pro-store .pcg-cart-item-thumb a {
  min-width: 66px;
  max-width: 66px;
  min-height: 66px;
  max-height: 66px;
}
body.pcgate-pro-store .pcg-cart-product-img-frame,
body.pcgate-pro-store .pcg-cart-product-img {
  border-radius: 6px;
  transform: none !important;
  clip-path: none !important;
}


/* V136: use the extra cart space for a bigger full product preview */
body.pcgate-pro-store .pcg-cart-product-img-frame {
  border-radius: 8px;
}
@container (max-width: 700px) {
  body.pcgate-pro-store .pcg-cart-item-thumb,
  body.pcgate-pro-store .pcg-cart-item-thumb a {
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
  }
  body.pcgate-pro-store .pcg-cart-product-img-frame,
  body.pcgate-pro-store .pcg-cart-product-img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }
}
@container (max-width: 460px) {
  body.pcgate-pro-store .pcg-cart-item-thumb,
  body.pcgate-pro-store .pcg-cart-item-thumb a {
    min-width: 58px;
    max-width: 58px;
    min-height: 58px;
    max-height: 58px;
  }
  body.pcgate-pro-store .pcg-cart-product-img-frame,
  body.pcgate-pro-store .pcg-cart-product-img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
}


/* ----------------------------------------------------------------------------
   V137: Checkout order review full dark mode fix
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store #order_review,
body.pcgate-pro-store .woocommerce-checkout-review-order,
body.pcgate-pro-store .woocommerce-checkout-review-order-table,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table {
  background: var(--card-2) !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
  border-radius: var(--r) !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table,
body.pcgate-pro-store .woocommerce-checkout-review-order-table thead,
body.pcgate-pro-store .woocommerce-checkout-review-order-table tbody,
body.pcgate-pro-store .woocommerce-checkout-review-order-table tfoot,
body.pcgate-pro-store .woocommerce-checkout-review-order-table tr,
body.pcgate-pro-store .woocommerce-checkout-review-order-table th,
body.pcgate-pro-store .woocommerce-checkout-review-order-table td,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table thead,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table tbody,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table tfoot,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table tr,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table th,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table td {
  background: transparent !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table th,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table th {
  color: var(--text-2) !important;
  font-weight: 700 !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table td,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table td,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .product-name,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .product-total,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .cart-subtotal th,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .cart-subtotal td,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
  color: var(--text-2) !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total th,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total td {
  color: var(--text) !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table .amount,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table .amount {
  color: var(--text) !important;
}

body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total .amount,
body.pcgate-pro-store table.shop_table.woocommerce-checkout-review-order-table .order-total .amount {
  color: var(--orange-soft) !important;
  font-weight: 800 !important;
}

/* Payment method panel */
body.pcgate-pro-store #payment,
body.pcgate-pro-store .woocommerce-checkout #payment {
  background: var(--card-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  padding: 14px !important;
  color: var(--text) !important;
}

body.pcgate-pro-store #payment ul.payment_methods,
body.pcgate-pro-store .woocommerce-checkout #payment ul.payment_methods,
body.pcgate-pro-store .woocommerce-checkout #payment div.payment_box,
body.pcgate-pro-store #payment div.payment_box {
  background: var(--panel) !important;
  color: var(--text-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
}

body.pcgate-pro-store #payment ul.payment_methods {
  padding: 12px !important;
  margin-bottom: 14px !important;
}

body.pcgate-pro-store #payment ul.payment_methods li,
body.pcgate-pro-store #payment ul.payment_methods li label,
body.pcgate-pro-store #payment ul.payment_methods li p,
body.pcgate-pro-store #payment div.payment_box p,
body.pcgate-pro-store #payment .payment_method_cod,
body.pcgate-pro-store #payment .payment_method_bacs {
  color: var(--text) !important;
}

body.pcgate-pro-store #payment div.payment_box {
  margin-top: 12px !important;
  padding: 12px 14px !important;
  background: var(--well) !important;
}

body.pcgate-pro-store #payment div.payment_box::before {
  border-bottom-color: var(--well) !important;
}

body.pcgate-pro-store .woocommerce-privacy-policy-text,
body.pcgate-pro-store .woocommerce-privacy-policy-text p {
  color: var(--text-2) !important;
}


/* ----------------------------------------------------------------------------
   V138: Force WooCommerce payment method rows/labels into dark mode
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store #payment,
body.pcgate-pro-store .woocommerce-checkout #payment,
body.pcgate-pro-store #payment .payment_methods,
body.pcgate-pro-store .woocommerce-checkout #payment .payment_methods {
  background: var(--card-2) !important;
  color: var(--text) !important;
}

body.pcgate-pro-store #payment ul.payment_methods,
body.pcgate-pro-store #payment ul.wc_payment_methods,
body.pcgate-pro-store .woocommerce-checkout #payment ul.payment_methods,
body.pcgate-pro-store .woocommerce-checkout #payment ul.wc_payment_methods {
  list-style: none !important;
  margin: 0 0 14px !important;
  padding: 12px !important;
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
}

body.pcgate-pro-store #payment ul.payment_methods li,
body.pcgate-pro-store #payment ul.wc_payment_methods li,
body.pcgate-pro-store #payment li.wc_payment_method,
body.pcgate-pro-store #payment li.payment_method_cod,
body.pcgate-pro-store #payment li.payment_method_bacs,
body.pcgate-pro-store #payment li.payment_method_vivawallet,
body.pcgate-pro-store #payment li.payment_method_stripe {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
  border: 0 !important;
}

body.pcgate-pro-store #payment ul.payment_methods li > label,
body.pcgate-pro-store #payment ul.wc_payment_methods li > label,
body.pcgate-pro-store #payment li.wc_payment_method > label,
body.pcgate-pro-store #payment li.payment_method_cod > label,
body.pcgate-pro-store #payment li.payment_method_bacs > label,
body.pcgate-pro-store #payment input.input-radio + label,
body.pcgate-pro-store #payment input[type="radio"] + label,
body.pcgate-pro-store .woocommerce-checkout #payment input[type="radio"] + label {
  display: flex !important;
  align-items: center !important;
  min-height: 46px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  background: var(--card) !important;
  background-color: var(--card) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body.pcgate-pro-store #payment input.input-radio:checked + label,
body.pcgate-pro-store #payment input[type="radio"]:checked + label,
body.pcgate-pro-store #payment li.wc_payment_method.payment_method_cod > label,
body.pcgate-pro-store #payment li.wc_payment_method.payment_method_bacs > label {
  background: var(--card-2) !important;
  background-color: var(--card-2) !important;
  color: var(--text) !important;
  border-color: var(--line-strong) !important;
}

body.pcgate-pro-store #payment div.payment_box,
body.pcgate-pro-store .woocommerce-checkout #payment div.payment_box,
body.pcgate-pro-store #payment div.payment_box.payment_method_cod,
body.pcgate-pro-store #payment div.payment_box.payment_method_bacs {
  margin: 10px 0 0 !important;
  padding: 13px 14px !important;
  background: var(--bg-soft) !important;
  background-color: var(--bg-soft) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
  box-shadow: none !important;
}

body.pcgate-pro-store #payment div.payment_box p,
body.pcgate-pro-store .woocommerce-checkout #payment div.payment_box p {
  color: var(--text) !important;
  margin: 0 !important;
}

body.pcgate-pro-store #payment div.payment_box::before,
body.pcgate-pro-store .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--bg-soft) !important;
}

body.pcgate-pro-store #payment *:not(.button):not(#place_order) {
  text-shadow: none !important;
}


/* ----------------------------------------------------------------------------
   V139: Smooth scroll reveal animations
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-reveal {
  transition:
    opacity .68s cubic-bezier(.2, .72, .2, 1),
    transform .68s cubic-bezier(.2, .72, .2, 1),
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
  transition-delay: var(--pcg-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.pcgate-pro-store.pcg-reveal-ready .pcg-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.985);
}

body.pcgate-pro-store .pcg-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.pcgate-pro-store .pcg-product-card.pcg-reveal,
body.pcgate-pro-store .pcg-category-card.pcg-reveal,
body.pcgate-pro-store .pcg-service-card.pcg-reveal,
body.pcgate-pro-store .pcg-cart-card.pcg-reveal,
body.pcgate-pro-store .pcg-summary-card.pcg-reveal,
body.pcgate-pro-store .pcg-checkout-summary-stack.pcg-reveal,
body.pcgate-pro-store .pcg-filter-panel.pcg-reveal {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.pcgate-pro-store .pcg-reveal,
  body.pcgate-pro-store.pcg-reveal-ready .pcg-reveal:not(.is-visible),
  body.pcgate-pro-store .pcg-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}

/* V140: redesigned contact page into two premium responsive cards */


/* ----------------------------------------------------------------------------
   V141: full mobile experience polish
   - fixed mobile drawer row bug
   - better header, hero, chips, cards, products, cart and checkout on phones
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  html.pcg-mobile-menu-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store {
    overflow: hidden;
    touch-action: none;
  }

  body.pcgate-pro-store::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(0,0,0,.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store::after,
  body.pcgate-pro-store.pcg-mobile-menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-nav-wrap {
    height: 64px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    gap: 10px;
  }

  body.pcgate-pro-store .pcg-brand {
    min-width: 0;
    gap: 10px;
    font-size: 1.14rem;
  }

  body.pcgate-pro-store .pcg-brand > span:last-child {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.pcgate-pro-store .pcg-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  body.pcgate-pro-store .pcg-nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  body.pcgate-pro-store .pcg-cart,
  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open {
    border-color: var(--orange);
    background: var(--orange-wash);
    color: var(--orange-soft);
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel {
    inset: 0 0 0 auto;
    width: min(90vw, 390px);
    height: 100dvh;
    min-height: 100vh;
    z-index: 130;
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    padding: calc(18px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
    background:
      radial-gradient(520px 260px at 90% 0%, rgba(232,133,58,.14), transparent 65%),
      linear-gradient(180deg, #111116 0%, #0b0b0e 100%);
    border-left: 1px solid rgba(255,255,255,.12);
    box-shadow: -28px 0 80px rgba(0,0,0,.5);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel[hidden] {
    display: flex !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head {
    flex: 0 0 auto;
    padding: 0 0 16px;
    margin: 0 0 2px;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head strong {
    font-size: 1.45rem;
    letter-spacing: -.03em;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    flex: 1 1 auto;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 15px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    background: rgba(255,255,255,.035);
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active {
    color: var(--orange-ink);
    background: linear-gradient(150deg, var(--orange), var(--orange-deep));
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(232,133,58,.25);
  }
}

@media (max-width: 600px) {
  body.pcgate-pro-store { font-size: 15px; }

  body.pcgate-pro-store .pcg-container {
    padding-inline: 18px;
  }

  body.pcgate-pro-store .pcg-catalog-hero {
    padding-block: 42px 46px;
  }

  body.pcgate-pro-store .pcg-home-hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
    line-height: .92;
    margin-bottom: 18px;
  }

  body.pcgate-pro-store .pcg-catalog-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
    line-height: .96;
  }

  body.pcgate-pro-store .pcg-catalog-hero > .pcg-container > p {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  body.pcgate-pro-store .pcg-catalog-hero .pcg-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  body.pcgate-pro-store .pcg-btn {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 16px;
  }

  body.pcgate-pro-store .pcg-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    margin: 24px -18px 0;
    padding: 0 18px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.pcgate-pro-store .pcg-tabs::-webkit-scrollbar { display: none; }

  body.pcgate-pro-store .pcg-tabs a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
  }

  body.pcgate-pro-store .pcg-section {
    padding-block: 48px;
  }

  body.pcgate-pro-store .pcg-section-head {
    margin-bottom: 26px;
  }

  body.pcgate-pro-store .pcg-section-head h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1;
  }

  body.pcgate-pro-store .pcg-section-head p {
    font-size: 1rem;
    line-height: 1.55;
  }

  body.pcgate-pro-store .pcg-category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.pcgate-pro-store .pcg-category-card {
    min-height: 158px;
    padding: 20px;
    align-items: center;
    border-radius: 22px;
  }

  body.pcgate-pro-store .pcg-category-body {
    max-width: 74%;
  }

  body.pcgate-pro-store .pcg-category-body > span {
    font-size: 10.5px;
    margin-bottom: 9px;
  }

  body.pcgate-pro-store .pcg-category-card h3 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    line-height: 1.08;
  }

  body.pcgate-pro-store .pcg-category-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .95rem;
    line-height: 1.42;
  }

  body.pcgate-pro-store .pcg-category-card img {
    width: 74px;
    height: 74px;
  }

  body.pcgate-pro-store .pcg-product-grid,
  body.pcgate-pro-store .pcg-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.pcgate-pro-store .pcg-product-card {
    padding: 14px;
    border-radius: 22px;
  }

  body.pcgate-pro-store .pcg-product-img {
    height: 190px !important;
    min-height: 190px;
    padding: 10px;
  }

  body.pcgate-pro-store .pcg-product-card > p {
    display: block;
    font-size: .92rem;
    line-height: 1.45;
  }

  body.pcgate-pro-store .pcg-product-bottom {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  body.pcgate-pro-store .pcg-product-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body.pcgate-pro-store .pcg-product-actions-row .pcg-small-btn {
    min-height: 44px;
    padding-inline: 10px;
  }

  body.pcgate-pro-store .pcg-filter-panel {
    border-radius: 22px;
    margin-top: 18px;
  }

  body.pcgate-pro-store .pcg-footer {
    padding-block: 42px 28px;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store .pcg-brand > span:last-child { max-width: 112px; }
  body.pcgate-pro-store .pcg-catalog-hero .pcg-actions { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-product-img { height: 178px !important; min-height: 178px; }
  body.pcgate-pro-store .pcg-category-body { max-width: 78%; }
  body.pcgate-pro-store .pcg-category-card img { width: 64px; height: 64px; }
}


/* V142: force a real three-line hamburger on mobile instead of dot/arrow fallback */
body.pcgate-pro-store .pcg-mobile-menu-toggle {
  position: relative;
  padding: 0;
}
body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines,
body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span {
  pointer-events: none;
}
body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines {
  transform: none !important;
}


/* ----------------------------------------------------------------------------
   V143: mobile drawer click-layer fix
   Keep the menu panel above the dim wall so links are tappable.
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-header,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    z-index: 10000 !important;
    isolation: isolate;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store::after,
  body.pcgate-pro-store.pcg-mobile-menu-open::after {
    z-index: 9000 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel {
    z-index: 10020 !important;
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel {
    pointer-events: auto !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner,
  body.pcgate-pro-store .pcg-mobile-menu-inner a,
  body.pcgate-pro-store .pcg-mobile-menu-head,
  body.pcgate-pro-store .pcg-mobile-menu-close {
    position: relative;
    z-index: 10021;
    pointer-events: auto !important;
  }
}


/* ----------------------------------------------------------------------------
   V144: regular sticky mobile nav + compact responsive dropdown menu
   ---------------------------------------------------------------------------- */
html { scroll-padding-top: 78px; }
body.pcgate-pro-store .pcg-header {
  position: sticky !important;
  top: 0;
  z-index: 10000;
}
body.admin-bar.pcgate-pro-store .pcg-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar.pcgate-pro-store .pcg-header { top: 46px; }
}

@media (max-width: 960px) {
  html.pcg-mobile-menu-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store {
    overflow: hidden !important;
    height: 100% !important;
    overscroll-behavior: none;
  }

  body.pcgate-pro-store.pcg-mobile-menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store::after,
  body.pcgate-pro-store.pcg-mobile-menu-open::after {
    z-index: 9990 !important;
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel {
    position: fixed !important;
    top: calc(72px + env(safe-area-inset-top)) !important;
    right: max(12px, env(safe-area-inset-right)) !important;
    left: auto !important;
    bottom: auto !important;
    width: min(360px, calc(100vw - 24px)) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(70dvh, 520px) !important;
    padding: 12px !important;
    gap: 10px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.58) !important;
    transform: translateY(-10px) scale(.98) !important;
    opacity: 0;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel {
    transform: translateY(0) scale(1) !important;
    opacity: 1;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head {
    padding: 2px 2px 10px !important;
    margin: 0 !important;
    min-height: 38px;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head strong {
    font-size: 1.08rem !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-close {
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    flex: 0 0 auto !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    min-height: 0 !important;
    height: 44px !important;
    max-height: 44px !important;
    padding: 0 13px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store .pcg-mobile-menu-panel {
    top: calc(68px + env(safe-area-inset-top)) !important;
    right: 10px !important;
    width: calc(100vw - 20px) !important;
    max-height: min(68dvh, 500px) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 42px !important;
    max-height: 42px !important;
    font-size: 14.5px !important;
  }
}


/* ----------------------------------------------------------------------------
   V145: full-width mobile menu + navbar X toggle
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10040 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    position: relative !important;
    z-index: 10070 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines {
    position: relative !important;
    width: 22px !important;
    height: 18px !important;
    display: block !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span {
    position: absolute !important;
    left: 0 !important;
    width: 22px !important;
    height: 2.5px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform .2s ease, opacity .18s ease, top .2s ease !important;
    transform-origin: center !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(1) { top: 1px !important; }
  body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(2) { top: 8px !important; }
  body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(3) { top: 15px !important; }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open {
    border-color: var(--orange) !important;
    background: var(--orange-wash) !important;
    color: var(--orange-soft) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(1) {
    top: 8px !important;
    transform: rotate(45deg) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(.2) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(3) {
    top: 8px !important;
    transform: rotate(-45deg) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel {
    position: fixed !important;
    top: calc(68px + env(safe-area-inset-top)) !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(62dvh, 440px) !important;
    padding: 10px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 10030 !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background:
      radial-gradient(circle at 85% 0%, rgba(232,133,58,.13), transparent 30%),
      rgba(17,17,21,.98) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.62) !important;
    transform: translateY(-8px) scale(.985) !important;
    opacity: 0 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head {
    min-height: 30px !important;
    padding: 2px 2px 8px !important;
    margin: 0 0 6px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-head strong {
    font-size: 1rem !important;
  }

  /* The close action now lives in the navbar hamburger button, which turns into an X. */
  body.pcgate-pro-store .pcg-mobile-menu-close {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    display: flex !important;
    align-items: center !important;
    min-height: 0 !important;
    height: 40px !important;
    max-height: 40px !important;
    padding: 0 13px !important;
    border-radius: 12px !important;
    font-size: 14.5px !important;
    line-height: 1 !important;
    color: var(--text) !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.06) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active {
    background: linear-gradient(150deg, var(--orange), var(--orange-deep)) !important;
    color: var(--orange-ink) !important;
    border-color: transparent !important;
  }

  html.pcg-mobile-menu-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store,
  body.pcgate-pro-store.pcg-mobile-menu-open {
    overflow: hidden !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store .pcg-mobile-menu-panel {
    top: calc(66px + env(safe-area-inset-top)) !important;
    left: 8px !important;
    right: 8px !important;
    max-height: min(60dvh, 420px) !important;
    border-radius: 17px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 38px !important;
    max-height: 38px !important;
    font-size: 14px !important;
  }
}


/* ----------------------------------------------------------------------------
   V147: WordPress admin bar safe sticky navbar + menu offset
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store {
  --pcg-wp-adminbar-offset: 0px;
  --pcg-mobile-header-height: 76px;
}

body.admin-bar.pcgate-pro-store {
  --pcg-wp-adminbar-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.pcgate-pro-store {
    --pcg-wp-adminbar-offset: 46px;
  }
}

/* Keep the sticky PCgate navbar below the WordPress admin toolbar when logged in. */
body.admin-bar.pcgate-pro-store .pcg-header,
html body.admin-bar.pcgate-pro-store .pcg-header {
  top: var(--pcg-wp-adminbar-offset) !important;
  z-index: 10040 !important;
}

@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-header {
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
  }

  /* The dropdown sits under the real navbar, not under the WP admin toolbar. */
  body.pcgate-pro-store .pcg-mobile-menu-panel {
    top: calc(var(--pcg-wp-adminbar-offset, 0px) + var(--pcg-mobile-header-height) + 8px + env(safe-area-inset-top)) !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - var(--pcg-wp-adminbar-offset, 0px) - var(--pcg-mobile-header-height) - 22px - env(safe-area-inset-bottom)) !important;
    z-index: 10030 !important;
  }

  body.admin-bar.pcgate-pro-store .pcg-mobile-menu-toggle {
    z-index: 10080 !important;
  }

  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-header,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    top: var(--pcg-wp-adminbar-offset) !important;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store {
    --pcg-mobile-header-height: 76px;
  }
}


/* ----------------------------------------------------------------------------
   V148: robust WordPress admin-bar mobile menu fix
   ---------------------------------------------------------------------------- */
:root {
  --pcg-wp-adminbar-offset: 0px;
  --pcg-mobile-header-height: 76px;
}

/* Keep PCgate navbar visible below WP toolbar, even while menu is open. */
html body.admin-bar.pcgate-pro-store .pcg-header,
html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-header,
body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
  top: var(--pcg-wp-adminbar-offset, 46px) !important;
  z-index: 10040 !important;
}

@media (max-width: 960px) {
  html body.pcgate-pro-store .pcg-header {
    position: sticky !important;
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
    z-index: 10040 !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-panel {
    position: fixed !important;
    top: calc(var(--pcg-wp-adminbar-offset, 0px) + var(--pcg-mobile-header-height) + 8px) !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - var(--pcg-wp-adminbar-offset, 0px) - var(--pcg-mobile-header-height) - 20px - env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 10035 !important;
  }

  /* Lock the page behind the menu without moving the body upward. */
  html.pcg-mobile-menu-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store,
  body.pcgate-pro-store.pcg-mobile-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle,
  body.admin-bar.pcgate-pro-store .pcg-mobile-menu-toggle {
    z-index: 10080 !important;
  }
}


/* ----------------------------------------------------------------------------
   V149: PCgate mobile navbar child-menu + casing polish
   ---------------------------------------------------------------------------- */
:root {
  --pcg-mobile-menu-gap: 8px;
}

/* The menu now belongs to the navbar itself, not the page layer. */
body.pcgate-pro-store .pcg-nav-wrap {
  position: relative !important;
  overflow: visible !important;
}

@media (max-width: 960px) {
  html body.pcgate-pro-store .pcg-header,
  html body.admin-bar.pcgate-pro-store .pcg-header,
  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-header,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    position: sticky !important;
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
    z-index: 10080 !important;
    overflow: visible !important;
  }

  html body.pcgate-pro-store .pcg-nav-wrap {
    position: relative !important;
    overflow: visible !important;
  }

  /* Full-width dropdown attached directly to the navbar. */
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel {
    position: absolute !important;
    inset: auto 0 auto 0 !important;
    top: calc(100% + var(--pcg-mobile-menu-gap)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    max-height: min(52dvh, 330px) !important;
    margin: 0 !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    background: linear-gradient(180deg, rgba(25,22,23,.98), rgba(12,12,14,.98)) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(232,126,43,.08) !important;
    transform: translateY(-8px) scale(.985) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 10070 !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-panel[hidden] {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  /* No duplicated PCgate title/X inside the dropdown. The navbar button becomes the X. */
  body.pcgate-pro-store .pcg-mobile-menu-head,
  body.pcgate-pro-store .pcg-mobile-menu-close {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    width: 100% !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 13px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 11px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: var(--text) !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.07) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active {
    color: var(--orange-ink) !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep)) !important;
    border-color: rgba(232,126,43,.75) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    position: relative !important;
    z-index: 10090 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open {
    border-color: var(--orange) !important;
    color: var(--orange-soft) !important;
    background: rgba(232,126,43,.10) !important;
  }

  /* Keep background from scrolling while the attached navbar menu is open. */
  html.pcg-mobile-menu-open,
  html.pcg-mobile-menu-open body.pcgate-pro-store,
  body.pcgate-pro-store.pcg-mobile-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store::after,
  body.pcgate-pro-store.pcg-mobile-menu-open::after {
    z-index: 10050 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 420px) {
  html body.pcgate-pro-store .pcg-mobile-menu-panel {
    border-radius: 16px !important;
    padding: 9px !important;
    max-height: min(50dvh, 310px) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    font-size: 13px !important;
  }
}


/* ----------------------------------------------------------------------------
   V150: attached mobile menu — no black gap, no internal scroll
   ---------------------------------------------------------------------------- */
:root {
  --pcg-mobile-menu-gap: 0px;
}

@media (max-width: 960px) {
  /* No dim wall/black bar when the navbar menu opens. It should behave like a normal dropdown. */
  html.pcg-mobile-menu-open body.pcgate-pro-store::after,
  body.pcgate-pro-store.pcg-mobile-menu-open::after,
  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store::after,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  /* Keep the dropdown physically attached to the navbar with no black strip/gap. */
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 8px !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overscroll-behavior: none !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    box-shadow: 0 18px 46px rgba(0,0,0,.48), 0 0 0 1px rgba(232,126,43,.08) !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    gap: 6px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel {
    padding: 7px !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner {
    gap: 5px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    font-size: 12.5px !important;
  }
}


/* ----------------------------------------------------------------------------
   V151: WordPress admin-toolbar no black gap
   ---------------------------------------------------------------------------- */
:root {
  --pcg-wp-adminbar-offset: 0px;
}

/* The JS now sets --pcg-wp-adminbar-offset to ONLY the missing toolbar space.
   If WordPress already added html margin-top, this becomes 0px and removes the black bar. */
body.admin-bar.pcgate-pro-store .pcg-header,
html body.admin-bar.pcgate-pro-store .pcg-header,
html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-header,
body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
  top: var(--pcg-wp-adminbar-offset, 0px) !important;
}

@media (max-width: 960px) {
  html body.admin-bar.pcgate-pro-store .pcg-header,
  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-header,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
    margin-top: 0 !important;
  }

  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel,
  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel {
    top: 100% !important;
    margin-top: 0 !important;
  }
}

/* ----------------------------------------------------------------------------
   V152: Products mega dropdown + Services page + fitted header
   ---------------------------------------------------------------------------- */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-nav-wrap {
    gap: 18px !important;
  }
  body.pcgate-pro-store .pcg-brand {
    flex: 0 0 auto;
  }
  body.pcgate-pro-store .pcg-nav-links {
    flex: 1 1 auto;
    justify-content: center;
    margin-left: 0 !important;
    gap: 6px;
  }
  body.pcgate-pro-store .pcg-nav-actions {
    margin-left: 0 !important;
    flex: 0 0 auto;
  }
  body.pcgate-pro-store .pcg-navbar-search {
    margin-left: 0 !important;
  }
  body.pcgate-pro-store .pcg-navbar-search-box {
    width: clamp(205px, 20vw, 280px) !important;
  }
}

body.pcgate-pro-store .pcg-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
body.pcgate-pro-store .pcg-nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
body.pcgate-pro-store .pcg-nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  opacity: .72;
  transition: transform .18s ease, opacity .18s ease;
}
body.pcgate-pro-store .pcg-nav-dropdown:hover .pcg-nav-dropdown-trigger svg,
body.pcgate-pro-store .pcg-nav-dropdown:focus-within .pcg-nav-dropdown-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}
body.pcgate-pro-store .pcg-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(232,133,58,.16), transparent 34%),
    linear-gradient(180deg, rgba(25,25,31,.98), rgba(10,10,12,.98));
  border: 1px solid var(--line-strong);
  box-shadow: 0 28px 86px rgba(0,0,0,.68), 0 0 0 1px rgba(232,133,58,.08);
  transform: translate(-50%, 10px) scale(.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 160;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
body.pcgate-pro-store .pcg-nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(25,25,31,.98);
  border-left: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
}
body.pcgate-pro-store .pcg-nav-dropdown:hover .pcg-nav-dropdown-panel,
body.pcgate-pro-store .pcg-nav-dropdown:focus-within .pcg-nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
body.pcgate-pro-store .pcg-nav-dropdown-head {
  padding: 10px 12px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
body.pcgate-pro-store .pcg-nav-dropdown-head span,
body.pcgate-pro-store .pcg-service-index {
  display: inline-flex;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-nav-dropdown-head strong {
  display: block;
  margin-top: 5px;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--text);
}
body.pcgate-pro-store .pcg-nav-dropdown-head em {
  display: block;
  margin-top: 4px;
  max-width: 520px;
  color: var(--muted);
  font-style: normal;
  font-size: .9rem;
}
body.pcgate-pro-store .pcg-nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px !important;
  min-height: 78px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--text) !important;
}
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item::after { display: none !important; }
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover {
  background: rgba(232,133,58,.10);
  border-color: rgba(232,133,58,.36);
  transform: translateY(-1px);
}
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
  background: linear-gradient(135deg, rgba(232,133,58,.18), rgba(232,133,58,.06));
  border-color: rgba(232,133,58,.55);
}
body.pcgate-pro-store .pcg-drop-code {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--orange-ink);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 12px 28px rgba(232,133,58,.18);
}
body.pcgate-pro-store .pcg-nav-dropdown-item strong,
body.pcgate-pro-store .pcg-nav-dropdown-item em {
  display: block;
  min-width: 0;
}
body.pcgate-pro-store .pcg-nav-dropdown-item strong {
  font-family: var(--ff-display);
  font-size: .98rem;
  line-height: 1.15;
  color: var(--text);
}
body.pcgate-pro-store .pcg-nav-dropdown-item em {
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
  font-style: normal;
}

@media (min-width: 961px) and (max-width: 1160px) {
  body.pcgate-pro-store .pcg-navbar-search-box { width: 188px !important; }
  body.pcgate-pro-store .pcg-nav-links a { padding: 9px 10px !important; font-size: 13.5px !important; }
  body.pcgate-pro-store .pcg-brand { font-size: 1.15rem; }
  body.pcgate-pro-store .pcg-nav-wrap { gap: 12px !important; }
}

@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-nav-links,
  body.pcgate-pro-store .pcg-nav-actions {
    display: none !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    margin-left: auto !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-group {
    display: grid;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
  }
  body.pcgate-pro-store .pcg-mobile-submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner .pcg-mobile-submenu a {
    font-size: 12.2px !important;
    color: var(--text-2) !important;
    background: rgba(0,0,0,.16) !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner .pcg-mobile-submenu a.is-active {
    color: var(--orange-ink) !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep)) !important;
  }
  body.pcgate-pro-store .pcg-mobile-cart-menu {
    justify-content: space-between;
  }
  body.pcgate-pro-store .pcg-mobile-cart-menu span {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--orange-ink);
    font-family: var(--ff-mono);
    font-size: 11px;
  }
}

/* Services page */
body.pcgate-pro-store .pcg-services-page .pcg-catalog-hero { overflow: hidden; }
body.pcgate-pro-store .pcg-services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
body.pcgate-pro-store .pcg-services-hero-grid h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
}
body.pcgate-pro-store .pcg-services-hero-grid p {
  max-width: 680px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
body.pcgate-pro-store .pcg-services-orbit {
  position: relative;
  min-height: 360px;
  border-radius: 36px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at center, rgba(232,133,58,.16), transparent 0 22%, rgba(255,255,255,.04) 23%, transparent 24%),
    radial-gradient(circle at 30% 20%, rgba(232,133,58,.16), transparent 30%),
    linear-gradient(145deg, rgba(20,20,26,.96), rgba(10,10,12,.9));
  box-shadow: var(--shadow);
  isolation: isolate;
}
body.pcgate-pro-store .pcg-services-orbit::before,
body.pcgate-pro-store .pcg-services-orbit::after {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 50%;
}
body.pcgate-pro-store .pcg-services-orbit::after { inset: 108px; opacity: .55; }
body.pcgate-pro-store .pcg-services-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(232,133,58,.34);
  background: rgba(232,133,58,.10);
  color: var(--orange-soft);
  font-family: var(--ff-mono);
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
}
body.pcgate-pro-store .pcg-services-orbit span:nth-child(1) { left: 50%; top: 20px; transform: translateX(-50%); }
body.pcgate-pro-store .pcg-services-orbit span:nth-child(2) { right: 34px; top: 48%; }
body.pcgate-pro-store .pcg-services-orbit span:nth-child(3) { left: 50%; bottom: 24px; transform: translateX(-50%); }
body.pcgate-pro-store .pcg-services-orbit span:nth-child(4) { left: 34px; top: 48%; }
body.pcgate-pro-store .pcg-services-orbit span:nth-child(5) { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 84px; height: 84px; border-radius: 28px; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: var(--orange-ink); }

body.pcgate-pro-store .pcg-services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.pcgate-pro-store .pcg-service-feature-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
body.pcgate-pro-store .pcg-service-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-orange);
  background: var(--card-2);
}
body.pcgate-pro-store .pcg-service-feature-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--orange-soft);
}
body.pcgate-pro-store .pcg-service-feature-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 12px;
}
body.pcgate-pro-store .pcg-service-feature-card p { color: var(--text-2); margin: 0; }
body.pcgate-pro-store .pcg-service-feature-card.is-hot {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: rgba(232,133,58,.72);
  color: var(--orange-ink);
}
body.pcgate-pro-store .pcg-service-feature-card.is-hot h3,
body.pcgate-pro-store .pcg-service-feature-card.is-hot p,
body.pcgate-pro-store .pcg-service-feature-card.is-hot > span { color: var(--orange-ink); }
body.pcgate-pro-store .pcg-service-feature-card.is-dark {
  background: linear-gradient(145deg, #13243b, #11141c);
  border-color: rgba(232,133,58,.28);
}

body.pcgate-pro-store .pcg-services-band {
  background:
    radial-gradient(circle at 75% 40%, rgba(232,133,58,.16), transparent 28%),
    linear-gradient(135deg, #0f2138, #151630 62%, #0a0a0c);
}
body.pcgate-pro-store .pcg-service-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
body.pcgate-pro-store .pcg-service-story h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}
body.pcgate-pro-store .pcg-service-story p {
  font-size: 1.04rem;
  color: var(--text-2);
}
body.pcgate-pro-store .pcg-service-stack-section { background: var(--bg); }
body.pcgate-pro-store .pcg-service-stack {
  display: grid;
  gap: 16px;
}
body.pcgate-pro-store .pcg-service-detail {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 46px);
  padding: clamp(22px, 4vw, 38px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,20,25,.94), rgba(15,15,19,.94));
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
body.pcgate-pro-store .pcg-service-detail h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
}
body.pcgate-pro-store .pcg-service-lead {
  color: var(--orange-soft) !important;
  margin: 10px 0 0 !important;
  font-family: var(--ff-mono);
  font-size: .88rem;
}
body.pcgate-pro-store .pcg-service-detail p:last-child { margin-bottom: 0; }
body.pcgate-pro-store .pcg-service-detail ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-2);
}
body.pcgate-pro-store .pcg-service-detail li { margin: 7px 0; }
body.pcgate-pro-store .pcg-service-detail li::marker { color: var(--orange); }

@media (max-width: 980px) {
  body.pcgate-pro-store .pcg-services-hero-grid,
  body.pcgate-pro-store .pcg-service-story,
  body.pcgate-pro-store .pcg-service-detail {
    grid-template-columns: 1fr;
  }
  body.pcgate-pro-store .pcg-services-orbit { min-height: 300px; }
  body.pcgate-pro-store .pcg-services-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body.pcgate-pro-store .pcg-services-orbit { min-height: 250px; border-radius: 24px; }
  body.pcgate-pro-store .pcg-services-orbit::before { inset: 38px; }
  body.pcgate-pro-store .pcg-services-orbit::after { inset: 82px; }
  body.pcgate-pro-store .pcg-services-orbit span { width: 52px; height: 52px; border-radius: 16px; font-size: 11px; }
  body.pcgate-pro-store .pcg-services-orbit span:nth-child(5) { width: 70px; height: 70px; border-radius: 22px; }
  body.pcgate-pro-store .pcg-services-feature-grid { grid-template-columns: 1fr; }
  body.pcgate-pro-store .pcg-service-feature-card { min-height: 0; padding: 22px; }
  body.pcgate-pro-store .pcg-service-detail { padding: 20px; border-radius: 20px; }
}


/* ----------------------------------------------------------------------------
   V153: Flat Speedtest-style products menu + stronger hover bridge
   ---------------------------------------------------------------------------- */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-nav-wrap {
    position: relative;
    height: 68px !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown {
    position: static !important;
    align-self: stretch;
    display: flex !important;
    align-items: center;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-trigger {
    height: 100%;
    display: inline-flex !important;
    align-items: center;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-trigger:hover {
    background: transparent !important;
    color: var(--text) !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-trigger::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 88px;
    pointer-events: none;
  }

  body.pcgate-pro-store .pcg-nav-dropdown:hover .pcg-nav-dropdown-trigger::before,
  body.pcgate-pro-store .pcg-nav-dropdown:focus-within .pcg-nav-dropdown-trigger::before {
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-panel {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    min-width: 100vw;
    padding: 26px var(--gut) 34px !important;
    border-radius: 0 !important;
    background: #030405 !important;
    border: 0 !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    border-bottom: 1px solid rgba(232,133,58,.92) !important;
    box-shadow: none !important;
    transform: translateY(-8px) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 220 !important;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-panel::before,
  body.pcgate-pro-store .pcg-nav-dropdown-panel::after {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown:hover .pcg-nav-dropdown-panel,
  body.pcgate-pro-store .pcg-nav-dropdown:focus-within .pcg-nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head {
    max-width: min(820px, calc(100vw - 2 * var(--gut)));
    margin: 0 auto 14px !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head span,
  body.pcgate-pro-store .pcg-nav-dropdown-head em {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head strong {
    margin: 0 !important;
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    color: var(--text) !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-grid {
    max-width: min(820px, calc(100vw - 2 * var(--gut)));
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: clamp(34px, 7vw, 96px) !important;
    row-gap: 9px !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
    display: block !important;
    min-height: 0 !important;
    padding: 6px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    color: rgba(255,255,255,.58) !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--text) !important;
    transform: none !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--orange-soft) !important;
  }

  body.pcgate-pro-store .pcg-drop-code {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-item strong {
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    color: currentColor !important;
    transition: color .14s ease;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-item em {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-trigger svg {
    transition: transform .14s ease, opacity .14s ease !important;
  }
}

@media (min-width: 961px) and (max-width: 1080px) {
  body.pcgate-pro-store .pcg-nav-dropdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

body.admin-bar.pcgate-pro-store .pcg-nav-dropdown-panel {
  top: 100px !important;
}


/* ============================================================================
   PCGATE V9 — WHITE COMMERCE BRAND SYSTEM
   Main brand mark is now used in the header, home hero and footer.
   ============================================================================ */
body.pcgate-pro-store {
  --pcg-brand-orange: #ff6b0a;
  --pcg-brand-orange-2: #e85808;
  --pcg-brand-ink: #050506;
}

body.pcgate-pro-store .pcg-brand-v3 {
  gap: 0;
  min-width: max-content;
}
body.pcgate-pro-store .pcg-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
body.pcgate-pro-store .pcg-brandmark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: visible;
  filter: drop-shadow(0 8px 17px rgba(255, 102, 0, .22));
}
body.pcgate-pro-store .pcg-brandmark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}
body.pcgate-pro-store .pcg-brandmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.pcgate-pro-store .pcg-brand-copy {
  display: grid;
  line-height: 1;
  min-width: 0;
}
body.pcgate-pro-store .pcg-brand-copy strong {
  font-family: var(--ff-display);
  color: var(--text);
  font-size: 1.19rem;
  font-weight: 800;
  letter-spacing: -.035em;
}
body.pcgate-pro-store .pcg-brand-copy small {
  margin-top: 5px;
  color: var(--orange-soft);
  font-family: var(--ff-mono);
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.pcgate-pro-store .pcg-home-hero {
  min-height: clamp(590px, 76vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
body.pcgate-pro-store .pcg-home-hero::after {
  content: "PCGATE";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: clamp(7rem, 20vw, 19rem);
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.018);
  pointer-events: none;
  white-space: nowrap;
}
body.pcgate-pro-store .pcg-home-hero > .pcg-container {
  max-width: 980px;
}
body.pcgate-pro-store .pcg-home-brandmark {
  width: clamp(138px, 18vw, 212px);
  aspect-ratio: 1;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 42px rgba(255, 98, 0, .23));
}
body.pcgate-pro-store .pcg-home-brandmark::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: rgba(255, 104, 0, .14);
  filter: blur(32px);
  transform: scale(1.35);
  z-index: -1;
}
body.pcgate-pro-store .pcg-home-brandmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
body.pcgate-pro-store .pcg-home-hero h1 {
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 850;
  letter-spacing: -.07em;
  text-transform: uppercase;
  line-height: .86;
  margin-bottom: 26px;
  text-shadow: 0 12px 44px rgba(0,0,0,.28);
}
body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow {
  margin-bottom: 20px;
  font-weight: 700;
}
body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow::before,
body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}

body.pcgate-pro-store .pcg-footer-brand-link {
  display: inline-flex;
  color: inherit;
  margin-bottom: 18px;
}
body.pcgate-pro-store .pcg-footer-brand-link:hover {
  color: inherit;
}
body.pcgate-pro-store .pcg-brand-lockup-footer .pcg-brandmark {
  width: 58px;
  height: 58px;
}
body.pcgate-pro-store .pcg-brand-lockup-footer .pcg-brand-copy strong {
  font-size: 1.55rem;
}
body.pcgate-pro-store .pcg-brand-lockup-footer .pcg-brand-copy small {
  font-size: 9px;
}
body.pcgate-pro-store .pcg-footer-brand > p {
  margin-top: 0;
}
body.pcgate-pro-store .pcg-footer .pcg-brand-signature {
  display: inline-flex;
  width: auto;
  margin-top: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255,107,10,.2);
  border-radius: 999px;
  background: rgba(255,107,10,.06);
  color: var(--orange-soft);
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .12em;
}

@media (max-width: 980px) {
  body.pcgate-pro-store .pcg-brand-copy small { display: none; }
  body.pcgate-pro-store .pcg-brandmark { width: 42px; height: 42px; }
  body.pcgate-pro-store .pcg-home-hero { min-height: 640px; }
}

@media (max-width: 520px) {
  body.pcgate-pro-store .pcg-brand-lockup-header { gap: 8px; }
  body.pcgate-pro-store .pcg-brandmark { width: 39px; height: 39px; }
  body.pcgate-pro-store .pcg-brand-copy strong { font-size: 1.05rem; }
  body.pcgate-pro-store .pcg-home-hero {
    min-height: 600px;
    padding-top: 52px;
  }
  body.pcgate-pro-store .pcg-home-brandmark {
    width: 142px;
    margin-bottom: 16px;
  }
  body.pcgate-pro-store .pcg-home-hero h1 {
    font-size: clamp(3.55rem, 20vw, 5.5rem);
  }
  body.pcgate-pro-store .pcg-brand-lockup-footer .pcg-brand-copy small { display: block; }
}

/* ============================================================================
   PCGATE V9 — MOBILE COMMERCE PASS
   Compact home hero, readable product header, large product media and a
   conversion-focused bottom purchase bar inspired by leading Greek e-commerce.
   ============================================================================ */
body.pcgate-pro-store .pcg-mobile-buybar,
body.pcgate-pro-store .pcg-mobile-buybar-spacer {
  display: none;
}

@media (max-width: 700px) {
  html,
  body.pcgate-pro-store {
    overflow-x: clip;
  }

  /* HOME: tighter, balanced hero so the first screen feels intentional. */
  body.pcgate-pro-store .pcg-home-hero {
    min-height: 0 !important;
    padding-block: 34px 28px !important;
  }
  body.pcgate-pro-store .pcg-home-hero > .pcg-container {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
    overflow: hidden;
  }
  body.pcgate-pro-store .pcg-home-brandmark {
    width: 104px !important;
    margin: 0 auto 12px !important;
  }
  body.pcgate-pro-store .pcg-home-brandmark::before {
    filter: blur(24px);
    transform: scale(1.18);
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow {
    margin-bottom: 13px !important;
    font-size: 9px;
    letter-spacing: .17em;
    white-space: nowrap;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow::before,
  body.pcgate-pro-store .pcg-home-hero .pcg-eyebrow::after {
    width: 18px;
  }
  body.pcgate-pro-store .pcg-home-hero h1 {
    font-size: clamp(3rem, 15vw, 3.8rem) !important;
    line-height: .9 !important;
    letter-spacing: -.065em !important;
    margin: 0 0 16px !important;
  }
  body.pcgate-pro-store .pcg-home-hero > .pcg-container > p {
    max-width: 340px !important;
    margin: 0 auto !important;
    font-size: 14px !important;
    line-height: 1.52 !important;
    overflow-wrap: anywhere;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-actions .pcg-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 10px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    line-height: 1.15;
    box-sizing: border-box;
    white-space: nowrap;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-tabs {
    margin: 18px -18px 0 !important;
    padding: 0 18px 2px !important;
    gap: 8px !important;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-tabs a {
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 12.5px !important;
  }
  body.pcgate-pro-store .pcg-home-hero::after {
    bottom: -.08em;
    font-size: 7rem;
  }

  /* PRODUCT: make the title behave like an ecommerce title, not a billboard. */
  body.pcgate-pro-store .pcg-product-top {
    padding-block: 30px 22px !important;
  }
  body.pcgate-pro-store .pcg-product-top .pcg-eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .16em;
  }
  body.pcgate-pro-store .pcg-product-top h1 {
    max-width: 100%;
    margin: 0 0 10px !important;
    font-size: clamp(1.08rem, 5vw, 1.22rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -.018em !important;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
  body.pcgate-pro-store .pcg-product-top > .pcg-container > p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  body.pcgate-pro-store .pcg-product-top .pcg-tabs {
    display: none !important;
  }
  body.pcgate-pro-store .pcg-product-detail-section {
    padding-top: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-detail-card {
    gap: 12px !important;
    margin-bottom: 18px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel {
    min-height: 300px !important;
    padding: 18px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border-color: rgba(255,255,255,.14) !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 330px !important;
    object-fit: contain !important;
  }
  body.pcgate-pro-store .pcg-product-summary-panel {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }
  body.pcgate-pro-store .pcg-product-summary-panel h2 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  body.pcgate-pro-store .pcg-product-price-row strong {
    font-size: 1.65rem !important;
  }

  /* YOU.GR-style mobile purchase dock: price on the left, CTA on the right. */
  body.pcgate-pro-store .pcg-mobile-buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    display: grid;
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(250,250,251,.98);
    color: #111318;
    border-top: 1px solid rgba(0,0,0,.14);
    box-shadow: 0 -12px 34px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  body.pcgate-pro-store .pcg-mobile-buybar-price {
    min-width: 0;
    display: grid;
    gap: 1px;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-price > span {
    color: #6b6f76;
    font-family: var(--ff-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-price strong {
    color: #111318;
    font-family: var(--ff-display);
    font-size: clamp(1.15rem, 5.4vw, 1.42rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.035em;
    white-space: nowrap;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-price strong .woocommerce-Price-amount {
    color: inherit;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: #ff8a20;
    color: #16110c;
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(255,107,10,.24);
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button:active {
    transform: translateY(1px);
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button:disabled {
    cursor: not-allowed;
    opacity: .5;
    box-shadow: none;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-spacer {
    display: block;
    height: calc(86px + env(safe-area-inset-bottom));
  }
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-buybar,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-buybar {
    display: none !important;
  }
}

@media (max-width: 390px) {
  body.pcgate-pro-store .pcg-home-hero .pcg-actions {
    gap: 8px !important;
  }
  body.pcgate-pro-store .pcg-home-hero .pcg-actions .pcg-btn {
    font-size: 12px !important;
    padding-inline: 8px !important;
  }
  body.pcgate-pro-store .pcg-mobile-buybar {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 9px;
    padding-inline: 10px;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button {
    font-size: 13px;
    padding-inline: 10px;
  }
}



/* ============================================================================
   PCGATE V9 — WHITE COMMERCE PASS
   Full-site light conversion + single product simplification.
   V7 remains the structural base; these rules intentionally win over legacy
   dark/mobile/menu patches without changing WooCommerce behaviour.
   ============================================================================ */
body.pcgate-pro-store {
  background: #fff !important;
  color: var(--text) !important;
}
body.pcgate-pro-store .pcg-section:nth-of-type(even) { background: #fafafa !important; }

/* Header / navigation */
body.pcgate-pro-store .pcg-header {
  background: rgba(255,255,255,.96) !important;
  border-bottom-color: rgba(17,24,39,.10) !important;
  box-shadow: 0 4px 20px rgba(17,24,39,.04);
}
body.pcgate-pro-store .pcg-nav-links a,
body.pcgate-pro-store .pcg-nav-actions a,
body.pcgate-pro-store .pcg-mobile-menu-toggle { color: #16191f !important; }
body.pcgate-pro-store .pcg-mobile-menu-toggle,
body.pcgate-pro-store .pcg-nav-actions > a,
body.pcgate-pro-store .pcg-navbar-search-box {
  background-color: #fff !important;
  border-color: rgba(17,24,39,.12) !important;
}
body.pcgate-pro-store .pcg-nav-dropdown-panel {
  background: #fff !important;
  border-color: rgba(17,24,39,.12) !important;
  box-shadow: 0 22px 60px rgba(17,24,39,.12) !important;
}
body.pcgate-pro-store .pcg-nav-dropdown-panel::before { background: #fff !important; }
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
  background: #fafafa !important;
  border-color: rgba(17,24,39,.09) !important;
}
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover {
  background: #fff7f0 !important;
  border-color: rgba(232,133,58,.32) !important;
}

/* Mobile menu */
body.pcgate-pro-store .pcg-mobile-menu-panel {
  background: #fff !important;
  color: #111318 !important;
  border-color: rgba(17,24,39,.10) !important;
  box-shadow: 0 24px 70px rgba(17,24,39,.14) !important;
}
body.pcgate-pro-store .pcg-mobile-menu-head,
body.pcgate-pro-store .pcg-mobile-menu-inner,
body.pcgate-pro-store .pcg-mobile-menu-group {
  background: transparent !important;
  border-color: rgba(17,24,39,.10) !important;
}
body.pcgate-pro-store .pcg-mobile-menu-inner a,
body.pcgate-pro-store .pcg-mobile-menu-inner .pcg-mobile-submenu a {
  color: #30353d !important;
  background: #f7f7f8 !important;
  border-color: rgba(17,24,39,.08) !important;
}

/* Heroes */
body.pcgate-pro-store .pcg-catalog-hero {
  background:
    radial-gradient(900px 360px at 76% -10%, rgba(232,133,58,.11), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
  border-bottom-color: rgba(17,24,39,.08) !important;
}
body.pcgate-pro-store .pcg-home-hero h1 {
  background: linear-gradient(180deg, #111318 0%, #4d535c 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}
body.pcgate-pro-store .pcg-home-hero::after { color: rgba(17,24,39,.025) !important; }

/* Cards, filters, forms, search and commerce panels */
body.pcgate-pro-store .pcg-category-card,
body.pcgate-pro-store .pcg-product-card,
body.pcgate-pro-store .pcg-service-card,
body.pcgate-pro-store .pcg-service-feature-card,
body.pcgate-pro-store .pcg-contact-card,
body.pcgate-pro-store .pcg-filter-panel,
body.pcgate-pro-store .pcg-cart-card,
body.pcgate-pro-store .pcg-summary-card,
body.pcgate-pro-store .pcg-checkout-shell,
body.pcgate-pro-store .pcg-product-description,
body.pcgate-pro-store .pcg-product-specs,
body.pcgate-pro-store .pcg-spec-grid,
body.pcgate-pro-store .pcg-live-search-results,
body.pcgate-pro-store .pcg-empty {
  background: #fff !important;
  border-color: rgba(17,24,39,.10) !important;
  box-shadow: 0 8px 28px rgba(17,24,39,.05) !important;
}
body.pcgate-pro-store .pcg-category-card.pcg-card-dark,
body.pcgate-pro-store .pcg-service-feature-card.is-dark,
body.pcgate-pro-store .pcg-services-band,
body.pcgate-pro-store .pcg-services-orbit {
  background: linear-gradient(145deg, #fff 0%, #fff8f2 100%) !important;
  color: var(--text) !important;
}
body.pcgate-pro-store .pcg-services-orbit::before,
body.pcgate-pro-store .pcg-services-orbit::after { border-color: rgba(17,24,39,.13) !important; }
body.pcgate-pro-store input,
body.pcgate-pro-store textarea,
body.pcgate-pro-store select,
body.pcgate-pro-store .woocommerce form .form-row input.input-text,
body.pcgate-pro-store .woocommerce form .form-row textarea,
body.pcgate-pro-store .select2-container--default .select2-selection--single,
body.pcgate-pro-store .woocommerce-checkout-review-order,
body.pcgate-pro-store #order_review,
body.pcgate-pro-store #payment ul.payment_methods,
body.pcgate-pro-store .pcg-product-help-box,
body.pcgate-pro-store .pcg-summary-mini-help {
  background: #f7f7f8 !important;
  color: #111318 !important;
  border-color: rgba(17,24,39,.11) !important;
}
body.pcgate-pro-store .select2-dropdown,
body.pcgate-pro-store #payment div.payment_box {
  background: #fff !important;
  color: #454b55 !important;
  border-color: rgba(17,24,39,.12) !important;
}
body.pcgate-pro-store #payment div.payment_box::before { border-bottom-color: #fff !important; }

/* Product cards: white imagery now blends into the surrounding store surface. */
body.pcgate-pro-store .pcg-product-img {
  background: #fff !important;
  border-color: rgba(17,24,39,.08) !important;
}

/* SINGLE PRODUCT — no billboard. Image left, compact purchase information right. */
body.pcgate-pro-store .pcg-product-detail-section {
  padding-block: clamp(34px, 5vw, 62px) !important;
  background: #fff !important;
}
body.pcgate-pro-store .pcg-product-detail-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
  align-items: start !important;
  gap: clamp(28px, 4vw, 52px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel {
  background: #fff !important;
  border: 1px solid rgba(17,24,39,.09) !important;
  box-shadow: none !important;
  min-height: 500px;
  padding: clamp(28px, 5vw, 60px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel img {
  width: 100%;
  max-height: 510px !important;
  object-fit: contain !important;
}
body.pcgate-pro-store .pcg-product-summary-panel {
  background: #fff !important;
  border: 1px solid rgba(17,24,39,.10) !important;
  box-shadow: 0 10px 34px rgba(17,24,39,.055) !important;
  padding: clamp(24px, 3vw, 34px) !important;
}
body.pcgate-pro-store .pcg-product-summary-panel h2 {
  max-width: 620px;
  font-size: clamp(1.2rem, 1.55vw, 1.48rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -.018em !important;
  margin-bottom: 14px !important;
  overflow-wrap: anywhere;
}
body.pcgate-pro-store .pcg-product-badge {
  color: #b85d18 !important;
  background: #fff7f0 !important;
}
body.pcgate-pro-store .pcg-product-price-row strong,
body.pcgate-pro-store .pcg-product-bottom > strong,
body.pcgate-pro-store .woocommerce-checkout-review-order-table .order-total .amount {
  color: #d96e1e !important;
}

/* Footer */
body.pcgate-pro-store .pcg-footer {
  background: #fafafa !important;
  border-top-color: rgba(17,24,39,.09) !important;
}

@media (max-width: 700px) {
  body.pcgate-pro-store .pcg-product-detail-section {
    padding-top: 22px !important;
  }
  body.pcgate-pro-store .pcg-product-detail-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel {
    min-height: 300px !important;
    padding: 16px !important;
    border-radius: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-summary-panel {
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-summary-panel h2 {
    font-size: .98rem !important;
    line-height: 1.32 !important;
    margin-bottom: 10px !important;
  }
  body.pcgate-pro-store .pcg-product-lead {
    font-size: .86rem !important;
    line-height: 1.52 !important;
  }
}


/* ============================================================================
   PCGATE V9 — SINGLE PRODUCT ALIGNMENT PASS
   Clean white commerce layout. Description/specification content is aligned to
   the same container as the image and summary, with no orphan half-width card.
   ============================================================================ */
body.pcgate-pro-store .pcg-brand-copy small { display: none !important; }
body.pcgate-pro-store .pcg-brand-copy {
  display: inline-flex !important;
  align-items: center !important;
}

body.pcgate-pro-store .pcg-product-detail-card {
  align-items: stretch !important;
}
body.pcgate-pro-store .pcg-product-media-panel,
body.pcgate-pro-store .pcg-product-summary-panel {
  min-width: 0 !important;
}
body.pcgate-pro-store .pcg-product-summary-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}
body.pcgate-pro-store .pcg-product-summary-panel h2 {
  margin: 0 0 12px !important;
}
body.pcgate-pro-store .pcg-product-lead {
  margin: 0 !important;
  color: #5f6670 !important;
  font-size: .94rem !important;
  line-height: 1.65 !important;
}
body.pcgate-pro-store .pcg-product-lead p {
  margin: 0 0 10px !important;
}
body.pcgate-pro-store .pcg-product-lead p:last-child {
  margin-bottom: 0 !important;
}
body.pcgate-pro-store .pcg-product-price-row {
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px 18px !important;
  margin-top: 18px !important;
}

body.pcgate-pro-store .pcg-product-content-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr) !important;
  align-items: start !important;
  gap: 24px !important;
  margin-top: 26px !important;
}
body.pcgate-pro-store .pcg-product-content-grid > :only-child {
  grid-column: 1 / -1 !important;
}
body.pcgate-pro-store .pcg-product-description,
body.pcgate-pro-store .pcg-product-specs {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  padding: clamp(24px, 3vw, 34px) !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
}
body.pcgate-pro-store .pcg-product-description h2,
body.pcgate-pro-store .pcg-product-specs h2 {
  margin: 0 0 18px !important;
  font-size: 1.18rem !important;
  line-height: 1.25 !important;
}
body.pcgate-pro-store .pcg-product-description > div {
  width: 100% !important;
  color: #343941 !important;
  font-size: .95rem !important;
  line-height: 1.72 !important;
}
body.pcgate-pro-store .pcg-product-description p {
  margin: 0 0 14px !important;
  color: #343941 !important;
}
body.pcgate-pro-store .pcg-product-description ul,
body.pcgate-pro-store .pcg-product-description ol {
  margin: 12px 0 0 !important;
  padding-left: 1.25rem !important;
}
body.pcgate-pro-store .pcg-product-description li {
  margin: 6px 0 !important;
}
body.pcgate-pro-store .pcg-spec-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
body.pcgate-pro-store .pcg-product-specs .pcg-spec {
  display: grid !important;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr) !important;
  align-items: start !important;
  gap: 18px !important;
  padding: 12px 0 !important;
}
body.pcgate-pro-store .pcg-product-specs .pcg-spec > span:first-child {
  color: #737a84 !important;
}
body.pcgate-pro-store .pcg-product-specs .pcg-spec > span:last-child,
body.pcgate-pro-store .pcg-product-specs .pcg-spec strong {
  color: #20242a !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 900px) {
  body.pcgate-pro-store .pcg-product-content-grid {
    grid-template-columns: 1fr !important;
  }
  body.pcgate-pro-store .pcg-product-content-grid > * {
    grid-column: 1 !important;
  }
}

@media (max-width: 700px) {
  body.pcgate-pro-store .pcg-product-content-grid {
    margin-top: 16px !important;
    gap: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-description,
  body.pcgate-pro-store .pcg-product-specs {
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-description h2,
  body.pcgate-pro-store .pcg-product-specs h2 {
    font-size: 1.05rem !important;
    margin-bottom: 14px !important;
  }
  body.pcgate-pro-store .pcg-product-description > div {
    font-size: .9rem !important;
    line-height: 1.65 !important;
  }
  body.pcgate-pro-store .pcg-product-specs .pcg-spec {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
}


/* ----------------------------------------------------------------------------
   V10: Fix white-theme desktop products mega dropdown visibility
   ---------------------------------------------------------------------------- */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-nav-dropdown-panel {
    background: #ffffff !important;
    border-top: 1px solid rgba(17,24,39,.08) !important;
    border-bottom: 1px solid rgba(232,133,58,.70) !important;
    box-shadow: 0 22px 60px rgba(17,24,39,.12) !important;
  }
  body.pcgate-pro-store .pcg-nav-dropdown-head strong {
    color: #16191f !important;
  }
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
    color: #5e6470 !important;
    background: #f8f8fa !important;
    border: 1px solid rgba(17,24,39,.09) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
  }
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item strong {
    color: currentColor !important;
    font-weight: 600 !important;
  }
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover,
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:focus-visible {
    color: #16191f !important;
    background: #fff7f0 !important;
    border-color: rgba(232,133,58,.34) !important;
  }
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
    color: #e8853a !important;
    background: #fff4ea !important;
    border-color: rgba(232,133,58,.44) !important;
  }
}


/* ----------------------------------------------------------------------------
   V11: Services page light/white alignment refinements
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-services-page .pcg-catalog-hero,
body.pcgate-pro-store .pcg-services-page .pcg-services-overview,
body.pcgate-pro-store .pcg-services-page .pcg-service-stack-section,
body.pcgate-pro-store .pcg-services-page .pcg-section {
  background: #fbfbfc !important;
}
body.pcgate-pro-store .pcg-service-story,
body.pcgate-pro-store .pcg-service-detail,
body.pcgate-pro-store .pcg-services-cta {
  background: #ffffff !important;
  border: 1px solid rgba(17,24,39,.10) !important;
  box-shadow: 0 10px 30px rgba(17,24,39,.06) !important;
  color: #16191f !important;
}
body.pcgate-pro-store .pcg-service-detail {
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
}
body.pcgate-pro-store .pcg-service-detail h2,
body.pcgate-pro-store .pcg-service-story h2,
body.pcgate-pro-store .pcg-service-feature-card h3,
body.pcgate-pro-store .pcg-service-card h3 {
  color: #16191f !important;
}
body.pcgate-pro-store .pcg-service-detail p,
body.pcgate-pro-store .pcg-service-story p,
body.pcgate-pro-store .pcg-service-feature-card p,
body.pcgate-pro-store .pcg-service-card p,
body.pcgate-pro-store .pcg-service-detail ul,
body.pcgate-pro-store .pcg-service-detail li {
  color: #5b6470 !important;
}
body.pcgate-pro-store .pcg-service-detail .pcg-service-index,
body.pcgate-pro-store .pcg-service-story .pcg-eyebrow,
body.pcgate-pro-store .pcg-services-page .pcg-eyebrow {
  color: #e8853a !important;
}
body.pcgate-pro-store .pcg-service-lead {
  color: #b86322 !important;
}
body.pcgate-pro-store .pcg-service-feature-card.is-dark {
  background: linear-gradient(145deg, #fff 0%, #fff7ef 100%) !important;
}
@media (max-width: 980px) {
  body.pcgate-pro-store .pcg-service-detail {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* ----------------------------------------------------------------------------
   V12: Refine custom builds services band layout
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-services-band {
  padding-top: 36px !important;
}
body.pcgate-pro-store .pcg-service-story {
  align-items: center !important;
  gap: clamp(28px, 5vw, 84px) !important;
  padding: clamp(34px, 5vw, 54px) !important;
  border-radius: 26px !important;
}
body.pcgate-pro-store .pcg-service-story > div {
  align-self: center;
}
body.pcgate-pro-store .pcg-service-story h2 {
  margin: 10px 0 0 !important;
  max-width: 540px;
  line-height: 1.08 !important;
}
body.pcgate-pro-store .pcg-service-story p {
  margin: 0 !important;
  max-width: 640px;
  line-height: 1.7 !important;
  font-size: 1.08rem !important;
}
@media (max-width: 980px) {
  body.pcgate-pro-store .pcg-services-band {
    padding-top: 22px !important;
  }
  body.pcgate-pro-store .pcg-service-story {
    padding: 26px 22px !important;
    gap: 18px !important;
  }
  body.pcgate-pro-store .pcg-service-story h2 {
    max-width: none;
  }
  body.pcgate-pro-store .pcg-service-story p {
    max-width: none;
    font-size: 1rem !important;
  }
}


/* ----------------------------------------------------------------------------
   V13: Search field white background refinement
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-navbar-search-box,
body.pcgate-pro-store .pcg-navbar-search input[type="search"],
body.pcgate-pro-store .pcg-navbar-search button[type="submit"] {
  background: #ffffff !important;
}
body.pcgate-pro-store .pcg-navbar-search-box {
  border: 1px solid rgba(17,24,39,.12) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}
body.pcgate-pro-store .pcg-navbar-search input[type="search"] {
  color: #16191f !important;
}
body.pcgate-pro-store .pcg-navbar-search input[type="search"]::placeholder {
  color: #9aa1ab !important;
}


/* ----------------------------------------------------------------------------
   V14: Simplified white mobile menu
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-mobile-menu-panel {
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 70px rgba(17,24,39,.16) !important;
    padding: 14px !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple {
    display: grid !important;
    gap: 10px !important;
    background: transparent !important;
    padding: 0 !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    color: #16191f !important;
    font-family: var(--ff-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(17,24,39,.05) !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:focus-visible {
    background: #fff7ef !important;
    border-color: rgba(232,133,58,.28) !important;
    color: #16191f !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a.is-active {
    background: #fff4ea !important;
    border-color: rgba(232,133,58,.42) !important;
    color: #c86b26 !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-group,
  body.pcgate-pro-store .pcg-mobile-submenu,
  body.pcgate-pro-store .pcg-mobile-cart-menu,
  body.pcgate-pro-store .pcg-mobile-menu-parent {
    all: unset;
  }
}


/* ----------------------------------------------------------------------------
   V15: Animated mobile buy bar refinement
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-mobile-buybar {
    opacity: 0;
    transform: translateY(24px);
    transition: transform .28s ease, opacity .28s ease, box-shadow .2s ease;
    background: rgba(255,255,255,.98) !important;
    border-top: 1px solid rgba(17,24,39,.10) !important;
    box-shadow: 0 -10px 28px rgba(17,24,39,.14) !important;
  }
  body.pcgate-pro-store .pcg-mobile-buybar.is-ready {
    opacity: 1;
    transform: translateY(0);
  }
  body.pcgate-pro-store .pcg-mobile-buybar-price strong {
    font-size: clamp(1.2rem, 5.6vw, 1.52rem) !important;
    color: #111318 !important;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    background: #f3bf32 !important;
    color: #17130d !important;
    border-radius: 8px !important;
    min-height: 50px !important;
    padding: 0 14px !important;
    box-shadow: 0 8px 20px rgba(243,191,50,.28) !important;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button:hover,
  body.pcgate-pro-store .pcg-mobile-buybar-button:focus-visible {
    filter: brightness(.98);
    box-shadow: 0 10px 24px rgba(243,191,50,.32) !important;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button.is-pressing,
  body.pcgate-pro-store .pcg-mobile-buybar-button:active {
    transform: scale(.985);
  }
  body.pcgate-pro-store .pcg-mobile-buybar-button > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  body.pcgate-pro-store .pcg-mobile-buybar-icon svg * {
    stroke: currentColor;
    fill: none;
  }
}


/* ----------------------------------------------------------------------------
   V16: Mobile header — hamburger left, PCGate centered, cart visible right
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-mobile-header-cart {
  display: none;
}
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-nav-wrap {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    align-items: center !important;
    gap: 10px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    display: inline-flex !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #f3bf32 !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    color: #20242a !important;
    box-shadow: none !important;
  }

  body.pcgate-pro-store .pcg-brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  body.pcgate-pro-store .pcg-brand-lockup-header {
    justify-content: center !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    background: #ffffff !important;
    color: #263bff !important;
    box-shadow: none !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-icon-svg,
  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-icon-svg svg {
    width: 22px !important;
    height: 22px !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-count {
    top: -4px !important;
    right: -4px !important;
    border-color: #ffffff !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-count-empty {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-links,
  body.pcgate-pro-store .pcg-nav-actions {
    display: none !important;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store .pcg-brandmark {
    width: 34px !important;
    height: 34px !important;
  }
  body.pcgate-pro-store .pcg-brand-copy strong {
    font-size: .98rem !important;
  }
}


/* ----------------------------------------------------------------------------
   V17: Ultra-simple mobile menu + ultra-simple desktop products dropdown
   ---------------------------------------------------------------------------- */

/* Desktop products menu: plain white dropdown, text links only — no cards. */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-nav-dropdown-panel {
    background: #ffffff !important;
    border: 0 !important;
    border-top: 1px solid rgba(17,24,39,.08) !important;
    border-bottom: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 0 !important;
    box-shadow: 0 16px 36px rgba(17,24,39,.08) !important;
    padding: 24px var(--gut) 28px !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head {
    max-width: min(920px, calc(100vw - 2 * var(--gut))) !important;
    margin: 0 auto 10px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(17,24,39,.08) !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head span,
  body.pcgate-pro-store .pcg-nav-dropdown-head em {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-head strong {
    color: #16191f !important;
    font-family: var(--ff-body) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-grid {
    max-width: min(920px, calc(100vw - 2 * var(--gut))) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    color: #3b4149 !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item + .pcg-nav-dropdown-item {
    border-left: 1px solid rgba(17,24,39,.08) !important;
  }

  body.pcgate-pro-store .pcg-drop-code,
  body.pcgate-pro-store .pcg-nav-dropdown-item em {
    display: none !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-item strong {
    color: currentColor !important;
    font-family: var(--ff-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover,
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:focus-visible {
    background: transparent !important;
    border-color: rgba(17,24,39,.08) !important;
    color: #e8853a !important;
    transform: none !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
    background: transparent !important;
    border-color: rgba(17,24,39,.08) !important;
    color: #e8853a !important;
  }
}

/* Mobile header: force one clean row like the reference. */
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(17,24,39,.08) !important;
  }

  body.pcgate-pro-store .pcg-nav-wrap {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 64px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-toggle {
    position: static !important;
    inset: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 8px !important;
    background: #f3bf32 !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #20242a !important;
  }

  body.pcgate-pro-store .pcg-brand {
    position: static !important;
    inset: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    margin: 0 !important;
    width: auto !important;
    max-width: 100% !important;
  }

  body.pcgate-pro-store .pcg-brand-lockup-header {
    justify-content: center !important;
    gap: 8px !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart {
    position: relative !important;
    inset: auto !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #242b35 !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 4px !important;
    top: -1px !important;
    right: -2px !important;
    border: 2px solid #fff !important;
    border-radius: 999px !important;
    background: #f3bf32 !important;
    color: #17130d !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-count-empty {
    display: inline-flex !important;
  }

  body.pcgate-pro-store .pcg-mobile-header-cart .pcg-cart-count-empty::before {
    content: "0";
  }

  /* Mobile menu wrapper: pure white, plain text rows, no cards. */
  body.pcgate-pro-store .pcg-mobile-menu-panel {
    background: #ffffff !important;
    color: #16191f !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 42px rgba(17,24,39,.12) !important;
    padding: 8px 16px !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 2px !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17,24,39,.08) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #16191f !important;
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:last-child {
    border-bottom: 0 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:focus-visible {
    background: #ffffff !important;
    color: #e8853a !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a.is-active {
    background: #ffffff !important;
    color: #e8853a !important;
  }
}

@media (max-width: 420px) {
  body.pcgate-pro-store .pcg-brand-copy strong {
    font-size: .94rem !important;
  }
  body.pcgate-pro-store .pcg-brandmark {
    width: 32px !important;
    height: 32px !important;
  }
}


/* ----------------------------------------------------------------------------
   V18: Mobile menu viewport fix + fully white simple menu
   ---------------------------------------------------------------------------- */
@media (min-width: 961px) {
  body.pcgate-pro-store .pcg-nav-dropdown-panel {
    background: #ffffff !important;
  }
  body.pcgate-pro-store .pcg-nav-dropdown-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item,
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover,
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:focus-visible,
  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
    background: transparent !important;
    color: #16191f !important;
    border: 0 !important;
    border-left: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: none !important;
  }
  body.pcgate-pro-store .pcg-nav-dropdown-grid .pcg-nav-dropdown-item:first-child {
    border-left: 0 !important;
  }
  body.pcgate-pro-store .pcg-nav-dropdown-item strong {
    color: #16191f !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel {
    position: fixed !important;
    top: 76px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 92px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    background: #ffffff !important;
    color: #16191f !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(17,24,39,.14) !important;
    transform: translateY(-8px) !important;
    opacity: 0 !important;
  }
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a,
  body.pcgate-pro-store .pcg-mobile-menu-inner a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #111318 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:last-child,
  body.pcgate-pro-store .pcg-mobile-menu-inner a:last-child {
    border-bottom: 0 !important;
  }
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:focus-visible,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a.is-active,
  body.pcgate-pro-store .pcg-mobile-menu-inner a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner a:focus-visible,
  body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active {
    background: #ffffff !important;
    color: #111318 !important;
  }
}

@media (max-width: 782px) {
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel,
  html.pcg-mobile-menu-open body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel,
  body.admin-bar.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel {
    top: 58px !important;
    max-height: calc(100vh - 74px) !important;
  }
}


/* V19: Do not surface repetitive add-to-cart success banners on the custom cart page. */
body.pcgate-pro-store .pcg-cart-notices .woocommerce-message {
  display: none !important;
}


/* ----------------------------------------------------------------------------
   V20: Shorter single-product media card
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-media-panel {
  min-height: 260px !important;
  padding: clamp(18px, 3vw, 28px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel img {
  max-height: 260px !important;
}
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-product-media-panel {
    min-height: 220px !important;
    padding: 18px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel img {
    max-height: 220px !important;
  }
}


/* ----------------------------------------------------------------------------
   V21: Single-product add-to-cart spacing + orange button
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-add-to-cart-wrap form.cart {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}
body.pcgate-pro-store .pcg-add-to-cart-wrap .quantity {
  margin: 0 !important;
}
body.pcgate-pro-store .pcg-add-to-cart-wrap .quantity .qty,
body.pcgate-pro-store .pcg-add-to-cart-wrap input.qty {
  width: 100% !important;
}
body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button,
body.pcgate-pro-store .pcg-add-to-cart-wrap button.single_add_to_cart_button,
body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button.alt {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep)) !important;
  color: var(--orange-ink) !important;
  border: 1px solid transparent !important;
  border-radius: var(--r-sm) !important;
  box-shadow: 0 10px 26px var(--orange-glow) !important;
  font-family: var(--ff-body) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  padding: 13px 24px !important;
  min-height: 48px !important;
  width: fit-content !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease !important;
}
body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button:hover,
body.pcgate-pro-store .pcg-add-to-cart-wrap button.single_add_to_cart_button:hover,
body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button.alt:hover {
  color: var(--orange-ink) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px var(--orange-glow) !important;
}
@media (max-width: 700px) {
  body.pcgate-pro-store .pcg-add-to-cart-wrap form.cart {
    gap: 12px !important;
  }
  body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button,
  body.pcgate-pro-store .pcg-add-to-cart-wrap button.single_add_to_cart_button,
  body.pcgate-pro-store .pcg-add-to-cart-wrap .single_add_to_cart_button.alt {
    width: 100% !important;
  }
}


/* ----------------------------------------------------------------------------
   V22: Larger single-product image presentation
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-media-panel {
  min-height: 360px !important;
  padding: clamp(22px, 3.4vw, 34px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel img {
  max-height: 360px !important;
  width: auto !important;
  max-width: 100% !important;
}
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-product-media-panel {
    min-height: 280px !important;
    padding: 20px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel img {
    max-height: 280px !important;
  }
}


/* ----------------------------------------------------------------------------
   V24: Revert to stable product layout and apply safer you.gr-style image panel
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-product-detail-card {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr) !important;
  align-items: start !important;
  gap: clamp(26px, 3.2vw, 42px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(17,24,39,.08) !important;
  border-radius: 22px !important;
  box-shadow: none !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  padding: clamp(20px, 2.6vw, 32px) !important;
  overflow: hidden !important;
}
body.pcgate-pro-store .pcg-product-media-panel img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 82% !important;
  max-height: 82% !important;
  object-fit: contain !important;
}
@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-product-detail-card {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel {
    aspect-ratio: 1 / 1 !important;
    border-radius: 18px !important;
    padding: 18px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel img {
    max-width: 90% !important;
    max-height: 90% !important;
  }
}


/* ----------------------------------------------------------------------------
   V25: Compact checkout hero + larger product image + cart update feedback
   ---------------------------------------------------------------------------- */

/* Checkout / order completion: remove the oversized hero feeling. */
body.pcgate-pro-store .pcg-woo-hero {
  padding-block: 34px 40px !important;
  min-height: 0 !important;
}
body.pcgate-pro-store .pcg-woo-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem) !important;
  line-height: 1.02 !important;
  margin-bottom: 12px !important;
}
body.pcgate-pro-store .pcg-woo-hero > .pcg-container > p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  max-width: 620px !important;
  margin-bottom: 0 !important;
}
body.pcgate-pro-store .pcg-woo-hero .pcg-actions {
  margin-top: 18px !important;
}
body.pcgate-pro-store .pcg-woo-hero .pcg-btn {
  min-height: 46px !important;
  width: auto !important;
  padding-inline: 20px !important;
}

/* Product page: preserve the stable V24 card, but make the product itself ~50% more prominent. */
body.pcgate-pro-store .pcg-product-media-panel {
  padding: clamp(10px, 1.4vw, 18px) !important;
}
body.pcgate-pro-store .pcg-product-media-panel img {
  max-width: 100% !important;
  max-height: 100% !important;
  transform: scale(1.32) !important;
  transform-origin: center center !important;
}

/* Cart quantity auto-update feedback. */
body.pcgate-pro-store .pcg-cart-form.is-updating {
  pointer-events: none;
  opacity: .72;
  transition: opacity .18s ease;
}
body.pcgate-pro-store .pcg-cart-form.is-updating .pcg-update-cart-btn::after {
  content: "…";
  margin-left: 4px;
}

@media (max-width: 960px) {
  body.pcgate-pro-store .pcg-woo-hero {
    padding-block: 24px 28px !important;
  }
  body.pcgate-pro-store .pcg-woo-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.55rem) !important;
  }
  body.pcgate-pro-store .pcg-woo-hero .pcg-actions {
    display: flex !important;
    margin-top: 14px !important;
  }
  body.pcgate-pro-store .pcg-woo-hero .pcg-btn {
    width: auto !important;
    min-height: 44px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel {
    padding: 8px !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel img {
    transform: scale(1.22) !important;
  }
}


/* ----------------------------------------------------------------------------
   V28: Desktop product image magnifier on hover
   ---------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) and (min-width: 961px) {
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom] {
    cursor: zoom-in !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom] img {
    transition: transform .22s ease, transform-origin .06s linear !important;
    will-change: transform, transform-origin;
  }
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom].is-magnifying {
    cursor: zoom-out !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom].is-magnifying img {
    transform: scale(2.05) !important;
  }
}


/* ----------------------------------------------------------------------------
   V29: True cursor-following product magnifier lens
   ---------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) and (min-width: 961px) {
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom] {
    position: relative !important;
    overflow: hidden !important;
    cursor: zoom-in !important;
  }
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom] img,
  body.pcgate-pro-store .pcg-product-media-panel[data-pcg-product-zoom].is-magnifying img {
    transform: none !important;
    transform-origin: center center !important;
    transition: none !important;
    cursor: zoom-in !important;
  }
  body.pcgate-pro-store .pcg-product-magnifier-lens {
    position: absolute;
    z-index: 8;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.96);
    outline: 1px solid rgba(17,24,39,.16);
    background-color: #fff;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(.94);
    box-shadow: 0 14px 36px rgba(17,24,39,.20);
    transition: opacity .12s ease, transform .12s ease, visibility .12s ease;
  }
  body.pcgate-pro-store .pcg-product-magnifier-lens.is-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}
@media (max-width: 960px), (hover: none), (pointer: coarse) {
  body.pcgate-pro-store .pcg-product-magnifier-lens {
    display: none !important;
  }
}


/* ----------------------------------------------------------------------------
   V30: Business services replacement — clean light service grid
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-business-services-page {
  background: #ffffff !important;
}
body.pcgate-pro-store .pcg-business-services-hero {
  padding-block: clamp(42px, 6vw, 76px) !important;
  background: #ffffff !important;
  text-align: center;
}
body.pcgate-pro-store .pcg-business-services-hero .pcg-container {
  max-width: 860px;
}
body.pcgate-pro-store .pcg-business-services-hero h1 {
  margin: 10px 0 14px !important;
  color: #16191f !important;
  font-size: clamp(2.15rem, 5vw, 4rem) !important;
}
body.pcgate-pro-store .pcg-business-services-hero p {
  max-width: 720px;
  margin: 0 auto !important;
  color: #626b77 !important;
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
  line-height: 1.7 !important;
}
body.pcgate-pro-store .pcg-business-services-section {
  padding-top: 18px !important;
  padding-bottom: clamp(54px, 7vw, 90px) !important;
  background: #ffffff !important;
}
body.pcgate-pro-store .pcg-business-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
body.pcgate-pro-store .pcg-business-service-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(17,24,39,.045);
}
body.pcgate-pro-store .pcg-business-service-card.is-wide {
  grid-column: 1 / -1;
}
body.pcgate-pro-store .pcg-business-service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8853a;
  color: #ffffff;
}
body.pcgate-pro-store .pcg-business-service-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
body.pcgate-pro-store .pcg-business-service-copy h2 {
  margin: 0 0 8px !important;
  color: #16191f !important;
  font-family: var(--ff-body) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: .01em !important;
}
body.pcgate-pro-store .pcg-business-service-copy p {
  margin: 0 !important;
  color: #626b77 !important;
  font-size: .92rem !important;
  line-height: 1.62 !important;
}
body.pcgate-pro-store .pcg-business-services-contact {
  background: #fafafa !important;
}
@media (max-width: 760px) {
  body.pcgate-pro-store .pcg-business-services-hero {
    padding-block: 34px 28px !important;
    text-align: left;
  }
  body.pcgate-pro-store .pcg-business-services-hero p {
    margin-left: 0 !important;
  }
  body.pcgate-pro-store .pcg-business-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body.pcgate-pro-store .pcg-business-service-card,
  body.pcgate-pro-store .pcg-business-service-card.is-wide {
    grid-column: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 14px;
  }
  body.pcgate-pro-store .pcg-business-service-icon {
    width: 48px;
    height: 48px;
  }
  body.pcgate-pro-store .pcg-business-service-icon svg {
    width: 26px;
    height: 26px;
  }
  body.pcgate-pro-store .pcg-business-service-copy h2 {
    font-size: .9rem !important;
  }
  body.pcgate-pro-store .pcg-business-service-copy p {
    font-size: .86rem !important;
  }
}


/* ============================================================================
   PCGATE V31 — #222222 DARK COMMERCE PASS
   The complete storefront is darkened to #222222. Product image wells remain
   white intentionally so product photography keeps its clean ecommerce look.
   ============================================================================ */
body.pcgate-pro-store,
body.pcgate-pro-store main,
body.pcgate-pro-store .pcg-section,
body.pcgate-pro-store .pcg-section:nth-of-type(even),
body.pcgate-pro-store .pcg-catalog-section,
body.pcgate-pro-store .pcg-product-detail-section,
body.pcgate-pro-store .pcg-woo-section,
body.pcgate-pro-store .pcg-business-services-page,
body.pcgate-pro-store .pcg-business-services-hero,
body.pcgate-pro-store .pcg-business-services-section,
body.pcgate-pro-store .pcg-business-services-contact,
body.pcgate-pro-store .pcg-services-page,
body.pcgate-pro-store .pcg-services-overview,
body.pcgate-pro-store .pcg-service-stack-section,
body.pcgate-pro-store .pcg-services-band,
body.pcgate-pro-store .pcg-contact-section,
body.pcgate-pro-store .pcg-contact-band,
body.pcgate-pro-store .pcg-footer {
  background: #222222 !important;
  color: #f5f5f5 !important;
}

body.pcgate-pro-store h1,
body.pcgate-pro-store h2,
body.pcgate-pro-store h3,
body.pcgate-pro-store h4,
body.pcgate-pro-store strong,
body.pcgate-pro-store label,
body.pcgate-pro-store a {
  color: #f5f5f5;
}
body.pcgate-pro-store p,
body.pcgate-pro-store li,
body.pcgate-pro-store .pcg-product-lead,
body.pcgate-pro-store .pcg-business-service-copy p {
  color: #c7cbd2 !important;
}

/* Header + navigation */
body.pcgate-pro-store .pcg-header {
  background: rgba(34,34,34,.98) !important;
  border-bottom-color: rgba(255,255,255,.10) !important;
  box-shadow: 0 4px 22px rgba(0,0,0,.26) !important;
}
body.pcgate-pro-store .pcg-nav-links a,
body.pcgate-pro-store .pcg-nav-actions a,
body.pcgate-pro-store .pcg-mobile-menu-toggle,
body.pcgate-pro-store .pcg-mobile-header-cart {
  color: #f5f5f5 !important;
}

/* Search — explicitly requested to be #222222. */
body.pcgate-pro-store .pcg-navbar-search-box,
body.pcgate-pro-store .pcg-navbar-search input[type="search"],
body.pcgate-pro-store .pcg-navbar-search button[type="submit"],
body.pcgate-pro-store .pcg-live-search-results,
body.pcgate-pro-store .pcg-live-search-head,
body.pcgate-pro-store .pcg-live-search-item,
body.pcgate-pro-store .pcg-live-search-all,
body.pcgate-pro-store .pcg-live-search-empty,
body.pcgate-pro-store .pcg-live-search-loading {
  background: #222222 !important;
  color: #f5f5f5 !important;
  border-color: rgba(255,255,255,.12) !important;
}
body.pcgate-pro-store .pcg-navbar-search input[type="search"]::placeholder {
  color: #8f96a0 !important;
}
body.pcgate-pro-store .pcg-navbar-search-icon { color: #b7bdc7 !important; }

/* Desktop products dropdown + mobile menu */
body.pcgate-pro-store .pcg-nav-dropdown-panel,
body.pcgate-pro-store .pcg-nav-dropdown-panel::before,
body.pcgate-pro-store .pcg-mobile-menu-panel,
body.pcgate-pro-store .pcg-mobile-menu-inner,
body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple,
body.pcgate-pro-store .pcg-mobile-menu-group,
body.pcgate-pro-store .pcg-mobile-menu-inner a,
body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a,
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
  background: #222222 !important;
  color: #f5f5f5 !important;
  border-color: rgba(255,255,255,.11) !important;
  box-shadow: none !important;
}
body.pcgate-pro-store .pcg-nav-dropdown-item strong,
body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active,
body.pcgate-pro-store .pcg-mobile-menu-inner a:hover {
  color: #f5f5f5 !important;
}
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item:hover,
body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item.is-active {
  background: #222222 !important;
  color: var(--orange-soft) !important;
}

/* Heroes */
body.pcgate-pro-store .pcg-catalog-hero,
body.pcgate-pro-store .pcg-woo-hero,
body.pcgate-pro-store .pcg-home-hero {
  background: #222222 !important;
  border-color: rgba(255,255,255,.10) !important;
}
body.pcgate-pro-store .pcg-home-hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #f5f5f5 !important;
  color: #f5f5f5 !important;
}

/* Every commerce/content card and panel is #222222. */
body.pcgate-pro-store .pcg-category-card,
body.pcgate-pro-store .pcg-product-card,
body.pcgate-pro-store .pcg-service-card,
body.pcgate-pro-store .pcg-service-feature-card,
body.pcgate-pro-store .pcg-service-detail,
body.pcgate-pro-store .pcg-service-story,
body.pcgate-pro-store .pcg-services-cta,
body.pcgate-pro-store .pcg-business-service-card,
body.pcgate-pro-store .pcg-contact-card,
body.pcgate-pro-store .pcg-contact-panel,
body.pcgate-pro-store .pcg-filter-panel,
body.pcgate-pro-store .pcg-cart-card,
body.pcgate-pro-store .pcg-summary-card,
body.pcgate-pro-store .pcg-checkout-shell,
body.pcgate-pro-store .pcg-woo-shell,
body.pcgate-pro-store .pcg-product-summary-panel,
body.pcgate-pro-store .pcg-product-description,
body.pcgate-pro-store .pcg-product-specs,
body.pcgate-pro-store .pcg-spec-grid,
body.pcgate-pro-store .pcg-product-help-box,
body.pcgate-pro-store .pcg-summary-mini-help,
body.pcgate-pro-store .pcg-empty,
body.pcgate-pro-store .woocommerce-checkout-review-order,
body.pcgate-pro-store #order_review,
body.pcgate-pro-store #payment,
body.pcgate-pro-store #payment ul.payment_methods,
body.pcgate-pro-store #payment div.payment_box,
body.pcgate-pro-store .woocommerce-message,
body.pcgate-pro-store .woocommerce-info,
body.pcgate-pro-store .woocommerce-error {
  background: #222222 !important;
  color: #f5f5f5 !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.20) !important;
}
body.pcgate-pro-store .pcg-category-card.pcg-card-dark,
body.pcgate-pro-store .pcg-service-feature-card.is-dark,
body.pcgate-pro-store .pcg-services-orbit {
  background: #222222 !important;
  color: #f5f5f5 !important;
}

/* Inputs / selects / coupon / checkout fields */
body.pcgate-pro-store input:not([type="checkbox"]):not([type="radio"]),
body.pcgate-pro-store textarea,
body.pcgate-pro-store select,
body.pcgate-pro-store .woocommerce form .form-row input.input-text,
body.pcgate-pro-store .woocommerce form .form-row textarea,
body.pcgate-pro-store .select2-container--default .select2-selection--single,
body.pcgate-pro-store .select2-dropdown,
body.pcgate-pro-store .select2-search__field {
  background: #222222 !important;
  color: #f5f5f5 !important;
  border-color: rgba(255,255,255,.14) !important;
}
body.pcgate-pro-store input::placeholder,
body.pcgate-pro-store textarea::placeholder { color: #8d949e !important; }
body.pcgate-pro-store .select2-container--default .select2-selection--single .select2-selection__rendered,
body.pcgate-pro-store .select2-results__option { color: #f5f5f5 !important; }
body.pcgate-pro-store .select2-results__option--highlighted { background: #333333 !important; }
body.pcgate-pro-store #payment div.payment_box::before { border-bottom-color: #222222 !important; }

/* Cart / checkout nested wells */
body.pcgate-pro-store .pcg-delivery-option,
body.pcgate-pro-store .pcg-cart-arrival-note,
body.pcgate-pro-store .pcg-summary-discount,
body.pcgate-pro-store .pcg-checkout-summary-stack,
body.pcgate-pro-store .pcg-contact-row,
body.pcgate-pro-store .pcg-active-search-chip {
  background: #222222 !important;
  color: #f5f5f5 !important;
  border-color: rgba(255,255,255,.12) !important;
}

/* V30 business services explicit light rules overridden. */
body.pcgate-pro-store .pcg-business-services-hero h1,
body.pcgate-pro-store .pcg-business-service-copy h2 { color: #f5f5f5 !important; }
body.pcgate-pro-store .pcg-business-services-hero p,
body.pcgate-pro-store .pcg-business-service-copy p { color: #c7cbd2 !important; }

/* IMPORTANT EXCEPTION: product photography stays on white image wells. */
body.pcgate-pro-store .pcg-product-media-panel,
body.pcgate-pro-store .pcg-product-img,
body.pcgate-pro-store .pcg-cart-item-thumb,
body.pcgate-pro-store .pcg-cart-product-img-frame,
body.pcgate-pro-store .pcg-wc-thumb-frame {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: rgba(255,255,255,.18) !important;
}
body.pcgate-pro-store .pcg-product-magnifier-lens { background-color: #ffffff !important; }

/* Payment logos keep their own artwork untouched. */
body.pcgate-pro-store .pcg-pay-icons img { background: transparent !important; }

/* Muted borders/shadows adapted for dark canvas. */
body.pcgate-pro-store hr,
body.pcgate-pro-store .pcg-product-price-row,
body.pcgate-pro-store .pcg-cart-item,
body.pcgate-pro-store .pcg-summary-row,
body.pcgate-pro-store .pcg-spec {
  border-color: rgba(255,255,255,.12) !important;
}


/* ----------------------------------------------------------------------------
   V32: Dark cart icon control + dark cart product thumbnails
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-cart,
body.pcgate-pro-store .pcg-icon-cart-link,
body.pcgate-pro-store .pcg-mobile-header-cart {
  background: #222222 !important;
  background-color: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: none !important;
}
body.pcgate-pro-store .pcg-cart:hover,
body.pcgate-pro-store .pcg-icon-cart-link:hover,
body.pcgate-pro-store .pcg-mobile-header-cart:hover {
  background: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
}
body.pcgate-pro-store .pcg-cart svg,
body.pcgate-pro-store .pcg-icon-cart-link svg,
body.pcgate-pro-store .pcg-mobile-header-cart svg,
body.pcgate-pro-store .pcg-cart-icon-svg,
body.pcgate-pro-store .pcg-cart-icon-svg svg {
  color: #ffffff !important;
}
body.pcgate-pro-store .pcg-cart svg path,
body.pcgate-pro-store .pcg-icon-cart-link svg path,
body.pcgate-pro-store .pcg-mobile-header-cart svg path,
body.pcgate-pro-store .pcg-cart-icon-svg svg path {
  stroke: #ffffff !important;
}
body.pcgate-pro-store .pcg-cart svg circle,
body.pcgate-pro-store .pcg-icon-cart-link svg circle,
body.pcgate-pro-store .pcg-mobile-header-cart svg circle,
body.pcgate-pro-store .pcg-cart-icon-svg svg circle {
  fill: #ffffff !important;
}
body.pcgate-pro-store .pcg-cart-count {
  border-color: #222222 !important;
}

/* Cart product image wells should match the dark cart, not stay white. */
body.pcgate-pro-store .pcg-cart-item-thumb,
body.pcgate-pro-store .pcg-cart-item-thumb a,
body.pcgate-pro-store .pcg-cart-product-img-frame,
body.pcgate-pro-store .pcg-wc-thumb-frame {
  background: #222222 !important;
  background-color: #222222 !important;
  border-color: rgba(255,255,255,.14) !important;
}
body.pcgate-pro-store .pcg-cart-item-thumb img,
body.pcgate-pro-store .pcg-cart-product-img-frame img,
body.pcgate-pro-store .pcg-wc-thumb-frame img {
  background: transparent !important;
  background-color: transparent !important;
}


/* ----------------------------------------------------------------------------
   V33: Keep cart control permanently in its hovered visual state
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-cart,
body.pcgate-pro-store .pcg-icon-cart-link,
body.pcgate-pro-store .pcg-mobile-header-cart {
  background: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
  transform: translateY(-1px) !important;
}
body.pcgate-pro-store .pcg-cart:hover,
body.pcgate-pro-store .pcg-cart:focus-visible,
body.pcgate-pro-store .pcg-icon-cart-link:hover,
body.pcgate-pro-store .pcg-icon-cart-link:focus-visible,
body.pcgate-pro-store .pcg-mobile-header-cart:hover,
body.pcgate-pro-store .pcg-mobile-header-cart:focus-visible {
  background: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
  transform: translateY(-1px) !important;
}


/* ----------------------------------------------------------------------------
   V34: Restore visible cart product photography on white thumbnail wells
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-cart-item-thumb,
body.pcgate-pro-store .pcg-cart-item-thumb a,
body.pcgate-pro-store .pcg-cart-product-img-frame,
body.pcgate-pro-store .pcg-wc-thumb-frame {
  background-color: #ffffff !important;
  border-color: rgba(255,255,255,.24) !important;
}
body.pcgate-pro-store .pcg-cart-item-thumb {
  overflow: hidden !important;
  border-radius: 10px !important;
}
body.pcgate-pro-store .pcg-cart-item-thumb a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.pcgate-pro-store .pcg-cart-item-thumb img.pcg-cart-product-img,
body.pcgate-pro-store .pcg-cart-product-img {
  display: block !important;
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  padding: 4px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #ffffff !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  filter: none !important;
}
@container (max-width: 700px) {
  body.pcgate-pro-store .pcg-cart-item-thumb img.pcg-cart-product-img,
  body.pcgate-pro-store .pcg-cart-product-img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }
}
@container (max-width: 460px) {
  body.pcgate-pro-store .pcg-cart-item-thumb img.pcg-cart-product-img,
  body.pcgate-pro-store .pcg-cart-product-img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
}


/* ----------------------------------------------------------------------------
   V35: Force desktop cart control dark over legacy white header rule
   ---------------------------------------------------------------------------- */
body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link.pcg-icon-cart-link,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-cart.pcg-desktop-cart-link,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-cart-link.pcg-icon-cart-link {
  background: #222222 !important;
  background-color: #222222 !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link.pcg-icon-cart-link:hover,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link.pcg-icon-cart-link:focus-visible,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-cart.pcg-desktop-cart-link:hover,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-cart.pcg-desktop-cart-link:focus-visible {
  background: #222222 !important;
  background-color: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
}

body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link .pcg-cart-icon,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link .pcg-cart-icon-svg,
body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link svg {
  color: #ffffff !important;
}

body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link svg path {
  stroke: #ffffff !important;
}

body.pcgate-pro-store .pcg-nav-actions > a.pcg-desktop-cart-link svg circle {
  fill: #ffffff !important;
}


/* ----------------------------------------------------------------------------
   V36: Full-screen mobile menu below a permanently visible navbar
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  /* Keep the navbar/header above the opened full-screen menu. */
  html body.pcgate-pro-store .pcg-header,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-header,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    position: sticky !important;
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
    z-index: 10020 !important;
    background: #222222 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }

  /* The menu occupies every pixel below the navbar. */
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    position: fixed !important;
    top: calc(var(--pcg-wp-adminbar-offset, 0px) + var(--pcg-mobile-header-height, 64px)) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 18px 22px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #222222 !important;
    background-color: #222222 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #f5f5f5 !important;
    z-index: 10010 !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-panel {
    transform: translateY(-10px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform .22s ease, opacity .22s ease !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* No white cards, no orange cards: just clean rows on #222222. */
  body.pcgate-pro-store .pcg-mobile-menu-inner,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #222222 !important;
    background-color: #222222 !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a,
  body.pcgate-pro-store .pcg-mobile-menu-inner a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner a:focus-visible,
  body.pcgate-pro-store .pcg-mobile-menu-inner a.is-active,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:hover,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:focus-visible,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a.is-active {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 62px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    background: #222222 !important;
    background-color: #222222 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--ff-body) !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
  }

  body.pcgate-pro-store .pcg-mobile-menu-inner a:last-child,
  body.pcgate-pro-store .pcg-mobile-menu-inner.pcg-mobile-menu-simple a:last-child {
    border-bottom: 0 !important;
  }

  /* Keep header controls readable while the menu is open. */
  body.pcgate-pro-store .pcg-mobile-menu-toggle,
  body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open,
  body.pcgate-pro-store .pcg-mobile-header-cart {
    z-index: 10030 !important;
  }
}


/* ----------------------------------------------------------------------------
   V37: Repair mobile menu + dark hero/service text consistency
   ---------------------------------------------------------------------------- */

/* Force all hero canvases dark, including legacy white-theme overrides. */
html body.pcgate-pro-store .pcg-catalog-hero,
html body.pcgate-pro-store .pcg-home-hero,
html body.pcgate-pro-store .pcg-woo-hero,
html body.pcgate-pro-store .pcg-business-services-hero {
  background: #222222 !important;
  background-color: #222222 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.10) !important;
}
html body.pcgate-pro-store .pcg-catalog-hero h1,
html body.pcgate-pro-store .pcg-home-hero h1,
html body.pcgate-pro-store .pcg-woo-hero h1,
html body.pcgate-pro-store .pcg-business-services-hero h1,
html body.pcgate-pro-store .pcg-catalog-hero h2,
html body.pcgate-pro-store .pcg-woo-hero h2 {
  background: none !important;
  color: #ffffff !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}
html body.pcgate-pro-store .pcg-catalog-hero > .pcg-container > p,
html body.pcgate-pro-store .pcg-home-hero > .pcg-container > p,
html body.pcgate-pro-store .pcg-woo-hero > .pcg-container > p,
html body.pcgate-pro-store .pcg-business-services-hero p {
  color: #ffffff !important;
}
html body.pcgate-pro-store .pcg-catalog-hero::before,
html body.pcgate-pro-store .pcg-home-hero::before {
  opacity: .22 !important;
}

/* Homepage services: headings were inheriting legacy dark-on-light colors. */
html body.pcgate-pro-store .pcg-services-grid .pcg-service-card,
html body.pcgate-pro-store .pcg-services-grid .pcg-service-card:hover {
  background: #222222 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.12) !important;
}
html body.pcgate-pro-store .pcg-services-grid .pcg-service-card h3 {
  color: #ffffff !important;
}
html body.pcgate-pro-store .pcg-services-grid .pcg-service-card p {
  color: #c7cbd2 !important;
}

@media (max-width: 960px) {
  /* Header remains visible above the menu. */
  html body.pcgate-pro-store .pcg-header,
  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-header,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-header {
    position: sticky !important;
    top: var(--pcg-wp-adminbar-offset, 0px) !important;
    z-index: 10020 !important;
    background: #222222 !important;
    overflow: visible !important;
  }

  /* The menu now lives outside the filtered/sticky header, so fixed truly means viewport-fixed. */
  html body.pcgate-pro-store #pcg-mobile-menu-panel {
    position: fixed !important;
    top: calc(var(--pcg-wp-adminbar-offset, 0px) + var(--pcg-mobile-header-height, 64px)) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 18px 22px 28px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #222222 !important;
    background-color: #222222 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 10010 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store #pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open #pcg-mobile-menu-panel,
  body.pcgate-pro-store #pcg-mobile-menu-panel.is-open,
  body.pcgate-pro-store #pcg-mobile-menu-panel[aria-hidden="false"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  body.pcgate-pro-store #pcg-mobile-menu-panel[hidden] {
    display: none !important;
  }

  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner,
  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner.pcg-mobile-menu-simple {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #222222 !important;
  }

  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner a,
  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner a:hover,
  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner a:focus-visible,
  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner a.is-active {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 62px !important;
    padding: 0 4px !important;
    margin: 0 !important;
    background: #222222 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: uppercase !important;
  }
  body.pcgate-pro-store #pcg-mobile-menu-panel .pcg-mobile-menu-inner a:last-child {
    border-bottom: 0 !important;
  }
}


/* ----------------------------------------------------------------------------
   V38: Services hero exact dark treatment
   ---------------------------------------------------------------------------- */
html body.pcgate-pro-store .pcg-business-services-page .pcg-business-services-hero {
  background: #222222 !important;
  background-color: #222222 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
html body.pcgate-pro-store .pcg-business-services-page .pcg-business-services-hero::before,
html body.pcgate-pro-store .pcg-business-services-page .pcg-business-services-hero::after {
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}
html body.pcgate-pro-store .pcg-business-services-page .pcg-business-services-hero h1 {
  margin-top: 0 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: none !important;
}
html body.pcgate-pro-store .pcg-business-services-page .pcg-business-services-hero p {
  color: #ffffff !important;
  opacity: .92 !important;
}


/* ----------------------------------------------------------------------------
   V39: Final dark-theme text visibility fixes
   ---------------------------------------------------------------------------- */

/* Products page / Products dropdown titles must stay white on #222222. */
html body.pcgate-pro-store .pcg-catalog-hero h1,
html body.pcgate-pro-store .pcg-catalog-hero h2,
html body.pcgate-pro-store .pcg-nav-dropdown-head strong,
html body.pcgate-pro-store .pcg-nav-dropdown-panel strong,
html body.pcgate-pro-store .pcg-nav-dropdown-panel .pcg-nav-dropdown-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: none !important;
}

/* Single-product description heading + all description copy readable on dark cards. */
html body.pcgate-pro-store .pcg-product-description,
html body.pcgate-pro-store .pcg-product-description h1,
html body.pcgate-pro-store .pcg-product-description h2,
html body.pcgate-pro-store .pcg-product-description h3,
html body.pcgate-pro-store .pcg-product-description h4,
html body.pcgate-pro-store .pcg-product-description p,
html body.pcgate-pro-store .pcg-product-description li,
html body.pcgate-pro-store .pcg-product-description span,
html body.pcgate-pro-store .pcg-product-description div,
html body.pcgate-pro-store .pcg-product-description strong {
  color: #f5f5f5 !important;
  -webkit-text-fill-color: #f5f5f5 !important;
}

html body.pcgate-pro-store .pcg-product-description a {
  color: #f28a3a !important;
  -webkit-text-fill-color: #f28a3a !important;
}

/* Also cover WooCommerce-native description containers if they render. */
html body.pcgate-pro-store .woocommerce-Tabs-panel--description,
html body.pcgate-pro-store .woocommerce-Tabs-panel--description p,
html body.pcgate-pro-store .woocommerce-Tabs-panel--description li,
html body.pcgate-pro-store .woocommerce-product-details__short-description,
html body.pcgate-pro-store .woocommerce-product-details__short-description p {
  color: #f5f5f5 !important;
  -webkit-text-fill-color: #f5f5f5 !important;
}


/* ----------------------------------------------------------------------------
   V40: Products dropdown attached directly to navbar + reliable hover travel
   ---------------------------------------------------------------------------- */
@media (min-width: 961px) {
  /*
   * Anchor the mega menu to the actual navbar wrapper instead of the viewport.
   * This removes the dead visual/hover gap and keeps the dropdown attached to
   * the Products trigger at every desktop width.
   */
  body.pcgate-pro-store .pcg-nav-wrap {
    position: relative !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown {
    position: static !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-panel {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    min-width: 100vw !important;
    margin: 0 !important;
    transform: translate(-50%, 0) !important;
    padding-top: 22px !important;
    background: #222222 !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    border-bottom: 1px solid rgba(232,133,58,.92) !important;
    z-index: 500 !important;
  }

  /*
   * Invisible hover bridge occupies the exact seam between trigger/navbar
   * and panel. It prevents the menu closing while the pointer moves down
   * toward Laptops / Gaming PCs / Screens / Accessories.
   */
  body.pcgate-pro-store .pcg-nav-dropdown-trigger::before {
    content: "" !important;
    position: absolute !important;
    left: -14px !important;
    right: -14px !important;
    top: 100% !important;
    height: 22px !important;
    background: transparent !important;
    pointer-events: auto !important;
    z-index: 501 !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown:hover .pcg-nav-dropdown-panel,
  body.pcgate-pro-store .pcg-nav-dropdown:focus-within .pcg-nav-dropdown-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-panel,
  body.pcgate-pro-store .pcg-nav-dropdown-panel * {
    pointer-events: auto;
  }

  body.pcgate-pro-store .pcg-nav-dropdown-grid {
    position: relative !important;
    z-index: 2 !important;
  }

  body.pcgate-pro-store .pcg-nav-links .pcg-nav-dropdown-item {
    cursor: pointer !important;
  }
}


/* ----------------------------------------------------------------------------
   V41: Smaller orange mobile hamburger + dark mobile buy bar
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {

  /* Hamburger ~30% smaller, using the PCGate orange. */
  html body.pcgate-pro-store .pcg-mobile-menu-toggle,
  html body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border-radius: 9px !important;
    background: #e8853a !important;
    background-color: #e8853a !important;
    color: #ffffff !important;
    border: 1px solid #e8853a !important;
    box-shadow: none !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle:hover,
  html body.pcgate-pro-store .pcg-mobile-menu-toggle:focus-visible {
    background: #e8853a !important;
    background-color: #e8853a !important;
    color: #ffffff !important;
    border-color: #e8853a !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines {
    width: 18px !important;
    height: 16px !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span {
    width: 18px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
  }

  /* Sticky mobile product purchase bar. */
  html body.pcgate-pro-store .pcg-mobile-buybar,
  html body.pcgate-pro-store .pcg-mobile-buybar.is-ready {
    background: #222222 !important;
    background-color: #222222 !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 -10px 28px rgba(0,0,0,.32) !important;
  }

  html body.pcgate-pro-store .pcg-mobile-buybar-price,
  html body.pcgate-pro-store .pcg-mobile-buybar-price > span,
  html body.pcgate-pro-store .pcg-mobile-buybar-price strong,
  html body.pcgate-pro-store .pcg-mobile-buybar-price .woocommerce-Price-amount,
  html body.pcgate-pro-store .pcg-mobile-buybar-price .woocommerce-Price-currencySymbol {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  html body.pcgate-pro-store .pcg-mobile-buybar-button,
  html body.pcgate-pro-store .pcg-mobile-buybar-button:hover,
  html body.pcgate-pro-store .pcg-mobile-buybar-button:focus-visible,
  html body.pcgate-pro-store .pcg-mobile-buybar-button:active {
    background: #e8853a !important;
    background-color: #e8853a !important;
    color: #111111 !important;
    border: 1px solid #e8853a !important;
    box-shadow: 0 8px 20px rgba(232,133,58,.28) !important;
  }

  html body.pcgate-pro-store .pcg-mobile-buybar-button svg,
  html body.pcgate-pro-store .pcg-mobile-buybar-button svg * {
    color: #111111 !important;
    stroke: currentColor !important;
  }
}


/* ----------------------------------------------------------------------------
   V42: Precisely center the smaller mobile hamburger icon
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  html body.pcgate-pro-store .pcg-mobile-menu-toggle,
  html body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines {
    position: relative !important;
    display: block !important;
    width: 18px !important;
    height: 14px !important;
    flex: 0 0 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    inset: auto !important;
    transform: none !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span {
    position: absolute !important;
    left: 50% !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateX(-50%) !important;
    transform-origin: center center !important;
    background: #ffffff !important;
    border-radius: 999px !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(1) {
    top: 1px !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(2) {
    top: 6px !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle .pcg-hamburger-lines span:nth-child(3) {
    top: 11px !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(1) {
    top: 6px !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(2) {
    top: 6px !important;
    opacity: 0 !important;
    transform: translateX(-50%) scaleX(.2) !important;
  }

  html body.pcgate-pro-store .pcg-mobile-menu-toggle.is-open .pcg-hamburger-lines span:nth-child(3) {
    top: 6px !important;
    transform: translateX(-50%) rotate(-45deg) !important;
  }
}


/* ----------------------------------------------------------------------------
   V43: Smooth mobile menu wrapper animation
   ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  html body.pcgate-pro-store .pcg-mobile-menu-panel,
  html body.admin-bar.pcgate-pro-store .pcg-mobile-menu-panel {
    transform-origin: top center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) scale(.985) !important;
    transition:
      opacity .24s ease-out,
      transform .34s cubic-bezier(.16, 1, .3, 1),
      visibility 0s linear .34s !important;
    will-change: transform, opacity !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    transition:
      opacity .24s ease-out,
      transform .34s cubic-bezier(.16, 1, .3, 1),
      visibility 0s linear 0s !important;
  }

  /* Give the menu links a very subtle entrance so the whole wrapper feels fluid. */
  body.pcgate-pro-store .pcg-mobile-menu-inner > a {
    transition:
      background-color .18s ease,
      border-color .18s ease,
      color .18s ease,
      transform .24s ease,
      opacity .24s ease !important;
  }

  html:not(.pcg-mobile-menu-open) body.pcgate-pro-store .pcg-mobile-menu-inner > a {
    opacity: .72 !important;
    transform: translateY(-3px) !important;
  }

  html.pcg-mobile-menu-open body.pcgate-pro-store .pcg-mobile-menu-inner > a,
  body.pcgate-pro-store.pcg-mobile-menu-open .pcg-mobile-menu-inner > a {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pcgate-pro-store .pcg-mobile-menu-panel,
  body.pcgate-pro-store .pcg-mobile-menu-inner > a {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* ============================================================================
   PCGATE V44 — SERVICES-FIRST COMPANY LANDING
   Public shop UI is intentionally absent. WooCommerce remains available only
   in the backend / logged-in manager previews.
   ============================================================================ */

html body.pcgate-pro-store .pcg-landing-nav .pcg-nav-links {
  margin-left: auto !important;
}
html body.pcgate-pro-store .pcg-landing-nav .pcg-mobile-menu-toggle {
  margin-left: auto !important;
}

html body.pcgate-pro-store .pcg-landing-page {
  background: #222222 !important;
  color: #f5f5f5 !important;
}

html body.pcgate-pro-store .pcg-landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0 clamp(68px, 8vw, 112px);
  background:
    radial-gradient(circle at 80% 22%, rgba(232,133,58,.12), transparent 29%),
    #222222 !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
html body.pcgate-pro-store .pcg-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 92%);
}
html body.pcgate-pro-store .pcg-landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}
html body.pcgate-pro-store .pcg-landing-hero-copy {
  max-width: 730px;
}
html body.pcgate-pro-store .pcg-landing-hero-copy h1 {
  margin: 0 0 24px !important;
  max-width: 760px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(2.75rem, 6vw, 5.85rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}
html body.pcgate-pro-store .pcg-landing-hero-copy > p {
  max-width: 660px;
  margin: 0 0 30px !important;
  color: #c7cbd2 !important;
  font-size: clamp(1.03rem, 1.55vw, 1.2rem) !important;
  line-height: 1.72 !important;
}
html body.pcgate-pro-store .pcg-landing-hero .pcg-actions {
  justify-content: flex-start !important;
  gap: 12px !important;
  margin: 0 !important;
}
html body.pcgate-pro-store .pcg-btn-orange {
  background: #e8853a !important;
  border-color: #e8853a !important;
  color: #161616 !important;
  box-shadow: none !important;
}
html body.pcgate-pro-store .pcg-btn-orange:hover {
  background: #f0964d !important;
  border-color: #f0964d !important;
  color: #111111 !important;
  transform: translateY(-1px);
}
html body.pcgate-pro-store .pcg-btn-outline-light {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
html body.pcgate-pro-store .pcg-btn-outline-light:hover {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.38) !important;
  color: #ffffff !important;
}
html body.pcgate-pro-store .pcg-landing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
html body.pcgate-pro-store .pcg-landing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #bfc3ca;
  font-size: .82rem;
  font-weight: 650;
}

/* Hero solution console */
html body.pcgate-pro-store .pcg-solution-console {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: #292929;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
html body.pcgate-pro-store .pcg-solution-console-head,
html body.pcgate-pro-store .pcg-solution-console-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}
html body.pcgate-pro-store .pcg-solution-console-head {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
html body.pcgate-pro-store .pcg-console-brand .pcg-brand-lockup {
  gap: 9px !important;
}
html body.pcgate-pro-store .pcg-console-brand .pcg-brandmark {
  width: 30px !important;
  height: 30px !important;
}
html body.pcgate-pro-store .pcg-console-brand .pcg-brand-copy strong {
  color: #ffffff !important;
  font-size: 1rem !important;
}
html body.pcgate-pro-store .pcg-console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7cbd2;
  font-family: var(--ff-mono);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
html body.pcgate-pro-store .pcg-console-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8853a;
  box-shadow: 0 0 0 4px rgba(232,133,58,.12);
}
html body.pcgate-pro-store .pcg-solution-console-body {
  padding: clamp(26px, 4vw, 38px);
}
html body.pcgate-pro-store .pcg-console-kicker {
  margin-bottom: 14px;
  color: #e8853a;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
html body.pcgate-pro-store .pcg-solution-console-body h2 {
  max-width: 520px;
  margin: 0 0 28px !important;
  color: #ffffff !important;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -.03em !important;
}
html body.pcgate-pro-store .pcg-console-list {
  display: grid;
  gap: 10px;
}
html body.pcgate-pro-store .pcg-console-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas: "icon title" "icon meta";
  gap: 2px 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: #242424;
}
html body.pcgate-pro-store .pcg-console-list > div > span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(232,133,58,.13);
  color: #e8853a;
}
html body.pcgate-pro-store .pcg-console-list svg {
  width: 22px;
  height: 22px;
}
html body.pcgate-pro-store .pcg-console-list strong {
  grid-area: title;
  color: #ffffff !important;
  font-size: .91rem;
}
html body.pcgate-pro-store .pcg-console-list em {
  grid-area: meta;
  color: #92979f;
  font-size: .78rem;
  font-style: normal;
}
html body.pcgate-pro-store .pcg-solution-console-foot {
  border-top: 1px solid rgba(255,255,255,.08);
  color: #777d85;
  font-family: var(--ff-mono);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Shared landing sections */
html body.pcgate-pro-store .pcg-landing-section {
  padding: clamp(68px, 9vw, 112px) 0 !important;
  background: #222222 !important;
}
html body.pcgate-pro-store .pcg-landing-section:nth-of-type(even) {
  background: #1f1f1f !important;
}
html body.pcgate-pro-store .pcg-landing-section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
html body.pcgate-pro-store .pcg-landing-section-head h2,
html body.pcgate-pro-store .pcg-landing-why h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 4.5vw, 3.85rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
}
html body.pcgate-pro-store .pcg-landing-section-head > p,
html body.pcgate-pro-store .pcg-landing-why-copy > p {
  margin: 0 !important;
  color: #aeb3ba !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}
html body.pcgate-pro-store .pcg-landing-section-head-narrow {
  grid-template-columns: minmax(0, 720px);
}

/* Services */
html body.pcgate-pro-store .pcg-landing-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
html body.pcgate-pro-store .pcg-landing-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: #292929;
  color: #ffffff !important;
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease;
}
html body.pcgate-pro-store .pcg-landing-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,133,58,.55);
  background: #2c2c2c;
  color: #ffffff !important;
}
html body.pcgate-pro-store .pcg-landing-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: #e8853a;
  color: #171717;
}
html body.pcgate-pro-store .pcg-landing-service-icon svg {
  width: 26px;
  height: 26px;
}
html body.pcgate-pro-store .pcg-service-index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #696e75;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .12em;
}
html body.pcgate-pro-store .pcg-landing-service-card h3 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.28 !important;
}
html body.pcgate-pro-store .pcg-landing-service-card p {
  margin: 0 0 24px !important;
  color: #9da2aa !important;
  font-size: .9rem !important;
  line-height: 1.62 !important;
}
html body.pcgate-pro-store .pcg-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #e8853a !important;
  font-size: .82rem;
}
html body.pcgate-pro-store .pcg-service-link span {
  transition: transform .2s ease;
}
html body.pcgate-pro-store .pcg-landing-service-card:hover .pcg-service-link span {
  transform: translateX(4px);
}
html body.pcgate-pro-store .pcg-landing-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Why PCGate */
html body.pcgate-pro-store .pcg-landing-why-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
html body.pcgate-pro-store .pcg-landing-why-copy {
  position: sticky;
  top: 112px;
}
html body.pcgate-pro-store .pcg-landing-why-copy > p {
  margin-top: 22px !important;
}
html body.pcgate-pro-store .pcg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #e8853a !important;
  font-weight: 750;
}
html body.pcgate-pro-store .pcg-landing-benefits {
  border-top: 1px solid rgba(255,255,255,.1);
}
html body.pcgate-pro-store .pcg-landing-benefits article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
html body.pcgate-pro-store .pcg-landing-benefits article > span {
  color: #e8853a;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .08em;
}
html body.pcgate-pro-store .pcg-landing-benefits h3 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 1.08rem !important;
}
html body.pcgate-pro-store .pcg-landing-benefits p {
  margin: 0 !important;
  color: #9da2aa !important;
  line-height: 1.62 !important;
  font-size: .91rem !important;
}

/* Process */
html body.pcgate-pro-store .pcg-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
html body.pcgate-pro-store .pcg-process-grid article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: #292929;
}
html body.pcgate-pro-store .pcg-process-grid article > span {
  color: #e8853a;
  font-family: var(--ff-mono);
  font-size: .73rem;
}
html body.pcgate-pro-store .pcg-process-grid h3 {
  margin: 44px 0 10px !important;
  color: #ffffff !important;
  font-size: 1.35rem !important;
}
html body.pcgate-pro-store .pcg-process-grid p {
  margin: 0 !important;
  color: #9da2aa !important;
  line-height: 1.65 !important;
  font-size: .92rem !important;
}

/* Final CTA */
html body.pcgate-pro-store .pcg-landing-contact {
  padding: 0 0 clamp(72px, 9vw, 110px);
  background: #222222 !important;
}
html body.pcgate-pro-store .pcg-landing-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(232,133,58,.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232,133,58,.1), transparent 34%),
    #292929;
}
html body.pcgate-pro-store .pcg-landing-contact-card h2 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: clamp(1.9rem, 4vw, 3.25rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}
html body.pcgate-pro-store .pcg-landing-contact-card p {
  max-width: 690px;
  margin: 0 !important;
  color: #aeb3ba !important;
  line-height: 1.65 !important;
}
html body.pcgate-pro-store .pcg-landing-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}
html body.pcgate-pro-store .pcg-landing-contact-actions .pcg-btn {
  width: 100%;
  justify-content: center;
}

/* Footer no longer carries a store/products column. */
html body.pcgate-pro-store .pcg-company-footer .pcg-footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .7fr)) !important;
}

/* Anchor offset for sticky header. */
html body.pcgate-pro-store #why-pcgate,
html body.pcgate-pro-store #services,
html body.pcgate-pro-store [id^="service-"] {
  scroll-margin-top: 96px;
}

@media (max-width: 1060px) {
  html body.pcgate-pro-store .pcg-landing-hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }
  html body.pcgate-pro-store .pcg-landing-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html body.pcgate-pro-store .pcg-company-footer .pcg-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  html body.pcgate-pro-store .pcg-landing-hero {
    padding-top: 58px;
  }
  html body.pcgate-pro-store .pcg-landing-hero-grid,
  html body.pcgate-pro-store .pcg-landing-section-head,
  html body.pcgate-pro-store .pcg-landing-why-grid,
  html body.pcgate-pro-store .pcg-landing-contact-card {
    grid-template-columns: 1fr !important;
  }
  html body.pcgate-pro-store .pcg-landing-hero-grid {
    gap: 38px;
  }
  html body.pcgate-pro-store .pcg-solution-console {
    max-width: 620px;
  }
  html body.pcgate-pro-store .pcg-landing-section-head {
    align-items: start;
    gap: 18px;
  }
  html body.pcgate-pro-store .pcg-landing-why-copy {
    position: static;
  }
  html body.pcgate-pro-store .pcg-process-grid {
    grid-template-columns: 1fr;
  }
  html body.pcgate-pro-store .pcg-process-grid article {
    min-height: 0;
  }
  html body.pcgate-pro-store .pcg-process-grid h3 {
    margin-top: 28px !important;
  }
  html body.pcgate-pro-store .pcg-landing-contact-actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  html body.pcgate-pro-store .pcg-landing-hero {
    padding: 46px 0 54px;
  }
  html body.pcgate-pro-store .pcg-landing-hero-copy h1 {
    font-size: clamp(2.45rem, 12.8vw, 4rem) !important;
    line-height: 1 !important;
  }
  html body.pcgate-pro-store .pcg-landing-hero-copy > p {
    font-size: .98rem !important;
  }
  html body.pcgate-pro-store .pcg-landing-hero .pcg-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  html body.pcgate-pro-store .pcg-landing-hero .pcg-actions .pcg-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  html body.pcgate-pro-store .pcg-landing-tags {
    margin-top: 22px;
  }
  html body.pcgate-pro-store .pcg-landing-tags span {
    min-height: 32px;
    font-size: .74rem;
  }
  html body.pcgate-pro-store .pcg-solution-console {
    border-radius: 18px;
  }
  html body.pcgate-pro-store .pcg-solution-console-head,
  html body.pcgate-pro-store .pcg-solution-console-foot {
    padding: 14px 15px;
  }
  html body.pcgate-pro-store .pcg-console-status {
    font-size: .58rem;
  }
  html body.pcgate-pro-store .pcg-solution-console-body {
    padding: 22px 16px;
  }
  html body.pcgate-pro-store .pcg-solution-console-body h2 {
    font-size: 1.38rem !important;
  }
  html body.pcgate-pro-store .pcg-console-list > div {
    padding: 11px;
  }
  html body.pcgate-pro-store .pcg-console-list em {
    font-size: .72rem;
  }
  html body.pcgate-pro-store .pcg-landing-section {
    padding: 60px 0 !important;
  }
  html body.pcgate-pro-store .pcg-landing-section-head {
    margin-bottom: 28px;
  }
  html body.pcgate-pro-store .pcg-landing-section-head h2,
  html body.pcgate-pro-store .pcg-landing-why h2 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
  }
  html body.pcgate-pro-store .pcg-landing-services-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  html body.pcgate-pro-store .pcg-landing-service-card {
    min-height: 0;
    padding: 20px;
  }
  html body.pcgate-pro-store .pcg-landing-service-icon {
    margin-bottom: 24px;
  }
  html body.pcgate-pro-store .pcg-landing-benefits article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  html body.pcgate-pro-store .pcg-landing-contact-card {
    padding: 25px 20px;
    border-radius: 18px;
  }
  html body.pcgate-pro-store .pcg-landing-contact-actions {
    flex-direction: column;
  }
  html body.pcgate-pro-store .pcg-company-footer .pcg-footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Reveal animation includes the new landing content. */
html body.pcgate-pro-store .pcg-landing-service-card,
html body.pcgate-pro-store .pcg-process-grid article,
html body.pcgate-pro-store .pcg-landing-benefits article,
html body.pcgate-pro-store .pcg-solution-console {
  will-change: transform, opacity;
}


/* ============================================================================
   PCGATE V45 — CONTACT PAGE GOOGLE MAP
   Map is intentionally scoped to the Contact / Επικοινωνία page only.
   ============================================================================ */
html body.pcgate-pro-store .pcg-contact-map-section {
  padding: 0 0 clamp(72px, 9vw, 110px) !important;
  background: #222222 !important;
}

html body.pcgate-pro-store .pcg-contact-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

html body.pcgate-pro-store .pcg-contact-map-head h2 {
  margin: 4px 0 8px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

html body.pcgate-pro-store .pcg-contact-map-head p {
  margin: 0 !important;
  color: #aeb3ba !important;
  font-size: .98rem !important;
}

html body.pcgate-pro-store .pcg-contact-map-link {
  flex: 0 0 auto;
}

html body.pcgate-pro-store .pcg-contact-map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: #292929;
}

html body.pcgate-pro-store .pcg-contact-map-frame iframe {
  display: block;
  width: 100% !important;
  min-height: 460px;
  border: 0 !important;
}

@media (max-width: 720px) {
  html body.pcgate-pro-store .pcg-contact-map-section {
    padding-bottom: 64px !important;
  }

  html body.pcgate-pro-store .pcg-contact-map-head {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  html body.pcgate-pro-store .pcg-contact-map-link {
    width: 100% !important;
    justify-content: center !important;
  }

  html body.pcgate-pro-store .pcg-contact-map-frame,
  html body.pcgate-pro-store .pcg-contact-map-frame iframe {
    min-height: 360px;
    height: 360px !important;
  }

  html body.pcgate-pro-store .pcg-contact-map-frame {
    border-radius: 17px;
  }
}
