:root {
  --gt-green: #1677ff;
  --gt-cyan: #48b7ff;
  --gt-ink: #081b33;
  --gt-graphite: #102b4a;
  --gt-panel: #edf5ff;
  --gt-soft: #f5f8fc;
  --gt-paper: #ffffff;
  --gt-muted: #607086;
  --gt-line: rgba(8, 27, 51, 0.12);
  --gt-dark-line: rgba(255, 255, 255, 0.12);
  --gt-shadow: 0 22px 60px rgba(7, 23, 43, 0.16);
  --gt-radius: 8px;
  --gt-radius-lg: 14px;
  --gt-max: 1280px;
  --gt-transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--gt-ink);
  background: #f3f8fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.gt-menu-open {
  overflow: hidden;
}

body.gt-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 32, 56, 0.24);
  backdrop-filter: blur(8px);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 140, 255, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--gt-radius);
  background: var(--gt-green);
  color: #03110d;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.gt-top-strip {
  position: relative;
  z-index: 1002;
  color: rgba(255, 255, 255, 0.86);
  background: #081b33;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.gt-top-strip-track {
  display: flex;
  justify-content: center;
  width: min(100%, var(--gt-max));
  margin: 0 auto;
  white-space: normal;
}

.gt-top-strip-track span {
  padding: 7px 16px;
  text-align: center;
}

.gt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 60px;
  padding: 8px clamp(14px, 3vw, 36px);
  border-bottom: 1px solid rgba(29, 78, 216, 0.12);
  color: var(--gt-ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.gt-header-quote {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 112px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(13, 32, 56, 0.12);
  color: var(--gt-ink);
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.gt-header-quote strong {
  font-size: 13px;
  font-weight: 950;
}

.gt-header-quote small {
  display: none;
}

.gt-market-bar {
  border-bottom: 1px solid var(--gt-line);
  color: var(--gt-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.08);
}

.gt-market-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(100%, var(--gt-max));
  margin: 0 auto;
  padding: 9px clamp(16px, 4vw, 24px);
}

.gt-market-links {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.gt-market-links::-webkit-scrollbar {
  display: none;
}

.gt-market-links a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: var(--gt-radius);
  color: rgba(13, 32, 56, 0.72);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.gt-market-links a:hover {
  color: #fff;
  background: var(--gt-cyan);
}

.gt-market-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(47, 140, 255, 0.22);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: rgba(47, 140, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.gt-market-meta small {
  color: rgba(8, 27, 51, 0.58);
  font-size: 10px;
  font-weight: 800;
  text-transform: none;
}

.gt-country-pill {
  display: inline-grid;
  min-width: 28px;
  min-height: 22px;
  place-items: center;
  border-radius: 6px;
  color: #03110d;
  background: #e8fff6;
  font-size: 11px;
  font-weight: 950;
}

.gt-country-pill:last-child {
  color: #fff;
  background: #c92435;
}

.gt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.gt-logo-image {
  width: clamp(132px, 16vw, 190px);
  min-width: 118px;
}

.gt-logo-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gt-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 140, 255, 0.22);
  border-radius: var(--gt-radius);
  color: #06110e;
  background: linear-gradient(135deg, var(--gt-green), var(--gt-cyan));
  font-size: 14px;
  letter-spacing: 0;
}

.gt-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.gt-mobile-menu-only {
  display: none;
}

.gt-nav a {
  padding: 9px 11px;
  border-radius: var(--gt-radius);
  color: rgba(13, 32, 56, 0.72);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.gt-nav a:hover,
.gt-nav a.gt-active,
.gt-icon-button:hover,
.gt-menu-button:hover {
  color: #0d2038;
  background: rgba(47, 140, 255, 0.12);
}

.gt-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gt-icon-button,
.gt-menu-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(13, 32, 56, 0.14);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: rgba(47, 140, 255, 0.06);
}

.gt-search-symbol,
.gt-phone-symbol {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.gt-search-symbol::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 1px;
  left: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.gt-search-symbol::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.gt-phone-symbol::before {
  content: "";
  position: absolute;
  inset: 3px 4px;
  border: 2px solid currentColor;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
  transform: rotate(-20deg);
}

.gt-phone-symbol::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.gt-menu-button {
  display: none;
  gap: 4px;
}

.gt-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.gt-whatsapp,
.gt-button,
.gt-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 15px;
  border: 0;
  border-radius: var(--gt-radius);
  color: #fff;
  background: var(--gt-green);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.gt-account-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 32, 56, 0.14);
  border-radius: var(--gt-radius);
  color: rgba(13, 32, 56, 0.82);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.gt-fit-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  border-radius: var(--gt-radius);
  color: #0b4b92;
  background: rgba(22, 119, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.gt-fit-link:hover,
.gt-fit-link.gt-active {
  color: #fff;
  background: var(--gt-ink);
}

.gt-account-link:hover {
  color: #fff;
  background: var(--gt-cyan);
}

.gt-whatsapp:hover,
.gt-button:hover,
.gt-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 185, 129, 0.22);
}

