.surpriseConsent {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(41, 20, 57, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 60px rgba(41, 20, 57, .22);
  color: #24152e;
  font: 500 14px/1.45 Arial, sans-serif;
  backdrop-filter: blur(16px);
}

.surpriseConsent[hidden] {
  display: none;
}

.surpriseConsent strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.surpriseConsent p {
  margin: 0;
  color: #695b72;
}

.surpriseConsent__actions {
  display: flex;
  gap: 8px;
}

.surpriseConsent button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #2b1735;
  border-radius: 999px;
  background: #fff;
  color: #2b1735;
  font: 700 13px/1 Arial, sans-serif;
  cursor: pointer;
}

.surpriseConsent button[data-consent="accept"] {
  background: #2b1735;
  color: #fff;
}

.orderSummary {
  width: 100%;
}

.orderPanel {
  --order-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --order-duration-fast: 160ms;
  --order-duration-standard: 220ms;
}

.orderPanel.hasSelection {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1fr) minmax(226px, 270px);
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(33, 20, 39, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 61, 130, .07), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fffaf3 100%);
  box-shadow:
    0 0 0 6px #eaf8ef,
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 20px 48px rgba(50, 26, 58, .13);
}

.orderPanel.hasSelection::before {
  position: absolute;
  z-index: -1;
  inset: 5px;
  border: 1px solid rgba(33, 20, 39, .06);
  border-radius: 22px;
  pointer-events: none;
  content: "";
}

.multiOrderSummary {
  display: grid;
  width: 100%;
  gap: 12px;
}

.selectedOrderHeader {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selectedOrderStatus {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid rgba(23, 168, 91, .24);
  border-radius: 50%;
  background: #eaf8ef;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.selectedOrderHeader > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.selectedOrderHeader small {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selectedOrderHeader strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.selectedBoxList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-height: 236px;
  padding: 2px 6px 6px 2px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(33, 20, 39, .22) transparent;
  scrollbar-width: thin;
}

.selectedBoxRow {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #eadce7;
  border-color: color-mix(in srgb, var(--box-accent) 25%, #eadce7);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 5px 14px rgba(33, 20, 39, .055);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    transform var(--order-duration-standard) var(--order-ease-out),
    opacity var(--order-duration-fast) var(--order-ease-out);
}

.selectedBoxRow::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--box-accent);
  content: "";
}

.selectedBoxRow.is-entering {
  opacity: 0;
  transform: translateY(8px) scale(.97);
}

.selectedBoxRow.is-exiting {
  opacity: 0;
  transform: translateY(-6px) scale(.97);
}

.orderSummary .selectedBoxRow img {
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--box-accent) 28%, #fff);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(33, 20, 39, .1);
  object-fit: cover;
}

.selectedBoxCopy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.selectedBoxCopy strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selectedBoxMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.selectedBoxMeta > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.selectedBoxMeta > span b {
  font-size: 12px;
}

.selectedBoxQuantity {
  display: inline-grid;
  flex: 0 0 auto;
  grid-template-columns: 26px minmax(24px, auto) 26px;
  align-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--box-accent) 24%, #ded2dc);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(33, 20, 39, .055);
}

.selectedBoxQuantity button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: color-mix(in srgb, var(--box-accent) 9%, #f8f3f7);
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--order-duration-fast) ease,
    color var(--order-duration-fast) ease,
    transform var(--order-duration-fast) var(--order-ease-out);
}

.selectedBoxQuantity output {
  min-width: 24px;
  padding: 0 3px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 26px;
  text-align: center;
}

.selectedBoxQuantity button:disabled {
  color: rgba(33, 20, 39, .28);
  cursor: default;
}

.selectedBoxRemove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--order-duration-fast) var(--order-ease-out),
    background-color var(--order-duration-fast) ease,
    color var(--order-duration-fast) ease;
}

.selectedOrderTotal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(33, 20, 39, .14);
}

.selectedOrderTotal > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selectedOrderTotal strong {
  color: var(--ink);
  font-size: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.selectedOrderTotal strong b {
  font-size: 27px;
  letter-spacing: -.04em;
}

.selectedOrderTotal strong small {
  margin-left: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
}

.orderPanel.hasSelection .orderAction {
  align-self: stretch;
  align-content: center;
  justify-items: stretch;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(33, 20, 39, .1);
}

.orderPanel.hasSelection .orderAction button {
  width: 100%;
  min-height: 64px;
  border-radius: 18px;
  box-shadow:
    0 10px 20px rgba(207, 21, 88, .22),
    0 1px 0 rgba(255, 255, 255, .22) inset;
  transition:
    transform var(--order-duration-fast) var(--order-ease-out),
    background-color var(--order-duration-fast) ease;
}

.orderPanel.hasSelection .orderAction button b {
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 3px 10px rgba(80, 12, 44, .13);
  transition: transform var(--order-duration-fast) var(--order-ease-out);
}

.selectedBoxRemove:active,
.selectedBoxQuantity button:not(:disabled):active,
.orderPanel.hasSelection .orderAction button:active {
  transform: scale(.97);
}

.selectedBoxRemove:focus-visible,
.selectedBoxQuantity button:focus-visible,
.orderPanel.hasSelection .orderAction button:focus-visible {
  outline: 3px solid rgba(111, 84, 239, .34);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .selectedBoxRow:hover {
    border-color: color-mix(in srgb, var(--box-accent) 45%, #eadce7);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .9) inset,
      0 9px 22px rgba(33, 20, 39, .09);
  }

  .selectedBoxRemove:hover {
    background: var(--pink-dark);
  }

  .selectedBoxQuantity button:not(:disabled):hover {
    background: var(--box-accent);
    color: #fff;
  }

  .orderPanel.hasSelection .orderAction button:hover {
    transform: translateY(-2px);
    box-shadow:
      0 13px 25px rgba(207, 21, 88, .26),
      0 1px 0 rgba(255, 255, 255, .22) inset;
  }

  .orderPanel.hasSelection .orderAction button:hover b {
    transform: translateX(2px);
  }
}

@media (min-width: 761px) {
  .faqSection > .sectionHeading,
  .faqSection > .faqList {
    width: min(100%, 980px);
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .orderPanel.hasSelection {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
  }

  .orderPanel.hasSelection .orderAction {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(33, 20, 39, .1);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .surpriseConsent {
    bottom: 84px;
    grid-template-columns: 1fr;
  }

  .surpriseConsent__actions,
  .surpriseConsent button {
    width: 100%;
  }

  .selectedBoxList {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .selectedBoxRow,
  .selectedBoxRemove,
  .selectedBoxQuantity button,
  .orderPanel.hasSelection .orderAction button,
  .orderPanel.hasSelection .orderAction button b {
    transform: none !important;
  }

  .selectedBoxRow {
    transition: opacity 160ms ease !important;
  }

  .selectedBoxRemove,
  .selectedBoxQuantity button,
  .orderPanel.hasSelection .orderAction button {
    transition:
      color 160ms ease,
      background-color 160ms ease !important;
  }

  .orderPanel.hasSelection .orderAction button b {
    transition: none !important;
  }
}
