/*@import "./custom-shop-common.css";*/

.cart-step-main {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-step-main--dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.cart-step-main--light {
  background-color: var(--white);
  color: var(--brand-blue);
}
.cart-step-main-content-wrapper {
  flex-grow: 1;
}

.cart-step-main-content {
  display: grid;
  gap: 16px;
  row-gap: 72px;
  padding: 28px;
}

@media (min-width: 1024px) {
  .cart-step-main-content {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    row-gap: 96px;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .cart-step-main-content {
    row-gap: 120px;
  }
}

/* Step indicator */
.cart-step-main-content-step {
  color: var(--gray-light);
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .cart-step-main-content-step {
    width: 100px;
  }
}

.cart-step-main-content-step::after {
  content: "";
  margin-left: 12px;
  flex: 1;
  height: 1px;
  background-color: var(--gray-dark);
}

.cart-step-nav {
  position: fixed;
  bottom: 120px;
  font-size: var(--font-body-xsmall);
  left: 0;
  background: var(--brand-yellow);
  z-index: 1000;
}

/* Sticky Bottom Bar */
.cart-step-sticky-bottom {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  padding: 20px 0;
  background: var(--dark-bg-50);
  backdrop-filter: blur(10px);
}

.cart-step-sticky-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cart-step-sticky-bottom-content button {
  width: 100%;
}
.cart-step-sticky-bottom-total {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .cart-step-sticky-bottom-content {
    justify-content: flex-end;
  }

  .cart-step-sticky-bottom-content button {
    width: auto;
    min-width: 160px;
  }
  .cart-step-sticky-bottom-total {
    display: none;
  }
}