.gt-ghost,
.gt-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--gt-radius);
  color: inherit;
  background: transparent;
  font-weight: 800;
}

.gt-search {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 18px;
  color: var(--gt-ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--gt-shadow);
}

.gt-search form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  max-width: var(--gt-max);
  margin: 0 auto;
}

.gt-search label span {
  display: none;
}

.gt-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(13, 32, 56, 0.16);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: #f7fbff;
}

.gt-main {
  min-height: 60vh;
}

.gt-section {
  padding: clamp(54px, 8vw, 92px) clamp(16px, 4vw, 44px);
}

.gt-section.gt-dark {
  color: #fff;
  background: linear-gradient(135deg, #123c68, #0f6fa8);
}

.gt-peptides-section {
  padding-top: 22px;
}

.gt-section.gt-light {
  background: var(--gt-soft);
}

.gt-section.gt-white {
  background: var(--gt-paper);
}

.gt-wrap {
  width: min(100%, var(--gt-max));
  margin: 0 auto;
}

.gt-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.gt-section-head h2,
.gt-page-head h1,
.gt-hero h1 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.gt-section-head h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.gt-section-head p,
.gt-page-head p,
.gt-hero p {
  color: var(--gt-muted);
}

.gt-dark .gt-section-head p,
.gt-dark .gt-page-head p {
  color: rgba(255, 255, 255, 0.74);
}

.gt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gt-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.gt-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--gt-ink);
  background:
    radial-gradient(circle at 88% 36%, rgba(47, 140, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 52%, #e7f3ff 100%);
  background-color: #f2f8ff;
  background-position: right center, center;
  background-repeat: no-repeat;
  background-size: min(760px, 74vw) auto, cover;
}

.gt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0.40));
}

.gt-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--gt-max));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 148px) clamp(16px, 4vw, 44px);
}

.gt-hero-text {
  max-width: 760px;
}

.gt-hero h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 128px);
  line-height: .88;
  letter-spacing: 0;
}

.gt-hero p {
  max-width: 610px;
  font-size: clamp(16px, 2vw, 20px);
}

.gt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 5vw, 54px);
}

.gt-disclaimer {
  max-width: 650px;
  margin-top: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--gt-green);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.gt-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 700px);
  margin-top: 34px;
}

.gt-hero-strip div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.07);
}

.gt-hero-strip strong {
  display: block;
  margin-bottom: 2px;
}

.gt-hero-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.gt-grid {
  display: grid;
  gap: 18px;
}

.gt-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gt-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gt-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gt-catalog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gt-card,
.gt-product,
.gt-article,
.gt-service,
.gt-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 25, 20, 0.07);
  transition: transform var(--gt-transition), box-shadow var(--gt-transition), border-color var(--gt-transition);
}

.gt-product:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.26);
  box-shadow: 0 18px 42px rgba(8, 27, 51, 0.12);
}

.gt-product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gt-product-media,
.gt-product-actions,
.gt-product-option {
  position: relative;
  z-index: 2;
}

.gt-dark .gt-card,
.gt-dark .gt-video-card {
  border-color: var(--gt-dark-line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.gt-card-body,
.gt-product-body,
.gt-article-body,
.gt-service-body,
.gt-video-body {
  padding: 18px;
}

.gt-product-media,
.gt-article-media,
.gt-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e9f7f0, #d9f2ff);
}

.gt-product-media {
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 3vw, 26px);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95) 0 24%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(145deg, #f7fbf8, #dff3ed);
}

.gt-product-media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 12%;
  height: 18px;
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.13);
  filter: blur(10px);
  pointer-events: none;
}

.gt-video-thumb {
  aspect-ratio: 16 / 9;
  background: #050b09;
}

.gt-product-media img,
.gt-article-media img,
.gt-video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
}

.gt-product-media img {
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 16px rgba(5, 25, 20, 0.14));
}

.gt-article-media img,
.gt-video-thumb img {
  object-fit: cover;
}

.gt-product-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0f3a2e;
  font-size: 34px;
  font-weight: 900;
}

.gt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #063326;
  background: rgba(18, 185, 129, 0.14);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-dark .gt-badge {
  color: #c9ffec;
  background: rgba(18, 185, 129, 0.16);
}

.gt-product h3,
.gt-article h3,
.gt-service h3,
.gt-video-card h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.gt-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  color: #315f95;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gt-product-topline small {
  padding: 4px 7px;
  border-radius: 999px;
  color: #063326;
  background: rgba(22, 119, 255, 0.10);
  font-size: 10px;
}

.gt-product-subline {
  min-height: 40px;
  color: #4e6178;
  font-weight: 750;
}

.gt-product-facts {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}

.gt-product-facts div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid rgba(8, 27, 51, 0.08);
}

.gt-product-facts dt {
  color: #7b8797;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-product-facts dd {
  margin: 0;
  color: var(--gt-ink);
  font-size: 13px;
  font-weight: 850;
}

