:root {
  --GGR-OM-site-container: min(1640px, calc(100% - 96px));

  --GGR-OM-yellow: #ffe700;
  --GGR-OM-yellow-2: #ffcf00;
  --GGR-OM-black: #030303;
  --GGR-OM-ink: #080808;
  --GGR-OM-panel: #101010;
  --GGR-OM-panel-2: #171717;
  --GGR-OM-white: #ffffff;
  --GGR-OM-text: rgba(255, 255, 255, 0.92);
  --GGR-OM-muted: rgba(255, 255, 255, 0.68);
  --GGR-OM-line: rgba(255, 255, 255, 0.1);
  --GGR-OM-gold-line: rgba(255, 231, 0, 0.34);
}

body.GGR-OM-lock {
  overflow: hidden;
}

body.GGR-OM-lock .GGR-OM-modal,
body.GGR-OM-lock .GGR-OM-strip {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.GGR-OM-strip,
.GGR-OM-strip *,
.GGR-OM-modal,
.GGR-OM-modal * {
  box-sizing: border-box;
}

.GGR-OM-strip svg,
.GGR-OM-modal svg {
  display: block;
}

@media (max-width: 1500px) {
  :root {
    --GGR-OM-site-container: min(100% - 48px, 1440px);
  }
}

@media (max-width: 991px) {
  :root {
    --GGR-OM-site-container: calc(100% - 28px);
  }
}

@media (max-width: 575px) {
  :root {
    --GGR-OM-site-container: 100%;
  }
}

.GGR-OM-strip {
  position: relative;
  z-index: 99990;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  font-family: inherit;
  color: var(--GGR-OM-white);
  background:
    linear-gradient(
      90deg,
      rgba(255, 231, 0, 0.18),
      transparent 22%,
      transparent 76%,
      rgba(255, 231, 0, 0.12)
    ),
    radial-gradient(
      circle at 16% 50%,
      rgba(255, 231, 0, 0.16),
      transparent 24%
    ),
    linear-gradient(90deg, #000000 0%, #111111 50%, #000000 100%);
  border-bottom: 1px solid rgba(255, 231, 0, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  contain: layout paint;
}

.GGR-OM-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0 1px,
    transparent 1px 92px
  );
  opacity: 0.45;
  pointer-events: none;
}

.GGR-OM-stripCard {
  position: relative;
  z-index: 1;
  width: var(--GGR-OM-site-container);
  min-height: 52px;
  margin: 0 auto;
  padding: 8px 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
}

.GGR-OM-stripBadge,
.GGR-OM-stripTimer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 950;
}

.GGR-OM-stripBadge {
  min-height: 32px;
  padding: 0 14px;
  color: #050505;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff36b);
  box-shadow:
    0 0 0 1px rgba(255, 231, 0, 0.24),
    0 10px 22px rgba(255, 231, 0, 0.15);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.GGR-OM-stripTimer {
  min-height: 31px;
  padding: 0 13px;
  color: var(--GGR-OM-yellow);
  background: rgba(255, 231, 0, 0.08);
  border: 1px solid rgba(255, 231, 0, 0.24);
  font-size: 11.5px;
  letter-spacing: 0.35px;
}

.GGR-OM-stripText {
  min-width: 0;
  max-width: 100%;
  color: var(--GGR-OM-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.GGR-OM-stripText strong {
  color: var(--GGR-OM-yellow);
  font-weight: 950;
  text-transform: uppercase;
  margin-right: 8px;
}

.GGR-OM-stripBtn {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  background: var(--GGR-OM-yellow);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 231, 0, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.GGR-OM-stripBtn:hover {
  color: #050505;
  background: #fff36a;
  transform: translateY(-1px);
}

.GGR-OM-stripClose {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 231, 0, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--GGR-OM-yellow);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.GGR-OM-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  width: 100%;
  max-width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-family: inherit;
  overflow-x: hidden;
  overflow-y: auto;
}

.GGR-OM-modal.is-open {
  display: flex;
}

.GGR-OM-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 231, 0, 0.1), transparent 34%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.GGR-OM-card {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  border-radius: 26px;
  color: var(--GGR-OM-white);
  background:
    linear-gradient(135deg, rgba(255, 231, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #111111 0%, #050505 100%);
  border: 1px solid rgba(255, 231, 0, 0.36);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 42px rgba(255, 231, 0, 0.08);
  animation: GGRPopupIn 0.32s ease both;
}

.GGR-OM-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 231, 0, 0.13);
  pointer-events: none;
  z-index: 2;
}

@keyframes GGRPopupIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.GGR-OM-scroll {
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 231, 0, 0.72) rgba(255, 255, 255, 0.06);
}

.GGR-OM-scroll::-webkit-scrollbar {
  width: 8px;
}

.GGR-OM-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.055);
}

