/* Giovanni's mobile experience V41.1. Isolated from the frozen desktop layers. */

html[data-mobile-release="mobile-v41-1"] {
  --mobile-call-blue: #1769aa;
  --mobile-call-blue-dark: #0d4778;
  --mobile-emergency-red: #c62828;
  --mobile-emergency-dark: #8f1717;
  --mobile-gold: #f2a51a;
  --mobile-cream: #fffdf7;
}

.public-contact-band {
  position: relative;
  width: 100%;
  padding: 56px 22px;
  border-top: 1px solid rgba(15, 59, 29, 0.16);
  background: #eef3ea;
}

.public-contact-inner {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  margin: 0 auto;
}

.public-contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-left: 5px solid #8b5a2b;
  color: #fffdf7;
  background: #06341a;
}

.contact-kicker {
  margin: 0 0 9px;
  color: #9de66e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.public-contact-intro h2 {
  margin: 0;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.08;
}

.public-contact-intro > p:not(.contact-kicker) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.contact-direct-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-direct-actions a {
  min-width: 0;
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 11px 13px;
  border-radius: 7px;
  color: #fff;
}

.contact-direct-actions strong,
.contact-direct-actions span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-direct-actions strong {
  font-size: 13px;
}

.contact-direct-actions span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.contact-call-action {
  background: var(--mobile-call-blue);
}

.contact-emergency-action {
  background: var(--mobile-emergency-red);
}

.public-contact-form {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(15, 59, 29, 0.2);
  border-radius: 8px;
  color: #102d1c;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(8, 35, 19, 0.12);
}

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

.contact-form-grid label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #174428;
  font-size: 12px;
  font-weight: 850;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #9fb4a5;
  border-radius: 6px;
  padding: 10px 12px;
  color: #102d1c;
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.contact-form-grid textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: #1769aa;
  outline: 3px solid rgba(23, 105, 170, 0.18);
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 16px;
  color: #334b3b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #008000;
}

.contact-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #008000;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #0f5c27;
  font-size: 12px;
  font-weight: 800;
}

