
.qsr-replacement-support {
  --qsr-bg: #ffffff;
  --qsr-surface: #ffffff;
  --qsr-text: #17201b;
  --qsr-body: #5c665f;
  --qsr-muted: #7a847d;
  --qsr-border: #dde4da;
  --qsr-border-strong: #c8d4c8;
  --qsr-accent: #1f6f4a;
  --qsr-accent-dark: #123b2a;
  --qsr-shadow: 0 18px 44px rgba(18, 59, 42, 0.12);
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding: 82px 24px 76px;
  background: var(--qsr-bg);
  color: var(--qsr-text);
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}
.qsr-replacement-support * {
  box-sizing: border-box;
}
.qsr-rs-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.qsr-rs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--qsr-accent-dark);
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.qsr-rs-kicker:after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--qsr-accent);
}
.qsr-rs-title {
  max-width: 760px;
  margin: 0;
  color: var(--qsr-text);
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
}
.qsr-rs-lead {
  max-width: 680px;
  margin: 18px 0 34px;
  color: var(--qsr-body);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
}
.qsr-rs-stage {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: stretch;
  gap: 0;
}
.qsr-rs-media {
  position: relative;
  height: 100%;
  min-height: 438px;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe5df;
  box-shadow: 0 22px 50px rgba(23,32,27,0.13);
}
.qsr-rs-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 438px;
  object-fit: cover;
  object-position: center center;
}
.qsr-rs-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,59,42,0.22), rgba(18,59,42,0.02) 46%, rgba(18,59,42,0));
  pointer-events: none;
}
.qsr-rs-panel {
  position: relative;
  z-index: 2;
  margin-left: -42px;
  padding: 30px;
  border: 1px solid var(--qsr-border-strong);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--qsr-shadow);
}
.qsr-rs-panel h3 {
  margin: 0 0 8px;
  color: var(--qsr-text);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}
.qsr-rs-panel-desc {
  margin: 0 0 22px;
  color: var(--qsr-body);
  font-size: 13px;
  line-height: 1.62;
}
.qsr-rs-field {
  margin-top: 18px;
}
.qsr-rs-field:first-of-type {
  margin-top: 0;
}
.qsr-rs-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--qsr-text);
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.qsr-rs-label span {
  color: var(--qsr-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.qsr-rs-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--qsr-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fbfcfa;
}
.qsr-rs-chip {
  min-height: 42px;
  padding: 0 8px;
  border: 0;
  border-right: 1px solid var(--qsr-border);
  background: transparent;
  color: var(--qsr-text);
  font-family: inherit;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.qsr-rs-chip:last-child {
  border-right: 0;
}
.qsr-rs-chip:hover,
.qsr-rs-chip:focus {
  background: rgba(31,111,74,0.08);
  outline: none;
}
.qsr-rs-chip.is-active {
  background: var(--qsr-accent);
  color: #ffffff;
}
.qsr-rs-actions {
  margin-top: 24px;
}
.qsr-rs-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  border-radius: 6px;
  background: var(--qsr-accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}
.qsr-rs-primary:hover,
.qsr-rs-primary:focus {
  background: var(--qsr-accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}
.qsr-rs-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--qsr-accent);
  text-decoration: none;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}
.qsr-rs-support:hover,
.qsr-rs-support:focus {
  color: var(--qsr-accent-dark);
}
.qsr-rs-arrow {
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .qsr-replacement-support {
    padding: 68px 20px 78px;
  }
  .qsr-rs-title {
    font-size: 38px;
  }
  .qsr-rs-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .qsr-rs-panel {
    margin-left: 0;
  }
  .qsr-rs-media,
  .qsr-rs-media img {
    min-height: 390px;
  }
}
@media (max-width: 640px) {
  .qsr-replacement-support {
    padding: 52px 16px 62px;
  }
  .qsr-rs-title {
    font-size: 30px;
    line-height: 1.18;
  }
  .qsr-rs-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .qsr-rs-media,
  .qsr-rs-media img {
    min-height: 300px;
  }
  .qsr-rs-panel {
    padding: 22px;
  }
  .qsr-rs-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qsr-rs-chip:nth-child(2n) {
    border-right: 0;
  }
  .qsr-rs-chip:nth-child(-n+2) {
    border-bottom: 1px solid var(--qsr-border);
  }
}
@media (prefers-reduced-motion: reduce) {
  .qsr-rs-chip,
  .qsr-rs-primary {
    transition: none;
  }
  .qsr-rs-primary:hover,
  .qsr-rs-primary:focus {
    transform: none;
  }
}