.GGR-OM-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--GGR-OM-yellow),
    rgba(255, 231, 0, 0.55)
  );
  border-radius: 999px;
}

.GGR-OM-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 231, 0, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.74);
  color: var(--GGR-OM-yellow);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.GGR-OM-posterTop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 24% 16%,
      rgba(255, 231, 0, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 78% 32%,
      rgba(255, 231, 0, 0.16),
      transparent 24%
    ),
    linear-gradient(115deg, #050505 0%, #0d0d0d 48%, #030303 100%);
  border-bottom: 1px solid rgba(255, 231, 0, 0.18);
}

.GGR-OM-posterTop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 82px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 74px
    );
  opacity: 0.78;
  pointer-events: none;
}

.GGR-OM-posterTop::after {
  content: "";
  position: absolute;
  right: 29%;
  top: -50px;
  width: 1px;
  height: 620px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 231, 0, 0.34),
    transparent
  );
  transform: rotate(11deg);
  pointer-events: none;
}

.GGR-OM-posterLeft,
.GGR-OM-posterRight {
  position: relative;
  z-index: 1;
}

.GGR-OM-posterLeft {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.GGR-OM-brandRow {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.GGR-OM-logoBadge {
  width: 78px;
  height: 78px;
  min-width: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff36a);
  box-shadow: 0 14px 36px rgba(255, 231, 0, 0.18);
  overflow: hidden;
}

.GGR-OM-logoBadge img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

.GGR-OM-logoFallback {
  color: #050505;
  font-size: 27px;
  line-height: 1;
  font-weight: 1000;
}

.GGR-OM-eyebrow {
  margin: 0 0 5px;
  color: var(--GGR-OM-yellow);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
}

.GGR-OM-miniLine {
  max-width: 420px;
  margin: 0;
  color: var(--GGR-OM-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.GGR-OM-headlineBlock {
  max-width: 590px;
}

.GGR-OM-freeRibbon {
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--GGR-OM-yellow);
  background: rgba(255, 231, 0, 0.08);
  border: 1px solid rgba(255, 231, 0, 0.24);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.5px;
}

.GGR-OM-freeRibbon span,
.GGR-OM-freeRibbon svg {
  width: 16px;
  height: 16px;
  color: var(--GGR-OM-yellow);
  fill: currentColor;
}

.GGR-OM-title {
  margin: 0 0 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.92;
  font-weight: 1000;
}

.GGR-OM-title span,
.GGR-OM-title strong {
  display: block;
}

.GGR-OM-title span {
  color: #ffffff;
  font-size: clamp(62px, 8.4vw, 108px);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.GGR-OM-title strong {
  margin-top: 8px;
  color: var(--GGR-OM-yellow);
  font-size: clamp(48px, 7.1vw, 88px);
  letter-spacing: -1.6px;
  text-shadow: 0 12px 30px rgba(255, 231, 0, 0.16);
}

.GGR-OM-desc {
  max-width: 560px;
  margin: 0;
  color: var(--GGR-OM-muted);
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 550;
}

.GGR-OM-trustRail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.GGR-OM-trustChip {
  min-height: 34px;
  padding: 0 12px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.GGR-OM-trustChip i,
.GGR-OM-trustChip svg {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: var(--GGR-OM-yellow);
  fill: currentColor;
  font-style: normal;
}

.GGR-OM-posterRight {
  min-height: 470px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 231, 0, 0.34),
      transparent 0 13%,
      transparent 25%
    ),
    radial-gradient(
      circle at 62% 46%,
      rgba(255, 255, 255, 0.12),
      transparent 0 28%,
      rgba(0, 0, 0, 0.05) 30%
    ),
    linear-gradient(140deg, rgba(255, 231, 0, 0.09), transparent 36%),
    linear-gradient(180deg, #1a1a1a, #050505);
  border-left: 1px solid rgba(255, 231, 0, 0.15);
}

.GGR-OM-posterRight::before {
  content: "";
  position: absolute;
  inset: 30px 28px 92px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 231, 0, 0.16), transparent 44%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.015)
    );
  border: 1px solid rgba(255, 231, 0, 0.2);
  transform: skewX(-6deg);
  box-shadow: inset 0 0 68px rgba(255, 231, 0, 0.06);
}