.contact-status.is-error {
  color: var(--mobile-emergency-red);
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mobile-product-tour {
  display: none;
}

@media (max-width: 900px) {
  html[data-mobile-release="mobile-v41-1"] .phone-card {
    overflow: visible;
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-nav {
    position: relative;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
    height: 92px;
    padding: 8px 14px;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-brand img {
    width: 92px !important;
    height: 92px !important;
  }

  .mobile-nav-tools {
    position: relative;
    z-index: 2;
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-nav-tools > button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid var(--line) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .mobile-globe-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .mobile-globe-icon::before,
  .mobile-globe-icon::after {
    position: absolute;
    content: "";
  }

  .mobile-globe-icon::before {
    inset: 1px 5px;
    border: 1px solid currentColor;
    border-top: 0;
    border-bottom: 0;
    border-radius: 50%;
  }

  .mobile-globe-icon::after {
    left: 1px;
    right: 1px;
    top: 7px;
    border-top: 1px solid currentColor;
  }

  .mobile-language-menu {
    position: absolute;
    top: 44px;
    right: 0;
    z-index: 12;
    width: 168px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(3, 18, 9, 0.25);
  }

  .mobile-language-menu:not([hidden]) {
    display: grid;
    gap: 4px;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-language-menu button {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 8px 10px !important;
    color: var(--text) !important;
    background: transparent !important;
    font-size: 13px !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-language-menu button[aria-current="true"] {
    color: #fff !important;
    background: #008000 !important;
  }

  .mobile-language-menu small {
    font-size: 10px;
    font-weight: 950;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-menu:not([hidden]) {
    position: relative;
    z-index: 8;
  }

  .mobile-tour-menu {
    grid-column: 1 / -1;
    min-height: 42px;
    border: 1px solid #8b5a2b;
    border-radius: 7px;
    color: var(--brand-green-dark);
    background: rgba(139, 90, 43, 0.08);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  html[data-theme="dark"] .mobile-tour-menu {
    color: #fffdf7;
  }

  .mobile-emergency-availability {
    min-height: 54px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    margin: 10px 0 4px;
    padding: 9px 13px;
    border: 1px solid rgba(198, 40, 40, 0.7);
    border-radius: 8px;
    color: #fff;
    background: var(--mobile-emergency-red);
    text-align: left;
  }

  .mobile-emergency-availability img {
    width: 24px !important;
    height: 24px !important;
    filter: brightness(0) invert(1) !important;
  }

  .mobile-emergency-availability span {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .mobile-emergency-availability strong {
    font-size: 12px;
    text-transform: uppercase;
  }

  .mobile-emergency-availability small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 750;
  }

  html[data-build="public-home-v34"][data-mobile-release="mobile-v41-1"] .mobile-call-secondary {
    border-color: var(--mobile-call-blue) !important;
    color: #fff !important;
    background: var(--mobile-call-blue) !important;
    box-shadow: 0 8px 18px rgba(23, 105, 170, 0.22) !important;
  }

  html[data-build="public-home-v34"][data-mobile-release="mobile-v41-1"] .mobile-call-secondary img {
    filter: brightness(0) invert(1) !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-contact-secondary {
    border-color: #a66b19 !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discounts {
    width: calc(100% - 28px);
    display: block;
    margin: 18px auto;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discounts header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 9px;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discounts header > span {
    min-height: 0;
    display: grid;
    justify-items: start;
    gap: 2px;
    border: 0;
    padding: 0;
    color: var(--text);
    background: transparent !important;
    box-shadow: none !important;
    text-align: left;
  }

  .mobile-discounts header small {
    color: #729168;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-discounts header strong {
    color: var(--brand-green);
    font-size: 15px;
    text-transform: uppercase;
  }

  .mobile-discounts header > button {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 9px;
    color: var(--text);
    background: transparent;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-discount-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discount-grid > button {
    min-width: 0;
    min-height: 86px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #d8d2c5;
    border-radius: 8px;
    color: #0f3b1d;
    background: var(--mobile-cream);
    box-shadow: inset 0 4px 0 #008000, 0 8px 18px rgba(5, 28, 13, 0.1);
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discount-grid > button.is-referral {
    box-shadow: inset 0 4px 0 var(--mobile-call-blue), 0 8px 18px rgba(5, 28, 13, 0.1);
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discount-grid > button.is-seasonal {
    box-shadow: inset 0 4px 0 var(--mobile-gold), 0 8px 18px rgba(5, 28, 13, 0.1);
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discount-grid img {
    width: 34px !important;
    height: 34px !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-discount-grid > button > span {
    min-height: 0;
    display: grid;
    justify-items: start;
    gap: 2px;
    border: 0;
    padding: 0;
    color: inherit;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left;
  }

  .mobile-discount-grid strong {
    min-width: 0;
    color: #008000;
    font-size: 12px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .mobile-discount-grid small {
    color: #304d39;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
  }

  .mobile-discount-grid > button[aria-pressed="true"] {
    outline: 3px solid rgba(23, 105, 170, 0.24);
    outline-offset: 1px;
  }

  .mobile-discount-details {
    margin-top: 9px;
    padding: 13px;
    border: 1px solid #d8d2c5;
    border-left: 4px solid #8b5a2b;
    border-radius: 7px;
    color: #173d25;
    background: #fffdf7;
    box-shadow: 0 8px 18px rgba(5, 28, 13, 0.09);
  }

  .mobile-discount-details:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: center;
  }

  .mobile-discount-details strong {
    color: #008000;
    font-size: 12px;
  }

  .mobile-discount-details p {
    grid-column: 1;
    margin: 0;
    color: #465d4d;
    font-size: 10px;
    line-height: 1.35;
  }

  .mobile-discount-details a {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 36px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    padding: 7px 10px;
    color: #fff;
    background: #008000;
    font-size: 9px;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tabbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #fff;
    box-shadow: 0 -8px 26px rgba(3, 18, 9, 0.24);
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tabbar a {
    min-width: 0;
    min-height: 66px;
    display: grid;
    place-content: center;
    gap: 3px;
    padding: 7px 5px calc(7px + env(safe-area-inset-bottom, 0px));
    color: #fff;
    line-height: 1.05;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tabbar span {
    font-size: 12px;
    font-weight: 950;
    overflow-wrap: anywhere;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tabbar small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tab-call {
    background: var(--mobile-call-blue) !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tab-estimate {
    background: #db8700 !important;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-tab-emergency {
    background: var(--mobile-emergency-red) !important;
  }

  .public-contact-band {
    padding: 34px 14px 96px;
  }

  .public-contact-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .public-contact-intro {
    padding: 24px 20px;
    border-left-width: 4px;
  }

  .public-contact-intro h2 {
    font-size: 29px;
  }

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

  .public-contact-form {
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 28px rgba(8, 35, 19, 0.12);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-message-field {
    grid-column: auto;
  }

  .mobile-product-tour:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    align-items: end;
    justify-items: center;
    padding: 10px;
  }

  .mobile-tour-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(1, 15, 7, 0.78);
    backdrop-filter: blur(7px);
  }

  .mobile-tour-dialog {
    position: relative;
    z-index: 1;
    width: min(500px, 100%);
    max-height: calc(100svh - 20px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #102d1c;
    background: #fffdf7;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
    animation: mobile-tour-enter 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .mobile-tour-header {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #fff;
    background: #06341a;
  }

  .mobile-tour-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 800;
  }

  .mobile-tour-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .mobile-tour-brand small {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 8px;
    text-transform: uppercase;
  }

  .mobile-tour-header > button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    font-size: 24px;
    line-height: 1;
  }

  .mobile-tour-scene {
    position: relative;
    height: 168px;
    overflow: hidden;
    background: #081b10;
  }

  .mobile-tour-scene img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 400ms ease, filter 400ms ease;
  }

  .mobile-tour-scene[data-tour-scene="offers"] img {
    transform: scale(1.08);
    filter: saturate(0.84) brightness(0.78);
  }

  .mobile-tour-scene[data-tour-scene="emergency"] img {
    transform: scale(1.12);
    filter: saturate(0.72) brightness(0.62);
  }

  .mobile-tour-scene[data-tour-scene="contact"] img {
    transform: scale(1.05);
    filter: saturate(0.88) brightness(0.72);
  }

  .mobile-tour-scene-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 5px;
    color: #fff;
    background: rgba(6, 52, 26, 0.92);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-tour-content {
    padding: 18px;
  }

  .mobile-tour-progress {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: #56705d;
    font-size: 10px;
    font-weight: 900;
  }

  .mobile-tour-progress > div {
    height: 5px;
    overflow: hidden;
    background: #dce5dc;
  }

  .mobile-tour-progress i {
    width: 25%;
    height: 100%;
    display: block;
    background: #008000;
    transition: width 260ms ease;
  }

  .mobile-tour-eyebrow {
    margin: 16px 0 5px;
    color: #008000;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-tour-content h2 {
    margin: 0;
    color: #0f3b1d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.08;
  }

  .mobile-tour-content > p:not(.mobile-tour-eyebrow) {
    margin: 9px 0 0;
    color: #4d6252;
    font-size: 13px;
    line-height: 1.45;
  }

  .mobile-tour-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-tour-choice {
    min-height: 54px;
    display: grid;
    align-content: center;
    gap: 3px;
    border: 1px solid #b8c8ba;
    border-radius: 7px;
    padding: 9px 10px;
    color: #174428;
    background: #f6f7f1;
    font-size: 11px;
    font-weight: 900;
    text-align: left;
  }

  .mobile-tour-choice small {
    color: #627468;
    font-size: 9px;
    font-weight: 750;
  }

  .mobile-tour-choice.is-emergency {
    border-color: rgba(198, 40, 40, 0.48);
    color: #9f1e1e;
    background: #fff4f2;
  }

  .mobile-tour-choice.is-call {
    border-color: rgba(23, 105, 170, 0.48);
    color: #0d568d;
    background: #f0f8ff;
  }

  .mobile-tour-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    margin-top: 17px;
  }

  .mobile-tour-actions button {
    min-height: 44px;
    border: 1px solid #91a694;
    border-radius: 7px;
    color: #174428;
    background: transparent;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-tour-actions [data-tour-next] {
    border-color: #008000;
    color: #fff;
    background: #008000;
  }

  .mobile-tour-actions button:disabled {
    visibility: hidden;
  }

  .mobile-tour-skip {
    width: 100%;
    min-height: 34px;
    margin-top: 6px;
    border: 0;
    color: #68796d;
    background: transparent;
    font-size: 10px;
    font-weight: 850;
  }

  body.mobile-tour-open {
    overflow: hidden;
  }

  @keyframes mobile-tour-enter {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 900px) {
  html[data-mobile-patch="mobile-v41-2"] .mobile-globe-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 0;
    color: inherit;
    font-size: 21px;
    line-height: 1;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-globe-icon::before,
  html[data-mobile-patch="mobile-v41-2"] .mobile-globe-icon::after {
    display: none;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts {
    width: calc(100% - 28px);
    margin: 18px auto 24px;
    padding: 16px;
    border: 1px solid #8b5a2b;
    border-radius: 8px;
    color: #123921;
    color-scheme: light;
    background: #f7f3e8;
    box-shadow: 0 14px 28px rgba(2, 24, 11, 0.2);
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header {
    align-items: center;
    margin-bottom: 12px;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span,
  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span > small,
  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span > strong {
    min-width: 0;
    border: 0 !important;
    color: #123921;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: currentColor;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span > small {
    color: #55705d;
    font-size: 9px;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span > strong {
    color: #006f2d;
    font-size: 17px;
    line-height: 1.08;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discounts header > button {
    min-height: 38px;
    border: 1px solid #77917d;
    color: #123921;
    background: #fffdf7;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button {
    min-height: 104px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    border: 1px solid #c7d3c8;
    border-top: 4px solid #008000;
    padding: 12px 10px;
    color: #123921;
    background: #fffdf7 !important;
    background-image: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: currentColor;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button.is-referral {
    border-top-color: #1769aa;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button.is-seasonal {
    border-top-color: #db8700;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    padding: 5px;
    background: #edf5e9 !important;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span,
  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span > strong,
  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span > small {
    min-width: 0;
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: currentColor;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span > strong {
    color: #006f2d;
    font-size: 13px;
    line-height: 1.14;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span > small {
    margin-top: 3px;
    color: #405847;
    font-size: 11px;
    line-height: 1.2;
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button[aria-pressed="true"] {
    border-color: #1769aa;
    outline: 3px solid rgba(23, 105, 170, 0.2);
  }

  html[data-mobile-patch="mobile-v41-2"] .mobile-discount-details {
    border-color: #b9c8bb;
    color: #173d25;
    background: #fffdf7;
  }

  html[data-build="public-home-v34"][data-theme][data-mobile-patch="mobile-v41-2"] .mobile-discounts header > span,
  html[data-build="public-home-v34"][data-theme][data-mobile-patch="mobile-v41-2"] .mobile-discount-grid > button > span {
    border: 0 !important;
    color: #123921 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 380px) {
  .mobile-tour-choices {
    grid-template-columns: 1fr;
  }

  html[data-mobile-release="mobile-v41-1"] .mobile-brand img {
    width: 82px !important;
    height: 82px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-tour-dialog,
  .mobile-tour-scene img,
  .mobile-tour-progress i {
    animation: none !important;
    transition: none !important;
  }
}
