.app-shell {
  position: relative;
}

.customer-cart-shortcut {
  position: absolute;
  top: 16px;
  right: clamp(12px, 4vw, 54px);
  z-index: 12;
  width: 118px;
  display: grid;
  justify-items: center;
  color: #811610;
  text-decoration: none;
  cursor: pointer;
}

.customer-cart-shortcut img {
  width: 104px;
  height: 104px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.customer-cart-shortcut--loaded .customer-cart-preview {
  position: absolute;
  top: 22px;
  left: 54%;
  width: 62px;
  height: 35px;
  display: block;
  transform: translateX(-50%);
  pointer-events: none;
}

.customer-cart-shortcut--loaded .customer-cart-preview img {
  position: absolute;
  left: calc(4px + (var(--item-index) * 15px));
  bottom: calc(1px + (var(--item-index) * 4px));
  width: 26px;
  height: 23px;
  border-radius: 5px;
  object-fit: contain;
}

.customer-cart-shortcut > span:not(.customer-cart-preview) {
  min-width: 102px;
  min-height: 38px;
  margin-top: -13px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(129, 22, 16, 0.2);
  border-radius: 999px;
  background: #fffaf4;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 620px) {
  .customer-cart-shortcut {
    top: 8px;
    right: 8px;
    width: 84px;
  }

  .customer-cart-shortcut img {
    width: 72px;
    height: 72px;
  }

  .customer-cart-shortcut--loaded .customer-cart-preview {
    top: 15px;
    width: 43px;
    height: 24px;
  }

  .customer-cart-shortcut--loaded .customer-cart-preview img {
    left: calc(3px + (var(--item-index) * 10px));
    bottom: calc(1px + (var(--item-index) * 3px));
    width: 18px;
    height: 16px;
    border-radius: 4px;
  }

  .customer-cart-shortcut > span:not(.customer-cart-preview) {
    min-width: 82px;
    min-height: 32px;
    margin-top: -9px;
    padding: 0 9px;
    gap: 4px;
    font-size: 0.78rem;
  }
}
