:root {
  --gl-container: 1320px;
  --gl-radius: 24px;
  --gl-radius-sm: 14px;
  --gl-btn-radius: 999px;
  --gl-shadow: 0 12px 32px rgba(22, 34, 51, 0.08);
  --gl-color-bg: #ffff;
  --gl-color-surface: #ffffff;
  --gl-color-surface-alt: #eef2ef;
  --gl-color-text: #1d232c;
  --gl-color-muted: #69707d;
  --gl-color-line: #dde4dd;
  --gl-color-buy-button: #12D457;
  --gl-color-accent: #12D457;
  --gl-color-accent-2: #1ea751;
  --gl-color-dark: #10161f;
	
	
/* 	Типографика */
	--gl-color-heading: #1A1A1A;
  --gl-color-text: #2B2B2B;
  --gl-color-subtitle: #252525;
  --gl-color-helper: #9CA3AF;
  --gl-color-menu: #9CA3AF;
  --gl-color-dark: #10161f;
}
* { box-sizing: border-box; }
html, body, button, input, select, textarea { font-family: Manrope, sans-serif; }
button, input, select, textarea, .gl-btn, .button { font-family: inherit; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  background: var(--gl-color-bg);
  color: var(--gl-color-text);
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--gl-color-heading);
}

body {
  color: var(--gl-color-text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.gl-container { width: min(100% - 32px, var(--gl-container)); margin-inline: auto; }
.gl-card {
  background: var(--gl-color-surface);
  border: 1px solid var(--gl-color-line);
  border-radius: var(--gl-radius);
  box-shadow: var(--gl-shadow);
}
.mobile,
.gl-header__phones-mobile,
.gl-header__address-mobile {
  display: none !important;
}

.desktop {
  display: inline-flex !important;
}

.gl-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gl-color-line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: visible;
}
.gl-header__inner { display: flex; flex-direction: column; }
.gl-header__top {
  display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  align-items: center; gap: 24px; padding: 14px 0;
}
.gl-header__bottom { display: none; }
.gl-header__brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.gl-logo-block {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; min-width: 0; max-width: 220px;
}
.gl-logo img, .gl-logo svg { display: block; width: auto; height: auto; max-width: min(220px, 20vw); }
.custom-logo { max-height: 42px; width: auto; }
.gl-logo__text { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.gl-logo-slogan {
  margin-top: 6px; font-size: clamp(7px, 0.72vw, 10px); line-height: 1.35; min-height: 1.35em; font-weight: 600;
  color: var(--gl-color-subtitle); max-width: none; white-space: nowrap; display: block; overflow: visible;
}
.gl-header__catalog { min-width: 0; flex: 0 0 auto; }
.gl-nav { min-width: 0; }
.gl-menu {
  display: flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;
  gap: clamp(10px, 1.1vw, 18px); margin: 0; padding: 0; list-style: none; overflow-x: auto;
  overflow-y: hidden; scrollbar-width: none;
}
.gl-menu::-webkit-scrollbar { display: none; }
.gl-menu > li { margin: 0; flex: 0 0 auto; }
.gl-menu > li > a {
  display: inline-flex; align-items: center; min-height: 36px; text-decoration: none;
  color: var(--gl-color-helper); font-size: clamp(12px, 0.82vw, 14px); font-weight: 700; line-height: 1.1; white-space: nowrap;
}
.gl-menu a:hover,
.gl-menu > li.current-menu-item > a,
.gl-menu > li.current_page_item > a,
.gl-menu > li.current-menu-parent > a,
.gl-menu > li.current-menu-ancestor > a,
.gl-menu > li.current_page_parent > a,
.gl-menu > li.current_page_ancestor > a { color: var(--gl-color-text); }
.gl-header__top .gl-menu > li:nth-child(3), .gl-header__top .gl-menu > li:nth-child(5), .gl-header__top .gl-menu > li:nth-child(6) { display: none; }
.gl-header-more { position: relative; display: block; flex: 0 0 auto; }
.gl-header-more__toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 0; min-height: 36px; padding: 0 4px; border: 0; background: transparent; color: var(--gl-color-helper); font-size: 15px; font-weight: 700; line-height: 1; cursor: pointer; }
.gl-header-more__toggle::after { content: ""; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.gl-header-more__menu { position: absolute; top: calc(100% + 12px); left: 50%; z-index: 20; display: grid; min-width: 180px; padding: 10px; border: 1px solid var(--gl-color-line); border-radius: 16px; background: #fff; box-shadow: 0 18px 40px rgba(16, 22, 31, 0.14); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.gl-header-more:hover .gl-header-more__menu, .gl-header-more:focus-within .gl-header-more__menu, .gl-header-more.is-open .gl-header-more__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.gl-header-more__menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--gl-color-text); font-size: 14px; font-weight: 700; line-height: 1.2; text-decoration: none; white-space: nowrap; }
.gl-header-more__menu a:hover, .gl-header-more__menu a:focus { background: rgba(18, 212, 87, .1); color: var(--gl-color-text); }
.gl-header__actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; margin-left: auto; }
.gl-header__phones { display: flex; flex-direction: column; gap: 2px; font-weight: 700; font-size: 14px; align-items: flex-start; }
.gl-header__phones a:hover { color: var(--gl-color-accent-2); }
.gl-header__phones-wrap { flex: 0 0 auto; text-align: right; order: 2; }
.gl-header__phones-wrap, .gl-header__phones-wrap * { line-height: 1.25; }
.gl-header__phones-wrap a, .gl-header__phones-wrap .phone, .gl-header__phones-wrap .gl-phone {
  font-size: clamp(12px, 0.82vw, 14px); font-weight: 800; color: var(--gl-color-text); text-decoration: none; white-space: nowrap;
}
.gl-header__search-icon { order: 3; flex: 0 0 auto; }
.gl-header__search-icon .gl-header-search-trigger-wrap, .gl-header__search-icon .gl-product-search {
  display: flex; align-items: center;
}
.gl-header__icon, .gl-header-search-trigger {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; text-decoration: none; color: var(--gl-color-text);
  border: 1px solid var(--gl-color-line); background: var(--gl-color-surface); flex: 0 0 auto; box-shadow: none;
}
.gl-header__icon:hover, .gl-header-search-trigger:hover { border-color: var(--gl-color-helper); }
.gl-mobile-contact-trigger { display: inline-flex; align-items: center; justify-content: center; color: #12D457; }
.gl-mobile-contact-trigger__icon { display: block; width: 22px; height: 22px; flex: 0 0 22px; }
.gl-account-link { order: 4; }
.gl-cart-link { position: relative; order: 5; }
.gl-header-account-mobile { display: none; }
.gl-cart-count {
  position: absolute; top: -5px; right: -2px; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; background: var(--gl-color-accent); color: #fff; font-size: 11px;
  font-weight: 700; line-height: 20px; text-align: center;
}
.gl-burger {
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  width: 52px; height: 52px; padding: 0; border: 0; background: transparent; cursor: pointer; flex: 0 0 auto;
}
.gl-burger span { display: block; width: 28px; height: 3px; border-radius: 2px; background: var(--gl-color-text); }
.gl-header__search { display: none !important; }
.gl-contact-modal[hidden], .gl-mobile-contacts-modal[hidden] { display: none !important; }

.site-main { padding: 28px 0 80px; }
.gl-hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; padding: 42px; align-items: center;
}
.gl-hero__content h1 { margin: 0 0 16px; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.04em; }
.gl-hero__content p { max-width: 620px; color: var(--gl-color-muted); font-size: 18px; }
.gl-hero__placeholder, .gl-hero__visual img {
  min-height: 520px; border-radius: calc(var(--gl-radius) - 6px); background: linear-gradient(145deg, #f7faf7, #e9eeea);
  display: grid; place-items: center;
}
.gl-hero__placeholder { font-size: 72px; font-weight: 800; color: var(--gl-color-dark); }
.gl-badge {
  display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px;
  border-radius: 999px; color: var(--gl-color-accent-2); border: 1px solid rgba(44,188,99,.35); background: rgba(44,188,99,.08);
  font-size: 14px; font-weight: 600; margin-bottom: 18px;
}
.gl-hero__actions, .gl-product-card__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.gl-btn, .button, button, input[type="submit"], .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  appearance: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: var(--gl-btn-radius); font-weight: 700; transition: .2s ease;
}
.gl-btn--primary, .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  color: #fff !important; background: var(--gl-color-buy-button);
}
.gl-btn--ghost { background: var(--gl-color-surface); border: 1px solid var(--gl-color-line); }
.gl-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.gl-feature-card { min-height: 220px; padding: 28px; display: flex; align-items: end; }
.gl-feature-card h2, .gl-section-head h2, .gl-entry__header h1, .gl-archive-head h1 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; letter-spacing: -.03em; }
.gl-feature-card p, .gl-entry__content, .gl-archive-desc { color: var(--gl-color-muted); }
.gl-home-products { margin-top: 28px; }
.gl-section-head { margin-bottom: 18px; }
.woocommerce ul.products, .products.columns-3 {
  display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; list-style: none; padding: 0; margin: 0;
}
.gl-product-card { padding: 18px; position: relative; overflow: hidden; }
.gl-product-card__image {
  background: linear-gradient(180deg, #f8faf8 0%, #eef3ef 100%);
  border-radius: calc(var(--gl-radius) - 8px); padding: 0px; min-height: 190px; display: flex; align-items: center; justify-content: center;
}
.gl-product-card__body { padding: 20px 6px 10px; }
.gl-product-card .woocommerce-loop-product__title { margin: 0 0 10px; font-size: 26px; line-height: 1.12; letter-spacing: -.03em; }
.gl-product-card .price { color: var(--gl-color-text); font-size: 28px; font-weight: 800; }
.gl-product-card .price ins { text-decoration: none; }
.gl-product-card .button { width: 100%; }
.gl-product-card .button,
.gl-product-card a.button,
.gl-product-card__button,
a.gl-product-card__button {
  background: var(--gl-color-buy-button) !important;
  border-color: var(--gl-color-buy-button) !important;
  color: #fff !important;
}
.gl-product-card .button:hover,
.gl-product-card a.button:hover,
.gl-product-card__button:hover,
a.gl-product-card__button:hover {
  background: var(--gl-color-buy-button) !important;
  border-color: var(--gl-color-buy-button) !important;
  color: #fff !important;
}
.gl-product-card__button--disabled,
a.gl-product-card__button--disabled {
  background: #cfd6d1 !important;
  border-color: #cfd6d1 !important;
  color: #fff !important;
}
.onsale {
  position: absolute; top: 20px; left: 20px; z-index: 2; margin: 0 !important;
  min-height: 34px; line-height: 34px; padding: 0 14px !important; border-radius: 999px !important;
  background: rgba(44,188,99,.08) !important; color: var(--gl-color-accent-2) !important; border: 1px solid rgba(44,188,99,.35) !important;
}
.gl-page, .gl-page-single { display: grid; gap: 24px; }
.gl-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gl-post-card { overflow: hidden; }
.gl-post-card__thumb { display: block; background: #fff; }
.gl-post-card__thumb img { width: 100%; aspect-ratio: 1.25/1; object-fit: cover; background: #fff; }
.gl-post-card__content, .gl-entry { padding: 26px; }
.gl-entry__thumb { margin: 24px 0; overflow: hidden; border-radius: calc(var(--gl-radius) - 6px); }
.gl-entry__content h2, .gl-entry__content h3 { line-height: 1.14; }
.gl-footer { padding: 40px 0 50px; border-top: 1px solid var(--gl-color-line); }
.gl-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 24px; }
.gl-footer h3 { margin-top: 0; }
.gl-footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gl-shop .woocommerce-breadcrumb, .gl-breadcrumbs { margin-bottom: 22px; color: var(--gl-color-muted); }
.woocommerce div.product {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 520px); gap: 32px;
}
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
  background: var(--gl-color-surface); border: 1px solid var(--gl-color-line); border-radius: var(--gl-radius); padding: 24px; box-shadow: var(--gl-shadow);
}
.woocommerce div.product .summary .product_title { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-size: 36px; color: var(--gl-color-text); font-weight: 800; }
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.woocommerce .quantity .qty {
  min-height: 52px; border-radius: 16px; border: 1px solid var(--gl-color-line); padding: 0 12px; width: 88px;
}
.woocommerce ul.products::before{
  display: none;
}
.woocommerce-tabs, .related.products { margin-top: 28px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0; display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--gl-color-line); border-radius: 999px; background: var(--gl-color-surface); padding: 8px 16px;
}
.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--gl-color-surface); border: 1px solid var(--gl-color-line); border-radius: var(--gl-radius); box-shadow: var(--gl-shadow);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.search-form input[type="search"] {
  width: 100%; min-height: 52px; border-radius: 16px; border: 1px solid var(--gl-color-line); background: #fff; padding: 0 16px;
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .gl-header__top { grid-template-columns: auto auto minmax(0, 1fr) auto auto; gap: 18px; }
  .gl-logo img, .gl-logo svg, .gl-logo-block { max-width: 170px; }
  .gl-menu { gap: 12px; }
  .gl-menu > li:nth-child(3), .gl-menu > li:nth-child(5), .gl-menu > li:nth-child(6) { display: none; }
  .gl-header-more { display: block; }
  .gl-header__icon, .gl-header-search-trigger { width: 46px; height: 46px; }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .gl-header__top { grid-template-columns: auto auto minmax(0, 1fr) auto auto; gap: 14px; }
  .gl-logo img, .gl-logo svg, .gl-logo-block { max-width: 145px; }
  .gl-logo-slogan { font-size: clamp(7px, 0.7vw, 9px); line-height: 1.4; min-height: 1.4em; }
  .gl-menu { gap: 10px; }
  .gl-menu > li:nth-child(3), .gl-menu > li:nth-child(5), .gl-menu > li:nth-child(6) { display: none; }
  .gl-header-more { display: block; }
  .gl-menu > li > a,
  .gl-header__phones-wrap a,
  .gl-header__phones-wrap .phone,
  .gl-header__phones-wrap .gl-phone { font-size: 14px; }
  .gl-header__icon, .gl-header-search-trigger { width: 50px; height: 50px; }
}

