/* 푸터 오버레이: 배경처럼 뒤에 보이게 */
.footer-overlay {
  position: fixed;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 20px 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.overlay-text {
  font-size: var(--fs14);
  margin-right: 4rem;
}

.overlay-right {
  position: relative;
}

.bag-number {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #fff;
  font-weight: bold;
}

.footer {
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 20px 20px 0 0;
  max-width: 440px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  z-index: 1;
}

/* 각 아이콘/텍스트 메뉴 (푸터 아이템) */
.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--footer);
  font-size: var(--fs12);
  width: 57px;
}

.footer-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  color: var(--footer);
}

.footer-order {
  position: relative;
  top: -20px;
}

.order-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: #d30000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.order-btn img {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.order-btn::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}

.letter-spa {
  letter-spacing: -1.2px;
  font-weight: 500;
}

.fo-row {
  display: flex;
  align-items: center;
  flex-direction: row;
}
