.gxpa-root,
.gxpa-root *,
.gxpa-legal-strip,
.gxpa-legal-strip *,
.gxpa-legal-page,
.gxpa-legal-page *,
.gxpa-terms-body,
.gxpa-terms-body * {
  box-sizing: border-box;
}

.gxpa-root {
  --gxpa-orange: #fe7900;
  --gxpa-orange-dark: #b94e00;
  --gxpa-ink: #171717;
  --gxpa-muted: #5e6470;
  --gxpa-line: #dfe3e8;
  --gxpa-soft: #fff5eb;
  color: var(--gxpa-ink);
  font-family: Assistant, Arial, sans-serif;
  line-height: 1.55;
}

.gxpa-root [hidden],
.gxpa-legal-strip[hidden] {
  display: none !important;
}

.gxpa-banner {
  position: fixed;
  z-index: 2147483000;
  right: 50%;
  bottom: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 20px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: #fff;
  background: #171717;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  transform: translateX(50%);
}

.gxpa-banner__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--gxpa-orange);
  background: rgba(254, 121, 0, 0.18);
}

.gxpa-banner__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gxpa-banner h2,
.gxpa-dialog h2 {
  margin: 0 0 5px !important;
  color: inherit !important;
  font-size: 23px !important;
  line-height: 1.2 !important;
}

.gxpa-banner p,
.gxpa-dialog p {
  margin: 0 !important;
  color: inherit !important;
  font-size: 15px !important;
}

.gxpa-banner__copy > a,
.gxpa-dialog footer a {
  display: inline-block;
  margin-top: 5px;
  color: #ffb675 !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gxpa-banner__actions,
.gxpa-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gxpa-button,
.gxpa-root .gxpa-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}

.gxpa-button--primary,
.gxpa-root .gxpa-button--primary {
  color: #171717 !important;
  background: var(--gxpa-orange) !important;
}

.gxpa-button--primary:hover,
.gxpa-root .gxpa-button--primary:hover {
  color: #171717 !important;
  background: #ff922f !important;
}

.gxpa-button--secondary,
.gxpa-root .gxpa-button--secondary {
  border-color: #fff !important;
  color: #171717 !important;
  background: #fff !important;
}

.gxpa-root .gxpa-dialog .gxpa-button--secondary {
  border-color: var(--gxpa-line) !important;
}

.gxpa-button--ghost,
.gxpa-root .gxpa-button--ghost {
  border-color: rgba(255, 255, 255, 0.52) !important;
  color: #fff !important;
  background: transparent !important;
}

.gxpa-overlay {
  position: fixed;
  z-index: 2147483001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(5px);
}

.gxpa-dialog {
  position: relative;
  width: min(680px, calc(100% - 12px));
  max-height: calc(100dvh - 24px);
  padding: 30px;
  overflow: auto;
  border: 1px solid var(--gxpa-line);
  border-radius: 22px;
  color: var(--gxpa-ink);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.gxpa-dialog header {
  padding-inline-end: 35px;
}

.gxpa-dialog header p {
  color: var(--gxpa-muted) !important;
}

.gxpa-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #7c3500;
  background: #fff0e2;
  font-size: 13px;
  font-weight: 800;
}

.gxpa-close,
.gxpa-root .gxpa-close {
  appearance: none;
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gxpa-line) !important;
  border-radius: 50% !important;
  color: var(--gxpa-ink) !important;
  background: #fff !important;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gxpa-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.gxpa-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--gxpa-line);
  border-radius: 14px;
  color: var(--gxpa-ink);
  background: #fff;
}

label.gxpa-option {
  cursor: pointer;
}

.gxpa-option strong,
.gxpa-option span {
  display: block;
}

.gxpa-option strong {
  margin-bottom: 2px;
  font-size: 16px;
}

.gxpa-option div > span {
  color: var(--gxpa-muted);
  font-size: 14px;
}

.gxpa-option b {
  flex: 0 0 auto;
  color: #496050;
  font-size: 12px;
}

.gxpa-switch {
  position: relative;
  flex: 0 0 auto;
  width: 50px;
  height: 28px;
}

.gxpa-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.gxpa-switch > span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cbd0d6;
  transition: background 160ms ease;
}

.gxpa-switch > span::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease;
}

.gxpa-switch input:checked + span {
  background: var(--gxpa-orange);
}

.gxpa-switch input:checked + span::after {
  transform: translateX(-22px);
}

.gxpa-switch input:focus-visible + span {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.gxpa-dialog footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gxpa-line);
  color: var(--gxpa-muted);
  font-size: 14px;
}

.gxpa-access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 8px;
}

.gxpa-access-grid button,
.gxpa-root .gxpa-access-grid button {
  appearance: none;
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 10px 6px;
  border: 1px solid var(--gxpa-line) !important;
  border-radius: 14px !important;
  color: var(--gxpa-ink) !important;
  background: #fff !important;
  font: inherit;
  cursor: pointer;
}

.gxpa-access-grid button:hover,
.gxpa-access-grid button[aria-pressed="true"],
.gxpa-root .gxpa-access-grid button:hover,
.gxpa-root .gxpa-access-grid button[aria-pressed="true"] {
  border-color: var(--gxpa-orange) !important;
  background: var(--gxpa-soft) !important;
}