@media (max-width: 1100px) {
  .gl-hero, .woocommerce div.product, .gl-footer__grid { grid-template-columns: 1fr; }
  .gl-section-grid, .gl-posts-grid, .woocommerce ul.products, .products.columns-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 991px) {
  .mobile { display: inline-flex !important; }
  .desktop { display: none !important; }
  .gl-header__top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 10px 0; }
  .gl-header__brand { gap: 10px; min-width: 0; }
  .gl-burger { display: inline-flex; }
  .gl-logo img, .gl-logo svg { max-width: 145px; }
  .gl-logo-slogan { font-size: clamp(6px, 1.8vw, 8px); line-height: 1.45; min-height: 1.45em; margin-top: 5px; }
  .gl-header__phones-wrap { display: none; }
  .gl-header__top .gl-header__catalog,
  .gl-header__top .gl-nav,
  .gl-header-more,
  .gl-header__actions .gl-write-btn { display: none; }
  .gl-header__actions { gap: 8px; margin-left: auto; }
  .gl-header__search-icon--desktop { display: none; }
  .gl-account-link { display: none; }
  .gl-cart-link { order: 2; }
  .gl-header__icon, .gl-header-search-trigger { width: 42px; height: 42px; }
  .gl-cart-count { min-width: 18px; height: 18px; font-size: 10px; line-height: 18px; top: -4px; right: -2px; }
  .gl-header__bottom { display: none; padding: 10px 0 12px; border-top: 1px solid var(--gl-color-line); }
  .gl-header__bottom.is-open { display: flex; flex-direction: column; gap: 12px; }
  .gl-header__bottom .gl-header__search-mobile { display: none; order: 0 !important; }
  .gl-header__bottom .gl-header__catalog--mobile { display: block; order: 10 !important; }
  .gl-header-account-mobile { display: flex; align-items: center; gap: 10px; order: 30 !important; margin: 0; padding: 12px 14px; border: 1px solid var(--gl-color-line); border-radius: 16px; background: var(--gl-color-surface); color: var(--gl-color-text); font-size: 15px; font-weight: 800; text-decoration: none; }
  .gl-header-account-mobile__icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(18, 212, 87, .1); color: #12D457; }
  .gl-header__bottom .gl-nav--mobile { display: block; order: 20 !important; }
  .gl-header__bottom .gl-menu { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; overflow: visible; }
  .gl-header__bottom .gl-menu > li, .gl-header__bottom .gl-menu > li > a { width: 100%; }
}