.gt-product-price,
.gt-product-detail-price {
  display: block;
  margin: 8px 0;
  color: #052118;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.gt-product-detail-price {
  font-size: clamp(28px, 4vw, 42px);
}

.gt-product-option {
  display: grid;
  gap: 7px;
  margin: 12px 0;
}

.gt-product-option span {
  color: var(--gt-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-product-option.gt-compact .gt-select {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}

.gt-product p,
.gt-article p,
.gt-service p,
.gt-video-card p {
  margin: 0;
  color: var(--gt-muted);
  font-size: 14px;
}

.gt-dark .gt-product p,
.gt-dark .gt-article p,
.gt-dark .gt-service p,
.gt-dark .gt-video-card p {
  color: rgba(255, 255, 255, 0.67);
}

.gt-card-actions,
.gt-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.gt-small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.gt-small-button.gt-fill {
  color: #fff;
  border-color: var(--gt-green);
  background: var(--gt-green);
}

.gt-catalog-section {
  padding-top: 34px;
}

.gt-catalog-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.gt-catalog-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 25, 20, 0.07);
}

.gt-catalog-sidebar h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.gt-catalog-sidebar a {
  padding: 10px 11px;
  border-radius: var(--gt-radius);
  color: var(--gt-muted);
  font-size: 14px;
  font-weight: 850;
}

.gt-catalog-sidebar a:hover,
.gt-catalog-sidebar a.gt-active {
  color: #03110d;
  background: rgba(18, 185, 129, 0.16);
}

.gt-catalog-main {
  min-width: 0;
}

.gt-catalog-search {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(160px, .7fr) minmax(150px, .7fr) minmax(140px, .6fr) auto;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 25, 20, 0.07);
}

.gt-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
}

.gt-active-filters span,
.gt-active-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #41566f;
  font-size: 12px;
  font-weight: 850;
}

.gt-active-filters a {
  color: #0b4b92;
  background: rgba(22, 119, 255, 0.08);
}

.gt-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.gt-catalog-toolbar strong {
  color: var(--gt-ink);
  font-size: 22px;
}

.gt-catalog-toolbar span {
  color: var(--gt-muted);
}

.gt-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.gt-pagination a,
.gt-pagination span {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.gt-pagination a.gt-active {
  color: #fff;
  border-color: var(--gt-cyan);
  background: linear-gradient(135deg, var(--gt-cyan), #1767b7);
}

.gt-pagination a.gt-disabled {
  pointer-events: none;
  opacity: .42;
}

.gt-care-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(47, 140, 255, 0.18);
  border-left: 4px solid var(--gt-cyan);
  border-radius: var(--gt-radius);
  color: #21405f;
  background: linear-gradient(135deg, #f7fbff, #edf7ff);
}

.gt-care-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gt-ink);
  font-size: 14px;
}

.gt-care-note p {
  margin: 0;
  color: #45647f;
}

.gt-video-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.gt-video-frame {
  overflow: hidden;
  border-radius: var(--gt-radius);
  background: #030806;
  aspect-ratio: 16 / 9;
}

.gt-video-frame iframe,
.gt-video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.gt-video-frame video {
  display: block;
  object-fit: contain;
  background: #030806;
}

.gt-video-lazy {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  color: #03120e;
  background: #030806;
  cursor: pointer;
}

.gt-video-lazy img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.gt-video-lazy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .52));
}

.gt-video-lazy span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 96px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gt-green);
  font-weight: 950;
}

.gt-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .88);
  background:
    radial-gradient(circle at 25% 20%, rgba(56, 189, 248, .28), transparent 28%),
    linear-gradient(135deg, #06120f, #0b2430 52%, #07110f);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 950;
  letter-spacing: 0;
}

.gt-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--gt-dark-line);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.06);
}

.gt-video-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.gt-empty {
  padding: 22px;
  border: 1px dashed var(--gt-line);
  border-radius: var(--gt-radius);
  color: var(--gt-muted);
  background: rgba(255, 255, 255, 0.72);
}

.gt-dark .gt-empty {
  border-color: var(--gt-dark-line);
  color: rgba(255, 255, 255, 0.70);
  background: rgba(255, 255, 255, 0.05);
}

.gt-page-head {
  padding: 72px clamp(16px, 4vw, 44px) 34px;
  color: var(--gt-ink);
  background: linear-gradient(135deg, #ffffff, #eaf5ff);
}

.gt-page-head-tight {
  padding-top: 30px;
  padding-bottom: 18px;
}

.gt-page-head .gt-wrap {
  display: grid;
  gap: 14px;
}

.gt-page-head h1 {
  font-size: clamp(38px, 6vw, 74px);
}

.gt-page-head-tight .gt-wrap {
  gap: 8px;
}

.gt-page-head-tight h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.gt-page-head-tight p {
  max-width: 900px;
  margin: 0;
}

.gt-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(150px, .7fr));
  gap: 10px;
  margin-bottom: 22px;
}

