:root {
  --c-primary:        #386AF6; 
  --c-primary-2:      #2859E5; 
  --c-primary-soft:   #7B9CEA; 
  --c-green:          #4CAF50;
  --c-red:            #D64545;
  --navy-900:         #080B16; 
  --navy-800:         #0B1330; 
  --navy-700:         #101B3F;
  --gray-0:           #FFFFFF;
  --gray-50:          #F7F7F5; 
  --gray-100:         #E5E7EB; 
  --gray-200:         #C9CCD1; 
  --gray-400:         #AEB4BC;
  --gray-600:         #6B7280;
  --gray-900:         #2B2B2B; 
  --bg:               var(--gray-0);
  --bg-soft:          var(--gray-50);
  --text:             var(--gray-900);
  --text-muted:       var(--gray-600);
  --border:           var(--gray-100);
  --link:             var(--c-primary);
  --font-base: "YekanBakh", Tahoma, system-ui, sans-serif;
  --fs-xs:   0.75rem;   
  --fs-sm:   0.875rem;  
  --fs-base: 1rem;      
  --fs-md:   1.125rem;  
  --fs-lg:   1.375rem;  
  --fs-xl:   1.75rem;   
  --fs-2xl:  2.25rem;   
  --fs-3xl:  2.75rem;   
  --lh-tight: 1.35;
  --lh-base:  1.8;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(8, 11, 22, 0.06);
  --shadow:    0 6px 20px rgba(8, 11, 22, 0.08);
  --shadow-lg: 0 16px 40px rgba(8, 11, 22, 0.14);
  --container: 1420px;
  --content-pad: 48px;
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;
}
@media (max-width: 1320px) {
  :root { --content-pad: 32px; }
}
@media (max-width: 1024px) {
  :root { --content-pad: 20px; }
}
@media (max-width: 767px) {
  :root {
    --content-pad: 16px;
    --header-h: 60px;
    --fs-lg:  1.25rem;
    --fs-xl:  1.5rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.125rem;
  }
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-SemiBold.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakhFaNum-ExtraBlack.woff2") format("woff2");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  direction: rtl;
  overflow-x: clip;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: var(--lh-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-4);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: inherit;
}
p {
  margin: 0 0 var(--sp-4);
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover {
  color: var(--c-primary);
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}
.ghs-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.ghs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ghs-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
}
.ghs-btn--primary:hover {
  color: #fff;
  box-shadow: 0 6px 16px rgba(56, 106, 246, 0.35);
}
.ghs-btn--ghost {
  color: var(--text);
  background: var(--gray-0);
  border-color: var(--gray-200);
}
.ghs-btn--ghost:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-0);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(56, 106, 246, 0.15);
}
.ghs-section-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: var(--sp-3);
}
.ghs-section-sub {
  text-align: center;
  color: var(--text);
  margin-bottom: var(--sp-6);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  min-height: var(--header-h);
}
.site-logo__img {
  display: block;
  width: auto;
  height: 48px;
}
.site-logo .site-logo__img { height: 48px; }
.site-logo__img--light { display: none; }
.header-nav {
  flex: 1;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.header-nav__list a {
  display: block;
  padding: 6px 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.header-nav__list a:hover,
.header-nav__list .current-menu-item > a {
  color: var(--c-primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-inline-start: auto;
}
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.header-cart:hover { color: var(--c-primary); }
.ghs-cart-count {
  position: absolute;
  top: -7px;
  inset-inline-end: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: #FF3B30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.header-login { white-space: nowrap; }
.header-burger {
  display: none;
  color: inherit;
}
.header-burger__close { display: none; }
.header-burger[aria-expanded="true"] .header-burger__open { display: none; }
.header-burger[aria-expanded="true"] .header-burger__close { display: inline-flex; }
.site-header--overlay {
  position: absolute;
  inset-inline: 0;
  top: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--overlay .site-header__inner { padding-top: var(--sp-5); }
.site-header--overlay .site-logo__img--dark { display: none; }
.site-header--overlay .site-logo__img--light { display: block; }
.site-header--overlay .header-nav__list a,
.site-header--overlay .header-cart {
  color: #fff;
}
.site-header--overlay .header-nav__list a:hover,
.site-header--overlay .header-cart:hover {
  color: var(--c-primary-soft);
}
.site-header--overlay .header-burger { color: #fff; }
.ghs-overlay-header .site-header.is-stuck {
  position: fixed;
  background: var(--navy-800);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.ghs-overlay-header .site-header.is-stuck .site-header__inner { padding-top: 0; }
.site-header--solid.is-stuck {
  box-shadow: var(--shadow-sm);
}
.site-footer {
  position: relative;
  margin-top: var(--sp-8);
  background: var(--navy-900) url("../img/gradient-1.png") center / cover no-repeat;
  color: #fff;
}
.ghs-overlay-header .site-footer { margin-top: 0; }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: var(--sp-8);
  padding-block: var(--sp-8) var(--sp-7);
}
.footer-logo { display: inline-block; margin-bottom: var(--sp-4); }
.footer-logo img { height: 48px; width: auto; }
.footer-about__text {
  font-size: var(--fs-sm);
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.footer-socials a {
  display: inline-flex;
  opacity: 0.9;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-heading {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-primary-soft);
  margin-bottom: var(--sp-3);
}
.footer-links__list li + li { margin-top: var(--sp-2); }
.footer-links__list a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
}
.footer-links__list a:hover { color: var(--c-primary-soft); }
.footer-office p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-4);
}
.footer-office__phone { text-align: start; margin-bottom: var(--sp-2); }
.footer-support {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s, background 0.15s;
}
.footer-support:hover {
  border-color: var(--c-primary-soft);
  background: rgba(255, 255, 255, 0.08);
}
.footer-support__icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
}
.footer-support__body { display: grid; gap: 2px; }
.footer-support__label {
  font-size: var(--fs-xs);
  color: var(--c-primary-soft);
}
.footer-support__num {
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: start;
}
.footer-badges {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.footer-badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.footer-badges img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.site-footer__bottom {
  border-top: 1px solid rgba(123, 156, 234, 0.35);
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
}
.site-footer__bottom-inner p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1024px) {
  .header-burger { display: inline-flex; }
  .header-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 120;
    width: min(320px, 85vw);
    padding: var(--sp-7) var(--sp-5);
    background: var(--gray-0);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--dur) var(--ease);
    overflow-y: auto;
  }
  [dir="rtl"] .header-nav { transform: translateX(100%); }
  .header-nav:dir(rtl) { transform: translateX(100%); }
  body.nav-open .header-nav { transform: translateX(0); }
  .header-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header-nav__list a {
    padding: var(--sp-3) 0;
    font-size: var(--fs-base);
    color: var(--text) !important;
    border-bottom: 1px solid var(--gray-100);
  }
  .header-nav__scrim {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(8, 11, 22, 0.5);
  }
  body:not(.nav-open) .header-nav__scrim { display: none; }
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .header-login {
    padding: 8px 14px;
    font-size: var(--fs-xs);
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-block: var(--sp-6);
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    gap: var(--sp-1);
    text-align: center;
  }
}
.home .site-main {
  background: var(--gray-0) url("../img/patern.png") top center / 1920px auto repeat-y;
}
.ghs-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(56, 106, 246, 0.12), rgba(0, 0, 0, 0.49)),
    var(--navy-900) url("../img/shape.png") center / cover no-repeat;
  color: #fff;
  padding-top: calc(var(--header-h) + var(--sp-8));
  padding-bottom: var(--sp-7);
}
.ghs-hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: var(--sp-7);
}
.ghs-hero__text {
  text-align: start;
}
.ghs-hero__inner > *,
.ghs-buy__card > * {
  min-width: 0;
}
.ghs-hero__title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.ghs-hero__sub {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-primary-soft);
}
.ghs-hero__notice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: #fff;
}
.ghs-hero__notice p { margin: 0; }
.ghs-buy { margin-top: calc(-1 * var(--sp-6)); position: relative; z-index: 2; }
.ghs-buy__card {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow);
}
.ghs-buy__intro { flex: 0 0 auto; max-width: 260px; }
.ghs-buy__title {
  font-size: var(--fs-lg);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.ghs-buy__sub {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.ghs-buy__form { flex: 1; }
.ghs-packages { padding-block: var(--sp-8) var(--sp-6); }
.ghs-center { text-align: center; margin-top: var(--sp-6); }
.ghs-features { padding-block: var(--sp-6); }
.ghs-features__grid,
.ghs-process__steps {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.ghs-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 200px;
  padding: var(--sp-5) var(--sp-4);
  background: linear-gradient(180deg, #FFFFFF, #F4F5F7);
  border: 1px solid rgba(201, 204, 209, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.ghs-feature-card img { width: 88px; height: 88px; object-fit: contain; }
.ghs-feature-card p {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.ghs-delivery {
  margin-top: var(--sp-7);
  background: var(--navy-900) url("../img/shape-1.png") center / cover no-repeat;
  color: #fff;
}
.ghs-delivery__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: var(--sp-7);
  padding-block: var(--sp-5);
}
.ghs-delivery__text { text-align: start; }
.ghs-delivery__eyebrow {
  font-size: var(--fs-sm);
  color: var(--gray-100);
  margin-bottom: var(--sp-2);
}
.ghs-delivery__title {
  color: var(--c-primary-soft);
  font-size: var(--fs-xl);
}
.ghs-delivery__desc {
  color: var(--gray-100);
  font-size: var(--fs-sm);
  line-height: 2;
  margin-bottom: var(--sp-5);
}
.ghs-delivery__image {
  order: -1;
  margin-block: -60px;
  line-height: 0;
}
.ghs-delivery__image img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(123, 156, 234, 0.35);
}
.ghs-faq {
  padding-block: var(--sp-8);
  background: linear-gradient(180deg, #F2F3F5, #E8EAEE);
}
.ghs-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-5);
  align-items: start;
}
.ghs-faq__col { display: grid; gap: var(--sp-4); }
.ghs-faq__item {
  background: linear-gradient(90deg, #FFFFFF, #F0F1F3);
  border: 1px solid rgba(201, 204, 209, 0.7);
  border-radius: var(--radius);
}
.ghs-faq__item summary {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-4);
  font-weight: 600;
}
.ghs-faq__item summary::-webkit-details-marker { display: none; }
.ghs-faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #C7D6FB;
  color: var(--c-primary);
  font-weight: 800;
}
.ghs-faq__q { flex: 1; font-size: var(--fs-sm); }
.ghs-faq__chevron {
  display: inline-flex;
  color: var(--gray-600);
  transition: transform var(--dur) var(--ease);
}
.ghs-faq__item[open] .ghs-faq__chevron { transform: rotate(180deg); }
.ghs-faq__a {
  padding: 0 calc(36px + 2 * var(--sp-3) + var(--sp-1)) var(--sp-4) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.ghs-licenses {
  background: linear-gradient(90deg, #C8CBD2, #B6B9CC);
}
.ghs-licenses__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-block: var(--sp-6);
}
.ghs-licenses__text { max-width: 480px; }
.ghs-licenses__text h2 {
  color: var(--navy-900);
  font-size: var(--fs-lg);
}
.ghs-licenses__text p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.ghs-licenses__badges {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.ghs-licenses__badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 10px;
  background: #D8DAEF;
  border-radius: var(--radius-sm);
}
.ghs-licenses__badges img { max-height: 100%; width: auto; object-fit: contain; }
.ghs-process { padding-block: var(--sp-8); }
.ghs-process__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.ghs-process__illu { max-height: 170px; width: auto; justify-self: center; }
.ghs-process__title { text-align: center; }
.ghs-process__title h2 {
  color: #676E7B;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.ghs-process__name { max-height: 56px; width: auto; margin-bottom: var(--sp-3); }
.ghs-process__title p { margin: 0; font-size: var(--fs-sm); }
.ghs-blog { padding-block: var(--sp-7); }
.ghs-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.ghs-post-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-0);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ghs-post-card__thumb { display: block; aspect-ratio: 16 / 10; }
.ghs-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ghs-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
  padding: var(--sp-4);
}
.ghs-post-card__title { font-size: var(--fs-md); margin: 0; }
.ghs-post-card__title a:hover { color: var(--c-primary); }
.ghs-post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  flex: 1;
}
.ghs-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  border-top: 1px solid var(--gray-100);
  padding-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--gray-600);
}
.ghs-post-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ghs-seo { padding-block: var(--sp-6) var(--sp-8); }
.ghs-seo__text {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--text);
  transition: max-height 0.4s var(--ease);
}
.ghs-seo__text:not(.is-expanded)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--gray-0));
}
.ghs-seo__text.is-expanded { max-height: none; }
.ghs-seo__text h3 { font-size: var(--fs-base); margin-top: var(--sp-5); }
.ghs-seo__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  color: var(--c-primary);
  font-weight: 600;
}
.ghs-seo__toggle .ghs-faq__chevron { color: inherit; }
.ghs-seo__toggle.is-open .ghs-faq__chevron { transform: rotate(180deg); }
@media (max-width: 1024px) {
  .ghs-hero__inner { grid-template-columns: 1fr; }
  .ghs-hero__text { text-align: center; }
  .ghs-buy__card { flex-direction: column; align-items: stretch; }
  .ghs-buy__intro { max-width: none; text-align: center; }
  .ghs-delivery__inner { grid-template-columns: 1fr; }
  .ghs-delivery__inner { padding-block: var(--sp-8); }
  .ghs-delivery__image { order: -1; text-align: center; margin-block: 0; }
  .ghs-delivery__text { text-align: center; }
  .ghs-delivery__image img { width: 260px; height: 260px; }
  .ghs-faq__grid { grid-template-columns: 1fr; }
  .ghs-licenses__inner { flex-direction: column; text-align: center; }
  .ghs-process__head { grid-template-columns: 1fr; }
  .ghs-process__illu { display: none; }
  .ghs-blog__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .ghs-blog__grid { grid-template-columns: 1fr; }
  .ghs-features__grid,
  .ghs-process__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ghs-feature-card { width: auto; }
}
.ghs-hero--shop {
  background:
    var(--navy-800) url("../img/shape-1-1.png") center / cover no-repeat;
  background-color: #17255c;
  padding-bottom: var(--sp-6);
}
.ghs-hero__inner--shop {
  grid-template-columns: 1fr 340px 430px;
  align-items: start;
}
.ghs-hero__inner--shop .ghs-hero__text { padding-top: var(--sp-7); }
.ghs-hero__buycard {
  background: var(--gray-0);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
}
.ghs-hero__buycard .gsp-purchase-row {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
}
.ghs-hero__buycard .gsp-field-group,
.ghs-hero__buycard .gsp-buy-btn {
  max-width: none;
  min-width: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .ghs-hero__inner--shop { grid-template-columns: 1fr; }
  .ghs-hero__inner--shop .ghs-hero__text { padding-top: 0; }
}
.ghs-page { padding-block: var(--sp-6) var(--sp-7); }
.ghs-page__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-5);
}
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-0);
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: var(--sp-4);
  text-align: start;
  border-bottom: 1px solid var(--gray-100);
}
.woocommerce table.shop_table thead th {
  background: var(--gray-50);
  font-weight: 600;
  font-size: var(--fs-sm);
}
.woocommerce table.shop_table tbody tr:last-child td { border-bottom: 0; }
.woocommerce a.remove {
  color: var(--c-red);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce .quantity .qty {
  width: 72px;
  text-align: center;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
  border: 1px solid var(--gray-100);
  border-inline-start: 4px solid var(--c-primary);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  list-style: none;
}
.woocommerce-error { border-inline-start-color: var(--c-red); }
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-inline-start: auto;
  order: 2;
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-0);
  color: var(--text);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.woocommerce .button:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.woocommerce button[name="apply_coupon"],