@media (max-width: 767px) {
  .gl-container { width: min(100% - 20px, var(--gl-container)); }
  .gl-header__actions { gap: 10px; }
  .gl-header__phones { display: none; }
  .site-main { padding: 18px 0 56px; }
  .gl-hero { padding: 20px; gap: 20px; }
  .gl-hero__placeholder, .gl-hero__visual img { min-height: 280px; }
  .gl-posts-grid, .gl-section-grid, .woocommerce ul.products, .products.columns-3 { grid-template-columns: 1fr !important; }
  .gl-feature-card, .gl-post-card__content, .gl-entry { padding: 20px; }
  .gl-product-card__image { min-height: 240px; }
  .woocommerce div.product .summary .product_title { font-size: 34px; }
}


.gl-homepage .gl-home-section { margin-top: 34px; }
.gl-section-head--between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gl-section-link { color: var(--gl-color-muted); font-weight: 700; }
.gl-section-link:hover { color: var(--gl-color-accent-2); }
.gl-home-banners {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, .9fr);
  gap: 24px;
  grid-template-areas:
    "primary side"
    "left right";
}
.gl-home-banner {
  display: flex;
  gap: 24px;
  min-height: 360px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: #edf0f0;
}

.gl-home-banner--primary { grid-area: primary; align-items: center; min-height: 450px; }
.gl-home-banner--side { grid-area: side; flex-direction: column; justify-content: space-between; align-items: center; text-align: center; }
.gl-home-banner--bottom-left { grid-area: left; flex-direction: column; justify-content: space-between; }
.gl-home-banner--bottom-right { grid-area: right; flex-direction: column; justify-content: space-between; }
.gl-home-banner__content { position: relative; z-index: 2; max-width: 420px; }
.gl-home-banner__content--compact { max-width: 260px; }
.gl-home-banner__content--top { align-self: flex-start; }
.gl-home-banner__content--right { align-self: flex-end; text-align: right; }
.gl-home-banner__content h1,
.gl-home-banner__content h2 {
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.gl-home-banner__content h1 { font-size: clamp(34px, 4vw, 54px); }
.gl-home-banner__content h2 { font-size: clamp(28px, 3vw, 40px); }
.gl-home-banner__content p { margin: 0; color: var(--gl-color-text); font-size: 18px; line-height: 1.2; }
.gl-home-banner__action {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.6);
  font-weight: 700;
}
.gl-home-banner__media {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.gl-home-banner__media img {
  max-height: 330px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(16,22,31,.14));
}
.gl-home-banner--primary .gl-home-banner__media img { max-height: 420px; }
.gl-home-banner__placeholder {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
}
.gl-home-banner__placeholder--circle::before {
  content: "";
  position: absolute;
  inset: 12% 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #293241, #0f141b 68%);
  box-shadow: inset 0 0 0 12px #6d7179, inset 0 0 0 22px #0f141b, 0 24px 34px rgba(16,22,31,.2);
}
.gl-home-banner__placeholder--ring { width: 230px; height: 230px; }
.gl-home-banner__placeholder--ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 26px solid #343a40;
  box-shadow: inset 0 0 0 10px #565c63, 0 20px 30px rgba(16,22,31,.18);
  transform: rotate(-18deg);
}
.gl-home-banner__placeholder--glasses { width: 340px; height: 180px; }
.gl-home-banner__placeholder--glasses::before,
.gl-home-banner__placeholder--glasses::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 112px;
  height: 92px;
  border: 14px solid #24282d;
  border-radius: 34px;
}
.gl-home-banner__placeholder--glasses::before { left: 38px; }
.gl-home-banner__placeholder--glasses::after { right: 38px; }
.gl-home-banner__placeholder--glasses {
  background:
    linear-gradient(#24282d, #24282d) center 68px/64px 14px no-repeat,
    linear-gradient(#24282d, #24282d) left 8px bottom 24px/100px 18px no-repeat,
    linear-gradient(#24282d, #24282d) right 8px bottom 24px/100px 18px no-repeat;
}
.gl-home-banner__placeholder--router { width: 420px; height: 240px; }
.gl-home-banner__placeholder--router::before {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 28px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1b1f24, #0f1318);
  box-shadow: 0 16px 24px rgba(16,22,31,.22);
}
.gl-home-banner__placeholder--router::after {
  content: "";
  position: absolute;
  left: 78px;
  right: 78px;
  top: 8px;
  height: 150px;
  background:
    linear-gradient(#1f242a, #1f242a) 0 100%/10px 100% no-repeat,
    linear-gradient(#1f242a, #1f242a) 18% 100%/10px 100% no-repeat,
    linear-gradient(#1f242a, #1f242a) 38% 100%/10px 100% no-repeat,
    linear-gradient(#1f242a, #1f242a) 62% 100%/10px 100% no-repeat,
    linear-gradient(#1f242a, #1f242a) 82% 100%/10px 100% no-repeat,
    linear-gradient(#1f242a, #1f242a) 100% 100%/10px 100% no-repeat;
}
.gl-home-products .products.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.gl-home-trust { padding: 34px; }
.gl-trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gl-trust-item {
  padding: 24px;
  border: 1px solid var(--gl-color-line);
  border-radius: calc(var(--gl-radius) - 8px);
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.94));
}
.gl-trust-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(44,188,99,.24) 0 34%, transparent 36%),
    linear-gradient(180deg, rgba(44,188,99,.12), rgba(44,188,99,.03));
  border: 1px solid rgba(44,188,99,.22);
}
.gl-trust-item h3, .gl-post-card h3 { margin: 0 0 10px; font-size: 26px; line-height: 1.15; }
.gl-trust-item p, .gl-post-card p, .gl-review-card__text { margin: 0; color: var(--gl-color-muted); }
.gl-post-card__meta { color: var(--gl-color-muted); font-size: 14px; margin-bottom: 10px; }
.gl-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gl-review-card { padding: 28px; }
.gl-review-card__rating { color: var(--gl-color-accent-2); letter-spacing: .14em; margin-bottom: 16px; font-size: 18px; }
.gl-review-card__author { margin-top: 18px; font-weight: 800; font-size: 18px; }
@media (max-width: 1100px) {
  .gl-home-banners {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "primary primary"
      "side left"
      "right right";
  }
  .gl-home-products .products.columns-4,
  .gl-trust-grid,
  .gl-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 767px) {
  .gl-section-head--between { align-items: flex-start; flex-direction: column; }
  .gl-home-banners { grid-template-columns: 1fr; grid-template-areas: "primary" "side" "left" "right"; }
  .gl-home-banner { min-height: 280px; padding: 20px; flex-direction: column; align-items: flex-start; }
  .gl-home-banner--side { text-align: left; align-items: flex-start; }
  .gl-home-banner__content--right { text-align: left; align-self: flex-start; }
  .gl-home-banner__media { width: 100%; }
  .gl-home-banner__media img { max-height: 220px; }
  .gl-home-banner--primary .gl-home-banner__media img { max-height: 260px; }
  .gl-home-products .products.columns-4,
  .gl-trust-grid,
  .gl-reviews-grid { grid-template-columns: 1fr !important; }
  .gl-home-trust { padding: 20px; }
}
.gl-myaccount-auth {
  max-width: 720px;
  margin: 0 auto;
}
.gl-myaccount-auth__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--gl-color-line);
  border-radius: 18px;
  background: #f4f6f8;
}
.gl-myaccount-auth__tab {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--gl-color-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.gl-myaccount-auth__tab:hover,
.gl-myaccount-auth__tab.is-active {
  background: var(--gl-color-dark);
  color: #fff;
}
.gl-myaccount-auth__panel {
  background: var(--gl-color-surface);
  border: 1px solid var(--gl-color-line);
  border-radius: var(--gl-radius);
  padding: 28px;
  box-shadow: var(--gl-shadow);
}
.gl-myaccount-auth__panel[hidden] {
  display: none;
}
.gl-myaccount-auth__title {
  margin: 0 0 22px;
  color: var(--gl-color-heading);
  font-size: 28px;
  line-height: 1.2;
}
.gl-myaccount-auth__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gl-myaccount-auth__hint {
  margin: -4px 0 18px;
  color: var(--gl-color-muted);
}
.gl-myaccount-auth .woocommerce-form-login__rememberme {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gl-color-heading);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.gl-myaccount-auth .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  border: 2px solid var(--gl-color-line);
  border-radius: 7px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gl-myaccount-auth .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox:checked {
  border-color: var(--gl-color-accent);
  background: var(--gl-color-accent);
  box-shadow: 0 6px 14px rgba(18, 212, 87, .24);
}
.gl-myaccount-auth .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  margin: 2px 0 0 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.gl-myaccount-auth .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox:focus-visible {
  outline: 3px solid rgba(18, 212, 87, .24);
  outline-offset: 2px;
}
.gl-myaccount-auth .woocommerce-form-login__rememberme span {
  line-height: 1.35;
}
@media (max-width: 600px) {
  .gl-myaccount-auth__tabs {
    grid-template-columns: 1fr;
  }
  .gl-myaccount-auth__panel {
    padding: 20px;
  }
  .gl-myaccount-auth__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.gl-myaccount-auth form.woocommerce-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gl-myaccount-auth form.woocommerce-form > p {
  margin: 0;
}
.gl-myaccount-auth .form-row label:not(.woocommerce-form-login__rememberme):not(.gl-personal-data-consent label) {
  display: block;
  margin-bottom: 8px;
  color: var(--gl-color-muted);
  font-weight: 600;
}
.gl-myaccount-auth .form-row input.input-text,
.gl-myaccount-auth .form-row .woocommerce-Input {
  width: 100%;
}
.gl-myaccount-auth__actions {
  margin-top: 2px !important;
}
.gl-myaccount-auth .lost_password {
  margin-top: -4px !important;
}
.gl-myaccount-auth .gl-personal-data-consent {
  margin: 0;
  color: var(--gl-color-muted);
  font-size: 14px;
  line-height: 1.5;
}
.gl-myaccount-auth .gl-personal-data-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-weight: 500;
}
.gl-myaccount-auth .gl-personal-data-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gl-color-accent);
}
.gl-myaccount-auth .gl-personal-data-consent a {
  color: var(--gl-color-accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gl-post-category-tabs {
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.gl-post-category-tabs::-webkit-scrollbar { display: none; }

.gl-post-category-tabs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.gl-post-category-tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--gl-color-line);
  border-radius: var(--gl-btn-radius);
  background: var(--gl-color-surface);
  color: var(--gl-color-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gl-post-category-tabs__button:hover,
.gl-post-category-tabs__button.is-active {
  border-color: var(--gl-color-accent);
  background: var(--gl-color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 212, 87, .18);
}

.gl-post-card[hidden] { display: none; }

.gl-archive-head {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.gl-archive-head h1 {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .gl-archive-head h1 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
  }
}
