:root {
    --gc-font: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
    --gc-green: #2f8f4e;
    --gc-green-2: #4faa67;
    --gc-green-deep: #163a2a;
    --gc-green-dark: #10291f;
    --gc-lime: #bfdc8d;
  
    --gc-accent: #dce9dd;
    --gc-accent-2: #edf4ee;
  
    --gc-text: #101614;
    --gc-text-soft: rgba(16, 22, 20, 0.72);
    --gc-text-dim: rgba(16, 22, 20, 0.52);
  
    --gc-bg: #f7f8f5;
    --gc-bg-soft: #f1f4ef;
    --gc-surface: rgba(255, 255, 255, 0.78);
    --gc-surface-strong: #ffffff;
    --gc-surface-dark: #15221b;
  
    --gc-line: rgba(22, 58, 42, 0.1);
    --gc-line-strong: rgba(22, 58, 42, 0.18);
  
    --gc-shadow-xs: 0 4px 14px rgba(10, 18, 14, 0.04);
    --gc-shadow-sm: 0 10px 28px rgba(10, 18, 14, 0.06);
    --gc-shadow-md: 0 18px 48px rgba(10, 18, 14, 0.08);
  
    --gc-r-xs: 8px;
    --gc-r-sm: 12px;
    --gc-r-md: 16px;
    --gc-r-lg: 22px;
    --gc-r-xl: 28px;
    --gc-r-pill: 999px;
  
    --gc-max: 1360px;
    --gc-gutter: 22px;
  
    --gc-fast: 140ms;
    --gc-med: 260ms;
    --gc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  
    --gc-safe-b: env(safe-area-inset-bottom, 0px);
  }
  
  @media (max-width: 640px) {
    :root {
      --gc-gutter: 16px;
      --gc-r-lg: 18px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto !important;
    }
  
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: var(--gc-font);
    color: var(--gc-text);
    background:
      radial-gradient(1200px 600px at 0% 0%, rgba(79, 170, 103, 0.08), transparent 55%),
      radial-gradient(1000px 500px at 100% 10%, rgba(22, 58, 42, 0.04), transparent 58%),
      var(--gc-bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
html.gc-menu-open,
body.gc-menu-open {
  overflow: hidden;
  height: 100%;
}

body.gc-menu-open {
  touch-action: none;
}
  
  img,
  svg,
  video,
  iframe {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  iframe {
    width: 100%;
  }
  
  a {
    color: var(--gc-green-deep);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--gc-green);
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  
  :focus-visible {
    outline: 3px solid rgba(47, 143, 78, 0.22);
    outline-offset: 3px;
  }
  
  .gc-container {
    width: min(100%, var(--gc-max));
    margin-inline: auto;
    padding-inline: var(--gc-gutter);
    position: relative;
  }
  
  .gc-content {
    min-height: 40vh;
  }
  
  .gc-visually-hidden,
  .sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
  
  .gc-skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
  }
  
  .gc-skip-link:focus {
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: var(--gc-r-pill);
    background: #fff;
    color: var(--gc-text);
    border: 1px solid var(--gc-line-strong);
  }
  
  .gc-section {
    position: relative;
    padding: 28px 0;
  }
  
  .gc-section--archive {
    padding-top: 34px;
  }
  
  .gc-section__head {
    margin-bottom: 28px;
  }
  
  .gc-section__title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--gc-text);
  }
  
  .gc-section__desc {
    margin: 0;
    max-width: 76ch;
    color: var(--gc-text-soft);
    line-height: 1.7;
    font-size: 15px;
  }
  
  .gc-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }
  
  .gc-empty {
    color: var(--gc-text-soft);
  }
  
  .gc-grid {
    display: grid;
    gap: 18px;
  }
  
  .gc-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gc-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .gc-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  @media (max-width: 1120px) {
    .gc-grid--4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 900px) {
    .gc-section {
      padding: 56px 0;
    }
  
    .gc-grid--2,
    .gc-grid--3,
    .gc-grid--4 {
      grid-template-columns: 1fr;
    }
  
    .gc-section__title {
      letter-spacing: -0.03em;
    }
  }
  
  .gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--gc-r-pill);
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
      transform var(--gc-fast) var(--gc-ease),
      background var(--gc-med) var(--gc-ease),
      color var(--gc-med) var(--gc-ease),
      opacity var(--gc-med) var(--gc-ease);
  }
  
  .gc-btn:hover {
    transform: translateY(-1px);
  }
  
  .gc-btn:active {
    transform: translateY(0);
  }
  
  .gc-btn--primary {
  background: linear-gradient(135deg, #ffb800, #fff000);
      color: #000000;
  }
  
  .gc-btn--primary:hover {
    color: #fff;
    opacity: 0.94;
  }
  
  .gc-btn--outline {
	background: rgba(255, 255, 255, 0.7);
    color: var(--gc-green-deep);
    border: 1px solid rgba(22, 58, 42, 0.12);
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  
  .gc-btn--outline:hover {
    background: #fff;
    color: var(--gc-green);
  }
  
  .gc-btn--wide {
    width: 100%;
  }
  
  .gc-btn--icon {
    inline-size: 48px;
    block-size: 48px;
    padding: 0;
    flex: 0 0 auto;
  }
  
  .gc-btn--icon .gc-ico {
    width: 20px;
    height: 20px;
  }
  
  .gc-link {
    font-weight: 600;
    color: var(--gc-green-deep);
  }
  
  .gc-pill,
  .gc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: var(--gc-r-pill);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(22, 58, 42, 0.08);
    color: rgba(16, 22, 20, 0.84);
    font-size: 13px;
    font-weight: 600;
  }
  
  .gc-pill--soft {
    background: rgba(47, 143, 78, 0.08);
    border-color: rgba(47, 143, 78, 0.14);
    color: var(--gc-green-deep);
  }
  
  .gc-badge--hit {
    background: rgba(47, 143, 78, 0.12);
    color: var(--gc-green-deep);
  }
  
  .gc-badge--sale {
    background: rgba(196, 52, 52, 0.08);
    color: #7b2424;
  }
  
  .gc-badge--new {
    background: rgba(41, 98, 255, 0.08);
    color: #1d49af;
  }
  
  .gc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  
  .gc-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    opacity: 0.36;
  }
  
  /* =========================
     HEADER
     ========================= */
  
  .gc-header {
    position: sticky;
    top: 0;
    z-index: 180;
    background: rgba(247, 248, 245, 0.86);
    border-bottom: 1px solid rgba(22, 58, 42, 0.08);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    transition:
      background-color var(--gc-med) var(--gc-ease),
      box-shadow var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease);
  }
  
  .gc-header.is-compact {
    background: rgba(247, 248, 245, 0.94);
    box-shadow: 0 8px 24px rgba(16, 24, 20, 0.07);
  }
  
  .gc-headerbar {
    position: relative;
  }
  
  .gc-headerbar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 82px;
    transition: min-height var(--gc-med) var(--gc-ease);
  }
  
  .gc-header.is-compact .gc-headerbar__inner {
    min-height: 70px;
  }
  
  .gc-brand {
    flex: 0 0 auto;
    min-width: 0;
  }
  
  .custom-logo-link,
  .custom-logo-link img,
  .gc-brand img,
  .custom-logo {
    display: block;
  }
  
  .custom-logo-link img,
  .gc-brand img,
  .custom-logo {
    width: auto;
    height: auto;
    max-height: 44px;
    transform-origin: left center;
    transition:
      max-height var(--gc-med) var(--gc-ease),
      transform var(--gc-med) var(--gc-ease);
  }
  
  .gc-header.is-compact .custom-logo-link img,
  .gc-header.is-compact .gc-brand img,
  .gc-header.is-compact .custom-logo {
    max-height: 38px;
  }
  
  .gc-brand__text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  
  .gc-headerbar__spacer {
    flex: 1 1 auto;
    min-width: 12px;
  }
  
  /* search */
  .gc-header-search {
    position: relative;
    width: min(420px, 34vw);
    flex: 0 1 420px;
  }
  
  .gc-search {
    position: relative;
  }
  
  .gc-search__box {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px 0 42px;
    border-radius: var(--gc-r-pill);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,58,42,0.08);
  }
  
  .gc-search__ico {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: rgba(16,22,20,0.56);
  }
  
  .gc-search__ico .gc-ico {
    width: 18px;
    height: 18px;
  }
  
  .gc-search__input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--gc-text);
    outline: none;
  }
  
  .gc-search__input::placeholder {
    color: rgba(16,22,20,0.46);
  }
  
  .gc-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(620px, 100vw - 32px);
    z-index: 40;
  }
  
  .gc-search-dropdown__inner {
    overflow: hidden;
    border-radius: var(--gc-r-lg);
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  
  .gc-search-list {
    display: grid;
  }
  
  .gc-search-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 12px;
    border-bottom: 1px solid rgba(22,58,42,0.06);
    color: var(--gc-text);
  }
  
  .gc-search-item:last-child {
    border-bottom: 0;
  }
  
  .gc-search-item:hover {
    background: rgba(47,143,78,0.05);
    color: var(--gc-green-deep);
  }
  
  .gc-search-item__thumb {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: var(--gc-r-md);
    background: #eef2ee;
  }
  
  .gc-search-item__thumb img,
  .gc-search-item__ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .gc-search-item__content {
    display: grid;
    align-content: center;
    gap: 6px;
    min-width: 0;
  }
  
  .gc-search-item__type {
    font-size: 12px;
    font-weight: 700;
    color: var(--gc-green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .gc-search-item__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gc-text);
  }
  
  .gc-search-more,
  .gc-search-loading,
  .gc-search-empty {
    padding: 14px;
  }
  
  .gc-search-empty__title {
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .gc-search-empty__desc,
  .gc-search-loading {
    color: var(--gc-text-soft);
  }
  
  /* contacts */
  .gc-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 0 1 auto;
  }
  
  .gc-contacts__phones {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 0 0 auto;
  }
  
  .gc-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 14px;
    border-radius: var(--gc-r-pill);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(22, 58, 42, 0.08);
    white-space: nowrap;
    color: var(--gc-text);
    transition:
      min-height var(--gc-med) var(--gc-ease),
      padding var(--gc-med) var(--gc-ease),
      background-color var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease);
  }
  
  .gc-phone:hover {
    color: var(--gc-green);
    background: rgba(255,255,255,0.82);
  }
  
  .gc-header.is-compact .gc-phone {
    min-height: 40px;
    padding: 6px 12px;
  }
  
  .gc-phone__ico {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 143, 78, 0.10);
    color: var(--gc-green-deep);
    border: 1px solid rgba(22, 58, 42, 0.08);
    flex: 0 0 auto;
  }
  
  .gc-phone__ico .gc-ico {
    width: 16px;
    height: 16px;
    display: block;
  }
  
  .gc-phone__value {
    font-weight: 700;
    color: currentColor;
  }
  
  .gc-contacts__messengers {
    min-width: 0;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transform-origin: right center;
    transition:
      opacity var(--gc-med) var(--gc-ease),
      transform var(--gc-med) var(--gc-ease),
      max-width var(--gc-med) var(--gc-ease),
      width var(--gc-med) var(--gc-ease),
      margin var(--gc-med) var(--gc-ease),
      padding var(--gc-med) var(--gc-ease),
      flex-basis var(--gc-med) var(--gc-ease);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: auto;
    max-width: 320px;
    flex: 0 1 320px;
  }
  
  .gc-header.is-compact .gc-contacts__messengers {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    width: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    flex: 0 1 0;
  }
  
  .gc-contacts__messengers .gc-ms {
    flex: 0 0 40px;
  }
  
  .gc-ms {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(22, 58, 42, 0.08);
    color: var(--gc-green-deep);
    line-height: 1;
    transition:
      transform var(--gc-fast) var(--gc-ease),
      background-color var(--gc-med) var(--gc-ease),
      color var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease);
  }
  
  .gc-ms:hover {
    background: #fff;
    color: var(--gc-green);
    transform: translateY(-1px);
  }
  
  .gc-ms__img,
  .gc-ms__svg .gc-ico {
    width: 18px;
    height: 18px;
  }
  
  .gc-ms__text {
    display: none;
  }
  
  /* burger */
  .gc-burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: var(--gc-r-sm);
    border: 1px solid rgba(22, 58, 42, 0.08);
    background: rgba(255,255,255,0.68);
    cursor: pointer;
    flex: 0 0 auto;
  }
  
  .gc-burger__lines,
  .gc-burger__lines::before,
  .gc-burger__lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gc-green-deep);
    border-radius: 99px;
    position: relative;
  }
  
  .gc-burger__lines::before,
  .gc-burger__lines::after {
    content: "";
    position: absolute;
    left: 0;
  }
  
  .gc-burger__lines::before {
    top: -6px;
  }
  
  .gc-burger__lines::after {
    top: 6px;
  }
  
  /* nav */
  .gc-nav {
    width: 100%;
    border-top: 1px solid rgba(22, 58, 42, 0.06);
    transition: border-color var(--gc-med) var(--gc-ease);
  }
  
  .gc-header.is-compact .gc-nav {
    border-top-color: rgba(22, 58, 42, 0.04);
  }
  
  .gc-nav__inner {
    width: 100%;
    box-sizing: border-box;
  }
  
  .gc-nav__desktop-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  
  .gc-nav__catalog {
    flex: 0 0 auto;
  }
  
  .gc-nav__main {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .gc-nav__mobile-head,
  .gc-nav__mobile-actions {
    display: none;
  }
  
  .gc-nav__mobile-title {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
  }
  
  .gc-nav__mobile-actions-inner {
    display: grid;
    gap: 10px;
    margin-top: 16px;
  }
  
  .gc-nav__mobile-ms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  /* menus */
  .gc-menu,
  .gc-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .gc-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0 14px;
  }
  
  .gc-menu--desktop {
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 10px 0 14px;
    list-style: none;
  }
  
  .gc-menu--main {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 10px 0 14px;
    list-style: none;
  }
  
  .gc-menu > li {
    position: relative;
  }
  
  .gc-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: var(--gc-r-pill);
    color: var(--gc-text);
    font-size: 15px;
    font-weight: 500;
    transition:
      background-color var(--gc-med) var(--gc-ease),
      color var(--gc-med) var(--gc-ease);
  }
  
  .gc-menu > li > a:hover,
  .gc-menu > li:hover > a,
  .gc-menu > li:focus-within > a {
    background: rgba(47, 143, 78, 0.08);
    color: var(--gc-green-deep);
  }
  
  @media (min-width: 981px) {
    .gc-menu > li > .sub-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 240px;
      padding: 10px;
      border-radius: var(--gc-r-lg);
      background: rgba(255,255,255,0.95);
      border: 1px solid rgba(22,58,42,0.08);
      box-shadow: var(--gc-shadow-sm);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition:
        opacity var(--gc-med) var(--gc-ease),
        visibility var(--gc-med) var(--gc-ease),
        transform var(--gc-med) var(--gc-ease);
    }
  
    .gc-menu > li:hover > .sub-menu,
    .gc-menu > li:focus-within > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
  
    .gc-menu .sub-menu li {
      position: relative;
    }
  
    .gc-menu .sub-menu a {
      display: block;
      padding: 11px 12px;
      border-radius: var(--gc-r-sm);
      color: rgba(16,22,20,0.82);
      font-weight: 600;
    }
  
    .gc-menu .sub-menu a:hover {
      background: rgba(47,143,78,0.08);
      color: var(--gc-green-deep);
    }
  
    .gc-menu .sub-menu .sub-menu {
      top: 0;
      left: calc(100% + 8px);
    }
  }
  
  /* mega menu */
  .gc-mega {
    position: relative;
  }
  
  .gc-menu__link,
  .gc-mega__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(22, 58, 42, 0.14);
    border-radius: var(--gc-r-pill);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gc-green-deep);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
      background-color var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease),
      color var(--gc-med) var(--gc-ease),
      transform var(--gc-fast) var(--gc-ease),
      opacity var(--gc-med) var(--gc-ease);
  }
  
  .gc-mega__toggle:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(47, 143, 78, 0.24);
    color: var(--gc-green);
    opacity: 1;
  }
  
  .gc-mega__toggle:active {
    transform: translateY(1px);
  }
  
  .gc-mega__toggle-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  
  .gc-mega__toggle-ico img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }
  
  .gc-mega__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(1120px, calc(100vw - 40px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity var(--gc-med) var(--gc-ease),
      visibility var(--gc-med) var(--gc-ease),
      transform var(--gc-med) var(--gc-ease);
    z-index: 35;
  }
  
  .gc-mega:hover .gc-mega__panel,
  .gc-mega:focus-within .gc-mega__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .gc-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 320px);
    gap: 18px;
    padding: 22px;
    border-radius: var(--gc-r-xl);
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  
  .gc-mega__col {
    display: grid;
    align-content: start;
    gap: 8px;
  }
  
  .gc-mega__title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gc-green-deep);
    letter-spacing: -0.02em;
  }
  
  .gc-mega__title a {
    color: inherit;
  }
  
  .gc-mega__col > a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--gc-r-sm);
    color: var(--gc-text);
    font-weight: 500;
    transition:
      background-color var(--gc-med) var(--gc-ease),
      color var(--gc-med) var(--gc-ease),
      transform var(--gc-fast) var(--gc-ease);
  }
  
  .gc-mega__col > a:hover {
    background: rgba(47,143,78,0.08);
    color: var(--gc-green-deep);
    transform: translateX(2px);
  }
  
  .gc-mega__all {
    margin-top: 8px;
    font-weight: 700 !important;
    color: var(--gc-green) !important;
  }
  
  .gc-mega__promo {
    display: flex;
  }
  
  .gc-mega__promo-box {
    width: 100%;
    min-height: 100%;
    padding: 22px;
    border-radius: var(--gc-r-lg);
    background:
      radial-gradient(380px 180px at 0% 0%, rgba(79,170,103,0.16), transparent 60%),
      linear-gradient(180deg, rgba(22,58,42,0.98), rgba(16,41,31,0.98));
    color: #fff;
  }
  
  .gc-mega__promo-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
  }
  
  .gc-mega__promo-title {
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .gc-mega__promo-box p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
  }
  
  .gc-mega__promo-actions {
    display: grid;
    gap: 10px;
  }
  
  .gc-mega__promo .gc-btn--outline {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.16);
    color: #fff;
  }
  
  .gc-mega__promo .gc-btn--outline:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
  }
  
  @media (max-width: 1180px) {
    .gc-mega__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .gc-mega__promo {
      grid-column: 1 / -1;
    }
  }
  
 @media (max-width: 980px) {
  .gc-header {
    position: relative;
    top: 0;
    z-index: 180;
  }

  .gc-header-search {
    display: none;
  }

  .gc-contacts {
    display: none;
  }

  .gc-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gc-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 10, 9, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--gc-med) var(--gc-ease),
      visibility var(--gc-med) var(--gc-ease);
    border-top: 0;
    overscroll-behavior: none;
	  width: 1px;
		height: 1px;
  }

  .gc-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
