body {
  background: #f0f1f3;
}

.cart-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: #f0f1f3;
}

.cart-shell--checkout {
  padding-bottom: calc(236px + var(--safe-bottom));
}

.cart-shell--manage {
  padding-bottom: calc(96px + var(--safe-bottom));
}

.cart-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(240, 241, 243, 0.98);
  box-shadow: none;
}

.cart-header .sub-header {
  box-shadow: none;
}

.cart-header .sub-header__back {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: 4px;
  color: transparent;
  font-size: 0;
}

.cart-header .sub-header__back::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #2b2b2b;
  border-bottom: 2px solid #2b2b2b;
  transform: rotate(45deg);
}

.cart-header strong {
  color: #2a2a2a;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}

.cart-header__manage {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.cart-main {
  padding: 14px 14px 28px;
}

.cart-store {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.cart-store + .cart-store {
  margin-top: 20px;
}

.cart-store__head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px 4px;
}

.cart-store__head strong {
  color: #2b2b2b;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}

.cart-store__list {
  padding: 0 16px 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 42px 96px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 16px 0 18px;
}

.cart-item + .cart-item {
  border-top: 1px solid rgba(32, 34, 36, 0.08);
}

.cart-check-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 21px;
}

.cart-check-wrap--item {
  padding-top: 22px;
}

.cart-check {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
}

.cart-check.is-checked {
  border-color: #006843;
  background: #006843;
}

.cart-check.is-checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.cart-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-top: 2px;
  border-radius: 14px;
  background: #f7f7f7;
}

.cart-item__media img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.cart-item__body {
  min-width: 0;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__title {
  display: -webkit-box;
  overflow: hidden;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item__price {
  flex: 0 0 auto;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.cart-item__spec {
  margin-top: 6px;
  color: #a2a8b1;
  font-size: 13px;
  line-height: 18px;
}

.cart-item__qty {
  margin-top: 10px;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: repeat(3, 52px);
  overflow: hidden;
  border: 1px solid rgba(32, 34, 36, 0.16);
  border-radius: 8px;
  background: #fff;
}

.cart-qty button,
.cart-qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  color: #2b2b2b;
}

.cart-qty button {
  font-size: 18px;
  line-height: 1;
}

.cart-qty span {
  border-left: 1px solid rgba(32, 34, 36, 0.12);
  border-right: 1px solid rgba(32, 34, 36, 0.12);
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
}

.cart-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #b2b8c0;
  font-size: 12px;
  line-height: 17px;
}

.cart-recommend {
  padding-top: 38px;
}

.cart-recommend__head h2 {
  color: #2b2b2b;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.cart-recommend__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.cart-product-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.cart-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  padding: 18px;
  background: #fff;
}

.cart-product-card__media img {
  width: 100%;
  height: 152px;
  object-fit: contain;
}

.cart-product-card__body {
  padding: 8px 14px 16px;
}

.cart-product-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.cart-product-card__price strong {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.cart-product-card__price del {
  color: #b2b8c0;
  font-size: 12px;
  line-height: 17px;
}

.cart-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: #b2b8c0;
  font-size: 12px;
  line-height: 17px;
}

.cart-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid rgba(32, 34, 36, 0.12);
}

.cart-footer__inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 12px 14px calc(10px + var(--safe-bottom));
}

.cart-footer__ship {
  color: #2b2b2b;
  font-size: 12px;
  line-height: 17px;
}

.cart-footer__delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #2b2b2b;
  font-size: 12px;
  line-height: 17px;
}

.cart-footer__delivery-label {
  position: relative;
  padding-left: 24px;
  color: #8b929b;
}

.cart-footer__delivery-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 14px;
  border: 2px solid #8b929b;
  border-radius: 2px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-sizing: border-box;
}

.cart-footer__delivery-label::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-right: 2px solid #8b929b;
  border-bottom: 2px solid #8b929b;
  transform: rotate(-45deg);
}

.cart-footer__address {
  margin-top: 8px;
  color: #8b929b;
  font-size: 12px;
  line-height: 17px;
}

.cart-footer__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.cart-check-wrap--footer {
  min-height: 44px;
  font-size: 14px;
}

.cart-footer__summary {
  text-align: center;
}

.cart-footer__summary span {
  color: #2b2b2b;
  font-size: 14px;
  line-height: 20px;
}

.cart-footer__summary strong {
  display: block;
  margin-top: 2px;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.cart-footer__summary del {
  display: block;
  margin-top: 2px;
  color: #b2b8c0;
  font-size: 11px;
  line-height: 16px;
}

.cart-footer__cta,
.cart-footer__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.cart-footer__cta {
  background: #006843;
  color: #fff;
}

.cart-footer__ghost {
  background: #f4f5f6;
  color: #2b2b2b;
}

.cart-footer__cta--danger {
  min-width: 122px;
}

.cart-footer--manage .cart-footer__inner {
  padding-top: 14px;
}

.cart-footer__bar--manage {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.cart-footer__bar--manage .cart-footer__ghost {
  justify-self: end;
  min-width: 128px;
}

.cart-footer__bar--manage .cart-footer__cta {
  min-width: 122px;
}

@media (max-width: 359px) {
  .cart-main {
    padding-inline: 10px;
  }

  .cart-store__head,
  .cart-store__list {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cart-item {
    grid-template-columns: 34px 88px minmax(0, 1fr);
  }

  .cart-item__media {
    width: 76px;
    height: 76px;
  }

  .cart-item__media img {
    width: 62px;
    height: 62px;
  }

  .cart-qty {
    grid-template-columns: repeat(3, 44px);
  }

  .cart-product-card__media {
    min-height: 164px;
  }

  .cart-product-card__media img {
    height: 132px;
  }

  .cart-footer__inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cart-footer__bar {
    gap: 8px;
  }

  .cart-footer__cta,
  .cart-footer__ghost {
    padding-inline: 18px;
    font-size: 15px;
  }

  .cart-footer__bar--manage {
    grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1fr);
  }

  .cart-footer__bar--manage .cart-footer__ghost,
  .cart-footer__bar--manage .cart-footer__cta {
    min-width: 0;
  }
}