.gt-input,
.gt-select,
.gt-textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  color: var(--gt-ink);
  background: #fff;
}

.gt-brand-hub {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(9, 46, 37, 0.12);
  border-radius: var(--gt-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(135deg, #0b1815, #10251f);
  box-shadow: 0 18px 40px rgba(5, 22, 18, 0.14);
}

.gt-brand-hub h2 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}

.gt-brand-hub p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.gt-brand-card {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gt-radius);
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(18, 185, 129, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.07);
}

.gt-brand-card small {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #061a15;
  background: var(--gt-green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.gt-brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 201, 151, 0.52);
  background: rgba(32, 201, 151, 0.13);
}

.gt-brand-card strong {
  font-size: 20px;
}

.gt-brand-card span {
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.5;
}

.gt-brand-card-light {
  border-color: rgba(8, 38, 30, 0.10);
  color: var(--gt-ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 22, 18, 0.08);
}

.gt-brand-card-light:hover {
  background: #f5fbf8;
}

.gt-brand-card-light span {
  color: var(--gt-muted);
}

.gt-home-shortcuts .gt-brand-card {
  min-height: 104px;
  align-content: center;
}

.gt-home-shortcuts .gt-brand-card strong {
  font-size: 22px;
}

.gt-textarea {
  min-height: 118px;
  resize: vertical;
}

.gt-label {
  display: grid;
  gap: 6px;
  color: var(--gt-muted);
  font-size: 13px;
  font-weight: 800;
}

.gt-product-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.gt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #718096;
  font-size: 13px;
  font-weight: 800;
}

.gt-breadcrumb a {
  color: #1767b7;
}

.gt-breadcrumb strong {
  color: var(--gt-ink);
}

.gt-product-visual {
  overflow: hidden;
  border-radius: var(--gt-radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95) 0 25%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(145deg, #f7fbf8, #dff3ed);
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 4vw, 34px);
}

.gt-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 22px rgba(5, 25, 20, 0.16));
}

.gt-product-info h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.gt-product-detail-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gt-soft-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 999px;
  color: #315f95;
  background: rgba(22, 119, 255, 0.07);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-product-detail-section {
  padding-top: clamp(46px, 7vw, 78px);
}

.gt-product-subtitle {
  margin: 0 0 14px;
  color: #263f5d;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.35;
}

.gt-product-intro {
  margin: 18px 0 0;
  max-width: 760px;
  color: #40566f;
  font-size: 16px;
  line-height: 1.72;
}

.gt-availability-card,
.gt-authenticity-card {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: var(--gt-radius-lg);
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.gt-availability-card strong {
  display: block;
  color: var(--gt-ink);
  font-size: 16px;
}

.gt-availability-card span,
.gt-authenticity-card p {
  display: block;
  margin-top: 5px;
  color: #50657f;
  font-size: 14px;
}

.gt-product-presentation,
.gt-product-important,
.gt-authenticity-card {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gt-line);
}

.gt-product-presentation h2,
.gt-product-important h2,
.gt-authenticity-card h2 {
  margin: 0 0 14px;
  color: var(--gt-ink);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
}

.gt-detail-bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-detail-bullets div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 12px 14px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #f8fbff;
}

.gt-detail-bullets dt {
  color: var(--gt-ink);
  font-weight: 900;
}

.gt-detail-bullets dd {
  margin: 0;
  color: #4d6178;
}

.gt-product-important p {
  margin: 0 0 12px;
  color: #40566f;
  line-height: 1.72;
}

.gt-product-important > strong {
  display: block;
  margin-top: 14px;
  color: var(--gt-ink);
  font-size: 15px;
  line-height: 1.5;
}

.gt-mobile-product-cta {
  display: none;
}

.gt-info-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.gt-info-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gt-line);
}

.gt-info-list span {
  color: var(--gt-muted);
  font-weight: 800;
}

.gt-peptide-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 20px;
  align-items: start;
}

.gt-calculator,
.gt-contact-box,
.gt-admin-card {
  padding: 20px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 25, 20, 0.07);
}

.gt-calculator form,
.gt-contact-box form,
.gt-admin-form {
  display: grid;
  gap: 12px;
}

.gt-calc-result {
  padding: 16px;
  border-radius: var(--gt-radius);
  color: #062116;
  background: #dff8ed;
}

.gt-calc-result strong {
  display: block;
  font-size: 28px;
}

.gt-alert {
  padding: 14px;
  border-left: 4px solid var(--gt-green);
  border-radius: var(--gt-radius);
  background: rgba(18, 185, 129, 0.10);
  color: #17372f;
  font-size: 14px;
}