.woocommerce .checkout-button {
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  border: 0;
}
.cart_totals {
  max-width: none;
  margin-inline: 0;
  padding: var(--sp-5);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}
.cart_totals h2 { display: none; }
.cart_totals table.shop_table {
  border: 0;
  background: transparent;
  margin-bottom: var(--sp-4);
}
.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  background: transparent;
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.cart_totals table.shop_table th {
  width: 1%;
  text-align: start;
  font-weight: 600;
  color: var(--text-muted);
}
.cart_totals table.shop_table td { text-align: end; font-weight: 700; }
.cart_totals table.shop_table tr:last-child th,
.cart_totals table.shop_table tr:last-child td { border-bottom: 0; }
.cart_totals .order-total td { color: var(--c-primary); font-size: var(--fs-base); }
.cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
}
.cart-collaterals .gsp-pay-notes { grid-column: 1; }
.cart-collaterals .cart_totals { grid-column: 2; }
.woocommerce .coupon {
  display: inline-flex;
  gap: var(--sp-2);
  align-items: center;
}
.woocommerce .coupon .input-text { width: 160px; }
.ghs-legal {
  padding-block: var(--sp-8) var(--sp-9);
  background:
    linear-gradient(180deg, rgba(56, 106, 246, 0.04), transparent 340px),
    var(--bg);
}
.ghs-legal__head {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.ghs-legal__title {
  color: var(--c-primary);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
}
.ghs-legal__lead {
  max-width: 900px;
  margin-inline: auto;
  color: var(--text-muted);
  line-height: var(--lh-base);
}
.ghs-legal__lead p:last-child { margin-bottom: 0; }
.ghs-legal__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  gap: var(--sp-7);
}
.ghs-legal__toc {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.ghs-legal__toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.ghs-legal__toc-title {
  font-weight: 700;
  font-size: var(--fs-md);
}
.ghs-legal__toc-chevron {
  display: inline-flex;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease);
}
.ghs-legal__toc-head[aria-expanded="false"] .ghs-legal__toc-chevron { transform: rotate(-90deg); }
.ghs-legal__toc-list {
  margin-top: var(--sp-4);
  display: grid;
  gap: 2px;
  max-height: calc(100vh - var(--header-h) - 9rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ghs-legal__toc-head[aria-expanded="false"] + .ghs-legal__toc-list { display: none; }
.ghs-legal__toc-list a {
  display: flex;
  gap: var(--sp-2);
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.7;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ghs-legal__toc-list a:hover { background: rgba(56, 106, 246, 0.08); color: var(--c-primary); }
.ghs-legal__toc-list .is-active a {
  background: rgba(56, 106, 246, 0.12);
  color: var(--c-primary);
  font-weight: 600;
}
.ghs-legal__toc-num { flex: none; color: var(--text-muted); }
.ghs-legal__toc-list .is-active .ghs-legal__toc-num { color: inherit; }
.ghs-legal__body {
  line-height: var(--lh-base);
  --anchor-offset: calc(var(--header-h) + var(--sp-5));
}
.ghs-legal__intro {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.ghs-legal__section {
  scroll-margin-top: var(--anchor-offset);
  padding-top: var(--sp-6);
}
.ghs-legal__section-title {
  display: flex;
  gap: var(--sp-2);
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.ghs-legal__section-num { flex: none; color: var(--c-primary); }
.ghs-legal__section-body p { margin-bottom: var(--sp-3); }
.ghs-legal__section-body p:last-child { margin-bottom: 0; }
.ghs-legal__section-body ul {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  padding-inline-start: var(--sp-4);
}
.ghs-legal__section-body li {
  position: relative;
  padding-inline-start: var(--sp-4);
}
.ghs-legal__section-body li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}
.ghs-legal__section-body strong { font-weight: 700; }
@media (max-width: 1024px) {
  .ghs-legal { padding-block: var(--sp-6) var(--sp-8); }
  .ghs-legal__head { margin-bottom: var(--sp-6); }
  .ghs-legal__layout { grid-template-columns: 1fr; gap: var(--sp-5); }
  .ghs-legal__toc { position: static; padding: var(--sp-4); }
  .ghs-legal__toc-list { max-height: none; }
  .ghs-legal__section { padding-top: var(--sp-5); }
}
.ghs-side-cart { position: fixed; inset: 0; z-index: 1100; }
.ghs-side-cart[hidden] { display: none; }
.ghs-side-cart__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 22, 0.5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.ghs-side-cart.is-open .ghs-side-cart__scrim { opacity: 1; }
.ghs-side-cart__panel {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  box-shadow: 0 0 48px rgba(8, 11, 22, 0.22);
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
}
[dir="ltr"] .ghs-side-cart__panel { transform: translateX(-100%); }
.ghs-side-cart.is-open .ghs-side-cart__panel { transform: none; }
.ghs-side-cart__handle { display: none; }
.ghs-side-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.ghs-side-cart__heading {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-md);
  font-weight: 700;
}
.ghs-side-cart__count {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  border-radius: var(--radius-pill);
  background: var(--c-primary);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
}
.ghs-side-cart__count[hidden] { display: none; }
.ghs-side-cart__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.ghs-side-cart__close:hover { color: var(--text); }
.ghs-side-cart__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.ghs-side-cart__content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.ghs-side-cart.is-busy .ghs-side-cart__content { opacity: 0.5; pointer-events: none; }
.ghs-side-cart__items {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--sp-2) var(--sp-5);
}
.ghs-side-cart__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.ghs-side-cart__item:last-child { border-bottom: 0; }
.ghs-side-cart__thumb { flex: none; }
.ghs-side-cart__thumb img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: block;
}
.ghs-side-cart__info { flex: 1 1 auto; min-width: 0; }
.ghs-side-cart__name {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.7;
}
.ghs-side-cart__name a { color: var(--text); }
.ghs-side-cart__name a:hover { color: var(--c-primary); }
.ghs-side-cart__meta {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.ghs-side-cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.ghs-side-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ghs-side-cart__step {
  width: 28px;
  height: 30px;
  border: 0;
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ghs-side-cart__step:hover { background: var(--bg-soft); color: var(--c-primary); }
.ghs-side-cart__qty-num {
  min-width: 30px;
  padding-block: 4px;
  text-align: center;
  font-size: var(--fs-sm);
  border-inline: 1px solid var(--border);
}
.ghs-side-cart__price {
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
}
.ghs-side-cart__remove {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.ghs-side-cart__remove:hover { color: var(--c-red); }
.ghs-side-cart__remove svg { width: 16px; height: 16px; }
.ghs-side-cart__item .gsp-cart-timer {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
}
.ghs-side-cart__empty {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8) var(--sp-5);
  color: var(--text-muted);
  text-align: center;
}
.ghs-side-cart__empty-icon { color: var(--gray-400); }
.ghs-side-cart__empty-icon svg { width: 44px; height: 44px; }
.ghs-side-cart__foot {
  flex: none;
  padding: var(--sp-5);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.ghs-side-cart__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.ghs-side-cart__line + .ghs-side-cart__line { margin-top: var(--sp-2); }
.ghs-side-cart__line--total {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text);
}
.ghs-side-cart__total { color: var(--c-primary); }
.ghs-side-cart__actions {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.ghs-side-cart__actions .ghs-btn { width: 100%; }
.ghs-side-cart__more {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding-block: var(--sp-2);
}
.ghs-side-cart__more:hover { color: var(--c-primary); }
@media (max-width: 767px) {
  .ghs-side-cart__panel {
    inset: auto 0 0 0;
    width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }
  [dir="ltr"] .ghs-side-cart__panel { transform: translateY(100%); }
  .ghs-side-cart.is-open .ghs-side-cart__panel { transform: none; }
  .ghs-side-cart__handle {
    display: block;
    width: 44px;
    height: 4px;
    margin: var(--sp-3) auto 0;
    background: var(--gray-200);
    border-radius: var(--radius-pill);
  }
  .ghs-side-cart__head { padding-block: var(--sp-3) var(--sp-4); }
}
body.side-cart-open { overflow: hidden; }
.ghs-blog-page { padding-block: var(--sp-7) var(--sp-9); }
.ghs-blog-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: start;
  gap: var(--sp-7);
}
.ghs-blog-hero--archive { grid-template-columns: 1fr; }
.ghs-blog-hero__title {
  color: var(--c-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.ghs-blog-hero__desc {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-5);
}
.ghs-blog-cats { display: grid; gap: 2px; }
.ghs-blog-cats a {
  display: block;
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease);
}
.ghs-blog-cats a:hover { color: var(--c-primary); }
.ghs-blog-cats .is-current a { color: var(--c-primary); font-weight: 600; }
.ghs-sep {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block: var(--sp-7) var(--sp-5);
}
.ghs-sep__label {
  flex: none;
  color: var(--c-primary);
  font-size: var(--fs-md);
  font-weight: 700;
}
.ghs-sep::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to left, var(--c-primary), var(--border));
  order: 1;
}
.ghs-sep .ghs-sort { order: 2; }
.ghs-sep__label::after { content: none; }
.ghs-sort { position: relative; flex: none; }
.ghs-sort__select {
  appearance: none;
  padding: 6px 30px 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: var(--fs-sm);
  cursor: pointer;
}
.ghs-sort__chevron {
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: var(--text-muted);
  pointer-events: none;
}
.ghs-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.ghs-blog-empty {
  padding-block: var(--sp-8);
  text-align: center;
  color: var(--text-muted);
}
.ghs-post-card--featured .ghs-post-card__thumb { aspect-ratio: 16 / 7; }
.ghs-post-card--featured .ghs-post-card__title { font-size: var(--fs-lg); }
.ghs-blog-sec .page-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
}
.ghs-blog-sec .page-numbers li a,
.ghs-blog-sec .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding-inline: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--fs-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ghs-blog-sec .page-numbers li a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.ghs-blog-sec .page-numbers li .current {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .ghs-blog-hero { grid-template-columns: 1fr; gap: var(--sp-5); }
  .ghs-blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
  }
  .ghs-blog-cats a {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
  }
}
@media (max-width: 767px) {
  .ghs-blog-page { padding-block: var(--sp-5) var(--sp-8); }
  .ghs-blog-grid { grid-template-columns: 1fr; }
  .ghs-sep { margin-block: var(--sp-6) var(--sp-4); gap: var(--sp-3); }
  .ghs-post-card--featured .ghs-post-card__thumb { aspect-ratio: 16 / 10; }
}
.ghs-article { padding-block: var(--sp-7) var(--sp-9); }
.ghs-article__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.ghs-article__title {
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  margin: 0;
}
.ghs-article__meta {
  flex: none;
  display: grid;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.ghs-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}