.GGR-OM-posterRight::after {
  content: "GOLD’S";
  position: absolute;
  right: -22px;
  top: 90px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 108px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -6px;
  transform: rotate(90deg);
  transform-origin: center;
}

.GGR-OM-gymSilhouette {
  position: absolute;
  left: 36px;
  right: 36px;
  top: 116px;
  height: 135px;
  opacity: 0.86;
  pointer-events: none;
}

.GGR-OM-barbell {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 62px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 231, 0, 0.96),
    transparent
  );
  box-shadow: 0 0 34px rgba(255, 231, 0, 0.24);
}

.GGR-OM-plate {
  position: absolute;
  top: 36px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 12px solid rgba(255, 231, 0, 0.9);
  box-shadow:
    0 0 32px rgba(255, 231, 0, 0.16),
    inset 0 0 18px rgba(255, 231, 0, 0.12);
}

.GGR-OM-plate::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: rgba(255, 231, 0, 0.9);
}

.GGR-OM-plateOne {
  left: 5%;
}

.GGR-OM-plateTwo {
  right: 5%;
}

.GGR-OM-deadlineCard,
.GGR-OM-coachCard,
.GGR-OM-statGrid {
  position: relative;
  z-index: 2;
}

.GGR-OM-deadlineCard {
  width: min(360px, calc(100% - 54px));
  margin-left: auto;
  margin-right: 42px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-radius: 20px;
  color: #050505;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff36d);
  box-shadow: 0 20px 42px rgba(255, 231, 0, 0.18);
}

.GGR-OM-deadlineIcon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #050505;
  background: rgba(0, 0, 0, 0.08);
}

.GGR-OM-deadlineIcon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.GGR-OM-deadlineCard p,
.GGR-OM-deadlineCard strong,
.GGR-OM-deadlineCard em {
  display: block;
  margin: 0;
  text-transform: uppercase;
}

.GGR-OM-deadlineCard p {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.45px;
}

.GGR-OM-deadlineCard strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.GGR-OM-deadlineCard em {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #050505;
  background: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.GGR-OM-coachCard {
  width: min(360px, 100%);
  margin: 92px 0 0 auto;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(255, 231, 0, 0.42);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.46);
  transform: skewX(-5deg);
}

.GGR-OM-coachCard span,
.GGR-OM-coachCard strong,
.GGR-OM-coachCard em {
  display: block;
  transform: skewX(5deg);
  text-transform: uppercase;
}

.GGR-OM-coachCard span {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

.GGR-OM-coachCard strong {
  margin: 5px 0 12px;
  color: var(--GGR-OM-yellow);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.8px;
}

.GGR-OM-coachCard em {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 231, 0, 0.34);
  color: #ffffff;
  font-style: normal;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.GGR-OM-statGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.GGR-OM-statItem {
  min-height: 82px;
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.GGR-OM-statItem strong {
  display: block;
  color: var(--GGR-OM-yellow);
  font-size: 28px;
  line-height: 1;
  font-weight: 1000;
}

.GGR-OM-statItem span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.25px;
}

.GGR-OM-includedWrap {
  padding: 28px 30px 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 231, 0, 0.1), transparent 28%),
    #0b0b0b;
  border-bottom: 1px solid rgba(255, 231, 0, 0.15);
}