.gt-alert-dark {
  border-color: var(--gt-cyan);
  background: rgba(56, 189, 248, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.gt-pep-shell {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(91, 141, 255, 0.22);
  border-radius: var(--gt-radius);
  background: linear-gradient(180deg, rgba(16, 25, 37, 0.98), rgba(8, 13, 20, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.gt-pep-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.035);
}

.gt-pep-title h2,
.gt-pep-title p {
  margin: 0;
}

.gt-pep-title h2 {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 30px);
}

.gt-pep-title p {
  color: rgba(255, 255, 255, 0.68);
}

.gt-pep-title strong {
  align-self: start;
  padding: 8px 12px;
  border-radius: var(--gt-radius);
  color: #06111d;
  background: var(--gt-green);
}

.gt-pep-gate {
  max-width: 560px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.045);
}

.gt-pep-gate h3,
.gt-pep-gate p,
.gt-pep-gate label {
  color: #fff;
}

.gt-pep-gate form {
  display: grid;
  gap: 12px;
}

.gt-pepcalc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(280px, 1.16fr);
  gap: 14px;
  align-items: start;
}

.gt-pep-card {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--gt-radius);
  background: #151c27;
  color: #fff;
}

.gt-pep-card h3 {
  margin: 0 0 14px;
  padding-left: 34px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gt-pep-card-note {
  margin: -4px 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.gt-step {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(59, 130, 246, 0.35);
  font-size: 12px;
  font-weight: 900;
}

.gt-pep-value {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-pep-value strong {
  color: #fff;
  font-size: 20px;
}

.gt-pep-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gt-pep-choice {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: var(--gt-radius);
  color: rgba(255, 255, 255, 0.78);
  background: #222b37;
  font-weight: 900;
}

.gt-pep-choice:hover,
.gt-pep-choice.gt-active {
  border-color: var(--gt-cyan);
  color: #fff;
  background: rgba(37, 99, 235, 0.34);
}

.gt-pep-custom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--gt-radius);
  background: #202a36;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.gt-pep-custom span,
.gt-pep-custom em {
  padding: 12px;
  font-style: normal;
}

.gt-pep-custom input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-weight: 900;
}

.gt-pep-custom-full {
  margin: 14px 0;
}

.gt-pep-wide {
  grid-column: span 2;
}

.gt-syringe-list {
  display: grid;
  gap: 12px;
}

.gt-syringe-choice {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gt-radius);
  color: #fff;
  background: #202a36;
  text-align: left;
}

.gt-syringe-choice:hover,
.gt-syringe-choice.gt-active {
  border-color: var(--gt-cyan);
  background: rgba(37, 99, 235, 0.28);
}

.gt-syringe-drawing {
  position: relative;
  display: block;
  height: 28px;
  margin-left: 38px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px 10px 10px 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.22) 20px 22px),
    rgba(255, 255, 255, 0.06);
}

.gt-syringe-drawing::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 50%;
  width: 38px;
  height: 8px;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%);
}

.gt-syringe-drawing::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  width: 28px;
  height: 4px;
  border-radius: 0 999px 999px 0;
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%);
}

.gt-syringe-drawing i {
  position: absolute;
  inset: 5px auto 5px 5px;
  max-width: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gt-green), var(--gt-cyan));
  opacity: 0.72;
}

.gt-syringe-copy {
  display: grid;
  gap: 3px;
  min-width: 112px;
  text-align: right;
}

.gt-syringe-copy strong {
  font-size: 18px;
}

.gt-syringe-copy em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-pep-dose p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.gt-pep-result-panel {
  min-height: 100%;
  border-color: rgba(56, 189, 248, 0.36);
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.10), transparent 38%), #121923;
}

.gt-pep-result-panel h3 {
  padding-left: 0;
}

.gt-pep-result-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  text-align: center;
}

.gt-pep-result-panel strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--gt-green);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.gt-pep-muted {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gt-pep-result-grid {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.gt-pep-result-grid div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.055);
}

.gt-pep-result-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.gt-pep-warning,
.gt-pep-ok {
  padding: 12px;
  border-radius: var(--gt-radius);
  text-align: left !important;
}

.gt-pep-warning {
  color: #ffe7e7 !important;
  background: rgba(239, 68, 68, 0.16);
}

.gt-pep-ok {
  color: #dcfce7 !important;
  background: rgba(18, 185, 129, 0.14);
}

.gt-pep-howto {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--gt-radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.gt-pep-howto h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.gt-pep-howto ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.gt-pep-howto strong {
  color: #fff;
}

.gt-pep-video {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.035);
}

.gt-pep-video h2,
.gt-pep-video p {
  margin: 0;
}

.gt-pep-video h2 {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
}

.gt-pep-video p {
  color: rgba(255, 255, 255, 0.70);
}

.gt-pep-video-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 22px;
  border: 1px dashed rgba(56, 189, 248, 0.36);
  border-radius: var(--gt-radius);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(15, 23, 42, 0.62);
  text-align: center;
}

.gt-pep-video-placeholder strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.gt-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gt-account-dashboard {
  display: grid;
  gap: 22px;
}

.gt-account-card {
  padding: 22px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(5, 25, 20, 0.08);
}