.gxpa-access-grid button strong {
  display: block;
  color: var(--gxpa-orange-dark);
  font-size: 23px;
  line-height: 1;
}

.gxpa-access-grid button span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}

.gxpa-dock {
  position: fixed;
  z-index: 2147482990;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 9px;
}

.gxpa-fab {
  appearance: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #171717;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  cursor: pointer;
}

.gxpa-fab--accessibility {
  color: #171717;
  background: var(--gxpa-orange);
}

.gxpa-fab span,
.gxpa-fab svg {
  display: block;
}

.gxpa-fab svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gxpa-media-blocked {
  display: none !important;
}

.gxpa-media-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border: 2px dashed #c8ccd1;
  border-radius: 16px;
  text-align: center;
  color: var(--gxpa-ink);
  background: #f7f8f9;
}

.gxpa-media-placeholder strong {
  font-size: 19px;
}

.gxpa-media-placeholder p {
  margin: 6px 0 16px;
  color: var(--gxpa-muted);
}

.gxpa-legal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  width: 100%;
  min-height: 0;
  flex: 0 0 100%;
  padding: 0 0 8px;
  border: 0;
  direction: rtl;
  color: #555;
  background: transparent !important;
  box-shadow: none;
  font-family: Assistant, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.gxpa-legal-strip a {
  color: #555 !important;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 3px;
}

.gxpa-legal-strip a:hover {
  color: #a94700 !important;
  text-decoration: underline;
}

.gxpa-legal-strip > span {
  color: #fe7900;
  font-weight: 900;
}

.gxpa-form-notice {
  width: 100%;
  margin: 5px 0 12px;
  padding: 10px 12px;
  border-right: 3px solid #fe7900;
  color: #343434;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.55;
}

.gxpa-form-notice a {
  color: #8d3d00 !important;
  font-weight: 700;
  text-decoration: underline;
}

.gxpa-legal-page {
  --gxpa-orange: #fe7900;
  --gxpa-ink: #171717;
  --gxpa-muted: #5f6470;
  --gxpa-line: #e1e4e8;
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 18px 72px;
  direction: rtl;
  color: var(--gxpa-ink);
  font-family: Assistant, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.gxpa-legal-page .gxpa-legal-hero {
  margin-bottom: 20px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #141414, #282828 68%, #6b2e00);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.gxpa-legal-page .gxpa-legal-hero .gxpa-kicker {
  color: #6c2e00;
  background: #fff0e3;
}

.gxpa-legal-page h1 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(34px, 5vw, 54px) !important;
  line-height: 1.08 !important;
}

.gxpa-legal-page .gxpa-legal-hero p {
  max-width: 780px;
  margin: 0 !important;
  color: #f3f3f3 !important;
  font-size: clamp(17px, 2vw, 21px) !important;
}

.gxpa-updated {
  margin-top: 16px;
  color: #e2e2e2;
  font-size: 14px;
}

.gxpa-summary-grid,
.gxpa-cookie-grid,
.gxpa-a11y-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.gxpa-summary-grid > div,
.gxpa-cookie-grid > div {
  padding: 18px;
  border: 1px solid var(--gxpa-line);
  border-radius: 16px;
  background: #fff;
}

.gxpa-summary-grid strong,
.gxpa-summary-grid span,
.gxpa-cookie-grid strong,
.gxpa-cookie-grid span {
  display: block;
}

.gxpa-summary-grid strong,
.gxpa-cookie-grid strong {
  margin-bottom: 5px;
  color: #9d4300;
}

.gxpa-summary-grid span,
.gxpa-cookie-grid span {
  color: var(--gxpa-muted);
  font-size: 14px;
}

.gxpa-cookie-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0;
}

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

.gxpa-legal-card {
  margin: 0 0 16px;
  padding: 26px;
  border: 1px solid var(--gxpa-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.gxpa-legal-page h2,
.gxpa-contact-card h2 {
  margin: 0 0 9px !important;
  color: var(--gxpa-ink) !important;
  font-size: 25px !important;
  line-height: 1.25 !important;
}

.gxpa-legal-page p,
.gxpa-legal-page li {
  color: var(--gxpa-ink) !important;
}

.gxpa-legal-page p {
  margin: 0 0 12px !important;
}

.gxpa-legal-page p:last-child {
  margin-bottom: 0 !important;
}

.gxpa-legal-page ul {
  margin: 8px 0 0;
  padding-right: 22px;
}

.gxpa-legal-page li {
  margin: 5px 0;
}

.gxpa-legal-page a,
.gxpa-terms-body a {
  color: #a94700 !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gxpa-law-note {
  margin-top: 14px;
  padding: 15px 17px;
  border-right: 4px solid var(--gxpa-orange);
  border-radius: 12px;
  background: #fff4ea;
}

.gxpa-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  background: #171717;
}

.gxpa-contact-card h2,
.gxpa-contact-card p {
  color: #fff !important;
}

.gxpa-contact-card p {
  margin: 0 !important;
}

.gxpa-contact-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.gxpa-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #171717 !important;
  background: #fff;
  text-decoration: none;
}