.GGR-OM-sectionHead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.GGR-OM-sectionHead span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--GGR-OM-yellow);
  box-shadow: 0 0 18px rgba(255, 231, 0, 0.25);
}

.GGR-OM-sectionHead h3 {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: 0.2px;
}

.GGR-OM-includedGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.GGR-OM-includedItem {
  position: relative;
  min-height: 132px;
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.GGR-OM-includedItem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 231, 0, 0.12),
    transparent 46%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.GGR-OM-includedItem:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 231, 0, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 231, 0, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    #141414;
}

.GGR-OM-includedItem:hover::before {
  opacity: 1;
}

.GGR-OM-includedIcon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--GGR-OM-yellow);
}

.GGR-OM-includedIcon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.GGR-OM-includedText {
  position: relative;
  z-index: 1;
  min-height: 36px;
  max-width: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  background: transparent !important;
  font-size: 13.6px;
  line-height: 1.24;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08px;
}

.GGR-OM-bottomBar {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr 1.12fr;
  gap: 14px;
  padding: 16px 18px 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 231, 0, 0.08), transparent 22%),
    #050505;
  border-bottom: 1px solid rgba(255, 231, 0, 0.14);
}

.GGR-OM-ctaBlock,
.GGR-OM-phoneBlock,
.GGR-OM-locationBlock {
  min-width: 0;
  min-height: 148px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    ),
    #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 231, 0, 0.03);
}

.GGR-OM-bottomIcon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  color: #050505;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff36a);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 231, 0, 0.18);
}