.gt-account-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.gt-account-card form {
  display: grid;
  gap: 12px;
}

.gt-account-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.gt-account-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.gt-account-summary div {
  padding: 14px;
  border: 1px solid var(--gt-line);
  border-radius: 12px;
  background: #f7fbf9;
}

.gt-account-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--gt-muted);
  font-size: 12px;
  font-weight: 800;
}

.gt-account-summary strong {
  display: block;
  overflow-wrap: anywhere;
}

.gt-account-actions {
  margin-bottom: 14px;
}

.gt-account-edit {
  border-top: 1px solid var(--gt-line);
  padding-top: 14px;
}

.gt-account-edit summary {
  cursor: pointer;
  font-weight: 900;
}

.gt-account-edit form {
  margin-top: 14px;
}

.gt-order-list {
  display: grid;
  gap: 12px;
}

.gt-order {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #f6faf8;
}

.gt-order div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gt-order strong {
  color: var(--gt-ink);
}

.gt-order span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #052118;
  background: rgba(18, 185, 129, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.gt-order p,
.gt-order small,
.gt-order time {
  margin: 0;
  color: var(--gt-muted);
}

.gt-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 24px;
}

.gt-map {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  color: var(--gt-muted);
  background: #eaf4ef;
}

.gt-footer {
  padding: 44px clamp(16px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, #102f52, #0f567f);
}

.gt-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .8fr));
  gap: 24px;
  width: min(100%, var(--gt-max));
  margin: 0 auto;
}

.gt-footer h3,
.gt-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.gt-footer a,
.gt-footer span {
  display: block;
  margin: 6px 0;
}

.gt-footer-bottom {
  width: min(100%, var(--gt-max));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.gt-admin-shell {
  min-height: calc(100vh - 72px);
  color: #e8f6f1;
  background: #07110f;
}

.gt-admin-login {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: 32px 16px;
}

.gt-admin-login .gt-admin-card {
  width: min(100%, 480px);
  color: var(--gt-ink);
}

.gt-admin-layout {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 72px);
}

.gt-admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100vh;
  overflow-y: auto;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  background: #0a1512;
}

.gt-admin-sidebar h2 {
  margin: 0 0 4px;
}

.gt-admin-sidebar p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.gt-admin-nav-group {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gt-admin-nav-group > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gt-admin-sidebar button {
  width: 100%;
  justify-content: flex-start;
  min-height: 36px;
  margin-bottom: 0;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.gt-admin-sidebar button.gt-active {
  color: #06110e;
  background: var(--gt-green);
}

.gt-admin-content {
  padding: 28px;
}

.gt-admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.gt-admin-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.06);
}

.gt-admin-stat strong {
  display: block;
  font-size: 28px;
}

.gt-admin-panel {
  display: grid;
  gap: 18px;
}

.gt-admin-help {
  max-width: 760px;
  margin: -8px 0 4px;
  color: rgba(255, 255, 255, 0.72);
}

.gt-admin-panel .gt-admin-card {
  color: var(--gt-ink);
}

.gt-admin-settings-groups {
  display: grid;
  gap: 16px;
}

.gt-admin-settings-group {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--gt-line);
  border-radius: var(--gt-radius);
  background: #f8fbfa;
}

.gt-admin-section-head h2 {
  margin: 0 0 4px;
  color: var(--gt-ink);
  font-size: 18px;
}

.gt-admin-section-head p {
  margin: 0;
  color: var(--gt-muted);
  font-size: 13px;
}

.gt-admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--gt-radius);
  background: #fff;
}

.gt-admin-table th,
.gt-admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--gt-line);
  color: var(--gt-ink);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.gt-admin-table th {
  color: var(--gt-muted);
  background: #f1f7f4;
  font-size: 12px;
  text-transform: uppercase;
}

.gt-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gt-admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gt-admin-form-grid .gt-wide {
  grid-column: 1 / -1;
}

.gt-status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: #063326;
  background: #ddf8ed;
  font-size: 11px;
  font-weight: 900;
}

.gt-status.gt-draft,
.gt-status.gt-review,
.gt-status.gt-pending {
  color: #43320a;
  background: #fff2c7;
}

.gt-status.gt-archived,
.gt-status.gt-restricted {
  color: #4a1111;
  background: #ffe1e1;
}

.gt-loading {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 50vh;
  color: var(--gt-muted);
}

.gt-skeleton-page {
  width: min(100%, var(--gt-max));
  display: grid;
  gap: 18px;
}

.gt-skeleton-heading,
.gt-skeleton-grid article,
.gt-skeleton-product > span,
.gt-skeleton-product i {
  overflow: hidden;
  position: relative;
  border-radius: var(--gt-radius);
  background: #e7eef7;
}

.gt-skeleton-heading::after,
.gt-skeleton-grid article::after,
.gt-skeleton-product > span::after,
.gt-skeleton-product i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: gt-skeleton 1.2s ease-in-out infinite;
}

.gt-skeleton-heading {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 18px;
}