width: inherit;
	  height: inherit;
  }

  .gc-nav .gc-container {
    width: 100%;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
  }

  .gc-nav__inner {
    position: relative;
    width: min(420px, 92vw);
    max-width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: 18px 16px calc(24px + var(--gc-safe-b));
    background:
      linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,250,247,0.98)),
      #fff;
    border-left: 1px solid rgba(22,58,42,0.08);
    transform: translateX(24px);
    transition: transform var(--gc-med) var(--gc-ease);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .gc-nav.is-open .gc-nav__inner {
    transform: translateX(0);
  }

  .gc-nav__desktop-row {
    display: block;
  }

  .gc-nav__mobile-head,
  .gc-nav__mobile-actions {
    display: block;
  }

  .gc-nav__mobile-head {
    position: sticky;
    top: -18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -16px 14px;
    padding: 18px 16px 14px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,58,42,0.06);
  }

  .gc-menu,
  .gc-menu--main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0 0;
  }

  .gc-menu--desktop,
  .gc-mega {
    display: none !important;
  }

  .gc-menu > li > a {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: var(--gc-r-md);
    background: rgba(255,255,255,0.72);
  }

  .gc-menu .sub-menu {
    margin: 6px 0 10px 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(22,58,42,0.1);
  }

  .gc-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--gc-r-sm);
    color: rgba(16,22,20,0.82);
  }
}
  
  /* =========================
     HERO SLIDESHOW
     ========================= */
  
  .gc-hero {
    position: relative;
    overflow: clip;
  }
  
  .gc-hero--full {
    position: relative;
    min-height: clamp(620px, 92vh, 980px);
    background: #0d1612;
    color: #fff;
  }
  
  .gc-hero-slider {
    position: relative;
    min-height: inherit;
  }
  
  .gc-hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 700ms var(--gc-ease),
      visibility 700ms var(--gc-ease);
  }
  
  .gc-hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }
  
  .gc-hero-slide .gc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }
  
  .gc-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
  }
  
  .gc-hero__shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 12, 9, 0.26), rgba(6, 12, 9, 0.46)),
      linear-gradient(90deg, rgba(6, 12, 9, 0.80) 0%, rgba(6, 12, 9, 0.48) 38%, rgba(6, 12, 9, 0.16) 66%, rgba(6, 12, 9, 0.16) 100%);
  }
  
  .gc-hero-slide > .gc-container {
    position: relative;
    z-index: 3;
    min-height: inherit;
  }
  
  .gc-hero__inner {
    position: relative;
    z-index: 3;
    min-height: inherit;
    display: grid;
    align-content: center;
    padding: clamp(120px, 16vh, 180px) 0 clamp(42px, 7vh, 74px);
  }
  
  .gc-hero__content {
    position: relative;
    z-index: 4;
    max-width: min(820px, 100%);
  }
  
  .gc-hero__title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 6vw, 69px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 500;
    text-wrap: balance;
    max-width: 17ch;
  }
  
  .gc-hero__subtitle {
    margin: 0;
    max-width: 64ch;
    color: rgba(255,255,255,0.84);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.72;
  }
  
  .gc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
  }
  
  .gc-hero__actions .gc-btn--outline {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
    color: #fff;
  }
  
  .gc-hero__actions .gc-btn--outline:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  
  .gc-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-hero__trust-item {
    padding: 10px 14px;
    border-radius: var(--gc-r-pill);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .gc-hero-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: var(--gc-r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--bg, var(--gc-green));
    color: var(--fg, #fff);
    box-shadow: var(--gc-shadow-sm);
    max-width: min(280px, calc(100% - 36px));
  }
  
  .gc-hero-badge.is-tl { top: 18px; left: 18px; }
  .gc-hero-badge.is-tr { top: 18px; right: 18px; }
  .gc-hero-badge.is-bl { bottom: 18px; left: 18px; }
  .gc-hero-badge.is-br { bottom: 18px; right: 18px; }
  
  .gc-hero-slider__btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    transition:
      background-color var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease),
      transform var(--gc-fast) var(--gc-ease),
      opacity var(--gc-med) var(--gc-ease);
  }
  
  .gc-hero-slider__btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.26);
  }
  
  .gc-hero-slider__btn:active {
    transform: translateY(-50%) scale(0.98);
  }
  
  .gc-hero-slider__btn.is-prev { left: 18px; }
  .gc-hero-slider__btn.is-next { right: 18px; }
  
  .gc-hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
  }
  
  .gc-hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.34);
    transition:
      transform var(--gc-fast) var(--gc-ease),
      background-color var(--gc-med) var(--gc-ease),
      width var(--gc-med) var(--gc-ease);
  }
  
  .gc-hero-slider__dot.is-active {
    width: 22px;
    background: #fff;
  }
  
  .gc-hero-slide.is-active .gc-hero__content > * {
    animation: gcHeroFadeUp 700ms var(--gc-ease);
  }
  
  .gc-hero-slide.is-active .gc-hero__content > *:nth-child(2) {
    animation-duration: 820ms;
  }
  
  .gc-hero-slide.is-active .gc-hero__content > *:nth-child(3) {
    animation-duration: 940ms;
  }
  
  .gc-hero-slide.is-active .gc-hero__content > *:nth-child(4) {
    animation-duration: 1060ms;
  }
  
  @keyframes gcHeroFadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .gc-hero__quick {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
    max-width: 980px;
  }
  
  .gc-mini {
    position: relative;
    padding: 18px;
    min-height: 160px;
    border-radius: var(--gc-r-lg);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)),
      rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    transition:
      transform var(--gc-med) var(--gc-ease),
      background var(--gc-med) var(--gc-ease);
  }
  
  .gc-mini:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  
  .gc-mini__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  
  .gc-mini__title {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  
  .gc-mini__kicker {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .gc-mini__desc {
    margin-top: 10px;
    color: rgba(255,255,255,0.74);
    line-height: 1.55;
    font-size: 14px;
  }
  
  .gc-mini__more {
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
  }
  
  @media (min-width: 1440px) {
    .gc-hero__title {
      max-width: 15ch;
    }
  }
  
  @media (max-width: 980px) {
    .gc-hero--full {
      min-height: 720px;
    }
  
    .gc-hero__inner {
      align-content: baseline;
      padding: 120px 0 34px;
    }
  
    .gc-hero__title {
      max-width: 14ch;
      font-size: clamp(34px, 8vw, 58px);
      line-height: 0.98;
    }
  
    .gc-hero__subtitle {
      max-width: 56ch;
    }
  
    .gc-hero__quick {
      grid-template-columns: 1fr;
    }
  
    .gc-hero-slider__btn {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      top: auto;
      bottom: 54px;
      transform: none;
      background: rgba(0,0,0,.26);
      border: 1px solid rgba(255,255,255,.22);
    }
  
    .gc-hero-slider__btn:hover {
      background: rgba(0,0,0,.34);
    }
  
    .gc-hero-slider__btn:active {
      transform: scale(0.98);
    }
  
    .gc-hero-slider__btn.is-prev {
      left: 12px;
    }
  
    .gc-hero-slider__btn.is-next {
      right: 12px;
    }
  
    .gc-hero-slider__dots {
      bottom: 18px;
    }
  }
  
  @media (max-width: 640px) {
    .gc-hero--full {
      min-height: 640px;
    }
  
    .gc-hero__inner {
      padding: 104px 0 28px;
    }
  
    .gc-hero__title {
      margin-bottom: 14px;
      font-size: clamp(30px, 10vw, 42px);
      line-height: 1;
      letter-spacing: -0.05em;
      max-width: 100%;
    }
  
    .gc-hero__subtitle {
      font-size: 15px;
      line-height: 1.65;
    }
  
    .gc-hero__actions {
      gap: 10px;
      margin-top: 20px;
    }
  
    .gc-hero__actions .gc-btn {
      width: 100%;
    }
  
    .gc-hero__trust {
      gap: 8px;
      margin-top: 18px;
    }
  
    .gc-hero__trust-item {
      padding: 9px 12px;
      font-size: 12px;
    }
  
    .gc-hero-badge {
      font-size: 11px;
      padding: 8px 12px;
      max-width: calc(100% - 24px);
    }
  
    .gc-hero-badge.is-tl { top: 12px; left: 12px; }
    .gc-hero-badge.is-tr { top: 12px; right: 12px; }
    .gc-hero-badge.is-bl { bottom: 12px; left: 12px; }
    .gc-hero-badge.is-br { bottom: 12px; right: 12px; }
  
    .gc-hero-slider__dots {
      padding: 6px 8px;
      gap: 6px;
    }
  
    .gc-hero-slider__dot {
      width: 7px;
      height: 7px;
    }
  
    .gc-hero-slider__dot.is-active {
      width: 18px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .gc-hero-slide,
    .gc-hero-slider__btn,
    .gc-hero-slider__dot,
    .gc-mini,
    .gc-hero-slide.is-active .gc-hero__content > * {
      transition: none !important;
      animation: none !important;
    }
  }
  
  /* =========================
     CARDS / SURFACES
     ========================= */
  
  .gc-box,
  .gc-card,
  .gc-acc,
  .gc-form,
  .gc-toast__item {
    position: relative;
    border-radius: var(--gc-r-lg);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.74)),
      var(--gc-surface);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-xs);
  }
  
  .gc-box__pad,
  .gc-card__content {
    padding: 22px;
  }
  
  .gc-card {
    overflow: hidden;
    transition:
      transform var(--gc-med) var(--gc-ease),
      border-color var(--gc-med) var(--gc-ease),
      box-shadow var(--gc-med) var(--gc-ease);
  }
  
  .gc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gc-shadow-sm);
    border-color: rgba(22,58,42,0.12);
  }
  
  .gc-card__media {
    display: block;
  }
  
  .gc-card__img,
  .woocommerce ul.products li.product a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: linear-gradient(180deg, #eef2ee, #e1e8e2);
  }
  
  .gc-card__img--ph {
    height: 260px;
    background:
      linear-gradient(180deg, rgba(79,170,103,0.08), rgba(22,58,42,0.05)),
      linear-gradient(180deg, #eef2ee, #e4eae4);
  }
  
  .gc-card__title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
  
  .gc-card__title a {
    color: var(--gc-text);
  }
  
  .gc-card__desc {
    margin: 0;
    color: var(--gc-text-soft);
    line-height: 1.65;
    font-size: 14px;
  }
  
  .gc-card__meta {
    color: var(--gc-text-dim);
    font-size: 13px;
  }
  
  .gc-card__footer {
    margin-top: 16px;
  }
  
  /* category cards */
  .gc-card--cat .gc-card__img,
  .gc-card--cat .gc-card__img--ph {
    height: 340px;
  }
  
  .gc-card--cat .gc-card__title {
    font-size: 26px;
  }
  
  .gc-card--cat .gc-card__desc {
    font-size: 15px;
    line-height: 1.65;
  }
  
  /* solution cards */
  .gc-card--solution {
    min-height: 320px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(180deg, #1c3026, #13231b);
    border-color: rgba(255,255,255,0.06);
  }
  
  .gc-card--solution .gc-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .gc-card--solution .gc-card__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gc-card--solution .gc-card__bg-shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(8,13,10,0.14), rgba(8,13,10,0.46)),
      linear-gradient(180deg, rgba(8,13,10,0.08), rgba(8,13,10,0.72));
  }
  
  .gc-card--solution .gc-card__top,
  .gc-card--solution .gc-card__body {
    position: relative;
    z-index: 1;
  }
  
  .gc-card__label {
    font-size: 30px;
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
  
  .gc-card--solution .gc-card__meta,
  .gc-card--solution .gc-card__hint {
    color: rgba(255,255,255,0.78);
  }
  
  .gc-card__line {
    width: 100%;
    height: 1px;
    margin: 18px 0 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.56), rgba(255,255,255,0));
  }
  
  .gc-card__hint {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* dark band */
  .gc-band-dark {
  background: radial-gradient(1200px 600px at 10% 0%, rgba(79, 170, 103, 0.16), transparent 55%), linear-gradient(180deg, #101813, #0c130f);
      background-image: linear-gradient(45deg, black, #0000003b), url(/wp-content/uploads/2026/03/20201116_114556-scaled-2-720x520-1.jpg);
      background-size: cover;
      color: #fff;
  }
  
  .gc-band-dark .gc-section__title {
    color: #fff;
  }
  
  .gc-band-dark .gc-section__desc,
  .gc-band-dark .gc-card__desc {
    color: rgba(255,255,255,0.72);
  }
  
  .gc-band-dark .gc-card,
  .gc-band-dark .gc-box {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
  }
  
  /* =========================
     FORMS
     ========================= */
  
  .gc-form {
    padding: 24px;
    overflow: hidden;
    background:
      radial-gradient(680px 240px at 0% 0%, rgba(79,170,103,0.12), transparent 58%),
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.80));
  }
  
  .gc-form__header {
    margin-bottom: 18px;
  }
  
  .gc-form__title {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 500;
  }
  
  .gc-form__sub {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    color: var(--gc-text-soft);
    line-height: 1.6;
	  align-items: center;
  }
  
  .gc-form__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-form__trust li {
    padding: 8px 12px;
    border-radius: var(--gc-r-pill);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(22,58,42,0.06);
  }
  
  .gc-form__core {
    display: grid;
    grid-template-columns: 1.15fr 1fr auto;
    gap: 12px;
    align-items: end;
  }
  
  .gc-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
  }
  
  .gc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .gc-field--full {
    grid-column: 1 / -1;
  }
  
  .gc-field__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(16,22,20,0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .gc-field__input {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border-radius: var(--gc-r-md);
    border: 1px solid rgba(22,58,42,0.1);
    background: rgba(255,255,255,0.82);
    color: var(--gc-text);
  }
  
  textarea.gc-field__input {
    min-height: 110px;
    resize: vertical;
  }
  
  .gc-field__input:focus {
    outline: none;
    border-color: rgba(47,143,78,0.34);
    box-shadow: 0 0 0 4px rgba(47,143,78,0.08);
  }
  
  .gc-field.is-error .gc-field__input {
    border-color: rgba(196,52,52,0.3);
    box-shadow: 0 0 0 4px rgba(196,52,52,0.08);
  }
  
  .gc-field__error {
    color: #8b2b2b;
    font-size: 12px;
    font-weight: 700;
  }
  
  .gc-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .gc-choice__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: var(--gc-r-md);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,58,42,0.08);
    cursor: pointer;
    color: rgba(16,22,20,0.84);
    font-weight: 600;
  }
  
  .gc-choice__item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .gc-choice__item:has(input:checked) {
    background: rgba(47,143,78,0.1);
    border-color: rgba(47,143,78,0.16);
    color: var(--gc-green-deep);
  }
  
  .gc-choice__ico {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,143,78,0.08);
    color: var(--gc-green-deep);
  }
  
  .gc-choice__img,
  .gc-choice__svg .gc-ico {
    width: 16px;
    height: 16px;
  }
  
  .gc-form__cta {
    display: grid;
    gap: 8px;
    min-width: 240px;
  }
  
  .gc-form__note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--gc-text-dim);
  }
  
  .gc-form__more {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(22,58,42,0.12);
  }
  
  .gc-form__more-sum {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--gc-green-deep);
  }
  
  .gc-form__more-sum::-webkit-details-marker {
    display: none;
  }
  
  .gc-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }
  
  @media (max-width: 980px) {
    .gc-form {
      padding: 18px;
    }
  
    .gc-form__core,
    .gc-form__grid {
      grid-template-columns: 1fr;
    }
  
    .gc-form__cta {
      min-width: 0;
    }
  }
  
  /* =========================
     ACCORDION
     ========================= */
  
  .gc-accordion {
    display: grid;
    gap: 12px;
  }
  
  .gc-acc {
    overflow: hidden;
  }
  
  .gc-acc__sum {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.35;
  }
  
  .gc-acc__sum::-webkit-details-marker,
  .gc-acc__sum::marker {
    display: none;
  }
  
  .gc-acc__sum::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,143,78,0.08);
    color: var(--gc-green-deep);
    flex: 0 0 auto;
  }
  
  details[open] > .gc-acc__sum::after {
    content: "−";
  }
  
  .gc-acc__body {
    padding: 0 20px 20px;
    color: var(--gc-text-soft);
    line-height: 1.7;
  }
  
  /* =========================
     BREADCRUMBS
     ========================= */
  
  .gc-bc {
    margin: 15px 0 5px;
    color: var(--gc-text-dim);
    font-size: 12px;
  }
  
  .gc-bc a {
    color: rgba(22,58,42,0.78);
  }
  
  /* =========================
     PRODUCT / WOO
     ========================= */
  
  .gc-product {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: start;
  }
  
  .gc-gallery {
    display: grid;
    gap: 12px;
  }
  
  .gc-gallery__main {
    overflow: hidden;
    border-radius: var(--gc-r-lg);
    background: #eef2ee;
  }
  
  .gc-gallery__main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
  }
  
  .gc-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
  
  .gc-thumb {
    overflow: hidden;
    border-radius: var(--gc-r-md);
    border: 1px solid rgba(22,58,42,0.08);
    background: #eef2ee;
    cursor: pointer;
  }
  
  .gc-thumb img {
    width: 100%;
    height: 84px;
    object-fit: cover;
  }
  
  .gc-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .gc-tabs__list {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding-bottom: 4px;
  }
  
  .gc-tab,
  .gc-tabbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: var(--gc-r-pill);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,58,42,0.08);
    color: var(--gc-green-deep);
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .gc-tab.is-active,
  .gc-tabbtn.is-active {
    background: var(--gc-green-deep);
    color: #fff;
    border-color: transparent;
  }
  
  .gc-tab__thumb {
    width: 24px;
    height: 24px;
    overflow: hidden;
    border-radius: 7px;
    background: #eff3ef;
  }
  
  .gc-tab__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gc-product-card__spec {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-product-card__spec li {
    position: relative;
    padding-left: 18px;
    color: var(--gc-text-soft);
    line-height: 1.6;
  }
  
  .gc-product-card__spec li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gc-green);
  }
  
  .gc-leadbox__title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
  
  .gc-leadbox__sub {
    margin: 0 0 14px;
    color: var(--gc-text-soft);
    line-height: 1.6;
  }
  
  .woocommerce .products,
  .woocommerce ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .woocommerce ul.products::before {
    display: none;
  }
  
  .gc-section--popular .products,
  .gc-section--archive ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .gc-section--popular .products li.product,
  .gc-section--archive ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 12px;
    border-radius: var(--gc-r-lg);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-xs);
  }
  
  .gc-section--popular .products li.product:hover,
  .gc-section--archive ul.products li.product:hover {
    box-shadow: var(--gc-shadow-sm);
  }
  
  .gc-section--popular .products li.product .woocommerce-loop-product__title,
  .gc-section--archive ul.products li.product .woocommerce-loop-product__title {
    margin: 8px 0 10px !important;
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--gc-text);
  }
  
  .gc-section--popular .products li.product .price,
  .gc-section--archive ul.products li.product .price {
    display: none !important;
  }
  
  .gc-section--popular .products li.product .button,
  .gc-section--archive ul.products li.product .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: var(--gc-r-pill);
      background: linear-gradient(135deg, #ffffff, #b1bcb7);
      color: #000000 !important;
      border: 0;
      font-weight: 400;
  }
  
  @media (max-width: 1140px) {
    .gc-section--popular .products,
    .gc-section--archive ul.products {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 820px) {
    .gc-product {
      grid-template-columns: 1fr;
    }
  
    .gc-gallery__main img {
      height: 360px;
    }
  
    .gc-gallery__thumbs {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  
    .gc-section--popular .products,
    .gc-section--archive ul.products {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 560px) {
    .gc-section--popular .products,
    .gc-section--archive ul.products {
      grid-template-columns: 1fr;
    }
  }
  
  /* seo helper from your custom fix */
  .gc-seo.js-gc-seo.is-collapsed {
    overflow: hidden;
  }
  
  /* =========================
     SHOP CATEGORIES / ARCHIVE
     ========================= */
  
  .gc-shopcats {
    margin: 0 0 20px;
  }
  
  .gc-shopcats__list {
    display: grid;
    gap: 12px;
  }
  
  .gc-shopcat {
    overflow: hidden;
    border-radius: var(--gc-r-lg);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-xs);
  }
  
  .gc-shopcat__sum {
    display: grid;
    grid-template-columns: 132px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    cursor: pointer;
  }
  
  .gc-shopcat__sum::-webkit-details-marker {
    display: none;
  }
  
  .gc-shopcat__media {
    width: 132px;
    height: 92px;
    overflow: hidden;
    border-radius: var(--gc-r-md);
    background: linear-gradient(180deg, #eef2ee, #e1e8e2);
  }
  
  .gc-shopcats__img,
  .gc-shopcat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gc-shopcat__ph {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #eef2ee, #e1e8e2);
  }
  
  .gc-shopcat__title {
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 500;
  }
  
  .gc-shopcat__desc {
    margin-top: 6px;
    color: var(--gc-text-soft);
    line-height: 1.6;
    font-size: 14px;
  }
  
  .gc-shopcat__chev {
    font-size: 14px;
    color: var(--gc-green-deep);
    transition: transform var(--gc-med) var(--gc-ease);
  }
  
  .gc-shopcat[open] .gc-shopcat__chev {
    transform: rotate(-180deg);
  }
  
  .gc-shopcat__body {
    padding: 0 14px 14px;
  }
  
  .gc-shopcat__subs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .gc-shopcat__all {
    margin-top: 14px;
  }
  
  .gc-shopbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 18px;
    padding: 0;
  }
  
  .gc-shopbar__left,
  .gc-shopbar__right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  
  .gc-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
  }
  
  @media (max-width: 740px) {
    .gc-shopcat__sum {
      grid-template-columns: 88px 1fr auto;
      gap: 12px;
    }
  
    .gc-shopcat__media {
      width: 88px;
      height: 72px;
      border-radius: var(--gc-r-sm);
    }
  
    .gc-shopcat__title {
      font-size: 22px;
    }
  }
  
  /* =========================
     MODAL / FILTER / TOAST
     ========================= */
  
  .gc-modal,
  .gc-filter {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(7,10,9,0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--gc-med) var(--gc-ease);
  }
  
  .gc-modal.is-open,
  .gc-filter.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .gc-modal__panel,
  .gc-filter__panel {
    position: absolute;
    top: 0;
    height: 100%;
    width: min(560px, 96vw);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.97), rgba(246,248,245,0.97)),
      #fff;
    border-left: 1px solid rgba(22,58,42,0.08);
    overflow: auto;
    transform: translateX(16px);
    transition: transform var(--gc-med) var(--gc-ease);
  }
  
  .gc-filter__panel {
    left: 0;
    right: auto;
    border-left: 0;
    border-right: 1px solid rgba(22,58,42,0.08);
    transform: translateX(-16px);
  }
  
  .gc-modal.is-open .gc-modal__panel,
  .gc-filter.is-open .gc-filter__panel {
    transform: translateX(0);
  }
  
  .gc-modal__head,
  .gc-filter__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(22,58,42,0.08);
    background: rgba(247,248,245,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .gc-modal__title,
  .gc-filter__title {
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
  
  .gc-modal__close,
  .gc-filter__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--gc-r-sm);
    background: rgba(255,255,255,0.78);
    cursor: pointer;
    color: var(--gc-green-deep);
  }
  
  .gc-modal__body,
  .gc-filter__body {
    padding: 18px;
  }
  
  .gc-filter__body {
    display: grid;
    gap: 14px;
  }
  
  .gc-filter__group {
    padding: 16px;
    border-radius: var(--gc-r-md);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,58,42,0.06);
  }
  
  .gc-filter__label {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--gc-green-deep);
  }
  
  .gc-filter__checks {
    display: grid;
    gap: 10px;
  }
  
  .gc-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gc-text);
    font-weight: 500;
  }
  
  .gc-check input {
    width: 18px;
    height: 18px;
  }
  
  .gc-filter__hint {
    color: var(--gc-text-soft);
    line-height: 1.5;
  }
  
  .gc-filter__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .gc-toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 240;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 32px));
  }
  
  .gc-toast__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
  }
  
  .gc-toast__msg {
    color: var(--gc-text);
    line-height: 1.55;
  }
  
  .gc-toast__x {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--gc-text-dim);
    font-weight: 700;
  }
  
  @media (max-width: 991px) {
    .gc-toast {
      bottom: calc(78px + var(--gc-safe-b));
      left: 16px;
      right: 16px;
      width: auto;
    }
  }
  
  /* =========================
     FOOTER
     ========================= */
  
  .gc-footer {
    margin-top: 28px;
    border-top: 1px solid rgba(22,58,42,0.08);
    background:
      radial-gradient(900px 300px at 15% 0%, rgba(79,170,103,0.08), transparent 60%),
      linear-gradient(180deg, #f3f6f2, #eef3ef);
  }
  
  .gc-footer__inner {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 1fr;
      gap: 20px;
      padding-top: 44px;
  }
  
  .gc-footer__title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
  
  .gc-footer__text {
    color: var(--gc-text-soft);
    line-height: 1.7;
    font-size: 14px;
  }
  
  .gc-footer-menu {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .gc-footer-menu a {
    color: var(--gc-text);
    font-weight: 500;
  }
  
  .gc-footer__bottom {
    border-top: 1px solid rgba(22,58,42,0.08);
  }
  
  .gc-footer__bottom-inner {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 16px;
      padding-bottom: 16px;
      font-size: 13px;
    color: var(--gc-text-dim);
  }
  
  @media (max-width: 980px) {
    .gc-footer__inner {
      grid-template-columns: 1fr;
    }
  }
  
  /* =========================
     STICKY BAR
     ========================= */
  
  .gc-stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 170;
    padding-bottom: var(--gc-safe-b);
    background: rgba(246,248,245,0.94);
    border-top: 1px solid rgba(22,58,42,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .gc-stickybar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gc-stickybar__item {
    min-height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--gc-text);
  }
  
  .gc-stickybar__icon {
    color: var(--gc-green);
    font-weight: 700;
  }
  
  .gc-stickybar__text {
    font-size: 11px;
    font-weight: 700;
  }
  
  @media (min-width: 992px) {
    .gc-stickybar {
      display: none;
    }
  }
  
  @media (max-width: 991px) {
    .gc-content {
      padding-bottom: calc(72px + var(--gc-safe-b));
    }
  }
  
  /* =========================
     PAGINATION
     ========================= */
  
  .gc-pagination {
    margin-top: 24px;
  }
  
  .gc-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
  }
  
  .gc-pagination .page-numbers a,
  .gc-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(22,58,42,0.08);
    color: var(--gc-text);
  }
  
  .gc-pagination .page-numbers .current {
    background: var(--gc-green-deep);
    color: #fff;
  }
  
  /* =========================
     PROSE
     ========================= */
  
     .gc-prose {
        color: rgba(16,22,20,0.84);
        line-height: 1.72;
        overflow-wrap: anywhere;
        margin: 40px 0;
    }
  
  .gc-prose > *:first-child {
    margin-top: 0 !important;
  }
  
  .gc-prose > *:last-child {
    margin-bottom: 0 !important;
  }
  
  .gc-prose h1,
  .gc-prose h2,
  .gc-prose h3,
  .gc-prose h4 {
    margin: 1.4em 0 0.55em;
    color: var(--gc-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 500;
  }
  
  .gc-prose h2 {
    font-size: clamp(26px, 3vw, 38px);
  }
  
  .gc-prose h3 {
    font-size: clamp(20px, 2vw, 28px);
  }
  
  .gc-prose p {
    margin: 0 0 1em;
  }
  
  .gc-prose a {
    color: var(--gc-green-deep);
    text-decoration: underline;
    text-decoration-color: rgba(47,143,78,0.28);
    text-underline-offset: 3px;
  }
  
  .gc-prose img {
    border-radius: var(--gc-r-lg);
    box-shadow: var(--gc-shadow-xs);
  }
  
  .gc-prose ul,
  .gc-prose ol {
    margin: 1em 0 1em 1.2em;
  }
  
  .gc-prose ul {
    list-style: none;
    margin-left: 0;
  }
  
  .gc-prose ul li {
    position: relative;
    padding-left: 18px;
  }
  
  .gc-prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gc-green);
  }
  
 .gc-prose table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--gc-r-md);
    border: 1px solid rgba(22,58,42,0.08);
}
  
  .gc-prose th,
  .gc-prose td {
    padding: 10px 12px;
    border-right: 1px solid rgba(22,58,42,0.06);
    border-bottom: 1px solid rgba(22,58,42,0.06);
  }
  
  .gc-prose th:last-child,
  .gc-prose td:last-child {
    border-right: 0;
  }
  
  .gc-prose tr:last-child td {
    border-bottom: 0;
  }
  
  .gc-prose th {
    background: rgba(47,143,78,0.08);
    color: var(--gc-green-deep);
    text-align: left;
  }
  
  .gc-prose blockquote {
    margin: 1.2em 0;
    padding: 16px 18px;
    border-left: 3px solid rgba(47,143,78,0.4);
    background: rgba(47,143,78,0.05);
    border-radius: var(--gc-r-md);
  }
  
  /* =========================
     TOC
     ========================= */
  
  .gc-toc {
    margin: 18px 0 24px;
  }
  
  .gc-toc__details {
    padding: 12px 14px;
    border-radius: var(--gc-r-md);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,58,42,0.08);
  }
  
  .gc-toc__sum {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
  }
  
  .gc-toc__sum::-webkit-details-marker {
    display: none;
  }
  
  .gc-toc__list,
  .gc-toc__sub {
    display: grid;
    gap: 6px;
  }
  
  .gc-toc__list {
    margin: 10px 0 0;
    padding-left: 16px;
  }
  
  .gc-toc__sub {
    margin-top: 6px;
    padding-left: 14px;
  }
  
  .gc-toc__link {
    color: var(--gc-text-soft);
  }
  
  .gc-toc__link:hover {
    color: var(--gc-green-deep);
  }
  
  @media (min-width: 981px) {
    .gc-nav {
      width: 100%;
      overflow: hidden;
      max-height: 120px;
      opacity: 1;
      border-top: 1px solid rgba(22, 58, 42, 0.06);
      transition:
        max-height var(--gc-med) var(--gc-ease),
        opacity var(--gc-med) var(--gc-ease),
        border-color var(--gc-med) var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-nav {
      max-height: 0;
      opacity: 0;
      border-top-color: transparent;
      pointer-events: none;
    }
  
    .gc-header.is-compact .gc-headerbar__inner {
      min-height: 66px;
    }
  
    .gc-header.is-compact .gc-search__box {
      min-height: 42px;
    }
  
    .gc-header.is-compact .gc-header-search {
      width: min(380px, 32vw);
      flex-basis: 380px;
    }
  }
  
  /* =========================================================
     PATCH — compact header only logo + search + contacts
     desktop only, delayed by JS threshold
     ========================================================= */
  
  @media (min-width: 981px) {
    .gc-nav {
      width: 100%;
      overflow: hidden;
      max-height: 120px;
      opacity: 1;
      border-top: 1px solid rgba(22, 58, 42, 0.06);
      transform: translateY(0);
      transition:
        max-height 320ms var(--gc-ease),
        opacity 220ms var(--gc-ease),
        transform 320ms var(--gc-ease),
        border-color 220ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-nav {
      max-height: 0;
      opacity: 0;
      transform: translateY(-8px);
      border-top-color: transparent;
      pointer-events: none;
    }
  
    .gc-headerbar__inner {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        gap 320ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-headerbar__inner {
      min-height: 66px;
    }
  
    .gc-header-search {
      transition:
        width 320ms var(--gc-ease),
        flex-basis 320ms var(--gc-ease),
        transform 320ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-header-search {
      width: min(380px, 32vw);
      flex-basis: 380px;
    }
  
    .gc-search__box {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        border-color var(--gc-med) var(--gc-ease),
        background-color var(--gc-med) var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-search__box {
      min-height: 42px;
    }
  
    .gc-brand img,
    .custom-logo,
    .custom-logo-link img {
      transition:
        max-height 320ms var(--gc-ease),
        transform 320ms var(--gc-ease);
    }
  
    .gc-phone,
    .gc-ms {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        transform 320ms var(--gc-ease),
        opacity 220ms var(--gc-ease),
        background-color var(--gc-med) var(--gc-ease);
    }
  }
  
  @media (min-width: 981px) {
    .gc-nav {
      width: 100%;
      overflow: visible;
      border-top: 1px solid rgba(22, 58, 42, 0.06);
      transition:
        opacity 260ms var(--gc-ease),
        transform 320ms var(--gc-ease),
        border-color 220ms var(--gc-ease),
        visibility 220ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-nav {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-10px);
      border-top-color: transparent;
    }
  
    .gc-headerbar__inner {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        gap 320ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-headerbar__inner {
      min-height: 66px;
    }
  
    .gc-header-search {
      transition:
        width 320ms var(--gc-ease),
        flex-basis 320ms var(--gc-ease),
        transform 320ms var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-header-search {
      width: min(380px, 32vw);
      flex-basis: 380px;
    }
  
    .gc-search__box {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        border-color var(--gc-med) var(--gc-ease),
        background-color var(--gc-med) var(--gc-ease);
    }
  
    .gc-header.is-compact .gc-search__box {
      min-height: 42px;
    }
  
    .gc-brand img,
    .custom-logo,
    .custom-logo-link img {
      transition:
        max-height 320ms var(--gc-ease),
        transform 320ms var(--gc-ease);
    }
  
    .gc-phone,
    .gc-ms {
      transition:
        min-height 320ms var(--gc-ease),
        padding 320ms var(--gc-ease),
        transform 320ms var(--gc-ease),
        opacity 220ms var(--gc-ease),
        background-color var(--gc-med) var(--gc-ease);
    }
  }
  
  .gc-mega::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100px;
    height: 18px;
  }
  
  .gc-mega__panel {
    top: calc(100% + 2px);
  }
  
  
  .single-product .gc-form__core, .gc-modal .gc-form__core {
      grid-template-columns: auto;
  }
  
  .gc-product-pricebox {
    display: grid;
    gap: 8px;
  }
  
  .gc-product-priceblur {
    display: inline-grid;
    justify-items: start;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(22,58,42,0.1);
    border-radius: var(--gc-r-md);
    background: rgba(255,255,255,0.72);
    cursor: pointer;
    text-align: left;
  }
  
  .gc-product-priceblur__value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--gc-text);
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
  }
  
  .gc-product-priceblur__value * {
    filter: blur(8px);
  }
  
  .gc-product-priceblur__hint {
    font-size: 13px;
    font-weight: 600;
    color: var(--gc-green-deep);
  }
  
  .gc-consultant {
    position: relative;
    overflow: hidden;
    border-radius: var(--gc-r-xl);
    background:
      radial-gradient(540px 220px at 0% 0%, rgba(79,170,103,0.14), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,249,246,0.96));
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
  }
  
  .gc-consultant__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    padding: 24px;
    align-items: center;
  }
  
  .gc-consultant__person {
    display: grid;
    gap: 16px;
  }
  
  .gc-consultant__avatar {
    position: relative;
  }
  
  .gc-consultant__img,
  .gc-consultant__img--ph {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--gc-r-lg);
    display: block;
    background:
      radial-gradient(200px 120px at 20% 10%, rgba(79,170,103,0.14), transparent 60%),
      linear-gradient(180deg, #eef2ee, #e3eae4);
  }
  
  .gc-consultant__status {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12, 20, 16, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }
  
  .gc-consultant__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4fd17d;
    box-shadow: 0 0 0 6px rgba(79,209,125,0.14);
  }
  
  .gc-consultant__meta {
    display: grid;
    gap: 6px;
  }
  
  .gc-consultant__name {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: var(--gc-text);
  }
  
  .gc-consultant__role {
    color: var(--gc-green-deep);
    font-weight: 600;
  }
  
  .gc-consultant__worktime {
    color: var(--gc-text-soft);
    font-size: 14px;
  }
  
  .gc-consultant__content {
    display: grid;
    gap: 14px;
    align-content: center;
  }
  
  .gc-consultant__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gc-green-deep);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .gc-consultant__kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
  }
  
  .gc-consultant__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--gc-text);
    max-width: 14ch;
  }
  
  .gc-consultant__desc {
    max-width: 60ch;
    color: var(--gc-text-soft);
    line-height: 1.75;
    font-size: 15px;
  }
  
  .gc-consultant__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-consultant__trust li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(22,58,42,0.08);
    color: var(--gc-text);
    font-size: 13px;
    font-weight: 600;
  }
  
  .gc-consultant__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }
  
  .gc-consultant__phone {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--gc-text-soft);
    font-size: 14px;
  }
  
  .gc-consultant__phone-label {
    font-weight: 600;
    color: var(--gc-text);
  }
  
  .gc-consultant__phone a {
    font-weight: 700;
    color: var(--gc-green-deep);
  }
  
  @media (max-width: 980px) {
    .gc-consultant__grid {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 18px;
    }
  
    .gc-consultant__img,
    .gc-consultant__img--ph {
      height: 300px;
    }
  
    .gc-consultant__title {
      max-width: none;
    }
  }
  
  @media (max-width: 640px) {
    .gc-consultant {
      border-radius: var(--gc-r-lg);
    }
  
    .gc-consultant__img,
    .gc-consultant__img--ph {
      height: 260px;
    }
  
    .gc-consultant__name {
      font-size: 24px;
    }
  
    .gc-consultant__actions .gc-btn {
      width: 100%;
    }
  }
  
  .gc-hero-simple__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(47,143,78,0.08);
    color: var(--gc-green-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .gc-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .gc-news-card {
    height: 100%;
    overflow: hidden;
  }
  
  .gc-news-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(180deg, #eef2ee, #e3eae4);
  }
  
  .gc-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--gc-med) var(--gc-ease);
  }
  
  .gc-news-card:hover .gc-news-card__media img {
    transform: scale(1.03);
  }
  
  .gc-news-card__ph {
    display: block;
    width: 100%;
    height: 100%;
    background:
      radial-gradient(240px 100px at 20% 20%, rgba(79,170,103,0.12), transparent 60%),
      linear-gradient(180deg, #eef2ee, #e3eae4);
  }
  
  .gc-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--gc-text-dim);
    font-size: 13px;
  }
  
  .gc-news-card__dot {
    opacity: 0.5;
  }
  
  .gc-news-card__cat {
    color: var(--gc-green-deep);
    font-weight: 600;
  }
  
  .gc-news-card__title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
  
  .gc-news-card__title a {
    color: var(--gc-text);
  }
  
  .gc-news-card__excerpt {
    color: var(--gc-text-soft);
    line-height: 1.7;
    font-size: 14px;
  }
  
  .gc-news-card__actions {
    margin-top: 16px;
  }
  
  @media (max-width: 980px) {
    .gc-news-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .gc-news-grid {
      grid-template-columns: 1fr;
    }
  
    .gc-news-card__title {
      font-size: 22px;
    }
  }
  
  .gc-objects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  
  .gc-object-card {
    display: grid;
    overflow: hidden;
    border-radius: var(--gc-r-lg);
    background: #fff;
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
    cursor: pointer;
  }
  
  .gc-object-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, #eef2ee, #e3eae4);
  }
  
  .gc-object-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--gc-med) var(--gc-ease);
  }
  
  .gc-object-card:hover .gc-object-card__media img {
    transform: scale(1.04);
  }
  
  .gc-object-card__ph {
    width: 100%;
    height: 100%;
    background:
      radial-gradient(220px 120px at 20% 20%, rgba(79,170,103,0.14), transparent 60%),
      linear-gradient(180deg, #eef2ee, #e3eae4);
  }
  
  .gc-object-card__body {
    display: grid;
    gap: 8px;
    padding: 16px;
  }
  
  .gc-object-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  
  .gc-object-card__meta {
    color: var(--gc-text-soft);
    font-size: 14px;
  }
  
  .gc-object-card__btn {
    margin-top: 8px;
  }
  
  @media (max-width: 980px) {
    .gc-objects-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .gc-objects-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .gc-no-scroll {
    overflow: hidden;
  }
  
  .gc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }
  
  .gc-lightbox.is-open {
    display: block;
  }
  
  .gc-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 12, 0.88);
    backdrop-filter: blur(6px);
  }
  
  .gc-lightbox__dialog {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    align-items: center;
  }
  
  .gc-lightbox__stage {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 40px 20px;
  }
  
  .gc-lightbox__img {
    max-width: min(92vw, 1600px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.35);
    background: #fff;
  }
  
  .gc-lightbox__caption {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    text-align: center;
  }
  
  .gc-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
  
  .gc-lightbox__nav {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
  
  @media (max-width: 640px) {
    .gc-lightbox__dialog {
      grid-template-columns: 1fr;
    }
  
    .gc-lightbox__nav {
      position: absolute;
      bottom: 18px;
    }
  
    .gc-lightbox__nav.is-prev {
      left: 18px;
    }
  
    .gc-lightbox__nav.is-next {
      right: 18px;
    }
  
    .gc-lightbox__img {
      max-width: 94vw;
      max-height: 76vh;
    }
  }
  
  section#calc {
      background: linear-gradient(180deg, rgb(255 255 255 / 73%) 0%, rgb(255 255 255 / 84%) 34%, rgba(255, 255, 255, 0.42) 62%, rgb(255 255 255 / 71%) 100%), url(/wp-content/uploads/2019/03/zagor-i-gabiony-11.webp) center center / cover no-repeat;
      opacity: 1;
  }
  
  
  .custom-logo-link {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .custom-logo-link::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -120%;
    width: 60%;
    height: 140%;
    transform: rotate(18deg);
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.18) 35%,
      rgba(255,255,255,0.55) 50%,
      rgba(255,255,255,0.18) 65%,
      rgba(255,255,255,0) 100%
    );
    pointer-events: none;
  }
  
  .custom-logo-link:hover::after {
    animation: gcLogoShine 1.15s ease;
  }
  
  @keyframes gcLogoShine {
    from {
      left: -120%;
    }
    to {
      left: 160%;
    }
  }
  
  .gc-faq-page {
    padding: 28px 0 56px;
  }
  
  .gc-faq-hero {
    margin-bottom: 24px;
    padding: 30px;
    border-radius: 28px;
    background:
      radial-gradient(520px 200px at 0% 0%, rgba(79,170,103,0.12), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,0.97), rgba(247,249,246,0.98));
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
  }
  
  .gc-faq-hero__title {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }
  
  .gc-faq-hero__desc {
    margin: 0;
    max-width: 860px;
    color: var(--gc-text-soft);
    line-height: 1.75;
    font-size: 16px;
  }
  
  .gc-faq-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }
  
  .gc-faq-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22,58,42,0.08);
  }
  
  .gc-faq-stat__num {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--gc-green-deep);
    margin-bottom: 6px;
  }
  
  .gc-faq-stat__label {
    color: var(--gc-text-soft);
    font-size: 14px;
  }
  
  .gc-faq-toolbar {
    margin-bottom: 22px;
  }
  
  .gc-faq-search {
    display: grid;
    gap: 8px;
  }
  
  .gc-faq-search__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gc-green-deep);
  }
  
  .gc-faq-search__input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(22,58,42,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.86);
    font-size: 15px;
    color: var(--gc-text);
    outline: none;
    transition: border-color var(--gc-med), box-shadow var(--gc-med), background var(--gc-med);
  }
  
  .gc-faq-search__input:focus {
    border-color: rgba(47,143,78,0.32);
    box-shadow: 0 0 0 4px rgba(47,143,78,0.08);
    background: #fff;
  }
  
  .gc-faq-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }
  
  .gc-faq-side {
    position: sticky;
    top: 110px;
  }
  
  .gc-faq-side__box {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
  }
  
  .gc-faq-side__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gc-green-deep);
    margin-bottom: 12px;
  }
  
  .gc-faq-side__list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--gc-text-soft);
  }
  
  .gc-faq-main {
    min-width: 0;
  }
  
  .gc-faq-list {
    display: grid;
    gap: 14px;
  }
  
  .gc-faq-item {
    border-radius: 22px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(22,58,42,0.08);
    box-shadow: var(--gc-shadow-sm);
    overflow: hidden;
  }
  
  .gc-faq-item__summary {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 28px;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
  }
  
  .gc-faq-item__summary::-webkit-details-marker {
    display: none;
  }
  
  .gc-faq-item__q {
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--gc-text);
  }
  
  .gc-faq-item__icon {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(47,143,78,0.08);
  }
  
  .gc-faq-item__icon::before,
  .gc-faq-item__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--gc-green-deep);
    transform: translate(-50%, -50%);
    transition: transform var(--gc-med) var(--gc-ease), opacity var(--gc-med) var(--gc-ease);
  }
  
  .gc-faq-item__icon::before {
    width: 12px;
    height: 2px;
  }
  
  .gc-faq-item__icon::after {
    width: 2px;
    height: 12px;
  }
  
  .gc-faq-item[open] .gc-faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.2);
  }
  
  .gc-faq-item__body {
    padding: 0 22px 22px;
    color: var(--gc-text-soft);
    line-height: 1.75;
  }
  
  .gc-faq-item__body p:last-child {
    margin-bottom: 0;
  }
  
  .gc-faq-empty {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22,58,42,0.08);
    color: var(--gc-text-soft);
  }
  
  .gc-faq-extra {
    margin-top: 28px;
  }
  
  .gc-faq-consultant {
    margin-top: 34px;
  }
  
  @media (max-width: 1100px) {
    .gc-faq-layout {
      grid-template-columns: 1fr;
    }
  
    .gc-faq-side {
      position: static;
    }
  
    .gc-faq-hero__stats {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 680px) {
    .gc-faq-page {
      padding: 18px 0 40px;
    }
  
    .gc-faq-hero {
      padding: 22px;
      border-radius: 22px;
    }
  
    .gc-faq-item__summary {
      padding: 18px 18px;
    }
  
    .gc-faq-item__body {
      padding: 0 18px 18px;
    }
  
    .gc-faq-item__q {
      font-size: 19px;
    }
  }
  
  
  .page-template-page-contacts-php iframe {
      height: 310px;
  }
  
  .gc-hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  
  .gc-hero-graphic {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }
  
  .gc-hero-graphic__right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(42vw, 760px);
    height: min(52vh, 460px);
    overflow: hidden;
  }
  
  .gc-hero-graphic__band {
    position: absolute;
    right: -40px;
    bottom: -120px;
    display: block;
    width: 88px;
    height: 720px;
    transform-origin: bottom center;
    transform: rotate(43deg) translate3d(0, 0, 0);
    background: #2f8f4e;
    will-change: transform, opacity;
  }
  
  .gc-hero-graphic__band.is-1 {
    right: 10px;
    opacity: 0.92;
    animation: gcHeroBand1 10s ease-in-out infinite;
  }
  
  .gc-hero-graphic__band.is-2 {
    right: 150px;
    opacity: 0.68;
    animation: gcHeroBand2 12s ease-in-out infinite;
  }
  
  .gc-hero-graphic__band.is-3 {
    right: 290px;
    opacity: 0.46;
    animation: gcHeroBand3 13.5s ease-in-out infinite;
  }
  
  .gc-hero-graphic__band.is-4 {
    right: 430px;
    opacity: 0.28;
    animation: gcHeroBand4 15s ease-in-out infinite;
  }
  
  .gc-hero-slide:not(.is-active) .gc-hero-graphic__band {
    opacity: 0;
  }
  
  .gc-hero-slide.is-active .gc-hero-graphic__band.is-1 { opacity: 0.92; }
  .gc-hero-slide.is-active .gc-hero-graphic__band.is-2 { opacity: 0.68; }
  .gc-hero-slide.is-active .gc-hero-graphic__band.is-3 { opacity: 0.46; }
  .gc-hero-slide.is-active .gc-hero-graphic__band.is-4 { opacity: 0.28; }
  
  .gc-hero-slide.is-active .gc-hero-graphic__band {
    transition: opacity 0.8s ease;
  }
  
  @keyframes gcHeroBand1 {
    0%, 100% {
      transform: rotate(43deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(43deg) translate3d(14px, 12px, 0);
    }
  }
  
  @keyframes gcHeroBand2 {
    0%, 100% {
      transform: rotate(43deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(43deg) translate3d(10px, 10px, 0);
    }
  }
  
  @keyframes gcHeroBand3 {
    0%, 100% {
      transform: rotate(43deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(43deg) translate3d(16px, 14px, 0);
    }
  }
  
  @keyframes gcHeroBand4 {
    0%, 100% {
      transform: rotate(43deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(43deg) translate3d(12px, 11px, 0);
    }
  }
  
  @media (max-width: 1200px) {
    .gc-hero-graphic__right {
      width: 40vw;
      height: 40vh;
    }
  
    .gc-hero-graphic__band {
      width: 72px;
      height: 560px;
    }
  
    .gc-hero-graphic__band.is-1 { right: 0; }
    .gc-hero-graphic__band.is-2 { right: 112px; }
    .gc-hero-graphic__band.is-3 { right: 224px; }
    .gc-hero-graphic__band.is-4 { right: 336px; }
  }
  
  @media (max-width: 760px) {
    .gc-hero-graphic__right {
      width: 48vw;
      height: 28vh;
    }
  
    .gc-hero-graphic__band {
      width: 46px;
      height: 360px;
      bottom: -90px;
    }
  
    .gc-hero-graphic__band.is-1 { right: -10px; opacity: 0.72 !important; }
    .gc-hero-graphic__band.is-2 { right: 58px; opacity: 0.52 !important; }
    .gc-hero-graphic__band.is-3 { right: 126px; opacity: 0.36 !important; }
    .gc-hero-graphic__band.is-4 { right: 194px; opacity: 0.22 !important; }
  }
  
  .gc-product-gallery-wide__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }
  
  .gc-product-gallery-wide__hint {
    color: var(--gc-text-soft);
    font-size: 14px;
  }
  
  .gc-wide-slider {
    position: relative;
  }
  
  .gc-wide-slider__track-wrap {
    overflow: hidden;
  }
  
  .gc-wide-slider__track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
  }
  
  .gc-wide-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    display: grid;
    gap: 10px;
    cursor: pointer;
  }
  
  .gc-wide-slide__media {
    overflow: hidden;
    border-radius: 22px;
    background: #dfe7e1;
    aspect-ratio: 16 / 10;
  }
  
  .gc-wide-slide__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gc-wide-slide:hover .gc-wide-slide__media img {
    transform: scale(1.03);
  }
  
  .gc-wide-slide__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
  }
  
  .gc-wide-slide__tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(22,58,42,0.06);
    color: var(--gc-text);
    font-size: 13px;
    font-weight: 600;
  }
  
  .gc-wide-slide__zoom {
    color: var(--gc-green-deep);
    font-size: 14px;
    font-weight: 700;
  }
  
  .gc-wide-slider__nav {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--gc-text);
    font-size: 30px;
    line-height: 1;
    box-shadow: var(--gc-shadow-sm);
    cursor: pointer;
  }
  
  .gc-wide-slider__nav.is-prev {
    left: 12px;
  }
  
  .gc-wide-slider__nav.is-next {
    right: 12px;
  }
  
  .gc-wide-slider__nav:disabled {
    opacity: 0.4;
    cursor: default;
  }
  
  .gc-wide-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  
  .gc-wide-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(22,58,42,0.18);
    cursor: pointer;
  }
  
  .product-template-default .gc-badges {
      position: absolute;
      top: 10px;
      right: 10px;
  }



  .gc-prose img {
    border-radius: var(--gc-r-lg);
    box-shadow: var(--gc-shadow-xs);
    max-width: 800px;
    margin: 0 auto;
}


@media (max-width: 991px) {
    .gc-prose img {
        max-width: 100%;
    }}


.wp-block-columns.wrap-images-box {
    display: flex;
    flex-wrap: wrap;
}

  .gc-prose
iframe {
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .gc-prose iframe {
        max-width: 100%;
    }}


  .gc-prose
.is-layout-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


@media (max-width: 991px) {
    .gc-prose
.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow{
               flex-basis: 100% !important;
    }}


.wrap-images-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    grid-auto-rows: 1fr;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .wrap-images-box {
           grid-template-columns: 1fr 1fr;
    }}


@media (max-width: 991px) {
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    width: 100%;
}
}


.gc-box__pad iframe {
    height: 295px;
}