/* BASIC css start */
/* ======================================================= */
/* ▼▼▼▼▼▼▼▼▼▼ 오늘출발 상품 (최종 수정) ▼▼▼▼▼▼▼▼▼▼ */
/* ======================================================= */

/* 전체 박스 디자인 */
.shopdetail .today-delivery {
  display: flex;
  align-items: center;
  margin: 15px 15px 20px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #FCF9F2;
  border: 1px solid #EAE1C5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* '오늘출발' 아이콘/텍스트 영역 (왼쪽) */
.shopdetail .today-delivery .icon {
  display: block;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #EAE1C5;
  font-size: 1.1em;
  font-weight: 700;
  color: #B58411;
  white-space: nowrap;
}

/* ▼▼▼▼▼▼▼▼▼▼ 텍스트 좌측 정렬 수정 ▼▼▼▼▼▼▼▼▼▼ */
/* 설명 텍스트 영역 (오른쪽) */
.shopdetail .today-delivery .txt {
  padding-left: 0;
  color: #3D2D0C;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.4;
  text-align: left; /* ★★★ 텍스트를 왼쪽으로 정렬합니다 ★★★ */
}
/* ▲▲▲▲▲▲▲▲▲▲ 수정 완료! ▲▲▲▲▲▲▲▲▲▲ */


/* "오후 3시 이전..." 안내 문구 */
.shopdetail .today-delivery .txt p {
  padding-top: 5px;
  font-size: 0.9em;
  font-weight: 400;
  color: #6B5B3B;
}

/* '오늘 출발' 박스 내부의 불필요한 선(line) 제거 */
.shopdetailInfoValue .today-delivery .txt strong {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.shopdetailInfoValue .today-delivery .txt strong::after {
  display: none !important;
}

/* ▼▼▼▼▼▼▼▼▼▼ 바로 이 코드가 박스 바깥의 선을 없애줍니다! ▼▼▼▼▼▼▼▼▼▼ */
.shopdetailInfoValue .today-delivery + .subname,
.shopdetailInfoValue .today-delivery + .p-price {
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 20px !important;
}
/* ▲▲▲▲▲▲▲▲▲▲ 수정 완료! ▲▲▲▲▲▲▲▲▲▲ */
/* BASIC css end */