.gt-skeleton-heading span,
.gt-skeleton-heading strong,
.gt-skeleton-heading em {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.gt-skeleton-heading span {
  width: 35%;
}

.gt-skeleton-heading strong {
  width: 82%;
  height: 34px;
}

.gt-skeleton-heading em {
  width: 56%;
}

.gt-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gt-skeleton-grid article {
  min-height: 330px;
  padding: 16px;
}

.gt-skeleton-grid span,
.gt-skeleton-grid i {
  display: block;
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.7);
}

.gt-skeleton-grid span {
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
}

.gt-skeleton-grid i {
  height: 14px;
  margin-top: 10px;
}

.gt-skeleton-grid i:nth-child(2) {
  width: 86%;
  height: 22px;
}

.gt-skeleton-grid i:nth-child(3) {
  width: 70%;
}

.gt-skeleton-grid i:nth-child(4) {
  width: 48%;
}

.gt-skeleton-product {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
}

.gt-skeleton-product > span {
  aspect-ratio: 1 / 1;
}

.gt-skeleton-product div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gt-skeleton-product i {
  height: 18px;
}

.gt-skeleton-product i:nth-child(1) {
  height: 48px;
}

@keyframes gt-skeleton {
  to {
    transform: translateX(100%);
  }
}

.gt-legal-page {
  max-width: 860px;
}

.gt-legal-page h2 {
  margin-top: 34px;
}

.gt-legal-hero {
  padding: clamp(76px, 10vw, 132px) 0 clamp(62px, 8vw, 100px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 201, 151, 0.22), transparent 42%),
    linear-gradient(135deg, #064d3c 0%, #0a5e49 42%, #07342e 100%);
}

.gt-legal-hero .gt-wrap {
  max-width: 900px;
}

.gt-legal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: #eafff7;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 950;
}

.gt-legal-hero h1 {
  max-width: 880px;
  margin: 22px auto 18px;
  color: #fff;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
}

.gt-legal-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.gt-legality-section {
  padding-top: 48px;
}

.gt-legality-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 138px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 38, 30, 0.10);
  border-radius: var(--gt-radius-lg);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 22, 18, 0.08);
}

.gt-legality-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #075f46;
  background: #d9fff0;
  font-size: 23px;
  font-weight: 950;
}

.gt-legality-card:nth-child(2) > span {
  color: #1d4ed8;
  background: #dbeafe;
}

.gt-legality-card:nth-child(3) > span {
  color: #92400e;
  background: #fef3c7;
}

.gt-legality-card:nth-child(4) > span {
  color: #7e22ce;
  background: #f3e8ff;
}

.gt-legality-card h3,
.gt-legal-panel h2,
.gt-legal-alert h2,
.gt-legal-sources h2 {
  margin: 0 0 10px;
}

.gt-legality-card p {
  margin: 0;
  color: var(--gt-muted);
  line-height: 1.55;
}

.gt-legal-panel,
.gt-legal-alert,
.gt-legal-sources {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(8, 38, 30, 0.10);
  border-radius: var(--gt-radius-lg);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 22, 18, 0.07);
}

.gt-legal-steps {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.gt-legal-steps li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--gt-radius);
  background: #f5fbf8;
}

.gt-legal-steps strong {
  color: var(--gt-ink);
}

.gt-legal-steps span {
  color: var(--gt-muted);
}

.gt-legal-alert {
  border-left: 5px solid var(--gt-green);
  background: #0b1815;
  color: #fff;
}

.gt-legal-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.gt-legal-sources {
  display: grid;
  gap: 10px;
}

.gt-legal-sources a {
  color: #075f46;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gt-embed-page {
  height: calc(100vh - 72px);
  background: #09110f;
}

.gt-embed-page iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes gt-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .gt-top-strip-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (min-width: 1121px) and (max-width: 1340px) {
  .gt-header-quote {
    display: none;
  }
}

