/* Merged checkout CSS – shared by all checkout templates (demeter, limos, olympus, shop, shop-three, olympus-mv-*). */
/* Loading skeleton: see next-core.css ([data-next-await]). */

/* Option-selector checkmark (shop, limos, information) */
[data-next-bump] [os-component="check"] {
  display: none;
}
[data-next-bump][class*="next-active"] [os-component="check"] {
  display: flex;
}

/* Data-animate wobble (shop, information) */
@keyframes moveRightLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes moveLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

[data-animate="right"] {
  animation: moveRightLeft 1.5s infinite ease-in-out;
}

[data-animate="left"] {
  animation: moveLeftRight 1.5s infinite ease-in-out;
}

/* ========================================
   CHECKOUT HEADER (standardized section)
======================================== */
.checkout-header {
  flex-flow: column;
  align-items: stretch;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
}

.checkout-header .checkout-header__inner {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.checkout-header .checkout-header__inner--center {
  justify-content: center;
}

.checkout-header__brand {
  display: flex;
  align-items: center;
}

.checkout-header__extras {
  display: flex;
  align-items: center;
}

.checkout-header__right {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
  align-items: center;
}

.checkout-header--lg {
  border-bottom: 1px solid #dedede;
  flex-flow: column;
  align-items: stretch;
}

.checkout-header--lg .checkout-header__inner {
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

@media screen and (max-width: 991px) {
  .submit-section--no-margin-top {
    margin-top: 0;
  }

  .checkout-header__inner {
    background-color: #fff;
    align-items: center;
    padding: 0.5rem 0;
  }

  .checkout-header__inner--center {
    padding: 1rem 1.25rem;
  }

  .checkout-header {
    padding-top: 0;
    padding-bottom: 0;
  }

  .checkout-header__right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .checkout-header--lg .checkout-header__inner {
    min-height: 4.5rem;
  }
}

@media screen and (max-width: 767px) {
  .checkout-header__inner--center {
    padding-bottom: 0;
  }

  .checkout-header__right {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
  }
}

/* ========================================
   DROPDOWN COMPONENTS
======================================== */
/* ========================================
   BASE DROPDOWN ELEMENTS
======================================== */
/* Dropdown Container */
os-dropdown {
  display: block;
  position: relative;
}

os-dropdown[open],
.os-card__variant-dropdown-wrapper:has(.show) {
  z-index: 999;
  position: relative;
}

os-dropdown[animate-selection] .os-card__variant-dropdown-toggle {
  overflow: hidden;
}

/* Dropdown Items */
os-dropdown-item {
  display: block;
  cursor: pointer;
}

os-dropdown-item[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

os-dropdown-item.selected,
os-dropdown-item:hover {
  /* Add hover/selected styles here */
}

/* ========================================
   VARIANT DROPDOWN COMPONENTS
======================================== */
/* Dropdown Container */
.os-card__variant-dropdown-component {
  position: relative;
  width: 100%;
}

/* Dropdown Toggle */
.os-card__variant-dropdown-toggle {
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.os-card__variant-dropdown-toggle:hover {
  border-color: #999;
}

.os-card__variant-dropdown-toggle.active,
.dropdown-toggle.active {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

/* Dropdown Icon */
.os-card__variant-dropdown-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.15s ease;
}

.os-card__variant-dropdown-toggle.active .os-card__variant-dropdown-icon,
.dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.os-card__variant-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius--selector);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.95);
  transform-origin: top center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
  overflow: hidden;
}

/* Dropdown List */
.os-card__variant-dropdown-list {
  list-style: none;
  padding: 8px;
}

/* Dropdown Items */
.os-card__variant-dropdown-item {
  border-radius: var(--radius--selector);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.os-card__variant-dropdown-item:hover {
  background-color: #f9f9f9;
}

.os-card__variant-dropdown-item .os-card__toggle-option {
  padding: 0.5rem 0.75rem;
  min-height: 2.5rem;
}

.os-card__variant-dropdown-item.selected .os-card__variant-toggle-name {
  font-weight: 600;
}

/* ========================================
   GENERIC DROPDOWN MENU STYLES
======================================== */
os-dropdown-menu,
.os-dropdown-menu,
[os-element="dropdown-menu"] {
  position: absolute;
  top: initial;
  left: initial;
  right: initial;
  margin-top: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

/* Show States */
os-dropdown-menu.show,
.os-dropdown-menu.show,
[os-element="dropdown-menu"].show,
.os-card__variant-dropdown-menu.show,
.os-card__variant-dropdown-menu-v2.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================================
   DROPDOWN ARROWS & POSITIONING
======================================== */
.dropdown-arrow {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  z-index: -1;
}

os-dropdown-menu.placement-bottom .dropdown-arrow {
  border-left: 0;
  border-top: 0;
  border-right: inherit;
  border-bottom: inherit;
}

os-dropdown-menu.placement-top .dropdown-arrow {
  border-right: 0;
  border-bottom: 0;
  border-left: inherit;
  border-top: inherit;
}

os-dropdown-menu.placement-left .dropdown-arrow {
  border-bottom: 0;
  border-left: 0;
  border-top: inherit;
  border-right: inherit;
}

os-dropdown-menu.placement-right .dropdown-arrow {
  border-top: 0;
  border-right: 0;
  border-bottom: inherit;
  border-left: inherit;
}

/* ========================================
   DROPDOWN CONTENT & ANIMATIONS
======================================== */
.os-dropdown__content {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.os-dropdown__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  transition: transform var(--animation-duration, 0.3s) cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity calc(var(--animation-duration, 0.3s) * 0.67) ease;
  will-change: transform, opacity;
}

/* Animation States */
.os-dropdown__option[data-animating="out"] {
  position: absolute;
  transform: translateY(-100%);
  opacity: 0;
}

.os-dropdown__option[data-animating="in"] {
  transform: translateY(100%);
  opacity: 0;
}

.os-dropdown__option[data-placement="top"][data-animating="out"] {
  transform: translateY(100%);
}

.os-dropdown__option[data-placement="top"][data-animating="in"] {
  transform: translateY(-100%);
}

/* Animation Types */
.os-dropdown__option[data-animation-type="fade"][data-animating="out"],
.os-dropdown__option[data-animation-type="fade"][data-animating="in"] {
  transform: translateY(0);
  opacity: 0;
}

.os-dropdown__option[data-animation-type="scale"][data-animating="out"] {
  transform: scale(0.8);
  opacity: 0;
}

.os-dropdown__option[data-animation-type="scale"][data-animating="in"] {
  transform: scale(1.2);
  opacity: 0;
}

.os-dropdown__option[data-animation-type="slide-fade"][data-animating="out"] {
  transform: translateY(-20px);
  opacity: 0;
}

.os-dropdown__option[data-animation-type="slide-fade"][data-animating="in"] {
  transform: translateY(20px);
  opacity: 0;
}

.os-dropdown__option[data-placement="top"][data-animation-type="slide-fade"][data-animating="out"] {
  transform: translateY(20px);
}

.os-dropdown__option[data-placement="top"][data-animation-type="slide-fade"][data-animating="in"] {
  transform: translateY(-20px);
}


/* ========================================
   UTILITY STYLES
======================================== */
/* Diagonal Strike */
.diagonal-strike {
  position: relative;
  display: inline-block;
}

.diagonal-strike::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid #F20404 !important;
  transform: rotate(-10deg);
  transform-origin: center;
}

/* ========================================
   VARIANT OPTION STATES
======================================== */
/* Size Variant - Out of Stock */
os-dropdown[next-variant-option="size"] os-dropdown-item.next-oos {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Color Variant - Out of Stock */
os-dropdown[next-variant-option="color"] os-dropdown-item.next-oos {
  position: relative;
  overflow: hidden;
}

os-dropdown[next-variant-option="color"] os-dropdown-item.next-oos .os-card__toggle-option {
  opacity: 0.4;
}

os-dropdown[next-variant-option="color"] os-dropdown-item.next-oos::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cline x1='0' y1='0' x2='100' y2='100' stroke='%23666666' stroke-width='1'/%3E%3Cline x1='100' y1='0' x2='0' y2='100' stroke='%23666666' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 640px) {

  os-dropdown-menu,
  [os-element="dropdown-menu"] {
    position: fixed;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

/* ========================================
   ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
  .os-dropdown__option {
    transition-duration: 0.01ms !important;
  }
}

/* Inline style 3 from olympus-mv-full.html */
.three-quarter-spinner {
  animation: spin .9s linear 0s infinite;
}

/* Notification slide-down animation */
@keyframes slideDown {
  from { transform: translateX(-50%) translateY(-100%); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

.three-quarter-spinner.black {
  border-color: #000;
  border-top-color: transparent;
}

/* Step reveal animation (olympus-mv-selection) */
[data-next-component="step-two"].step-revealed {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.next-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.error-highlight {
  animation: errorPulse 0.5s ease-in-out 2;
  border: 2px solid #ff4444 !important;
  background-color: rgba(255, 68, 68, 0.05) !important;
}

@keyframes errorPulse {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-5px); }
  75%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/* Inline style 6 from olympus-mv-full.html */
/* Arrows */
.arrow-active::after,
.arrow-inactive::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-active::after {
  border-color: #000;
}

.arrow-inactive::after {
  border-color: #dadada;
}

/* Swiper sw1: see next-core.css ([data-component="swiper"][data-variant="sw1"]). */

/* Remove the divider on the very last payment-method block */
.payment-methods > .payment-method:last-child {
  border-bottom: 0 !important;
  /* kill the bottom border */
}

/* PayPal and Klarna icons in payment-method */
.payment-method__icon--paypal-logo {
  width: 15px;
}
.payment-method__icon--paypal-txt {
  height: 20px;
}
.payment-method__icon--klarna-logo {
  height: 25px;
}
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem !important;
  right: 0 !important;
  left: auto !important;
  padding: 1px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 52px !important;
  padding-left: 12px !important;
  margin-left: 0 !important;
}

/* ========== Prepurchase upsell (checkout add-on blocks) ========== */
/* Isolated from upsell-page styles so checkout and upsell templates don’t share class names. */

[data-component="prepurchase-upsell"] {
  border: 2px dashed var(--brand--color--primary-dark);
  border-radius: var(--radius--cards);
  position: relative;
  overflow: hidden;
}

[data-component="prepurchase-upsell"].next-active {
  background-color: var(--brand--color--surface);
  -webkit-user-select: none;
  user-select: none;
}

/* check01 / switch: wrapper is the component (container for one or more cards); no dashed border, card has solid border */
[data-component="prepurchase-upsell"][data-variant="check01"],
[data-component="prepurchase-upsell"][data-variant="switch"] {
  border: none;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump-card,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump-card {
  border-radius: var(--radius--cards);
  border: 1px solid #bbb;
  position: relative;
  overflow: hidden;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump-card.next-active,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump-card.next-active {
  background-color: var(--brand--color--surface);
  -webkit-user-select: none;
  user-select: none;
}

[data-component="prepurchase-upsell"] .bump__header {
  background-color: var(--brand--color--surface);
  cursor: pointer;
  flex-flow: column;
  align-items: center;
  padding: .75rem;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__header.next-active {
  background-color: var(--brand--color--primary-light);
}

[data-component="prepurchase-upsell"] .bump__header-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
  position: relative;
}

[data-component="prepurchase-upsell"] .bump__checkbox {
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__title {
  font-weight: 700;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump__checkbox,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump__checkbox {
  width: 1.625rem;
  height: 1.625rem;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump__title,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump__title {
  font-size: var(--font-size--lg);
}

[data-component="prepurchase-upsell"] .bump__arrow {
  color: var(--brand--color--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  position: absolute;
  inset: auto auto auto -2.5rem;
}

[data-component="prepurchase-upsell"] .bump__arrow.bump__arrow--right {
  inset: auto -2.5rem auto auto;
}

[data-component="prepurchase-upsell"] .bump__body {
  padding: 1rem;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump__body,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump__body {
  background-color: #fff;
}

[data-component="prepurchase-upsell"] .bump__content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump__content,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump__content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__content-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: left;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__price {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  font-size: var(--font-size--2xl);
  font-weight: 700;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__price-reg {
  font-weight: 400;
  text-decoration: line-through;
}

[data-component="prepurchase-upsell"] .bump__image {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
}

[data-component="prepurchase-upsell"][data-variant="check01"] .bump__image,
[data-component="prepurchase-upsell"][data-variant="switch"] .bump__image {
  width: 135px;
  min-width: 135px;
  max-width: 135px;
  height: 135px;
  min-height: 135px;
  max-height: 135px;
}

[data-component="prepurchase-upsell"] .bump__description {
  font-size: var(--font-size--sm);
}

[data-component="prepurchase-upsell"] .bump__header-left {
  background-color: var(--brand--color--surface);
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: .75rem;
  display: flex;
}

[data-component="prepurchase-upsell"] .bump__header-left.next-active {
  background-color: var(--brand--color--primary-light);
}

@media (max-width: 767px) {
  [data-component="prepurchase-upsell"] .bump__price {
    font-size: var(--font-size--xl);
  }

  [data-component="prepurchase-upsell"][data-variant="check01"] .bump-card,
  [data-component="prepurchase-upsell"][data-variant="switch"] .bump-card {
    border-radius: .25rem;
  }
}

/* ----- Prepurchase upsell: switch-style variation ----- */
[data-component="prepurchase-upsell"] .bump__head--switch {
  cursor: pointer;
  padding: .75rem;
  background-color: var(--brand--color--surface);
  transition: background-color 0.2s ease;
}

[data-component="prepurchase-upsell"] .bump__head--switch.next-active,
[data-component="prepurchase-upsell"] .bump-card.bump--switch-on .bump__head--switch {
  background-color: var(--brand--color--primary-light);
}

[data-component="prepurchase-upsell"] .bump__head-inner {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-flow: row;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

[data-component="prepurchase-upsell"] .bump__switch {
  position: relative;
  flex: none;
  width: 3.5rem;
  height: 1.75rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

[data-component="prepurchase-upsell"] .bump__switch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: var(--brand--color--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-component="prepurchase-upsell"] [data-next-bump].next-active .bump__switch::before,
[data-component="prepurchase-upsell"] .bump-card.bump--switch-on .bump__switch::before {
  opacity: 1;
}

[data-component="prepurchase-upsell"] .bump__switch-slider {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: translate(0, -50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

[data-component="prepurchase-upsell"] [data-next-bump].next-active .bump__switch-slider,
[data-component="prepurchase-upsell"] .bump__head--switch.next-active .bump__switch-slider,
[data-component="prepurchase-upsell"] .bump-card.bump--switch-on .bump__switch-slider {
  transform: translate(1.75rem, -50%);
}

@media screen and (max-width: 426px) {
  [data-component="prepurchase-upsell"] .bump__switch {
    width: 2.75rem;
    height: 1.375rem;
  }

  [data-component="prepurchase-upsell"] [data-next-bump].next-active .bump__switch-slider,
  [data-component="prepurchase-upsell"] .bump__head--switch.next-active .bump__switch-slider,
  [data-component="prepurchase-upsell"] .bump-card.bump--switch-on .bump__switch-slider {
    transform: translate(1.25rem, -50%);
  }

  [data-component="prepurchase-upsell"] .bump__switch-slider {
    width: 1rem;
    height: 1rem;
    left: 0.2rem;
  }
}

/* Checkout layout: left/right columns (standard), media/form inside */
.checkout-layout__left {
  width: 50%;
  flex: none;
  display: flex;
  flex-flow: column;
}

.checkout-layout__left--narrow {
  width: 538px;
  flex: none;
}

.checkout-layout__left--narrow .checkout-layout__content {
  width: 100%;
}

.checkout-layout__right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.checkout-layout__content {
  flex-flow: column;
  flex: none;
  display: flex;
}

.checkout-layout__content-inner {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 2rem;
}

/* Limos: full-height wrapper and 55/45 column split */
.checkout-wrapper--full-height {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.checkout-layout__left--wide {
  width: 55%;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding-top: 45px;
  padding-bottom: 100px;
}

.checkout-layout__right--sidebar {
  z-index: 1;
  border-left: 1px solid #dedede;
  width: 45%;
  padding-top: 45px;
  padding-left: 1.75rem;
  padding-right: 0;
  display: block;
  position: relative;
}

.checkout-layout__sidebar-bg {
  background-color: var(--brand--color--surface);
  width: 100vw;
  position: absolute;
  inset: 0;
}

@media screen and (max-width: 991px) {
  .checkout-layout__left,
  .checkout-layout__left--narrow,
  .checkout-layout__left--wide {
    width: 100%;
  }

  .checkout-layout__content-inner {
    position: relative;
    top: auto;
  }

  .checkout-wrapper--full-height {
    flex-flow: column wrap;
    justify-content: flex-start;
    max-width: 100%;
    min-height: auto;
  }

  .checkout-layout__left--wide {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .checkout-layout__right--sidebar {
    border-left-style: none;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .checkout-layout__sidebar-bg {
    display: none;
  }
}

.checkout-right__content--sticky {
  top: 2rem;
}

.cart-box--card {
  background-color: #fff;
}

/* ========================================
   CHECKOUT REVIEW – Limos variant (with image)
   Same BEM as olympus (checkout-review__*) with --with-image modifier.
======================================== */
.checkout-review--with-image {
  border-radius: var(--radius--cards);
  background-color: #fff;
  border: 1px solid #ececec;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  padding: 1.5rem;
  display: flex;
}
.checkout-review--with-image .checkout-review__header {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}
.checkout-review--with-image .checkout-review__stars {
  flex-flow: column;
  align-items: flex-start;
  flex: 1;
  display: flex;
}
.checkout-review--with-image .checkout-review__body {
  margin-top: 8px;
  width: 100%;
}
.checkout-review__meta {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: start;
  align-items: center;
  margin-top: 12px;
  font-size: var(--font-size--xs);
  line-height: 1.2;
  display: flex;
}

.checkout-review__body {
  grid-row-gap: 0.5rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.checkout-review--with-image .checkout-review__verified-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  letter-spacing: 0;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

/* ===========================
   Next Modal (generic)
=========================== */
:root {
  --modal-animation-duration: 0.3s;
  --modal-animation-easing: cubic-bezier(0.22, 1, 0.36, 1);
}

.next-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.next-modal.next-modal--open {
  display: block;
}
.next-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--modal-animation-duration) var(--modal-animation-easing);
}
.next-modal.next-modal--open .next-modal__overlay {
  opacity: 1;
}
.next-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #fff;
  color: #111;
  width: min(92vw, 702px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--modal-animation-duration) var(--modal-animation-easing),
    transform var(--modal-animation-duration) var(--modal-animation-easing);
}
.next-modal.next-modal--open .next-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.next-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 42px 10px;
}
.next-modal__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}
.next-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.next-modal__close:hover {
  background: #f3f4f6;
  color: #111;
}
.next-modal__content {
  padding: 16px 20px 20px;
  overflow: auto;
  max-height: calc(90vh - 60px);
}
.next-modal__table {
  width: 100%;
  border-collapse: collapse;
}
.next-modal__table th,
.next-modal__table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
}
.next-modal__table thead th {
  font-weight: 700;
}
.next-modal__subtitle {
  margin: 0 0 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.next-modal__visual {
  margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fafb;
}
.next-modal__visual img {
  display: block;
  width: 100%;
  height: auto;
}
body.next-modal-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .next-modal__dialog {
    width: 94vw;
    max-height: 90vh;
    border-radius: 12px;
  }
  .next-modal__header {
    padding: 22px 22px 10px;
  }
  .next-modal__title {
    font-size: 16px;
  }
  .next-modal__subtitle {
    margin: 0 0 20px;
  }
}