/* BASIC css start */
/* 1. 안내 박스 - 전체적으로 큼직하게 */
.price-notice-container-big {
    margin-top: 20px;
    padding: 18px 25px; /* 여백을 넉넉하게 */
    background-color: #f8f8f8; /* 아주 연한 회색 */
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.price-notice-text-big {
    font-size: 16px; /* 글자 크기 확대 (기존 13px) */
    color: #333;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.info-icon-big {
    color: #4a90e2;
    font-size: 20px; /* 아이콘 크기 확대 */
    font-weight: bold;
    margin-right: 8px;
    vertical-align: middle;
}

.btn-detail-link {
    color: #000;
    text-decoration: underline;
    margin-left: 10px;
    font-weight: bold;
    font-size: 15px;
}

/* 팝업창 - 텍스트 왼쪽 정렬 적용 */
.price-detail-layer-big {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 380px; /* 폭을 조금 더 넓게 잡아 여유를 줬습니다 */
    background: #fff;
    border: 2px solid #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    /* 팝업 자체의 기본 정렬을 왼쪽으로 설정 */
    text-align: left !important; 
}

.popup-content-big {
    padding: 25px;
}

.popup-content-big h4 {
    font-size: 19px;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    text-align: left; /* 제목도 왼쪽 정렬 */
    font-weight: bold;
}

.popup-text-area p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left; /* 본문 왼쪽 정렬 */
}

.popup-text-area ul {
    margin: 15px 0;
    padding-left: 20px; /* 리스트 점이 보일 수 있게 여백 확보 */
    text-align: left; /* 리스트 왼쪽 정렬 */
}

.popup-text-area ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    list-style-type: disc; /* 불렛 포인트 추가 */
}

.close-popup-big {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 0;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center; /* 버튼 글씨는 가운데가 예뻐서 유지했습니다 */
}
/* BASIC css end */

