.urospot-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  font-family: "Nunito Sans", "Open Sans", Helvetica, Arial, sans-serif;
}

@supports (align-items: safe center) {
  .urospot-modal {
    -webkit-box-align: safe center;
    -ms-flex-align: safe center;
    align-items: safe center;
  }
}

.urospot-modal[hidden] {
  display: none !important;
}

.urospot-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.urospot-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1046px);
  max-height: calc(100dvh - 3rem);
  margin: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.15))), url("modal-background.avif") center / cover no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), url("modal-background.avif") center / cover no-repeat;
  color: #111111;
  padding: 40px 24px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1025px) {
  .urospot-modal__dialog {
    padding: 120px 96px;
  }
}

.urospot-modal__kicker {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.16px;
  padding: 0;
  margin-bottom: 12px;
}

@media screen and (min-width: 1025px) {
  .urospot-modal__kicker {
    margin-bottom: 6px;
  }
}

.urospot-modal__title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

.urospot-modal__title::after {
  content: '';
  position: absolute;
  height: 2px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%), linear-gradient(97deg, #f5b389 38.11%, #ffffff 63.71%, #d68866 96.32%);
  bottom: -3px;
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
  left: 10%;
  right: 10%;
}

@media screen and (min-width: 1025px) {
  .urospot-modal__title::after {
    -webkit-transform: translateX(-0);
    -ms-transform: translateX(-0);
    transform: translateX(-0);
    right: 20%;
    left: 20%;
  }
}

.urospot-modal__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 66px;
}

@media screen and (min-width: 1025px) {
  .urospot-modal__actions {
    gap: 32px;
  }
}

.urospot-modal__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  font: inherit;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
}

.urospot-modal__btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.urospot-modal__btn--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #dba07b;

  color: #000000;
  font-size: 18px;
  font-weight: 800;
  line-height: 36px;
  text-transform: uppercase;
}

.urospot-modal__btn--secondary {
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}

body.urospot-modal-open {
  overflow: hidden;
}

body.urospot-scroll-locked {
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

@media screen and (max-height: 700px) {
  .urospot-modal {
    padding: 1rem;
  }

  .urospot-modal__dialog {
    max-height: calc(100dvh - 2rem);
    padding: 24px 20px;
  }

  .urospot-modal__title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .urospot-modal__actions {
    margin-top: 32px;
    gap: 16px;
  }
}

@-webkit-keyframes urospot-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes urospot-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Store-hydrated fields — hidden until location context resolves (no shimmer) */
body:not(.urospot-location-ready) [data-urospot-store],
body:not(.urospot-location-ready) [data-urospot-phone-btn],
body:not(.urospot-location-ready) .js-urospot-store-phone-btn {
  visibility: hidden;
}

body.urospot-location-ready [data-urospot-store],
body.urospot-location-ready [data-urospot-phone-btn],
body.urospot-location-ready .js-urospot-store-phone-btn {
  visibility: visible;
}

/* Winnipeg city toggle — hide until location context resolves */
body:not(.urospot-location-ready) .js-urospot-store-city-winnipeg-show {
  display: none !important;
}

body:not(.urospot-location-ready) .js-urospot-store-city-winnipeg-hide {
  visibility: hidden;
}

body.urospot-location-ready .js-urospot-store-city-winnipeg-show[aria-hidden="true"],
body.urospot-location-ready .js-urospot-store-city-winnipeg-hide[aria-hidden="true"] {
  display: none !important;
}

body.urospot-location-ready .js-urospot-store-city-winnipeg-show[aria-hidden="false"],
body.urospot-location-ready .js-urospot-store-city-winnipeg-hide[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

/* Ottawa city toggle — hide until location context resolves */
body:not(.urospot-location-ready) .js-urospot-store-city-ottawa-show {
  display: none !important;
}

body:not(.urospot-location-ready) .js-urospot-store-city-ottawa-hide {
  visibility: hidden;
}

body.urospot-location-ready .js-urospot-store-city-ottawa-show[aria-hidden="true"],
body.urospot-location-ready .js-urospot-store-city-ottawa-hide[aria-hidden="true"] {
  display: none !important;
}

body.urospot-location-ready .js-urospot-store-city-ottawa-show[aria-hidden="false"],
body.urospot-location-ready .js-urospot-store-city-ottawa-hide[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .urospot-modal__dialog {
    -webkit-animation: none;
    animation: none;
  }
}

/* Store Switcher widget */
.urospot-store-switcher {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem 1rem;
}

.urospot-store-switcher__trigger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 0;
  border-radius: 4px;

  color: #dba07b;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.urospot-store-switcher__trigger:hover,
.urospot-store-switcher__trigger:focus-visible {
  opacity: 0.85;
}

.urospot-store-switcher-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  pointer-events: none;
  font-family: "Nunito Sans", "Open Sans", Helvetica, Arial, sans-serif;
}

.urospot-store-switcher-modal[hidden] {
  display: none !important;
}

.urospot-store-switcher-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.urospot-store-switcher-modal__dialog {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  width: min(480px, 100%);
  max-height: min(80vh, 640px);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
}

.urospot-store-switcher-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.urospot-store-switcher-modal__current {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.urospot-store-switcher-modal__list-wrap {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.urospot-store-switcher-modal__list {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0 0.25rem 0 0;
  padding-left: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  scrollbar-width: thin;
  scrollbar-color: #ffffff rgba(255, 255, 255, 0.6);
}

.urospot-store-switcher-modal__list-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: auto;
}

.urospot-store-switcher-modal__list-loading[hidden] {
  display: none !important;
}

.urospot-store-switcher-modal__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #dba07b;
  border-radius: 50%;
  -webkit-animation: urospot-store-switcher-spin 0.8s linear infinite;
  animation: urospot-store-switcher-spin 0.8s linear infinite;
}

.urospot-store-switcher-modal__list-loading-text {
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.9;
}

@-webkit-keyframes urospot-store-switcher-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes urospot-store-switcher-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .urospot-store-switcher-modal__spinner {
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
  }
}