.ghs-article__meta-item:hover { color: var(--c-primary); }
.ghs-article__hero {
  margin: 0 auto var(--sp-7);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ghs-article__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.ghs-article__caption {
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-primary);
  color: #fff;
  font-size: var(--fs-sm);
  line-height: 1.9;
}
.ghs-article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: start;
  gap: var(--sp-7);
}
.ghs-article__main { order: 1; min-width: 0; }
.ghs-article__aside { order: 2; }
.ghs-article__aside {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  display: grid;
  gap: var(--sp-5);
}
.ghs-article__aside .ghs-legal__toc { position: static; }
.ghs-article__cta {
  padding: var(--sp-5);
  border: 1px solid var(--c-primary);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(56, 106, 246, 0.06), transparent);
  text-align: center;
}
.ghs-article__cta-title { font-size: var(--fs-sm); color: var(--text-muted); }
.ghs-article__cta-brand {
  margin-block: var(--sp-2);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--c-primary);
  direction: ltr;
}
.ghs-article__cta-text {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.ghs-article__cta .ghs-btn { width: 100%; }
.ghs-article__content { line-height: var(--lh-base); }
.ghs-article__content > * + * { margin-top: var(--sp-4); }
.ghs-article__content h2,
.ghs-article__h2 {
  scroll-margin-top: calc(var(--header-h) + var(--sp-5));
  margin-top: var(--sp-7);
  font-size: var(--fs-lg);
  color: var(--c-primary);
}
.ghs-article__content h3 {
  margin-top: var(--sp-6);
  font-size: var(--fs-md);
}
.ghs-article__content img {
  border-radius: var(--radius);
  height: auto;
}
.ghs-article__content ul,
.ghs-article__content ol {
  display: grid;
  gap: var(--sp-2);
  padding-inline-start: var(--sp-4);
}
.ghs-article__content li {
  position: relative;
  padding-inline-start: var(--sp-4);
}
.ghs-article__content ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}
.ghs-article__content ol { counter-reset: ghs-ol; }
.ghs-article__content ol li::before {
  counter-increment: ghs-ol;
  content: counter(ghs-ol) ".";
  position: absolute;
  inset-inline-start: 0;
  color: var(--c-primary);
  font-weight: 700;
}
.ghs-article__content blockquote {
  padding: var(--sp-4) var(--sp-5);
  border-inline-start: 3px solid var(--c-primary);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.ghs-article__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.ghs-article__banner-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-primary);
}
.ghs-article__banner-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}
.ghs-article__banner .ghs-btn { flex: none; }
.ghs-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.ghs-article__nav-item {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--dur) var(--ease);
}
.ghs-article__nav-item:hover { border-color: var(--c-primary); }
.ghs-article__nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.ghs-article__nav-item .ghs-legal__toc-chevron,
.ghs-article__nav-label svg { transform: rotate(90deg); }
.ghs-article__nav-item--prev { text-align: end; }
.ghs-article__nav-item--prev .ghs-article__nav-label { justify-content: flex-end; }
.ghs-article__nav-item--prev .ghs-article__nav-label svg { transform: rotate(-90deg); }
.ghs-article__nav-title { font-size: var(--fs-sm); font-weight: 600; }
.ghs-article__more { margin-top: var(--sp-6); }
.ghs-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  padding-block: var(--sp-4);
  border-block: 1px solid var(--border);
}
.ghs-rating__stars { display: inline-flex; flex-direction: row-reverse; }
.ghs-rating__star {
  border: 0;
  background: none;
  padding: 0 2px;
  font-size: 22px;
  line-height: 1;
  color: var(--gray-200);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.ghs-rating__star.is-on { color: #F5B301; }
.ghs-rating__stars:hover .ghs-rating__star { color: var(--gray-200); }
.ghs-rating__stars .ghs-rating__star:hover,
.ghs-rating__stars .ghs-rating__star:hover ~ .ghs-rating__star { color: #F5B301; }
.ghs-rating.is-done .ghs-rating__star { cursor: default; }
.ghs-rating__text { font-size: var(--fs-sm); color: var(--text-muted); }
.ghs-author {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.ghs-author__avatar { flex: none; }
.ghs-author__avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
}
.ghs-author__name { font-weight: 700; }
.ghs-author__bio {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--text-muted);
}
.ghs-author__all {
  display: inline-block;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-primary);
}
.ghs-comments { margin-top: var(--sp-7); }
.ghs-comments__title {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
}
.ghs-comments__list { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.ghs-comments__list .comment-body {
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ghs-comments__list .children { margin-top: var(--sp-4); padding-inline-start: var(--sp-6); }
.comment-reply-title { font-size: var(--fs-md); margin-bottom: var(--sp-4); }
.ghs-comment-form { display: grid; gap: var(--sp-3); }
.ghs-comment-field input,
.ghs-comment-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  transition: border-color var(--dur) var(--ease);
}
.ghs-comment-field input:focus,
.ghs-comment-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
}
.ghs-comment-field textarea { resize: vertical; }
.ghs-comment-field input[type="tel"] {
  direction: rtl;
  text-align: right;
}
.ghs-comment-submit { justify-self: center; min-width: 220px; }
.comment-form-cookies-consent { font-size: var(--fs-xs); color: var(--text-muted); }
@media (max-width: 1024px) {
  .ghs-article__layout { grid-template-columns: 1fr; }
  .ghs-article__aside {
    order: 1;
    position: static;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .ghs-article__main { order: 2; }
}
@media (max-width: 767px) {
  .ghs-article { padding-block: var(--sp-5) var(--sp-8); }
  .ghs-article__head { flex-direction: column; gap: var(--sp-3); }
  .ghs-article__meta { grid-auto-flow: column; gap: var(--sp-4); }
  .ghs-article__aside { grid-template-columns: 1fr; }
  .ghs-article__banner { flex-direction: column; align-items: stretch; text-align: center; }
  .ghs-article__nav { grid-template-columns: 1fr; }
  .ghs-author { flex-direction: column; align-items: center; text-align: center; }
}
.ghs-mobile-nav { display: none; }
@media (max-width: 767px) {
  .ghs-mobile-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 2px;
    padding: 8px 6px calc(6px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #F4F5F7 0%, #DADDE3 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -6px 20px rgba(8, 11, 22, 0.1);
  }
  .ghs-mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 6px 2px;
    border: 0;
    background: none;
    color: var(--c-primary);
    font: inherit;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: color var(--dur) var(--ease);
  }
  .ghs-mobile-nav__icon {
    position: relative;
    display: inline-flex;
  }
  .ghs-mobile-nav__icon svg { width: 26px; height: 26px; }
  .ghs-mobile-nav__label { white-space: nowrap; }
  .ghs-mobile-nav__item--main,
  .ghs-mobile-nav__item--main:hover,
  .ghs-mobile-nav__item--main:focus {
    color: #fff;
  }
  .ghs-mobile-nav__item--main {
    margin-top: -28px;
    margin-bottom: calc(-6px - env(safe-area-inset-bottom));
    padding: 22px 4px calc(14px + env(safe-area-inset-bottom));
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(56, 106, 246, 0.35);
  }
  .ghs-mobile-nav__item--main .ghs-mobile-nav__icon svg { width: 28px; height: 28px; }
  .ghs-mobile-nav__item.is-active:not(.ghs-mobile-nav__item--main) {
    font-weight: 700;
    color: var(--c-primary-2);
  }
  .ghs-mobile-nav__badge {
    position: absolute;
    top: -6px;
    inset-inline-end: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: #FF3B30;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  .ghs-mobile-nav__badge[hidden] { display: none; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .ghs-side-cart__panel { bottom: 0; }
  .ghs-side-cart__foot { padding-bottom: calc(var(--sp-5) + 74px + env(safe-area-inset-bottom)); }
  .ghs-side-cart__empty { padding-bottom: calc(var(--sp-8) + 74px + env(safe-area-inset-bottom)); }
  .header-nav { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
}
.header-login__icon { display: inline-flex; }
.header-login__icon svg { width: 18px; height: 18px; }
@media (max-width: 767px) {
  .site-header .header-cart,
  .site-header .header-burger { display: none; }
  .site-header__inner { gap: var(--sp-3); }
  .header-login {
    gap: var(--sp-2);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: var(--fs-sm);
  }
  .ghs-features__grid,
  .ghs-process__steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--sp-4);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-inline: var(--content-pad);
    margin-inline: calc(-1 * var(--content-pad));
    scrollbar-width: none;
  }
  .ghs-features__grid::-webkit-scrollbar,
  .ghs-process__steps::-webkit-scrollbar { display: none; }
  .ghs-features__grid > *,
  .ghs-process__steps > * {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: center;
  }
  .site-footer__cols {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    padding-block: var(--sp-7) var(--sp-6);
    text-align: center;
  }
  .footer-about { order: 1; }
  .footer-office { order: 2; display: flex; flex-direction: column; }
  .footer-links { order: 3; }
  .footer-badges { order: -1; margin-top: 0; margin-bottom: var(--sp-5); }
  .footer-about__text { text-align: center; }
  .footer-socials,
  .footer-badges { justify-content: center; }
  .footer-office__phone { text-align: center; }
  .footer-support { justify-content: center; }
  .footer-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3) var(--sp-5);
  }
  .footer-links__list li + li { margin-top: 0; }
  .site-footer__bottom-inner {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }
}
.ghs-blog-archive {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: var(--sp-6);
}
.ghs-blog-side {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  display: grid;
  gap: var(--sp-5);
}
.ghs-blog-side__box {
  padding: var(--sp-5);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.ghs-blog-side__title {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.ghs-blog-side__posts { display: grid; gap: var(--sp-3); }
.ghs-blog-side__posts a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text);
}
.ghs-blog-side__posts a:hover .ghs-blog-side__name { color: var(--c-primary); }
.ghs-blog-side__thumb { flex: none; }
.ghs-blog-side__thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.ghs-blog-side__name {
  font-size: var(--fs-sm);
  line-height: 1.7;
  transition: color var(--dur) var(--ease);
}
.ghs-blog-side .ghs-blog-cats a { border-bottom: 1px solid var(--border); }
.ghs-blog-side .ghs-blog-cats li:last-child a { border-bottom: 0; }
@media (max-width: 1024px) {
  .ghs-blog-archive { grid-template-columns: 1fr; }
  .ghs-blog-side { position: static; grid-template-columns: 1fr 1fr; }
  .ghs-blog-side .ghs-blog-cats { display: grid; }
  .ghs-blog-side .ghs-blog-cats a {
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .ghs-blog-side { grid-template-columns: 1fr; }
}
.ghs-to-top {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.ghs-to-top svg { transform: rotate(180deg); }
.ghs-to-top:hover { background: rgba(255, 255, 255, 0.12); }
@media (max-width: 767px) {
  .ghs-to-top { display: grid; }
}
.header-nav__top,
.header-nav__foot { display: none; }
@media (max-width: 1024px) {
  .header-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--bg);
  }
  .header-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid var(--border);
  }
  .header-nav__logo img { height: 40px; width: auto; display: block; }
  .header-nav__close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    background: var(--bg-soft);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
  }
  .header-nav__close:hover { color: var(--text); }
  .header-nav__list {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: var(--sp-3) var(--sp-5);
  }
  .header-nav__list a {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
    transition: color var(--dur) var(--ease), padding-inline-start var(--dur) var(--ease);
  }
  .header-nav__list a::before {
    content: "";
    flex: none;
    width: 6px;
    height: 6px;
    margin-inline-end: var(--sp-3);
    border-radius: 50%;
    background: var(--gray-200);
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .header-nav__list a:hover,
  .header-nav__list .current-menu-item > a { color: var(--c-primary) !important; }
  .header-nav__list a:hover::before,
  .header-nav__list .current-menu-item > a::before {
    background: var(--c-primary);
    transform: scale(1.4);
  }
  .header-nav__list li:last-child a { border-bottom: 0; }
  .header-nav__foot {
    display: grid;
    gap: var(--sp-4);
    padding: var(--sp-5);
    padding-bottom: calc(var(--sp-5) + 74px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
  }
  .header-nav__cta { width: 100%; }
  .header-nav__contact-acc {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    overflow: hidden;
  }
  .header-nav__contact-summary {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3);
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .header-nav__contact-summary::-webkit-details-marker { display: none; }
  .header-nav__contact-summary::marker { content: ''; }
  .header-nav__contact-title {
    flex: 1;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text);
  }
  .header-nav__contact-chevron {
    flex: none;
    display: inline-flex;
    color: var(--text-muted);
    transition: transform var(--dur) var(--ease);
  }
  .header-nav__contact-acc[open] .header-nav__contact-chevron { transform: rotate(180deg); }
  .header-nav__contact {
    display: grid;
    gap: var(--sp-4);
    padding: var(--sp-2) var(--sp-3) var(--sp-4);
    border-top: 1px solid var(--border);
  }
  .header-nav__contact-group {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
  }
  .header-nav__contact-icon {
    flex: none;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--c-primary);
  }
  .header-nav__contact-body { display: grid; gap: 2px; min-width: 0; }
  .header-nav__contact-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
  }
  .header-nav__contact-num {
    color: var(--text);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-align: start;
    letter-spacing: 0.02em;
  }
  .header-nav__contact-num:hover { color: var(--c-primary); }
  .header-nav__addr {
    font-size: var(--fs-xs);
    line-height: 1.9;
    color: var(--text);
    margin: 0;
  }
  .header-nav__socials {
    display: flex;
    gap: var(--sp-3);
  }
  .header-nav__socials img {
    width: 28px;
    height: 28px;
    display: block;
    opacity: 0.85;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .header-nav__socials a:hover img { opacity: 1; transform: translateY(-2px); }
  .header-nav__scrim {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(8, 11, 22, 0.5);
  }
  .header-nav__scrim[hidden] { display: none; }
}
.ghs-about { padding-bottom: var(--sp-9); }
.ghs-about__hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}
.ghs-about__hero-bg,
.ghs-about__hero-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ghs-about__hero-shape { opacity: 0.5; mix-blend-mode: screen; }
.ghs-about__hero-text {
  position: relative;
  text-align: center;
  color: #fff;
  padding-block: var(--sp-8);
}
.ghs-about__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}
.ghs-about__sub {
  color: var(--c-primary-soft);
  font-size: var(--fs-md);
}
.ghs-about__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 620px);
  align-items: start;
  gap: 0;
  margin-top: calc(-1 * var(--sp-8));
}
.ghs-about__card {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  line-height: var(--lh-base);
  font-size: var(--fs-base);
  text-align: justify;
}
.ghs-about__card p + p { margin-top: var(--sp-4); }
.ghs-about__photo {
  margin: 0;
  margin-inline-end: calc(-1 * var(--sp-8));
  margin-top: var(--sp-8);
  filter: grayscale(1);
  border-radius: var(--radius);
  overflow: hidden;
}
.ghs-about__photo img { display: block; width: 100%; height: auto; }
.ghs-about__why {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.ghs-about__why-title {
  color: var(--c-primary);
  font-size: var(--fs-lg);
}
.ghs-about__why-list { display: grid; gap: var(--sp-3); }
.ghs-about__why-list li {
  position: relative;
  padding-inline-start: var(--sp-5);
  font-size: var(--fs-sm);
}
.ghs-about__why-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
}
.ghs-about__contact {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: stretch;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.ghs-about__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.ghs-about__map-link {
  position: absolute;
  bottom: var(--sp-3);
  inset-inline-start: var(--sp-3);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  box-shadow: var(--shadow);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-primary);
}
.ghs-about__map-link:hover { background: var(--c-primary); color: #fff; }
.ghs-about__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.ghs-about__info {
  padding: var(--sp-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.ghs-about__info-title { font-size: var(--fs-md); margin-bottom: var(--sp-3); }
.ghs-about__addr,
.ghs-about__tel {
  font-size: var(--fs-sm);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.ghs-contact-phones {
  list-style: none;
  margin: 0 0 var(--sp-3);
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}
.ghs-contact-phones a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ghs-contact-phones a:hover,
.ghs-contact-phones a:focus-visible {
  border-color: var(--c-primary);
  background: var(--bg-soft);
}
.ghs-contact-phones__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
}
.ghs-contact-phones__icon svg { width: 18px; height: 18px; }
.ghs-contact-phones__num {
  font-weight: 700;
  font-size: var(--fs-base);
  font-variant-numeric: tabular-nums;
}
.ghs-about__row--support .ghs-about__row-value { font-weight: 600; }
.ghs-about__row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-3);
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.ghs-about__row-icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.ghs-about__row-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.ghs-about__row-value { display: block; font-weight: 700; font-size: var(--fs-sm); }
.ghs-about__row--hours { align-items: flex-start; }
.ghs-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}
.ghs-hours__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
}
.ghs-hours__days { color: var(--text-muted); }
.ghs-hours__time { font-weight: 700; white-space: nowrap; }
.ghs-hours__item--solo .ghs-hours__days { color: inherit; font-weight: 700; }
@media (max-width: 1024px) {
  .ghs-about__intro { grid-template-columns: 1fr; margin-top: calc(-1 * var(--sp-6)); }
  .ghs-about__photo { margin-inline-end: 0; margin-top: var(--sp-5); }
  .ghs-about__why { grid-template-columns: 1fr; }
  .ghs-about__contact { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .ghs-about__hero { min-height: 260px; }
  .ghs-about__card { padding: var(--sp-5); text-align: start; }
  .ghs-about__why { padding: var(--sp-5); }
}
.ghs-account {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
}
.ghs-account .woocommerce-MyAccount-navigation,
.ghs-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
  margin: 0;
}
.ghs-account__sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ghs-account__user {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff;
}
.ghs-account__avatar {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: var(--fs-lg);
  font-weight: 700;
}
.ghs-account__meta { min-width: 0; }
.ghs-account__name {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.ghs-account__sub {
  display: block;
  font-size: var(--fs-xs);
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ghs-account-nav { padding: var(--sp-2); }
.ghs-account-nav__item + .ghs-account-nav__item { margin-top: 2px; }
.ghs-account-nav__item a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 11px var(--sp-3);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--fs-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ghs-account-nav__icon { display: grid; place-items: center; color: var(--text-muted); }
.ghs-account-nav__item a:hover { background: var(--bg-soft); color: var(--c-primary); }
.ghs-account-nav__item.is-active a {
  background: rgba(56, 106, 246, 0.1);
  color: var(--c-primary);
  font-weight: 700;
}
.ghs-account-nav__item.is-active .ghs-account-nav__icon { color: var(--c-primary); }
.ghs-account-nav__item--logout {
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}
.ghs-account-nav__item--logout a { color: var(--c-red); }
.ghs-account-nav__item--logout a:hover { background: rgba(214, 69, 69, 0.08); color: var(--c-red); }
.ghs-account__content {
  padding: var(--sp-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 320px;
}
.ghs-dash__hi { font-size: var(--fs-lg); }
.ghs-dash__sub {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-1);
}
.ghs-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.ghs-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ghs-stat__icon {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}
.ghs-stat__icon--blue   { background: rgba(56, 106, 246, 0.12); color: var(--c-primary); }
.ghs-stat__icon--silver { background: rgba(107, 114, 128, 0.14); color: var(--gray-600); }
.ghs-stat__icon--green  { background: rgba(76, 175, 80, 0.14); color: var(--c-green); }
.ghs-stat__icon--amber  { background: rgba(245, 179, 1, 0.16); color: #B98600; }
.ghs-stat__body { min-width: 0; }
.ghs-stat__label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.ghs-stat__value {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ghs-panel {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ghs-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.ghs-panel__title { font-size: var(--fs-base); font-weight: 700; }
.ghs-panel__all { font-size: var(--fs-sm); color: var(--c-primary); }
.ghs-panel__empty {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}
.ghs-orders { display: grid; gap: var(--sp-2); }
.ghs-order {
  display: grid;
  grid-template-columns: auto 1fr auto auto 28px;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}
.ghs-order__num { font-weight: 700; }
.ghs-order__date { color: var(--text-muted); font-size: var(--fs-xs); }
.ghs-order__badge {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  white-space: nowrap;
}
.ghs-order__badge.is-ok   { background: rgba(76, 175, 80, 0.16); color: #2E7D32; }
.ghs-order__badge.is-bad  { background: rgba(214, 69, 69, 0.14); color: var(--c-red); }
.ghs-order__badge.is-warn { background: rgba(245, 179, 1, 0.18); color: #B98600; }
.ghs-order__badge.is-info { background: rgba(56, 106, 246, 0.12); color: var(--c-primary); }
.ghs-order__total { font-weight: 700; white-space: nowrap; }
.ghs-order__view {
  display: grid;
  place-items: center;
  color: var(--text-muted);
}
.ghs-order__view:hover { color: var(--c-primary); }
.ghs-account__content .woocommerce-orders-table,
.ghs-account__content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.ghs-account__content table.shop_table th,
.ghs-account__content table.shop_table td {
  padding: var(--sp-3);
  border-bottom: 1px solid var(--border);
  text-align: start;
}
.ghs-account__content table.shop_table th { color: var(--text-muted); font-weight: 600; }
.ghs-account__content .woocommerce-Address {
  padding: var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.ghs-account__content input[type="text"],
.ghs-account__content input[type="email"],
.ghs-account__content input[type="tel"],
.ghs-account__content input[type="password"],
.ghs-account__content select,
.ghs-account__content textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font: inherit;
  color: var(--text);
}
.ghs-account__content input:focus,
.ghs-account__content select:focus,
.ghs-account__content textarea:focus { outline: none; border-color: var(--c-primary); }
.ghs-account__content .button,
.ghs-account__content button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .ghs-account { grid-template-columns: 1fr; }
  .ghs-account__sidebar { position: static; }
  .ghs-account-nav { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
  .ghs-account-nav__item + .ghs-account-nav__item { margin-top: 0; }
  .ghs-account-nav__item--logout { margin-top: 0; padding-top: 0; border-top: 0; }
  .ghs-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .ghs-stats { grid-template-columns: 1fr; }
  .ghs-order {
    grid-template-columns: 1fr auto;
    row-gap: var(--sp-2);
  }
  .ghs-order__view { display: none; }
}
.ghs-buy-sheet { display: none; }
@media (max-width: 767px) {
  .ghs-buy-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
  }
  .ghs-buy-sheet[hidden] { display: none; }
  .ghs-buy-sheet__scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 22, 0.5);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
  }
  .ghs-buy-sheet.is-open .ghs-buy-sheet__scrim { opacity: 1; }
  .ghs-buy-sheet__panel {
    position: absolute;
    inset: auto 0 0 0;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background: var(--bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -8px 40px rgba(8, 11, 22, 0.25);
    transform: translateY(100%);
    transition: transform 0.32s var(--ease);
  }
  .ghs-buy-sheet.is-open .ghs-buy-sheet__panel { transform: none; }
  .ghs-buy-sheet__handle {
    display: block;
    width: 44px;
    height: 4px;
    margin: var(--sp-3) auto 0;
    background: var(--gray-200);
    border-radius: var(--radius-pill);
  }
  .ghs-buy-sheet__close {
    position: absolute;
    top: var(--sp-4);
    inset-inline-start: var(--sp-4);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-muted);
    cursor: pointer;
  }
  .ghs-buy-sheet__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: var(--sp-4) var(--sp-4) var(--sp-6);
  }
  .ghs-buy-sheet__head {
    margin-bottom: var(--sp-4);
    padding-inline-start: 44px;
  }
  .ghs-buy-sheet__title {
    color: var(--c-primary);
    font-size: var(--fs-lg);
  }
  .ghs-buy-sheet__sub {
    margin-top: var(--sp-1);
    font-size: var(--fs-sm);
    color: var(--text-muted);
  }
}
.ghs-form { display: grid; gap: var(--sp-4); }
.ghs-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.ghs-form__row { display: grid; gap: var(--sp-2); margin: 0; }
.ghs-form__row label {
  font-size: var(--fs-sm);
  font-weight: 600;
}
.ghs-form__hint {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--text-muted);
}
.ghs-form__readonly {
  background: var(--gray-100) !important;
  color: var(--text-muted);
  cursor: not-allowed;
}
.ghs-form__actions { margin: var(--sp-2) 0 0; }
.ghs-form__actions .ghs-btn { min-width: 200px; }
@media (max-width: 767px) {
  .ghs-form__grid { grid-template-columns: 1fr; }
  .ghs-form__actions .ghs-btn { width: 100%; }
}
.ghs-cart-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.woocommerce table.ghs-cart-table {
  min-width: 720px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.woocommerce table.ghs-cart-table thead th {
  background: var(--gray-100);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  white-space: nowrap;
}
.woocommerce table.ghs-cart-table thead th.product-name { text-align: start; }
.woocommerce table.ghs-cart-table tbody td {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  vertical-align: middle;
  font-size: var(--fs-sm);
}
.woocommerce table.ghs-cart-table td.product-name {
  text-align: start;
  font-weight: 600;
}
.woocommerce table.ghs-cart-table td.product-name a { color: var(--text); }
.woocommerce table.ghs-cart-table td.product-name a:hover { color: var(--c-primary); }
.woocommerce table.ghs-cart-table td.product-subtotal { font-weight: 700; white-space: nowrap; }
.woocommerce table.ghs-cart-table .ghs-cart__grams { white-space: nowrap; color: var(--text-muted); }
.woocommerce table.ghs-cart-table th.product-remove,
.woocommerce table.ghs-cart-table td.product-remove { display: none; }
.woocommerce .quantity.qty-with-buttons {
  height: 40px;
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.woocommerce .quantity.qty-with-buttons input.qty {
  width: 46px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-inline: 1px solid var(--border) !important;
  font-weight: 700;
  background: var(--bg);
}
.woocommerce .quantity.qty-with-buttons .qty-btn {
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--gray-50) !important;
  color: var(--text);
  font-size: 18px !important;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.woocommerce .quantity.qty-with-buttons .qty-btn:hover { background: var(--gray-100) !important; }
.woocommerce .quantity.qty-with-buttons .qty-minus.is-remove { color: #dc2626; }
.woocommerce .quantity.qty-with-buttons .qty-minus.is-remove:hover {
  background: #fee2e2 !important;
  color: #b91c1c;
}
.woocommerce table.ghs-cart-table td.product-remove .remove {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.woocommerce table.ghs-cart-table td.product-remove .remove:hover {
  background: rgba(214, 69, 69, 0.12);
  color: var(--c-red);
}
.woocommerce table.ghs-cart-table td.actions {
  text-align: start;
  background: var(--bg-soft);
  padding: var(--sp-4);
}
.woocommerce table.ghs-cart-table td.actions .coupon {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.woocommerce table.ghs-cart-table td.actions .coupon:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(56, 106, 246, 0.12);
}
.woocommerce table.ghs-cart-table td.actions .coupon .input-text {
  width: 190px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--text);
}
.woocommerce table.ghs-cart-table td.actions .coupon .input-text:focus { outline: none; }
.woocommerce table.ghs-cart-table td.actions .coupon button {
  padding: 10px 20px;
  border: 0;
  border-inline-start: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.woocommerce table.ghs-cart-table td.actions .coupon button:hover {
  background: var(--c-primary);
  border-inline-start-color: var(--c-primary);
  color: #fff;
}
.woocommerce-cart-form.is-auto-update td.actions button[name="update_cart"] { display: none; }
.woocommerce table.ghs-cart-table td.actions button[name="update_cart"] {
  margin-inline-start: var(--sp-3);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: var(--fs-sm);
  cursor: pointer;
}
.woocommerce-cart-form.is-updating { opacity: 0.55; pointer-events: none; transition: opacity var(--dur) var(--ease); }
@media (max-width: 767px) {
  .woocommerce table.ghs-cart-table { min-width: 0; }
  .woocommerce table.ghs-cart-table td.actions .coupon { width: 100%; }
  .woocommerce table.ghs-cart-table td.actions .coupon .input-text { width: 100%; }
}
@media (max-width: 1024px) {
  .cart-collaterals { grid-template-columns: 1fr; }
  .cart-collaterals .gsp-pay-notes,
  .cart-collaterals .cart_totals { grid-column: 1; }
}
.cart_totals table.shop_table { width: 100%; }
.gsp-pay-form { display: grid; gap: var(--sp-4); }
.gsp-pay-terms {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  cursor: pointer;
}
.gsp-pay-terms input { flex: none; margin: 0; }
.gsp-pay-terms span { line-height: 1.7; }
.gsp-pay-terms a { color: var(--c-primary); text-decoration: underline; }
.gsp-pay-btn {
  width: 100%;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--dur) var(--ease);
}
.gsp-pay-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.gsp-pay-notes-title { font-weight: 700; margin-bottom: var(--sp-3); }
.gsp-pay-notes ul { display: grid; gap: var(--sp-2); }
.gsp-pay-notes li {
  position: relative;
  padding-inline-start: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.gsp-pay-notes li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: auto;
}
.ghs-contact { padding-block: var(--sp-8) var(--sp-9); }
.ghs-contact__head { text-align: center; margin-bottom: var(--sp-7); }
.ghs-contact__title {
  color: var(--c-primary);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
}
.ghs-contact__lead {
  max-width: 820px;
  margin-inline: auto;
  color: var(--text-muted);
  line-height: var(--lh-base);
}
.ghs-contact__lead p:last-child { margin-bottom: 0; }
.ghs-contact .ghs-about__contact { margin-top: 0; }
.ghs-about__row--link { text-decoration: none; color: inherit; }
.ghs-about__row--link:hover .ghs-about__row-value { color: var(--c-primary); }
.ghs-address__intro {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}
.ghs-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.woocommerce-Address.ghs-address {
  padding: var(--sp-4);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ghs-address__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.ghs-address__head h2 { font-size: var(--fs-base); font-weight: 700; }
.ghs-address__edit { font-size: var(--fs-sm); color: var(--c-primary); }
.ghs-address address {
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: 2;
  color: var(--text-muted);
}
.ghs-address__empty { font-size: var(--fs-sm); color: var(--text-muted); }
.ghs-address-history { margin-top: var(--sp-6); }
.ghs-address-history__title { font-size: var(--fs-base); font-weight: 700; }
.ghs-address-history__hint {
  margin: var(--sp-1) 0 var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.ghs-address-history__list { display: grid; gap: var(--sp-3); }
.ghs-address-history__item {
  display: grid;
  gap: 4px;
  padding: var(--sp-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
}
.ghs-address-history__name { font-weight: 700; }
.ghs-address-history__place { color: var(--c-primary); font-size: var(--fs-xs); }
.ghs-address-history__postal { color: var(--text-muted); line-height: 1.9; }
.ghs-form__readonly {
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  padding-block: 13px;
}
.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.site-footer__credit a { color: var(--c-primary-soft); }
.site-footer__credit a:hover { color: #fff; }
.site-footer__credit-sep { opacity: 0.4; }
.ghs-toasts {
  position: fixed;
  z-index: 1300;
  bottom: var(--sp-5);
  inset-inline-start: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
  width: min(380px, calc(100vw - var(--sp-6)));
  pointer-events: none;
}
.ghs-toast {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  padding-bottom: calc(var(--sp-4) + 3px);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  line-height: 1.8;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ghs-toast.is-in { opacity: 1; transform: none; }
.ghs-toast__icon {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ghs-toast.is-success .ghs-toast__icon { background: var(--c-green); }
.ghs-toast.is-error   .ghs-toast__icon { background: var(--c-red); }
.ghs-toast.is-info    .ghs-toast__icon { background: var(--c-primary); }
.ghs-toast.is-success .ghs-toast__icon::before { content: "✓"; }
.ghs-toast.is-error   .ghs-toast__icon::before { content: "!"; }
.ghs-toast.is-info    .ghs-toast__icon::before { content: "i"; }
.ghs-toast__body { min-width: 0; }
.ghs-toast__body .button {
  display: inline-flex;
  margin-top: var(--sp-2);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
  font-size: var(--fs-xs);
  text-decoration: none;
}
.ghs-toast__body .button:hover { border-color: var(--c-primary); color: var(--c-primary); }
.ghs-toast__close {
  flex: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.ghs-toast__close:hover { color: var(--text); }
.ghs-toast__bar {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: var(--c-primary);
  transform-origin: right;
}
.ghs-toast.is-success .ghs-toast__bar { background: var(--c-green); }
.ghs-toast.is-error   .ghs-toast__bar { background: var(--c-red); }
@media (max-width: 767px) {
  .ghs-toasts {
    inset-inline: var(--sp-4);
    width: auto;
    bottom: calc(74px + env(safe-area-inset-bottom) + var(--sp-3));
  }
}
.gsp-addr-reminder {
  position: fixed;
  z-index: 1250;
  inset-inline: 0;
  bottom: 0;
  padding: var(--sp-3) var(--content-pad) calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #B98600, #8A6400);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(8, 11, 22, 0.25);
}
.gsp-addr-reminder__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.gsp-addr-reminder__icon {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 700;
}
.gsp-addr-reminder__text {
  flex: 1;
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.8;
}
.gsp-addr-reminder__more { opacity: 0.85; }
.gsp-addr-reminder__btn {
  flex: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #8A6400;
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
}
.gsp-addr-reminder__btn:hover { background: var(--gray-50); }
@media (max-width: 767px) {
  .gsp-addr-reminder { bottom: calc(74px + env(safe-area-inset-bottom)); padding-bottom: var(--sp-3); }
  .gsp-addr-reminder__inner { flex-wrap: wrap; }
  .gsp-addr-reminder__text { flex: 1 1 100%; order: 2; }
  .gsp-addr-reminder__btn { order: 3; width: 100%; text-align: center; }
}
.ghs-dash__alert {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.45);
  border-radius: var(--radius);
}
.ghs-dash__alert-icon {
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #B98600;
  color: #fff;
  font-weight: 700;
}
.ghs-dash__alert-body strong { display: block; margin-bottom: var(--sp-1); }
.ghs-dash__alert-body p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.9;
}
.ghs-dash__alert-list { display: grid; gap: var(--sp-2); margin-top: var(--sp-3); }
.ghs-dash__alert-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}
.ghs-dash__alert-list .ghs-btn { padding: 7px 16px; font-size: var(--fs-xs); }
.ghs-addr-picker { margin-bottom: var(--sp-5); }
.ghs-addr-picker__title { font-size: var(--fs-base); font-weight: 700; }
.ghs-addr-picker__hint {
  margin: var(--sp-1) 0 var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.ghs-addr-picker__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-3);
}
.ghs-addr-picker__item {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: var(--sp-4);
  text-align: start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ghs-addr-picker__item:hover { border-color: var(--c-primary); background: rgba(56, 106, 246, 0.06); }
.ghs-addr-picker__item.is-active {
  border-color: var(--c-primary);
  background: rgba(56, 106, 246, 0.1);
}
.ghs-addr-picker__name { font-weight: 700; font-size: var(--fs-sm); }
.ghs-addr-picker__place { font-size: var(--fs-xs); color: var(--c-primary); }
.ghs-addr-picker__postal {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.9;
}
.ghs-stats__note {
  margin-top: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  line-height: 2;
  color: var(--text-muted);
}
.ghs-stats__note strong { color: var(--text); }