.gxpa-contact-actions a:first-child {
  background: var(--gxpa-orange);
}

.gxpa-terms-body {
  max-width: 960px;
  margin: 20px auto 34px;
  padding: 0 16px;
  direction: rtl;
  color: #171717;
  font-family: Assistant, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.gxpa-terms-intro {
  margin-bottom: 16px;
  padding: clamp(25px, 4vw, 42px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #171717, #562500);
}

.gxpa-terms-intro h2 {
  margin: 0 0 9px !important;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  line-height: 1.15 !important;
}

.gxpa-terms-body .gxpa-terms-intro p {
  margin: 0 !important;
  color: #fff !important;
}

.gxpa-terms-body > section {
  margin-bottom: 12px;
  padding: 21px 23px;
  border: 1px solid #e1e4e8;
  border-radius: 17px;
  background: #fff;
}

.gxpa-terms-body h3 {
  margin: 0 0 7px !important;
  color: #171717 !important;
  font-size: 21px !important;
  line-height: 1.3 !important;
}

.gxpa-terms-body p {
  margin: 0 0 8px !important;
  color: #171717 !important;
}

.gxpa-terms-body p:last-child {
  margin-bottom: 0 !important;
}

.gxpa-skip-link {
  position: fixed;
  z-index: 2147483647;
  top: 8px;
  right: 8px;
  padding: 10px 14px;
  color: #171717 !important;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  transform: translateY(-150%);
}

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

.gxpa-root :focus-visible,
.gxpa-legal-strip :focus-visible,
.gxpa-legal-page :focus-visible,
.gxpa-terms-body :focus-visible {
  outline: 3px solid #111 !important;
  outline-offset: 3px !important;
}

html.gxpa-modal-open,
html.gxpa-modal-open body {
  overflow: hidden !important;
}

html.gxpa-a11y-text body {
  font-size: 118% !important;
}

html.gxpa-a11y-readable body,
html.gxpa-a11y-readable body * {
  font-family: Arial, sans-serif !important;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
}

html.gxpa-a11y-links body a {
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
}

html.gxpa-a11y-grayscale body {
  filter: grayscale(1) !important;
}

html.gxpa-a11y-contrast body {
  color: #fff !important;
  background: #000 !important;
}

html.gxpa-a11y-contrast body :where(p, li, label, span, h1, h2, h3, h4, h5, h6) {
  color: #fff !important;
  text-shadow: 0 0 1px #000;
}

html.gxpa-a11y-contrast body a {
  color: #ffeb3b !important;
}

html.gxpa-a11y-contrast body button,
html.gxpa-a11y-contrast body input,
html.gxpa-a11y-contrast body textarea,
html.gxpa-a11y-contrast body select {
  border: 2px solid #fff !important;
}

html.gxpa-a11y-motion *,
html.gxpa-a11y-motion *::before,
html.gxpa-a11y-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

html.gxpa-a11y-focus body :focus {
  outline: 4px solid #ff7900 !important;
  outline-offset: 4px !important;
}

.gxpa-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 860px) {
  .gxpa-banner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gxpa-banner__actions {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .gxpa-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    width: auto;
    max-height: calc(100dvh - 20px);
    padding: 17px;
    border-radius: 17px;
    transform: none;
  }

  .gxpa-banner__icon {
    display: none;
  }

  .gxpa-banner h2,
  .gxpa-dialog h2 {
    font-size: 20px !important;
  }

  .gxpa-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
  }

  .gxpa-banner__actions .gxpa-button--ghost {
    grid-column: 1 / -1;
  }

  .gxpa-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 24px 17px;
    border-radius: 18px;
  }

  .gxpa-dialog header {
    padding-inline-end: 32px;
  }

  .gxpa-close {
    top: 10px;
    left: 10px;
  }

  .gxpa-option {
    min-height: 70px;
    padding: 12px;
  }

  .gxpa-dialog__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gxpa-dialog footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gxpa-access-grid button {
    min-height: 78px;
  }

  .gxpa-dock {
    bottom: 12px;
    left: 10px;
  }

  .gxpa-fab {
    width: 48px;
    height: 48px;
  }

  .gxpa-legal-strip {
    gap: 7px;
    padding: 0 0 7px 62px;
    font-size: 13px;
  }

  .gxpa-legal-page {
    padding: 20px 10px 50px;
    font-size: 16px;
  }

  .gxpa-legal-page .gxpa-legal-hero {
    padding: 28px 20px;
    border-radius: 21px;
  }

  .gxpa-legal-page .gxpa-legal-hero h1 {
    font-size: 34px !important;
  }

  .gxpa-legal-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gxpa-cookie-grid,
  .gxpa-a11y-grid {
    grid-template-columns: 1fr;
  }

  .gxpa-contact-card {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 17px;
  }

  .gxpa-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gxpa-terms-body {
    padding: 0 10px;
    font-size: 16px;
  }

  .gxpa-terms-intro {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .gxpa-terms-body > section {
    padding: 18px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gxpa-root *,
  .gxpa-root *::before,
  .gxpa-root *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
