/* BASIC css start */
/* ======================================================= */
/* ▼▼▼▼▼▼▼▼▼▼ 오늘출발 상품 (PC 버전 사이즈 수정) ▼▼▼▼▼▼▼▼▼▼ */
/* ======================================================= */

/* 전체 박스 디자인 */
#productDetail .today-delivery {
    display: flex;
    align-items: center;
    margin: 15px 0; /* 위아래 여백 줄임 */
    padding: 15px 20px; /* 내부 여백 줄임 */
    border-radius: 10px; /* 모서리 살짝 조정 */
    background: #FCF9F2; /* 따뜻한 크림색 배경 */
    border: 1px solid #EAE1C5; /* 은은한 골드 테두리 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 부드러운 그림자 */
}

/* '오늘출발' 아이콘/텍스트 영역 (왼쪽) */
#productDetail .today-delivery .icon {
    display: block;
    padding-right: 15px; /* 오른쪽 여백 줄임 */
    margin-right: 15px; /* 오른쪽 여백 줄임 */
    border-right: 1px solid #EAE1C5; /* 오른쪽 구분선 */
    font-size: 16px; /* 글씨 크기 조정 */
    font-weight: 700;
    color: #B58411; /* 포인트 골드 색상 */
    white-space: nowrap; /* 줄바꿈 방지 */
}

/* 설명 텍스트 영역 (오른쪽) */
#productDetail .today-delivery .txt {
    padding-left: 0;
    line-height: 1.5; /* 줄간격 조정 */
}

/* "오늘출발 상품!" 제목 글씨 */
#productDetail .today-delivery .txt strong {
    color: #3D2D0C;
    font-size: 15px; /* 글씨 크기 조정 */
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* 안내 문구 */
#productDetail .today-delivery .txt p {
    padding-top: 0;
    font-size: 13px; /* 글씨 크기 조정 */
    font-weight: 400;
    color: #6B5B3B;
    margin: 0;
}


/* BASIC css end */