.GGR-OM-bottomIcon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.GGR-OM-ctaBlock p,
.GGR-OM-locationBlock p {
  margin: 0;
  color: var(--GGR-OM-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.GGR-OM-ctaBlock strong {
  display: block;
  margin-top: 6px;
  color: var(--GGR-OM-yellow);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: -0.6px;
}

.GGR-OM-phoneBlock {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.GGR-OM-phoneTitle {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
}

.GGR-OM-phoneNumber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(22px, 1.35vw, 27px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.05px;
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}

.GGR-OM-phoneNumber::before {
  content: "";
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: var(--GGR-OM-yellow);
  box-shadow: 0 0 16px rgba(255, 231, 0, 0.36);
}

.GGR-OM-phoneNumber:hover {
  color: var(--GGR-OM-yellow);
  border-color: rgba(255, 231, 0, 0.26);
  background: rgba(255, 231, 0, 0.06);
}

.GGR-OM-locationBlock {
  align-items: center;
}

.GGR-OM-locationBlock > div {
  min-width: 0;
}

.GGR-OM-locationBlock strong,
.GGR-OM-locationBlock b {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 1000;
}

.GGR-OM-locationBlock strong {
  color: #ffffff;
}

.GGR-OM-locationBlock b {
  margin: 4px 0 8px;
  color: var(--GGR-OM-yellow);
}

.GGR-OM-locationBlock p {
  max-width: 100%;
}

.GGR-OM-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 28px;
  background: #0b0b0b;
}

.GGR-OM-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.15px;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.GGR-OM-btnPrimary {
  color: #050505;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff36a);
  box-shadow: 0 18px 36px rgba(255, 231, 0, 0.14);
}

.GGR-OM-btnPrimary:hover {
  color: #050505;
  background: #fff36a;
  transform: translateY(-1px);
}

.GGR-OM-btnGhost {
  color: var(--GGR-OM-yellow);
  background: transparent;
  border: 1px solid rgba(255, 231, 0, 0.36);
}

.GGR-OM-btnGhost:hover {
  color: var(--GGR-OM-yellow);
  border-color: var(--GGR-OM-yellow);
  transform: translateY(-1px);
}

.GGR-OM-footerLine {
  padding: 15px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--GGR-OM-yellow), #fff16a);
  color: #050505;
  text-transform: uppercase;
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: 0.8px;
}

@media (max-width: 1180px) {
  .GGR-OM-stripCard {
    gap: 10px;
  }

  .GGR-OM-stripText {
    font-size: 13.2px;
  }

  .GGR-OM-stripBtn {
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .GGR-OM-bottomBar {
    grid-template-columns: 0.95fr 1fr 1.05fr;
    gap: 12px;
  }

  .GGR-OM-phoneNumber {
    font-size: 24px;
  }
}

@media (max-width: 940px) {
  .GGR-OM-card {
    width: min(740px, 100%);
  }

  .GGR-OM-posterTop {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .GGR-OM-posterTop::after {
    display: none;
  }

  .GGR-OM-posterLeft {
    padding: 32px 28px 26px;
  }

  .GGR-OM-posterRight {
    min-height: 286px;
    padding: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 231, 0, 0.15);
  }

  .GGR-OM-deadlineCard {
    width: 100%;
    margin-right: 0;
  }

  .GGR-OM-posterRight::before {
    inset: 20px 22px 48px;
  }

  .GGR-OM-posterRight::after {
    top: 22px;
    right: 18px;
    font-size: 82px;
    transform: none;
  }

  .GGR-OM-gymSilhouette {
    left: 32px;
    right: 32px;
    top: 86px;
    height: 100px;
  }

  .GGR-OM-barbell {
    top: 48px;
  }

  .GGR-OM-plate {
    top: 25px;
    width: 58px;
    height: 58px;
    border-width: 9px;
  }

  .GGR-OM-coachCard {
    margin-top: 28px;
  }

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

  .GGR-OM-bottomBar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 14px 8px;
  }

  .GGR-OM-ctaBlock,
  .GGR-OM-phoneBlock,
  .GGR-OM-locationBlock {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .GGR-OM-stripCard {
    width: 100%;
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
  }

  .GGR-OM-stripBadge {
    min-height: 26px;
    padding: 0 9px;
    font-size: 9px;
    letter-spacing: 0.25px;
  }

  .GGR-OM-stripText {
    display: block;
    white-space: normal;
    overflow: hidden;
    text-overflow: unset;
    line-height: 1.28;
  }

  .GGR-OM-stripText strong,
  .GGR-OM-stripText span {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .GGR-OM-stripText strong {
    margin-right: 0;
    font-size: 11.5px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .GGR-OM-stripText span {
    margin-top: 2px;
    font-size: 10.9px;
    line-height: 1.2;
    font-weight: 750;
  }

  .GGR-OM-stripTimer,
  .GGR-OM-stripBtn,
  .GGR-OM-stripClose {
    display: none !important;
  }

  .GGR-OM-modal {
    padding: 10px;
    align-items: flex-start;
  }

  .GGR-OM-card {
    width: 100%;
    max-width: 462px;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
  }

  .GGR-OM-card::before {
    inset: 7px;
    border-radius: 15px;
  }

  .GGR-OM-scroll {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .GGR-OM-close {
    top: 9px;
    right: 9px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .GGR-OM-posterLeft {
    padding: 27px 16px 21px;
    gap: 18px;
  }

  .GGR-OM-brandRow {
    gap: 11px;
  }

  .GGR-OM-logoBadge {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .GGR-OM-eyebrow {
    font-size: 10.5px;
    letter-spacing: 1.4px;
  }

  .GGR-OM-miniLine {
    font-size: 12.5px;
  }

  .GGR-OM-freeRibbon {
    min-height: 30px;
    margin-bottom: 13px;
    padding: 0 11px;
    font-size: 9.8px;
  }

  .GGR-OM-title {
    margin-bottom: 12px;
  }

  .GGR-OM-title span {
    font-size: clamp(46px, 16vw, 66px);
  }

  .GGR-OM-title strong {
    margin-top: 5px;
    font-size: clamp(37px, 13vw, 53px);
  }

  .GGR-OM-desc {
    font-size: 14.5px;
    line-height: 1.52;
  }

  .GGR-OM-trustRail {
    gap: 7px;
  }

  .GGR-OM-trustChip {
    min-height: 30px;
    padding: 0 9px;
    font-size: 10.8px;
  }

  .GGR-OM-posterRight {
    min-height: auto;
    padding: 16px;
    gap: 12px;
  }

  .GGR-OM-posterRight::before,
  .GGR-OM-gymSilhouette {
    display: none;
  }

  .GGR-OM-posterRight::after {
    font-size: 64px;
    top: 16px;
    right: 8px;
  }

  .GGR-OM-deadlineCard {
    width: 100%;
    margin-right: 0;
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    border-radius: 17px;
  }

  .GGR-OM-deadlineIcon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .GGR-OM-deadlineIcon svg {
    width: 23px;
    height: 23px;
  }

  .GGR-OM-deadlineCard p {
    font-size: 10px;
  }

  .GGR-OM-deadlineCard strong {
    font-size: 15.5px;
  }

  .GGR-OM-coachCard {
    width: 100%;
    margin: 0;
    padding: 16px 16px 14px;
    border-radius: 16px;
    transform: none;
  }

  .GGR-OM-coachCard span,
  .GGR-OM-coachCard strong,
  .GGR-OM-coachCard em {
    transform: none;
  }

  .GGR-OM-coachCard span {
    font-size: 13px;
  }

  .GGR-OM-coachCard strong {
    margin: 3px 0 9px;
    font-size: 24px;
  }

  .GGR-OM-coachCard em {
    padding-top: 9px;
    font-size: 14px;
  }

  .GGR-OM-statGrid {
    gap: 8px;
  }

  .GGR-OM-statItem {
    min-height: 72px;
    border-radius: 15px;
    padding: 11px 7px;
  }

  .GGR-OM-statItem strong {
    font-size: 23px;
  }

  .GGR-OM-statItem span {
    font-size: 9px;
  }

  .GGR-OM-includedWrap {
    padding: 18px 12px 18px;
  }

  .GGR-OM-sectionHead {
    margin-bottom: 12px;
  }

  .GGR-OM-sectionHead h3 {
    font-size: 17px;
  }

  .GGR-OM-includedGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .GGR-OM-includedItem {
    min-height: 112px;
    padding: 14px 10px;
    border-radius: 14px;
  }

  .GGR-OM-includedIcon,
  .GGR-OM-includedIcon svg {
    width: 34px;
    height: 34px;
  }

  .GGR-OM-includedText {
    max-width: 130px;
    font-size: 12.3px;
    line-height: 1.28;
  }

  .GGR-OM-ctaBlock,
  .GGR-OM-phoneBlock,
  .GGR-OM-locationBlock {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .GGR-OM-bottomIcon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .GGR-OM-bottomIcon svg {
    width: 23px;
    height: 23px;
  }

  .GGR-OM-ctaBlock p,
  .GGR-OM-locationBlock p {
    font-size: 12.5px;
  }

  .GGR-OM-ctaBlock strong {
    font-size: 26px;
  }

  .GGR-OM-phoneTitle {
    font-size: 11px;
  }

  .GGR-OM-phoneNumber {
    min-height: 48px;
    padding: 0 14px;
    font-size: 24px;
    gap: 8px;
    border-radius: 12px;
  }

  .GGR-OM-locationBlock strong,
  .GGR-OM-locationBlock b {
    font-size: 16px;
  }

  .GGR-OM-locationBlock p {
    font-size: 12.5px;
  }

  .GGR-OM-actions {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 14px 12px 16px;
  }

  .GGR-OM-btn {
    min-height: 45px;
    font-size: 13px;
  }

  .GGR-OM-footerLine {
    padding: 13px 14px;
    font-size: 16px;
    letter-spacing: 0.45px;
  }
}

@media (max-width: 360px) {
  .GGR-OM-stripCard {
    padding: 7px 8px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
  }

  .GGR-OM-stripBadge {
    min-height: 24px;
    padding: 0 7px;
    font-size: 8.2px;
  }

  .GGR-OM-stripText strong {
    font-size: 10.4px;
  }

  .GGR-OM-stripText span {
    font-size: 10px;
  }

  .GGR-OM-modal {
    padding: 8px;
  }

  .GGR-OM-card {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .GGR-OM-scroll {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .GGR-OM-posterLeft {
    padding-left: 12px;
    padding-right: 12px;
  }

  .GGR-OM-brandRow {
    gap: 10px;
  }

  .GGR-OM-logoBadge {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .GGR-OM-title span {
    font-size: 42px;
  }

  .GGR-OM-title strong {
    font-size: 34px;
  }

  .GGR-OM-desc {
    font-size: 13px;
  }

  .GGR-OM-trustChip {
    width: 100%;
    justify-content: flex-start;
  }

  .GGR-OM-statGrid {
    grid-template-columns: 1fr;
  }

  .GGR-OM-statItem {
    min-height: 58px;
    flex-direction: row;
    justify-content: space-between;
    padding: 11px 12px;
    text-align: left;
  }

  .GGR-OM-statItem span {
    margin-top: 0;
    text-align: right;
  }

  .GGR-OM-includedItem {
    min-height: 96px;
  }

  .GGR-OM-phoneNumber {
    min-height: 44px;
    padding: 0 12px;
    font-size: 21px;
  }
}

@media (max-width: 320px) {
  .GGR-OM-stripText strong {
    font-size: 9.8px;
  }

  .GGR-OM-stripText span {
    font-size: 9.5px;
  }

  .GGR-OM-title span {
    font-size: 38px;
  }

  .GGR-OM-title strong {
    font-size: 31px;
  }

  .GGR-OM-includedGrid {
    gap: 7px;
  }

  .GGR-OM-includedText {
    font-size: 10.5px;
  }
}

.GGR-OM-strip,
.GGR-OM-stripCard,
.GGR-OM-stripCard * {
  box-sizing: border-box;
}

.GGR-OM-strip {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 99990;
  overflow: hidden;
  contain: layout paint;
  font-family: inherit;
  background: #070707 !important;
  border-bottom: 1px solid rgba(255, 231, 0, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.GGR-OM-strip::before {
  display: none !important;
}

.GGR-OM-stripCard {
  width: min(1280px, 100%);
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 0 auto;
  padding: 7px 14px;
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.GGR-OM-stripDot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: var(--GGR-OM-yellow);
  box-shadow: 0 0 12px rgba(255, 231, 0, 0.75);
}

.GGR-OM-stripText {
  min-width: 0;
  max-width: 100%;
  color: var(--GGR-OM-text);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.GGR-OM-stripText strong {
  display: inline;
  max-width: 100%;
  margin-right: 8px;
  color: var(--GGR-OM-yellow);
  font-size: inherit;
  line-height: inherit;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.GGR-OM-stripText span {
  display: inline;
  max-width: 100%;
}

.GGR-OM-stripBtn {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--GGR-OM-yellow);
  color: #050505;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.GGR-OM-stripBtn:hover {
  color: #050505;
  background: #fff057;
}

.GGR-OM-stripBadge,
.GGR-OM-stripTimer,
.GGR-OM-stripClose {
  display: none !important;
}

/* Tablet */
@media (max-width: 760px) {
  .GGR-OM-stripCard {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 8px 12px;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  .GGR-OM-stripDot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 5px;
  }

  .GGR-OM-stripText {
    min-width: 0;
    width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(11px, 2.45vw, 12.7px);
    line-height: 1.32;
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .GGR-OM-stripText strong,
  .GGR-OM-stripText span {
    display: inline;
  }

  .GGR-OM-stripBtn {
    display: none !important;
  }
}

/* Small mobile */
@media (max-width: 500px) {
  .GGR-OM-stripCard {
    padding: 8px 12px;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 8px;
  }

  .GGR-OM-stripText {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .GGR-OM-stripText strong {
    display: block;
    margin: 0 0 2px;
    font-size: 11.5px;
    line-height: 1.2;
  }

  .GGR-OM-stripText span {
    display: block;
  }
}

/* Narrow phones */
@media (max-width: 360px) {
  .GGR-OM-stripCard {
    padding: 7px 9px;
    grid-template-columns: 7px minmax(0, 1fr);
    gap: 7px;
  }

  .GGR-OM-stripDot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    margin-top: 5px;
  }

  .GGR-OM-stripText {
    font-size: 10.7px;
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  .GGR-OM-stripText strong {
    font-size: inherit;
  }
}

@media (max-width: 320px) {
  .GGR-OM-stripText {
    font-size: 10.2px;
    line-height: 1.25;
  }
}