.urospot-store-switcher-modal__list > li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

.urospot-store-switcher-modal__list > li::marker {
  content: none;
  font-size: 0;
  color: transparent;
}

.urospot-store-switcher-modal__list::-webkit-scrollbar {
  width: 8px;
}

.urospot-store-switcher-modal__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.62);
  border-radius: 4px;
}

.urospot-store-switcher-modal__list::-webkit-scrollbar-thumb {
  background: #dba07b;
  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0.35);
}

.urospot-store-switcher-modal__option {
  display: block;
  width: 100%;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: #000000;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0.75rem 1rem;
  font-size: 18px;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.urospot-store-switcher-modal__option:last-child {
  border-bottom: 0;
}

.urospot-store-switcher-modal__option:hover:not(:disabled),
.urospot-store-switcher-modal__option:focus-visible:not(:disabled) {
  color: #000000;
  background: rgb(219 160 123 / 0.8);
}

.urospot-store-switcher-modal__option--selected {
  color: #000000;
  background: rgb(219 160 123 / 0.8);
}

.urospot-store-switcher-modal__option:disabled {
  cursor: default;
  opacity: 0.55;
}

.urospot-store-switcher-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.urospot-store-switcher-modal__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  padding: 0.25rem 0;
}

.urospot-store-switcher-modal__close:hover {
  text-decoration: underline;
}

.urospot-store-switcher-modal__confirm {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 4px;
  background: #dba07b;
  color: #000000;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.urospot-store-switcher-modal__confirm:hover:not(:disabled),
.urospot-store-switcher-modal__confirm:focus-visible:not(:disabled) {
  opacity: 0.9;
}

.urospot-store-switcher-modal__confirm:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

body.urospot-store-switcher-open {
  overflow: hidden;
}

/* Store Gravity Form widget */
.urospot-gf-by-store {
  position: relative;
  min-height: 3rem;
}

.urospot-gf-by-store__loading {
  position: relative;
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  min-height: 3rem;
}

.urospot-gf-by-store__loading[aria-hidden="true"],
.urospot-gf-by-store__loading--done {
  display: none;
}

.urospot-gf-by-store__loading--done::after {
  display: none !important;
  -webkit-animation: none;
  animation: none;
}

.urospot-gf-by-store__loading::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(320px, 80%);
  height: 1.5rem;
  border-radius: 4px;
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(0, 0, 0, 0.06)),
    color-stop(50%, rgba(0, 0, 0, 0.14)),
    to(rgba(0, 0, 0, 0.06))
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.14) 50%,
    rgba(0, 0, 0, 0.06) 100%
  );
  background-size: 200% 100%;
  -webkit-animation: urospot-shimmer 1.4s ease-in-out infinite;
  animation: urospot-shimmer 1.4s ease-in-out infinite;
}

.urospot-gf-by-store__loading:not([aria-hidden="false"])::after {
  display: block;
}

.urospot-gf-by-store__loading[aria-hidden="false"]:not(:empty) {
  color: inherit;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.urospot-gf-by-store__loading[aria-hidden="false"]:not(:empty)::after {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .urospot-gf-by-store__loading::after {
    -webkit-animation: none;
    animation: none;
    background: rgba(0, 0, 0, 0.1);
  }
}
