/* [project]/app/commerce/products/components/ProductImage.module.css [app-client] (css) */
.ProductImage-module__NFBZ0W__placeholder {
  color: var(--volera-text);
  background: var(--volera-surface);
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

.ProductImage-module__NFBZ0W__placeholder svg {
  width: 50%;
  max-width: 48px;
  height: 50%;
  max-height: 48px;
}

/* [project]/app/components/ModalShell.module.css [app-client] (css) */
.ModalShell-module__QLp3_q__overlay {
  background: var(--volera-backdrop, #0006);
  box-sizing: border-box;
  padding: var(--modal-viewport-gutter, 24px);
  will-change: opacity;
  z-index: 22000;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.ModalShell-module__QLp3_q__selectorOverlay {
  background: var(--volera-backdrop, #0006);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.ModalShell-module__QLp3_q__dialog {
  --modal-body-padding-bottom: clamp(26px, 4vw, 44px);
  --modal-body-padding-top: clamp(22px, 3.4vw, 36px);
  --modal-footer-padding-bottom: clamp(26px, 3.6vw, 40px);
  --modal-inline-padding: clamp(24px, 5vw, 52px);
  --modal-close-icon-align-offset: 17px;
  --modal-header-min-height: 64px;
  --modal-min-width: 520px;
  --modal-max-width: 720px;
  --modal-max-height: min(85svh,
    calc(100svh - var(--modal-viewport-gutter, 24px) -
        var(--modal-viewport-gutter, 24px)));
  background: var(--volera-surface, #fff);
  border-radius: var(--volera-modal-radius, 32px);
  box-shadow: var(--volera-shadow-modal, 0 0 0 1px #00000005,
    0 8px 24px #0000001a);
  box-sizing: border-box;
  color: var(--volera-text, #191e49);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  height: auto;
  max-height: var(--modal-max-height);
  max-width: min(var(--modal-max-width),
    calc(100vw - var(--modal-viewport-gutter, 24px) -
        var(--modal-viewport-gutter, 24px)));
  min-width: min(var(--modal-min-width),
    calc(100vw - var(--modal-viewport-gutter, 24px) -
        var(--modal-viewport-gutter, 24px)));
  transform-origin: top;
  transition: height var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease),
    width var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease);
  will-change: height, opacity, transform, width;
  border: 1px solid #191e4914;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: fit-content;
  display: grid;
  overflow: hidden;
}

.ModalShell-module__QLp3_q__overlay[data-modal-state="opening"] {
  animation: ModalShell-module__QLp3_q__modalOverlayIn var(--volera-motion-duration-fast, .15s)
    var(--volera-motion-ease, ease) both;
}

.ModalShell-module__QLp3_q__overlay[data-modal-state="closing"] {
  animation: ModalShell-module__QLp3_q__modalOverlayOut var(--volera-motion-duration-fast, .15s)
    var(--volera-motion-ease, ease) both;
}

.ModalShell-module__QLp3_q__dialog[data-modal-state="opening"] {
  animation: ModalShell-module__QLp3_q__modalDialogIn var(--volera-motion-duration-medium, .22s)
    var(--volera-motion-ease, ease) both;
}

.ModalShell-module__QLp3_q__dialog[data-modal-state="closing"] {
  animation: ModalShell-module__QLp3_q__modalDialogOut var(--volera-motion-duration-medium, .22s)
    var(--volera-motion-ease, ease) both;
}

.ModalShell-module__QLp3_q__selectorLayout {
  --modal-selector-content-inset: 6px;
  --modal-selector-shell-inline-padding: 18px;
  --modal-selector-aligned-inline-padding: calc(var(--modal-selector-shell-inline-padding) +
      var(--modal-selector-content-inset));
  --modal-min-width: 520px;
  --modal-max-width: 720px;
  --modal-max-height: min(85svh, calc(100svh - 44px));
  border-radius: var(--volera-modal-radius, 32px);
  box-shadow: var(--volera-shadow-modal, 0 0 0 1px #00000005,
    0 8px 24px #0000001a);
  padding: 18px var(--modal-selector-shell-inline-padding);
  border: 1px solid #ffffffb8;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.ModalShell-module__QLp3_q__compact {
  --modal-body-padding-bottom: clamp(24px, 3.6vw, 36px);
  --modal-body-padding-top: clamp(20px, 3.2vw, 32px);
  --modal-footer-padding-bottom: clamp(24px, 3.6vw, 36px);
  --modal-inline-padding: clamp(24px, 4.8vw, 44px);
  --modal-header-min-height: 60px;
  --modal-min-width: 420px;
  --modal-max-width: 520px;
}

.ModalShell-module__QLp3_q__medium {
  --modal-max-width: 720px;
}

.ModalShell-module__QLp3_q__wide, .ModalShell-module__QLp3_q__extraWide {
  --modal-body-padding-bottom: clamp(26px, 3.6vw, 40px);
  --modal-body-padding-top: clamp(22px, 3vw, 34px);
  --modal-footer-padding-bottom: clamp(26px, 3.4vw, 38px);
  --modal-inline-padding: clamp(26px, 3vw, 40px);
  --modal-header-min-height: 64px;
}

.ModalShell-module__QLp3_q__wide {
  --modal-min-width: 720px;
  --modal-max-width: 940px;
}

.ModalShell-module__QLp3_q__extraWide {
  --modal-min-width: 880px;
  --modal-max-width: 1080px;
  --modal-max-height: min(88svh, calc(100svh - 40px));
  width: min(var(--modal-max-width),
    calc(100vw - var(--modal-viewport-gutter, 24px) -
        var(--modal-viewport-gutter, 24px)));
}

.ModalShell-module__QLp3_q__header {
  box-sizing: border-box;
  min-height: var(--modal-header-min-height);
  padding: 18px var(--modal-inline-padding) 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  display: grid;
}

.ModalShell-module__QLp3_q__headerCloseOnly {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ModalShell-module__QLp3_q__headerWithContent {
  align-items: start;
  padding-bottom: 18px;
}

.ModalShell-module__QLp3_q__headerTitleOnly {
  align-items: center;
}

.ModalShell-module__QLp3_q__headerWithDivider {
  border-bottom: 1px solid var(--volera-border-soft, #ededf0);
}

.ModalShell-module__QLp3_q__headerCloseOnly:before {
  content: "";
  min-width: 0;
}

.ModalShell-module__QLp3_q__title {
  color: var(--volera-text, #191e49);
  font-size: 1.08rem;
  font-weight: var(--volera-font-weight-emphasis, 650);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  min-width: 0;
  margin: 0;
  line-height: 1.2;
}

.ModalShell-module__QLp3_q__headerContent {
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.ModalShell-module__QLp3_q__responsiveHeaderLeadingAction {
  display: none;
}

.ModalShell-module__QLp3_q__headerLeadingAction {
  grid-column: 1;
  justify-self: start;
  align-items: center;
  display: flex;
}

.ModalShell-module__QLp3_q__headerIcon {
  background: var(--volera-pink-surface, #f6f1fb);
  color: var(--volera-pink, #bc269b);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: inline-flex;
}

.ModalShell-module__QLp3_q__headerIcon svg {
  width: 20px;
  height: 20px;
}

.ModalShell-module__QLp3_q__headerCopy {
  gap: 5px;
  min-width: 0;
  display: grid;
}

.ModalShell-module__QLp3_q__subtitle {
  color: var(--volera-text-muted, #72789c);
  max-width: 54ch;
  margin: 0;
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.35;
}

.ModalShell-module__QLp3_q__closeButton {
  appearance: none;
  color: var(--volera-text, #191e49);
  cursor: pointer;
  height: 42px;
  margin-right: calc(-1 * var(--modal-close-icon-align-offset));
  transition: background-color var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease),
    color var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease);
  background: none;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 42px;
  display: inline-flex;
}

.ModalShell-module__QLp3_q__closeButtonPlain {
  background: none;
}

.ModalShell-module__QLp3_q__closeButtonCircle {
  --modal-close-icon-align-offset: 18px;
  color: #191e49;
  height: 44px;
  margin-right: calc(-1 * var(--modal-close-icon-align-offset));
  transition: background-color var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease),
    color var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease);
  background: none;
  flex: 0 0 44px;
  width: 44px;
}

.ModalShell-module__QLp3_q__closeButton:hover, .ModalShell-module__QLp3_q__closeButton:focus-visible {
  color: var(--volera-text, #191e49);
  background: #f0f0f2;
  outline: none;
}

.ModalShell-module__QLp3_q__closeButtonCircle:hover, .ModalShell-module__QLp3_q__closeButtonCircle:focus-visible {
  background: var(--volera-pink-surface, #f6f1fb);
  color: #191e49;
}

.ModalShell-module__QLp3_q__closeButton:focus-visible {
  box-shadow: var(--volera-control-active-shadow, 0 1px 30px 0 #0000000d);
}

.ModalShell-module__QLp3_q__closeButton:disabled {
  cursor: wait;
  opacity: .55;
}

.ModalShell-module__QLp3_q__bodyFrame {
  --modal-scroll-fade-size: clamp(48px, 12%, 72px);
  background: var(--volera-surface, #fff);
  box-sizing: border-box;
  isolation: isolate;
  min-height: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.ModalShell-module__QLp3_q__bodyFrameWithSidebar {
  grid-template-columns: minmax(200px, .36fr) minmax(0, 1fr);
  gap: 28px;
  display: grid;
}

.ModalShell-module__QLp3_q__bodySidebar {
  overscroll-behavior: contain;
  min-width: 0;
  min-height: 0;
  padding-inline: var(--modal-selector-content-inset, 6px);
  scrollbar-width: thin;
  overflow-y: auto;
}

@media (max-width: 1199px) {
  .ModalShell-module__QLp3_q__bodyFrameWithSidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .ModalShell-module__QLp3_q__bodySidebar {
    display: none;
  }
}

.ModalShell-module__QLp3_q__bodyFrame:after {
  background: linear-gradient(to bottom,
    #fff0,
    var(--volera-surface, #fff) 82%);
  content: "";
  height: var(--modal-scroll-fade-size);
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--volera-motion-duration-fast, .15s)
    var(--volera-motion-ease, ease);
  z-index: 2;
  position: absolute;
  inset-inline: 0;
}

.ModalShell-module__QLp3_q__bodyFrame[data-modal-scroll-indicator="true"]:after {
  opacity: 1;
}

.ModalShell-module__QLp3_q__scrollViewportOverlay {
  pointer-events: none;
  z-index: 5;
  position: absolute;
  inset: 0;
}

@supports ((-webkit-mask-image: linear-gradient(#000, transparent)) or (mask-image: linear-gradient(#000, transparent))) {
  .ModalShell-module__QLp3_q__bodyFrame:after {
    content: none;
  }

  .ModalShell-module__QLp3_q__bodyFrame[data-modal-scroll-indicator="true"] .ModalShell-module__QLp3_q__body {
    -webkit-mask-image: linear-gradient(to bottom,
      #000 0,
      #000 calc(100% - var(--modal-scroll-fade-size)),
      transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
      #000 0,
      #000 calc(100% - var(--modal-scroll-fade-size)),
      transparent 100%);
    mask-image: linear-gradient(to bottom,
      #000 0,
      #000 calc(100% - var(--modal-scroll-fade-size)),
      transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

.ModalShell-module__QLp3_q__body {
  --modal-focus-scroll-padding-bottom: 16px;
  --modal-focus-scroll-padding-top: 16px;
  --modal-scroll-end-space: 16px;
  box-sizing: border-box;
  overflow-anchor: none;
  min-height: 0;
  padding: var(--modal-body-padding-top) var(--modal-inline-padding)
    var(--modal-body-padding-bottom);
  scroll-padding-bottom: var(--modal-focus-scroll-padding-bottom);
  scroll-padding-top: var(--modal-focus-scroll-padding-top);
  transition: opacity var(--volera-motion-duration-fast, .15s)
    var(--volera-motion-ease, ease);
  overflow: hidden;
}

.ModalShell-module__QLp3_q__dialog[data-modal-scrollable="true"] .ModalShell-module__QLp3_q__body {
  overscroll-behavior: contain;
  overflow: hidden auto;
}

.ModalShell-module__QLp3_q__body :where(a[href], button, [contenteditable]:not([contenteditable="false"]), details > summary:first-of-type, input, select, textarea, [tabindex]:not([tabindex="-1"])) {
  scroll-margin-bottom: var(--modal-focus-scroll-padding-bottom);
  scroll-margin-top: var(--modal-focus-scroll-padding-top);
}

.ModalShell-module__QLp3_q__bodyWithFooter {
  padding-bottom: calc(var(--modal-body-padding-bottom) + var(--modal-scroll-end-space));
}

.ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__body.ModalShell-module__QLp3_q__bodyWithFooter {
  padding-bottom: var(--modal-scroll-end-space);
}

.ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__body.ModalShell-module__QLp3_q__bodyWithFooter.ModalShell-module__QLp3_q__bodyWithActionFooter {
  padding-bottom: var(--modal-action-footer-body-gap, 16px);
}

.ModalShell-module__QLp3_q__dialog[data-modal-sizing="true"] .ModalShell-module__QLp3_q__body {
  opacity: .72;
}

.ModalShell-module__QLp3_q__footer {
  box-sizing: border-box;
  padding: 0 var(--modal-inline-padding) var(--modal-footer-padding-bottom);
}

.ModalShell-module__QLp3_q__footer.ModalShell-module__QLp3_q__actionFooter {
  border-top: 1px solid var(--volera-border-soft, #ededf0);
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  display: flex;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__header {
  min-height: 0;
  padding: 2px var(--modal-selector-content-inset) 0;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__headerWithContent {
  padding-bottom: 0;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__headerBalanced.ModalShell-module__QLp3_q__headerWithContent {
  --modal-selector-header-balanced-bottom-space: 18px;
  padding-bottom: var(--modal-selector-header-balanced-bottom-space);
}

@media (min-width: 1200px) {
  .ModalShell-module__QLp3_q__selectorLayout[data-modal-scrollable="true"] .ModalShell-module__QLp3_q__headerBalanced.ModalShell-module__QLp3_q__headerWithContent {
    --modal-selector-header-balanced-bottom-space: 4px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"][data-modal-scrollable="true"] .ModalShell-module__QLp3_q__headerBalanced.ModalShell-module__QLp3_q__headerWithContent {
    --modal-selector-header-balanced-bottom-space: 4px;
  }
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__headerContent {
  align-items: center;
  min-width: 0;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__headerWithLeadingAction {
  grid-template-columns: minmax(44px, 1fr) minmax(0, auto) minmax(44px, 1fr);
  gap: 0;
  display: grid;
}

.ModalShell-module__QLp3_q__headerWithLeadingAction .ModalShell-module__QLp3_q__headerContent {
  text-align: center;
  grid-column: 2;
  justify-self: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.ModalShell-module__QLp3_q__headerWithLeadingAction .ModalShell-module__QLp3_q__headerCopy {
  justify-items: center;
  width: 100%;
  min-width: 0;
}

.ModalShell-module__QLp3_q__headerWithLeadingAction .ModalShell-module__QLp3_q__title {
  overflow-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.ModalShell-module__QLp3_q__headerWithLeadingAction .ModalShell-module__QLp3_q__closeButton {
  grid-column: 3;
  justify-self: end;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__headerCopy {
  gap: 0;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__title {
  font-size: 1.08rem;
  font-weight: var(--volera-font-weight-emphasis, 650);
  line-height: 1.25;
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__body {
  min-height: 0;
  padding: 0 var(--modal-selector-content-inset);
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__footer {
  padding: 0 var(--modal-selector-content-inset);
}

.ModalShell-module__QLp3_q__selectorLayout .ModalShell-module__QLp3_q__footer.ModalShell-module__QLp3_q__actionFooter {
  padding-top: 16px;
}

@keyframes ModalShell-module__QLp3_q__modalOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ModalShell-module__QLp3_q__modalOverlayOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes ModalShell-module__QLp3_q__modalDialogIn {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes ModalShell-module__QLp3_q__modalDialogOut {
  from {
    opacity: 1;
    transform: translateY(0)scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(18px)scale(.985);
  }
}

@keyframes ModalShell-module__QLp3_q__modalSheetIn {
  from {
    opacity: 1;
    transform: translate3d(0,
      calc(var(--modal-visible-viewport-height, 100dvh) + 8px),
      0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ModalShell-module__QLp3_q__modalSheetOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0,
      calc(var(--modal-visible-viewport-height, 100dvh) + 8px),
      0);
  }
}

@media (max-width: 1199px) {
  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="expanded"] {
    height: var(--modal-visible-viewport-height, 100dvh);
    min-height: 0;
    bottom: auto;
    top: var(--modal-visual-viewport-offset-top, 0px);
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] {
    --modal-responsive-top-clearance: max(12px, env(safe-area-inset-top, 0px));
    --modal-responsive-max-height: calc(var(--modal-visible-viewport-height, 100dvh) -
        var(--modal-responsive-top-clearance));
    --modal-sheet-radius: var(--volera-modal-radius-mobile, 32px);
    --modal-body-padding-bottom: 22px;
    --modal-body-padding-top: 18px;
    --modal-footer-padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    --modal-header-min-height: 56px;
    --modal-inline-padding: max(22px,
      env(safe-area-inset-left, 0px),
      env(safe-area-inset-right, 0px));
    --modal-max-height: var(--modal-responsive-max-height);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: var(--modal-sheet-radius);
    border-top-right-radius: var(--modal-sheet-radius);
    max-height: var(--modal-responsive-max-height);
    transform-origin: bottom;
    backface-visibility: hidden;
    will-change: opacity, transform;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="expanded"][data-modal-state="closed"] {
    opacity: 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-state="closed"] {
    opacity: 1;
    transform: translate3d(0,
      calc(var(--modal-visible-viewport-height, 100dvh) + 8px),
      0);
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="expanded"][data-modal-state="opening"] {
    animation: ModalShell-module__QLp3_q__modalOverlayIn var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease) both;
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="expanded"][data-modal-state="closing"] {
    animation: ModalShell-module__QLp3_q__modalOverlayOut var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-state="opening"] {
    animation: ModalShell-module__QLp3_q__modalSheetIn var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-state="closing"] {
    animation: ModalShell-module__QLp3_q__modalSheetOut var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
    pointer-events: none;
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-state="closed"], .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__body {
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-sizing="true"] .ModalShell-module__QLp3_q__body {
    opacity: 1;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="content-sheet"] {
    height: auto;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="large-sheet"] {
    height: var(--modal-responsive-max-height);
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="full-screen"] {
    --modal-body-padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    --modal-inline-padding: max(22px,
      env(safe-area-inset-left, 0px),
      env(safe-area-inset-right, 0px));
    --modal-responsive-max-height: var(--modal-visible-viewport-height, 100dvh);
    --modal-responsive-top-clearance: 0px;
    box-shadow: none;
    height: var(--modal-visible-viewport-height, 100dvh);
    max-height: var(--modal-visible-viewport-height, 100dvh);
    border: 0;
    border-radius: 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="full-screen"] > .ModalShell-module__QLp3_q__header {
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] {
    --modal-selector-shell-inline-padding: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: var(--modal-sheet-radius);
    border-top-right-radius: var(--modal-sheet-radius);
    max-height: var(--modal-responsive-max-height);
    padding: 16px var(--modal-selector-shell-inline-padding)
      calc(16px + env(safe-area-inset-bottom, 0px));
    width: 100vw;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="full-screen"] {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    border: 0;
    border-radius: 0;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"][data-modal-responsive-mode="full-screen"] > .ModalShell-module__QLp3_q__header {
    padding-top: 2px;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__body.ModalShell-module__QLp3_q__bodyWithFooter.ModalShell-module__QLp3_q__bodyWithActionFooter {
    padding-bottom: var(--modal-action-footer-body-gap-responsive, 20px);
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__footer.ModalShell-module__QLp3_q__actionFooter {
    margin-inline: calc(-1 * var(--modal-selector-shell-inline-padding));
    padding: 20px var(--modal-selector-aligned-inline-padding) 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] > .ModalShell-module__QLp3_q__header {
    padding-top: 14px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] > .ModalShell-module__QLp3_q__header {
    padding-top: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] > .ModalShell-module__QLp3_q__headerWithContent {
    padding-bottom: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] > .ModalShell-module__QLp3_q__headerBalanced.ModalShell-module__QLp3_q__headerWithContent {
    --modal-selector-header-balanced-bottom-space: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="expanded"] > .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction {
    grid-template-columns: minmax(40px, 1fr) minmax(0, auto) minmax(40px, 1fr);
    gap: 0;
    display: grid;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__responsiveHeaderLeadingAction {
    grid-column: 1;
    justify-self: start;
    align-items: center;
    display: flex;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__headerContent {
    text-align: center;
    grid-column: 2;
    justify-self: center;
    max-width: 100%;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__headerCopy {
    justify-items: center;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="expanded"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__closeButton {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="tablet"] {
    height: var(--modal-visible-viewport-height, 100dvh);
    min-height: 0;
    bottom: auto;
    top: var(--modal-visual-viewport-offset-top, 0px);
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] {
    --modal-responsive-top-clearance: max(12px, env(safe-area-inset-top, 0px));
    --modal-responsive-max-height: calc(var(--modal-visible-viewport-height, 100dvh) -
        var(--modal-responsive-top-clearance));
    --modal-sheet-radius: var(--volera-modal-radius-mobile, 32px);
    --modal-body-padding-bottom: 22px;
    --modal-body-padding-top: 18px;
    --modal-footer-padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    --modal-header-min-height: 56px;
    --modal-inline-padding: max(22px,
      env(safe-area-inset-left, 0px),
      env(safe-area-inset-right, 0px));
    --modal-max-height: var(--modal-responsive-max-height);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: var(--modal-sheet-radius);
    border-top-right-radius: var(--modal-sheet-radius);
    max-height: var(--modal-responsive-max-height);
    transform-origin: bottom;
    backface-visibility: hidden;
    will-change: opacity, transform;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="tablet"][data-modal-state="closed"] {
    opacity: 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-state="closed"] {
    opacity: 1;
    transform: translate3d(0,
      calc(var(--modal-visible-viewport-height, 100dvh) + 8px),
      0);
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="tablet"][data-modal-state="opening"] {
    animation: ModalShell-module__QLp3_q__modalOverlayIn var(--volera-motion-duration-fast, .15s)
      var(--volera-motion-ease, ease) both;
  }

  .ModalShell-module__QLp3_q__overlay[data-modal-responsive-breakpoint="tablet"][data-modal-state="closing"] {
    animation: ModalShell-module__QLp3_q__modalOverlayOut var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-state="opening"] {
    animation: ModalShell-module__QLp3_q__modalSheetIn var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-state="closing"] {
    animation: ModalShell-module__QLp3_q__modalSheetOut var(--volera-motion-duration-medium, .22s)
      var(--volera-motion-ease, ease) both;
    pointer-events: none;
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-state="closed"], .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__body {
    transition: none;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-sizing="true"] .ModalShell-module__QLp3_q__body {
    opacity: 1;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="content-sheet"] {
    height: auto;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="large-sheet"] {
    height: var(--modal-responsive-max-height);
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="full-screen"] {
    --modal-body-padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    --modal-inline-padding: max(22px,
      env(safe-area-inset-left, 0px),
      env(safe-area-inset-right, 0px));
    --modal-responsive-max-height: var(--modal-visible-viewport-height, 100dvh);
    --modal-responsive-top-clearance: 0px;
    box-shadow: none;
    height: var(--modal-visible-viewport-height, 100dvh);
    max-height: var(--modal-visible-viewport-height, 100dvh);
    border: 0;
    border-radius: 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="full-screen"] > .ModalShell-module__QLp3_q__header {
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] {
    --modal-selector-shell-inline-padding: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: var(--modal-sheet-radius);
    border-top-right-radius: var(--modal-sheet-radius);
    max-height: var(--modal-responsive-max-height);
    padding: 16px var(--modal-selector-shell-inline-padding)
      calc(16px + env(safe-area-inset-bottom, 0px));
    width: 100vw;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="full-screen"] {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    border: 0;
    border-radius: 0;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"][data-modal-responsive-mode="full-screen"] > .ModalShell-module__QLp3_q__header {
    padding-top: 2px;
  }

  .ModalShell-module__QLp3_q__dialog.ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__body.ModalShell-module__QLp3_q__bodyWithFooter.ModalShell-module__QLp3_q__bodyWithActionFooter {
    padding-bottom: var(--modal-action-footer-body-gap-responsive, 20px);
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__footer.ModalShell-module__QLp3_q__actionFooter {
    margin-inline: calc(-1 * var(--modal-selector-shell-inline-padding));
    padding: 20px var(--modal-selector-aligned-inline-padding) 0;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] > .ModalShell-module__QLp3_q__header {
    padding-top: 14px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] > .ModalShell-module__QLp3_q__header {
    padding-top: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] > .ModalShell-module__QLp3_q__headerWithContent {
    padding-bottom: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] > .ModalShell-module__QLp3_q__headerBalanced.ModalShell-module__QLp3_q__headerWithContent {
    --modal-selector-header-balanced-bottom-space: 2px;
  }

  .ModalShell-module__QLp3_q__selectorLayout[data-modal-responsive-breakpoint="tablet"] > .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction {
    grid-template-columns: minmax(40px, 1fr) minmax(0, auto) minmax(40px, 1fr);
    gap: 0;
    display: grid;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__responsiveHeaderLeadingAction {
    grid-column: 1;
    justify-self: start;
    align-items: center;
    display: flex;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__headerContent {
    text-align: center;
    grid-column: 2;
    justify-self: center;
    max-width: 100%;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__headerCopy {
    justify-items: center;
  }

  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-breakpoint="tablet"] .ModalShell-module__QLp3_q__headerWithResponsiveLeadingAction .ModalShell-module__QLp3_q__closeButton {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 1199px) {
  .ModalShell-module__QLp3_q__dialog[data-modal-responsive-placement="floating"]:not([data-modal-responsive-mode="full-screen"]) {
    --modal-responsive-floating-gutter: 12px;
    border-bottom-left-radius: var(--modal-sheet-radius);
    border-bottom-right-radius: var(--modal-sheet-radius);
    margin-bottom: var(--modal-responsive-floating-gutter);
    max-width: calc(100vw - (var(--modal-responsive-floating-gutter) * 2));
    width: calc(100vw - (var(--modal-responsive-floating-gutter) * 2));
  }
}

@media (max-width: 640px) {
  .ModalShell-module__QLp3_q__footer.ModalShell-module__QLp3_q__actionFooter {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 575.98px) {
  .ModalShell-module__QLp3_q__dialog {
    --modal-sheet-radius: var(--volera-modal-radius-mobile, 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ModalShell-module__QLp3_q__overlay, .ModalShell-module__QLp3_q__dialog {
    animation: none;
  }

  .ModalShell-module__QLp3_q__dialog, .ModalShell-module__QLp3_q__body, .ModalShell-module__QLp3_q__closeButton {
    transition: none;
  }
}

/* [project]/app/components/ToolbarPillButton.module.css [app-client] (css) */
.ToolbarPillButton-module__FwdhNG__pillButton {
  background: var(--volera-surface);
  border: 1px solid var(--volera-border);
  border-radius: var(--volera-control-radius-pill);
  color: var(--volera-text);
  cursor: pointer;
  font: inherit;
  min-height: 44px;
  transition: background-color var(--volera-motion-duration-fast) var(--volera-motion-ease),
    border-color var(--volera-motion-duration-fast) var(--volera-motion-ease),
    color var(--volera-motion-duration-fast) var(--volera-motion-ease),
    transform var(--volera-motion-duration-fast) var(--volera-motion-ease);
  white-space: nowrap;
  flex: none;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  font-size: .84rem;
  font-weight: 590;
  display: inline-flex;
  position: relative;
}

.ToolbarPillButton-module__FwdhNG__pillButton:hover {
  background: var(--volera-control-outline-surface, transparent);
  border-color: var(--volera-pink-border);
  color: var(--volera-pink-active);
}

.ToolbarPillButton-module__FwdhNG__pillButton:active {
  transform: scale(.985);
}

.ToolbarPillButton-module__FwdhNG__pillButton:focus-visible {
  box-shadow: 0 0 0 3px var(--volera-pink-focus-ring-strong);
  outline: none;
}

.ToolbarPillButton-module__FwdhNG__pillButtonActive {
  background: var(--volera-control-outline-surface, transparent);
  border-color: var(--volera-pink-border);
  color: var(--volera-pink-active);
}

.ToolbarPillButton-module__FwdhNG__pillButton svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.ToolbarPillButton-module__FwdhNG__indicator {
  width: 15px;
  height: 15px;
  position: absolute;
  top: -7.5px;
  right: -7.5px;
}

.ToolbarPillButton-module__FwdhNG__pillButtonIconOnly {
  justify-content: center;
  width: 44px;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ToolbarPillButton-module__FwdhNG__pillButton {
    transition: none;
  }
}

/* [project]/app/components/VoleraButton.module.css [app-client] (css) */
.VoleraButton-module__n5eSgq__button {
  appearance: none;
  border-radius: var(--volera-control-radius-pill, 999px);
  box-sizing: border-box;
  cursor: pointer;
  font: inherit;
  font-weight: var(--volera-font-weight-emphasis, 650);
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 112px;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color .15s, border-color .15s, box-shadow .15s, color .15s, opacity .15s;
  display: inline-flex;
  position: relative;
}

.VoleraButton-module__n5eSgq__button:focus-visible {
  box-shadow: var(--volera-control-active-shadow, 0 1px 30px 0 #0000000d);
  outline: none;
}

.VoleraButton-module__n5eSgq__button:disabled {
  cursor: not-allowed;
  opacity: .54;
}

.VoleraButton-module__n5eSgq__sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: .82rem;
}

.VoleraButton-module__n5eSgq__md {
  min-height: 44px;
  padding: 0 20px;
  font-size: .92rem;
}

.VoleraButton-module__n5eSgq__lg {
  min-height: 52px;
  padding: 0 26px;
  font-size: 1rem;
}

.VoleraButton-module__n5eSgq__primary {
  background: var(--volera-pink, #bc269b);
  border-color: var(--volera-pink-border, #bc269b);
  color: var(--volera-surface, #fff);
}

.VoleraButton-module__n5eSgq__primary:not(:disabled):hover, .VoleraButton-module__n5eSgq__primary:not(:disabled):active {
  background: var(--volera-pink-hover, #921185);
  border-color: var(--volera-pink-hover, #921185);
  color: var(--volera-surface, #fff);
}

.VoleraButton-module__n5eSgq__secondary {
  background: var(--volera-surface, #fff);
  border-color: var(--volera-border, #e0e2ed);
  color: var(--volera-text, #191e49);
}

.VoleraButton-module__n5eSgq__secondary:not(:disabled):hover, .VoleraButton-module__n5eSgq__secondary:not(:disabled):active {
  background: var(--volera-control-outline-surface, transparent);
  border-color: var(--volera-pink-border, #bc269b);
  color: var(--volera-pink-active, #bc269b);
}

.VoleraButton-module__n5eSgq__ghost {
  color: var(--volera-text, #191e49);
  background: none;
  border-color: #0000;
}

.VoleraButton-module__n5eSgq__ghost:not(:disabled):hover, .VoleraButton-module__n5eSgq__ghost:not(:disabled):active {
  background: var(--volera-pink-soft, #faf4fb);
  color: var(--volera-pink-active, #bc269b);
}

.VoleraButton-module__n5eSgq__danger {
  background: var(--volera-danger, #be123c);
  border-color: var(--volera-danger, #be123c);
  color: var(--volera-surface, #fff);
}

.VoleraButton-module__n5eSgq__danger:not(:disabled):hover, .VoleraButton-module__n5eSgq__danger:not(:disabled):active {
  background: var(--volera-danger-hover, #9f1239);
  border-color: var(--volera-danger-hover, #9f1239);
  color: var(--volera-surface, #fff);
}

.VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__primary, .VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__primary:not(:disabled):hover, .VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__primary:not(:disabled):active {
  background: var(--volera-text, #191e49);
  border-color: var(--volera-text, #191e49);
}

.VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__secondary:not(:disabled):hover, .VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__secondary:not(:disabled):active {
  background: var(--volera-surface-soft, #f7f7f8);
  border-color: var(--volera-text, #191e49);
  color: var(--volera-text, #191e49);
}

.VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__ghost:not(:disabled):hover, .VoleraButton-module__n5eSgq__neutral.VoleraButton-module__n5eSgq__ghost:not(:disabled):active {
  background: var(--volera-surface-soft, #f7f7f8);
  color: var(--volera-text, #191e49);
}

.VoleraButton-module__n5eSgq__fullWidth {
  width: 100%;
}

.VoleraButton-module__n5eSgq__icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.VoleraButton-module__n5eSgq__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.VoleraButton-module__n5eSgq__button[data-trailing-icon-motion="forward"] .VoleraButton-module__n5eSgq__trailingIcon {
  transition: transform var(--volera-motion-duration-fast, .15s)
    var(--volera-motion-ease, ease);
}

.VoleraButton-module__n5eSgq__label {
  text-overflow: ellipsis;
  min-width: 0;
  overflow: hidden;
}

.VoleraButton-module__n5eSgq__loading .VoleraButton-module__n5eSgq__label {
  opacity: .72;
}

@media (hover: hover) and (pointer: fine) {
  .VoleraButton-module__n5eSgq__button[data-trailing-icon-motion="forward"]:not(:disabled):hover .VoleraButton-module__n5eSgq__trailingIcon {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .VoleraButton-module__n5eSgq__button, .VoleraButton-module__n5eSgq__button[data-trailing-icon-motion="forward"] .VoleraButton-module__n5eSgq__trailingIcon {
    transition: none;
  }

  .VoleraButton-module__n5eSgq__button[data-trailing-icon-motion="forward"]:not(:disabled):hover .VoleraButton-module__n5eSgq__trailingIcon {
    transform: none;
  }
}

/* [project]/app/specialists/components/SpecialistAvatar.module.css [app-client] (css) */
.SpecialistAvatar-module__20B17a__root {
  background: var(--volera-pink-surface);
  display: block;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
}

.SpecialistAvatar-module__20B17a__image {
  object-fit: cover;
}

.SpecialistAvatar-module__20B17a__fallback {
  color: var(--volera-pink-active);
  font-size: clamp(1.35rem, 32cqi, 5rem);
  font-weight: var(--volera-font-weight-emphasis);
  letter-spacing: .02em;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: flex;
}

/* [project]/app/locations/[id]/store/LocationStoreTopBar.module.css [app-client] (css) */
.LocationStoreTopBar-module__YLxcoq__storeHeader {
  background: color-mix(in srgb, var(--volera-page-canvas) 96%, transparent);
  border-bottom: 1px solid var(--volera-border-soft);
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 6;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: sticky;
  top: 0;
}

.LocationStoreTopBar-module__YLxcoq__headerButton {
  appearance: none;
  color: var(--volera-text);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-flex;
}

.LocationStoreTopBar-module__YLxcoq__headerButton svg {
  width: 22px;
  height: 22px;
}

.LocationStoreTopBar-module__YLxcoq__headerButton:focus-visible {
  box-shadow: var(--volera-control-active-shadow);
  outline: none;
}

.LocationStoreTopBar-module__YLxcoq__backButton {
  border-right: 1px solid var(--volera-border-soft);
}

.LocationStoreTopBar-module__YLxcoq__closeButton {
  border-left: 1px solid var(--volera-border-soft);
}

/* [project]/app/specialists/components/SpecialistReviewRow.module.css [app-client] (css) */
.SpecialistReviewRow-module__cSv8Kq__review {
  border-top: 1px solid var(--volera-border-soft);
  color: var(--volera-text);
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px 0 24px;
  scroll-margin-block: 108px 84px;
  display: grid;
}

.SpecialistReviewRow-module__cSv8Kq__identityRow {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  display: grid;
}

.SpecialistReviewRow-module__cSv8Kq__avatar {
  background: var(--volera-pink-surface);
  border: 1px solid var(--volera-pink-pale);
  color: var(--volera-pink-active);
  font-size: .94rem;
  font-weight: var(--volera-font-weight-emphasis);
  letter-spacing: .02em;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.SpecialistReviewRow-module__cSv8Kq__avatarImage {
  object-fit: cover;
}

.SpecialistReviewRow-module__cSv8Kq__identityCopy {
  min-width: 0;
}

.SpecialistReviewRow-module__cSv8Kq__identityCopy h3, .SpecialistReviewRow-module__cSv8Kq__identityCopy p, .SpecialistReviewRow-module__cSv8Kq__body, .SpecialistReviewRow-module__cSv8Kq__verified, .SpecialistReviewRow-module__cSv8Kq__reply p {
  margin: 0;
}

.SpecialistReviewRow-module__cSv8Kq__identityCopy h3 {
  font-size: .96rem;
  font-weight: var(--volera-font-weight-emphasis);
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.SpecialistReviewRow-module__cSv8Kq__identityCopy p {
  color: var(--volera-text-muted);
  overflow-wrap: anywhere;
  margin-top: 2px;
  font-size: .8rem;
  line-height: 1.45;
}

.SpecialistReviewRow-module__cSv8Kq__workplaceName {
  color: var(--volera-text);
}

.SpecialistReviewRow-module__cSv8Kq__stars {
  color: var(--volera-pink);
  gap: 3px;
  width: fit-content;
  display: inline-flex;
}

.SpecialistReviewRow-module__cSv8Kq__stars svg {
  width: 17px;
  height: 17px;
}

.SpecialistReviewRow-module__cSv8Kq__stars[data-size="large"] svg {
  width: 28px;
  height: 28px;
}

.SpecialistReviewRow-module__cSv8Kq__stars path {
  fill: var(--volera-border-soft);
  stroke: var(--volera-border);
  stroke-linejoin: round;
  stroke-width: 1px;
}

.SpecialistReviewRow-module__cSv8Kq__stars path[data-filled="true"] {
  fill: currentColor;
  stroke: currentColor;
}

.SpecialistReviewRow-module__cSv8Kq__ratingSummary {
  color: var(--volera-text);
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-width: 0;
  font-size: .9rem;
  line-height: 1.35;
  display: inline-flex;
}

.SpecialistReviewRow-module__cSv8Kq__ratingSummary > strong {
  color: var(--volera-text);
  font-weight: var(--volera-font-weight-emphasis);
}

.SpecialistReviewRow-module__cSv8Kq__reviewCount {
  color: var(--volera-text);
  -webkit-text-decoration-color: var(--volera-pink-active);
  text-decoration-color: var(--volera-pink-active);
  text-underline-offset: 3px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.SpecialistReviewRow-module__cSv8Kq__reviewCountButton {
  appearance: none;
  cursor: pointer;
  font: inherit;
  background: none;
  border: 0;
  border-radius: 6px;
  min-height: 24px;
  margin: -2px;
  padding: 2px;
  position: relative;
}

.SpecialistReviewRow-module__cSv8Kq__reviewCountButton:before {
  content: "";
  width: max(44px, 100%);
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.SpecialistReviewRow-module__cSv8Kq__reviewCountButton:focus-visible {
  box-shadow: 0 0 0 3px var(--volera-pink-focus-ring);
  outline: none;
}

.SpecialistReviewRow-module__cSv8Kq__body {
  overflow-wrap: anywhere;
  max-width: 68ch;
  font-size: .9rem;
  line-height: 1.55;
}

.SpecialistReviewRow-module__cSv8Kq__searchHighlight {
  background: var(--volera-pink-soft);
  color: inherit;
  border-radius: 3px;
  padding-inline: 1px;
}

.SpecialistReviewRow-module__cSv8Kq__verified {
  color: var(--volera-text-muted);
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  display: inline-flex;
}

.SpecialistReviewRow-module__cSv8Kq__verified svg {
  fill: none;
  height: 16px;
  stroke: var(--volera-pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  width: 16px;
}

.SpecialistReviewRow-module__cSv8Kq__reply {
  background: var(--volera-surface-soft);
  border-radius: var(--volera-control-radius);
  box-sizing: border-box;
  gap: 5px;
  inline-size: 100%;
  padding: 14px;
  display: grid;
}

.SpecialistReviewRow-module__cSv8Kq__reply strong {
  font-size: .86rem;
  line-height: 1.35;
}

.SpecialistReviewRow-module__cSv8Kq__reply p {
  color: var(--volera-text-muted);
  overflow-wrap: anywhere;
  font-size: .9rem;
  line-height: 1.5;
}

.SpecialistReviewRow-module__cSv8Kq__review[data-content-mode="preview"] {
  box-sizing: border-box;
  min-block-size: 190px;
}

.SpecialistReviewRow-module__cSv8Kq__review[data-content-mode="preview"][data-has-reply="true"] {
  min-block-size: 298px;
}

.SpecialistReviewRow-module__cSv8Kq__review[data-content-mode="preview"] .SpecialistReviewRow-module__cSv8Kq__body, .SpecialistReviewRow-module__cSv8Kq__review[data-content-mode="preview"] .SpecialistReviewRow-module__cSv8Kq__reply p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] .SpecialistReviewRow-module__cSv8Kq__identityRow {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] .SpecialistReviewRow-module__cSv8Kq__identityRow > .SpecialistReviewRow-module__cSv8Kq__stars {
    place-self: start end;
    margin-top: 2px;
  }
}

@media (min-width: 1200px) {
  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] > .SpecialistReviewRow-module__cSv8Kq__identityRow {
    grid-area: 1 / 1;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] > .SpecialistReviewRow-module__cSv8Kq__stars {
    grid-area: 1 / 2;
    place-self: center end;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] > .SpecialistReviewRow-module__cSv8Kq__body, .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] > .SpecialistReviewRow-module__cSv8Kq__verified, .SpecialistReviewRow-module__cSv8Kq__review[data-variant="row"] > .SpecialistReviewRow-module__cSv8Kq__reply {
    grid-column: 1 / -1;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] {
    background: var(--volera-surface);
    border: 1px solid var(--volera-border-soft);
    border-radius: var(--volera-frame-radius-desktop);
    box-sizing: border-box;
    padding: clamp(22px, 2vw, 28px);
    overflow: hidden;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"][data-content-mode="preview"][data-has-review-content="false"] {
    align-content: center;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] .SpecialistReviewRow-module__cSv8Kq__identityRow {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] .SpecialistReviewRow-module__cSv8Kq__identityRow > .SpecialistReviewRow-module__cSv8Kq__stars {
    align-self: start;
    margin-top: 2px;
  }

  .SpecialistReviewRow-module__cSv8Kq__review[data-variant="card"] .SpecialistReviewRow-module__cSv8Kq__body {
    max-width: none;
  }
}

@media (max-width: 599px) {
  .SpecialistReviewRow-module__cSv8Kq__review {
    gap: 13px;
    padding-block: 20px 22px;
  }

  .SpecialistReviewRow-module__cSv8Kq__avatar {
    width: 44px;
    height: 44px;
  }
}

/* [project]/app/locations/[id]/store/LocationStorePage.module.css [app-client] (css) */
.LocationStorePage-module__P2XXTG__page {
  --volera-page-inline-gutter: clamp(11px, 2.4vw, 28px);
  background: var(--volera-page-canvas);
  color: var(--volera-text);
  min-height: 100dvh;
}

.LocationStorePage-module__P2XXTG__main {
  box-sizing: border-box;
  max-width: calc(var(--volera-marketplace-content-max) +
      (var(--volera-page-inline-gutter) * 2));
  padding: 30px var(--volera-page-inline-gutter) 56px;
  gap: 26px;
  width: 100%;
  margin: 0 auto;
  display: grid;
}

.LocationStorePage-module__P2XXTG__storeIdentity {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartButton {
  appearance: none;
  background: var(--volera-surface);
  border: 1px solid var(--volera-border-soft);
  border-radius: var(--volera-control-radius-lg);
  box-shadow: var(--volera-header-search-shadow, 0 8px 24px #191e491c,
    0 1px 6px #191e490f);
  color: var(--volera-text);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--volera-motion-duration-fast)
    var(--volera-motion-ease);
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  display: inline-flex;
}

.LocationStorePage-module__P2XXTG__cartButton:focus-visible {
  box-shadow: 0 0 0 3px var(--volera-pink-focus-ring-strong);
  outline: none;
}

.LocationStorePage-module__P2XXTG__cartIconWrap {
  display: inline-flex;
  position: relative;
}

.LocationStorePage-module__P2XXTG__cartIcon {
  width: 28px;
  height: 28px;
}

.LocationStorePage-module__P2XXTG__cartBadge {
  background: var(--volera-pink);
  border: 2px solid var(--volera-surface);
  border-radius: var(--volera-control-radius-pill);
  color: var(--volera-surface);
  font-size: .68rem;
  font-weight: var(--volera-font-weight-emphasis);
  justify-content: center;
  align-items: center;
  min-width: 19px;
  min-height: 19px;
  padding: 0 4px;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: -7px;
  right: -8px;
}

.LocationStorePage-module__P2XXTG__cartCopy {
  gap: 3px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartLabel {
  font-size: .95rem;
  font-weight: var(--volera-font-weight-emphasis);
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__cartMeta {
  color: var(--volera-text-muted);
  white-space: nowrap;
  font-size: .82rem;
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__workplaceAvatar {
  border: 1px solid var(--volera-border-soft);
  border-radius: var(--volera-specialist-avatar-radius, 22px);
  width: 76px;
  height: 76px;
}

.LocationStorePage-module__P2XXTG__identityCopy {
  gap: 4px;
  min-width: 0;
  display: grid;
}

.LocationStorePage-module__P2XXTG__identityCopy h1 {
  font-size: clamp(1.28rem, 2.2vw, 1.55rem);
  font-weight: var(--volera-font-weight-emphasis);
  margin: 0;
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__workplaceRating {
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.LocationStorePage-module__P2XXTG__workplaceRating strong {
  font-size: .92rem;
  font-weight: var(--volera-font-weight-emphasis);
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__workplaceRating > span[aria-hidden] {
  color: var(--volera-text-muted);
  font-size: .87rem;
  font-weight: 450;
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__workplaceAddress {
  color: var(--volera-text-muted);
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.LocationStorePage-module__P2XXTG__categoryRail {
  scrollbar-width: none;
  gap: 8px;
  margin: -2px;
  padding: 2px;
  display: flex;
  overflow-x: auto;
}

.LocationStorePage-module__P2XXTG__categoryRail::-webkit-scrollbar {
  display: none;
}

.LocationStorePage-module__P2XXTG__productsSection {
  gap: 16px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__sectionHeading {
  align-items: baseline;
  gap: 10px;
  display: flex;
}

.LocationStorePage-module__P2XXTG__sectionHeading h2 {
  font-size: 1.12rem;
  font-weight: var(--volera-font-weight-emphasis);
  margin: 0;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__sectionHeading p {
  color: var(--volera-text-muted);
  margin: 0;
  font-size: .88rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__productGrid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.LocationStorePage-module__P2XXTG__productCard {
  background: var(--volera-surface);
  border: 1px solid var(--volera-border-soft);
  border-radius: var(--volera-control-radius-lg);
  box-shadow: var(--volera-header-search-shadow, 0 8px 24px #191e491c,
    0 1px 6px #191e490f);
  gap: 13px;
  padding: 13px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__productMedia {
  aspect-ratio: 1;
  background: var(--volera-surface-soft);
  border-radius: var(--volera-control-radius);
  display: block;
  position: relative;
  overflow: hidden;
}

.LocationStorePage-module__P2XXTG__productImage {
  object-fit: cover;
}

.LocationStorePage-module__P2XXTG__productCopy {
  gap: 3px;
  padding: 0 3px 3px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__productBrand {
  color: var(--volera-text-muted);
  letter-spacing: .01em;
  font-size: .78rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__productName {
  font-size: .95rem;
  font-weight: var(--volera-font-weight-emphasis);
  line-height: 1.35;
}

.LocationStorePage-module__P2XXTG__productMeasure {
  color: var(--volera-text-muted);
  font-size: .82rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__productPrice {
  font-size: .98rem;
  font-weight: var(--volera-font-weight-emphasis);
  margin-top: 5px;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__productStock {
  color: var(--volera-text-muted);
  overflow-wrap: anywhere;
  min-width: 0;
  margin-top: 2px;
  font-size: .78rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__addToCartButton {
  appearance: none;
  background: var(--volera-pink);
  border: 1px solid var(--volera-pink-border);
  border-radius: var(--volera-control-radius-pill);
  color: var(--volera-surface);
  cursor: pointer;
  font-size: .82rem;
  font-weight: var(--volera-font-weight-emphasis);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 36px;
  margin-top: 9px;
  padding: 0 12px;
  line-height: 1.1;
  transition: background-color .15s, border-color .15s, color .15s;
  display: inline-flex;
}

.LocationStorePage-module__P2XXTG__addToCartButton:not(:disabled):hover {
  background: var(--volera-pink-hover);
  border-color: var(--volera-pink-hover);
  color: var(--volera-surface);
}

.LocationStorePage-module__P2XXTG__addToCartButton:disabled {
  background: var(--volera-surface-soft);
  border-color: var(--volera-border-soft);
  color: var(--volera-text-disabled);
  cursor: not-allowed;
}

.LocationStorePage-module__P2XXTG__addToCartButton:focus-visible {
  box-shadow: 0 0 0 3px var(--volera-pink-focus-ring-strong);
  outline: none;
}

.LocationStorePage-module__P2XXTG__cartList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartItem {
  border-bottom: 1px solid var(--volera-border-soft);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartItem:first-child {
  padding-top: 4px;
}

.LocationStorePage-module__P2XXTG__cartItem:last-child {
  border-bottom: 0;
}

.LocationStorePage-module__P2XXTG__cartItemMedia {
  aspect-ratio: 1;
  background: var(--volera-surface-soft);
  border-radius: var(--volera-control-radius);
  width: 64px;
  display: block;
  position: relative;
  overflow: hidden;
}

.LocationStorePage-module__P2XXTG__cartItemCopy {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartItemName {
  font-size: .93rem;
  font-weight: var(--volera-font-weight-emphasis);
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__cartItemMeta {
  color: var(--volera-text-muted);
  overflow-wrap: anywhere;
  min-width: 0;
  font-size: .8rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__cartItemUnitPrice {
  color: var(--volera-text-muted);
  font-size: .82rem;
  line-height: 1.3;
}

.LocationStorePage-module__P2XXTG__cartItemActions {
  place-items: flex-end end;
  gap: 9px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartItemLineTotal {
  font-size: .95rem;
  font-weight: var(--volera-font-weight-emphasis);
  line-height: 1.2;
}

.LocationStorePage-module__P2XXTG__cartStepper {
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.LocationStorePage-module__P2XXTG__stepperButton {
  appearance: none;
  background: var(--volera-surface);
  border: 1px solid var(--volera-border);
  color: var(--volera-text);
  cursor: pointer;
  height: 30px;
  transition: border-color var(--volera-motion-duration-fast)
    var(--volera-motion-ease);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
}

.LocationStorePage-module__P2XXTG__stepperButton:focus-visible {
  box-shadow: 0 0 0 3px var(--volera-pink-focus-ring-strong);
  outline: none;
}

.LocationStorePage-module__P2XXTG__stepperButton:disabled {
  color: var(--volera-text-disabled);
  cursor: not-allowed;
}

.LocationStorePage-module__P2XXTG__stepperValue {
  font-variant-numeric: tabular-nums;
  font-size: .9rem;
  font-weight: var(--volera-font-weight-emphasis);
  text-align: center;
  min-width: 18px;
}

.LocationStorePage-module__P2XXTG__cartEmpty {
  text-align: center;
  justify-items: center;
  gap: 6px;
  padding: 34px 18px;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartEmptyTitle {
  font-size: .98rem;
  font-weight: var(--volera-font-weight-emphasis);
  margin: 0;
}

.LocationStorePage-module__P2XXTG__cartEmptyHint {
  color: var(--volera-text-muted);
  margin: 0;
  font-size: .86rem;
}

.LocationStorePage-module__P2XXTG__cartFooter {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  display: grid;
}

.LocationStorePage-module__P2XXTG__checkoutError {
  color: var(--volera-text);
  grid-column: 1 / -1;
  margin: 0;
  font-size: .82rem;
  line-height: 1.4;
}

.LocationStorePage-module__P2XXTG__cartFooterTotals {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.LocationStorePage-module__P2XXTG__cartFooterMeta {
  color: var(--volera-text-muted);
  font-size: .86rem;
}

.LocationStorePage-module__P2XXTG__cartFooterTotal {
  align-items: baseline;
  gap: 9px;
  display: inline-flex;
}

.LocationStorePage-module__P2XXTG__cartFooterTotal span {
  font-size: .9rem;
}

.LocationStorePage-module__P2XXTG__cartFooterTotal strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  font-weight: var(--volera-font-weight-emphasis);
}

.LocationStorePage-module__P2XXTG__checkoutButton {
  flex: none;
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .LocationStorePage-module__P2XXTG__cartButton:hover, .LocationStorePage-module__P2XXTG__stepperButton:not(:disabled):hover {
    border-color: var(--volera-text);
  }
}

@media (max-width: 599px) {
  .LocationStorePage-module__P2XXTG__productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .LocationStorePage-module__P2XXTG__workplaceAvatar {
    width: 64px;
    height: 64px;
  }

  .LocationStorePage-module__P2XXTG__addToCartButton {
    padding: 0 9px;
    font-size: .78rem;
  }

  .LocationStorePage-module__P2XXTG__cartButton {
    padding: 12px 13px;
  }

  .LocationStorePage-module__P2XXTG__cartCopy {
    display: none;
  }

  .LocationStorePage-module__P2XXTG__cartItemMedia {
    width: 56px;
  }

  .LocationStorePage-module__P2XXTG__cartFooter {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
  }

  .LocationStorePage-module__P2XXTG__checkoutButton {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .LocationStorePage-module__P2XXTG__addToCartButton, .LocationStorePage-module__P2XXTG__cartButton, .LocationStorePage-module__P2XXTG__stepperButton {
    transition: none;
  }
}

/*# sourceMappingURL=app_0qn0ffe._.css.map*/