@media (max-width: 1120px) {
  body.gt-menu-open .gt-header {
    z-index: 1008;
  }

  .gt-nav {
    position: fixed;
    inset: 82px 12px auto 12px;
    z-index: 1009;
    width: auto;
    max-height: calc(100dvh - 96px);
    display: none;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(47, 140, 255, 0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(13, 32, 56, 0.22);
  }

  body.gt-menu-open .gt-nav {
    display: grid;
  }

  .gt-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(47, 140, 255, 0.12);
    border-radius: 12px;
    color: rgba(13, 32, 56, 0.88);
    background: rgba(47, 140, 255, 0.06);
    font-size: 15px;
    font-weight: 850;
  }

  .gt-nav a.gt-active {
    color: #02120d;
    background: linear-gradient(135deg, var(--gt-green), var(--gt-cyan));
  }

  .gt-mobile-menu-only {
    display: flex;
  }

  .gt-menu-button {
    display: grid;
  }

  .gt-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .gt-market-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gt-market-meta {
    justify-self: start;
  }

  .gt-catalog-layout {
    grid-template-columns: 1fr;
  }

  .gt-catalog-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
  }

  .gt-catalog-sidebar h2 {
    display: none;
  }

  .gt-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.gt-menu-open::before {
    top: 0;
  }

  .gt-top-strip {
    font-size: 10px;
    line-height: 1.1;
  }

  .gt-top-strip-track {
    animation-duration: 16s;
  }

  .gt-top-strip-track span {
    padding: 6px 34px;
  }

  .gt-header {
    min-height: 54px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.96);
  }

  .gt-whatsapp span:last-child {
    display: none;
  }

  .gt-header-quote {
    display: none;
  }

  .gt-header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .gt-fit-link {
    display: none;
  }

  .gt-icon-button {
    display: none;
  }

  .gt-account-link {
    display: inline-flex;
    min-height: 36px;
    padding: 8px 10px;
    border-color: rgba(13, 32, 56, 0.16);
    border-radius: 10px;
    color: var(--gt-ink);
    background: rgba(47, 140, 255, 0.08);
    font-size: 12px;
  }

  .gt-whatsapp,
  .gt-menu-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 10px;
  }

  .gt-menu-button span {
    width: 17px;
  }

  .gt-nav {
    inset: 70px 10px auto 10px;
    max-height: calc(100dvh - 94px);
    border-radius: 14px;
  }

  .gt-search {
    top: 58px;
  }

  .gt-search form,
  .gt-video-featured,
  .gt-product-detail,
  .gt-peptide-tool,
  .gt-account-grid,
  .gt-pepcalc-grid,
  .gt-pep-video,
  .gt-contact-grid,
  .gt-footer-grid,
  .gt-admin-layout {
    grid-template-columns: 1fr;
  }

  .gt-pep-wide {
    grid-column: auto;
  }

  .gt-account-summary {
    grid-template-columns: 1fr;
  }

  .gt-grid-3,
  .gt-grid-2,
  .gt-grid-4,
  .gt-catalog-grid,
  .gt-admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-filters {
    grid-template-columns: 1fr 1fr;
  }

  .gt-catalog-search {
    grid-template-columns: 1fr 1fr;
  }

  .gt-hero {
    min-height: 56dvh;
    background-position: 88% center;
    background-size: 120vw auto;
  }

  .gt-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.88));
  }

  .gt-hero-strip {
    grid-template-columns: 1fr;
  }

  .gt-section-head {
    display: grid;
    align-items: start;
  }

  .gt-section-head h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .gt-admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .gt-admin-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gt-admin-sidebar button {
    margin: 0;
  }

  .gt-skeleton-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gt-skeleton-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .gt-logo-image {
    width: 122px;
    min-width: 104px;
  }

  .gt-market-inner {
    padding: 8px 14px;
  }

  .gt-market-links a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .gt-market-meta {
    width: 100%;
    justify-content: space-between;
  }

  .gt-catalog-search,
  .gt-catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gt-grid-3,
  .gt-grid-2,
  .gt-grid-4,
  .gt-catalog-grid,
  .gt-admin-stats,
  .gt-filters,
  .gt-admin-form-grid,
  .gt-info-list div {
    grid-template-columns: 1fr;
  }

  .gt-section {
    padding: 38px 14px;
  }

  .gt-product-detail-section {
    padding-top: 28px;
  }

  .gt-product-info h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .gt-detail-bullets div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
  }

  .gt-product-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gt-product-subline {
    min-height: 0;
  }

  .gt-mobile-product-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 980;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(8, 27, 51, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  body:has(.gt-mobile-product-cta) {
    padding-bottom: 74px;
  }

  .gt-skeleton-grid {
    grid-template-columns: 1fr;
  }

  .gt-hero-content {
    padding: 46px 18px 36px;
  }

  .gt-hero h1 {
    font-size: clamp(42px, 15vw, 58px);
    line-height: .94;
  }

  .gt-hero-actions {
    max-width: 100%;
    margin-top: 22px;
  }

  .gt-hero-actions,
  .gt-card-actions,
  .gt-product-actions,
  .gt-account-card-head,
  .gt-admin-actions {
    display: grid;
  }

  .gt-button,
  .gt-primary,
  .gt-secondary,
  .gt-ghost,
  .gt-small-button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
  }

  .gt-product-card,
  .gt-video-card,
  .gt-article,
  .gt-account-card {
    border-radius: 14px;
  }

  .gt-video-copy {
    padding: 18px;
  }

  .gt-pep-shell,
  .gt-pep-video {
    padding: 14px;
  }

  .gt-pep-title {
    display: grid;
  }

  .gt-pep-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-syringe-choice {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gt-syringe-copy {
    min-width: 0;
    text-align: left;
  }

  .gt-syringe-drawing {
    margin-left: 34px;
  }

  .gt-admin-content {
    padding: 18px 14px;
  }

  .gt-admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .gt-admin-table {
    display: block;
    overflow-x: auto;
  }
}
