/* 일일투어/개별상품 페이지 스타일 */

/* 목록 페이지 스타일 */
.day-tours-list {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* 상품 카드 스타일 */
.tour-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-image .no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

.tour-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff6b6b;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
}

.tour-type-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(13, 110, 253, 0.9);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
}

.tour-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.tour-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    color: #666;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.tour-meta i {
    margin-right: 5px;
    color: #0d6efd;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.feature-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #6c757d;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 400;
    border: 1px solid #e9ecef;
}

.tour-desc {
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.tour-price {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.tour-price .price {
    font-size: 1rem;
    font-weight: bold;
    color: #0d6efd;
    display: block;
}

.tour-price small {
    display: block;
    color: #666;
    font-size: 0.7rem;
    margin-top: 3px;
}

.btn-more {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: #0d6efd;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-more:hover {
    background: #0b5ed7;
    color: #fff;
}

/* 상세 페이지 스타일 */
.day-tour-detail {
    padding-bottom: 50px;
}

/* 상품 헤더 */
.tour-header {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-bottom: 50px;
}

.tour-info {
    padding-right: 30px;
}

.tour-info .tour-type-badge {
    position: static;
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    margin-right: 10px;
}

.tour-info .tour-tag {
    position: static;
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tour-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.tour-info .tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
}

.tour-info .tour-meta span i {
    margin-right: 5px;
    color: #0d6efd;
}

.tour-info .tour-price {
    margin-top: 30px;
}

.tour-info .tour-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    display: block;
}

.tour-info .tour-price small {
    color: #666;
    font-size: 0.9rem;
}

.tour-header .tour-image {
    position: relative;
    height: auto;
    max-height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.tour-header .tour-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.tour-header .tour-image .no-image {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 4rem;
    border-radius: 10px;
}

/* 컨텐츠 박스 */
.content-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.content-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.description {
    line-height: 1.5;
    color: #555;
}

.description p {
    margin-bottom: 0.75rem;
}

.description img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
}

/* 포함/불포함 사항 */
.include-list, .exclude-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.include-list li, .exclude-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.include-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.exclude-list li:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #dc3545;
    position: absolute;
    left: 0;
}

.notice-content {
    line-height: 1.5;
    color: #555;
}

.notice-content p {
    margin-bottom: 0.75rem;
}

/* 상세 설명/일정 영역 줄간격 조정 (한글 주석) */
.details-content {
    line-height: 1.5;
    color: #555;
}

.details-content p {
    margin-bottom: 0.75rem;
}

/* 모달 내 포함/불포함 사항 줄간격 조정 (한글 주석) */
.booking-label {
    /* 포함/불포함 제목은 상품 타이틀보다 살짝 약하게 표시 (한글 주석) */
    font-weight: 500;
    font-size: 0.8rem;
}

.booking-inclusions p,
.booking-exclusions p {
    margin-bottom: 0.25rem !important;
}

.booking-inclusions li,
.booking-exclusions li {
    margin-bottom: 0.25rem;
}

/* 사이드바 */
.sidebar {
    position: sticky;
    top: 20px;
}

.booking-box, .info-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-box h3, .info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    color: #0d6efd;
    margin-right: 10px;
    width: 20px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #666;
}

.info-box li:last-child {
    border-bottom: none;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .tour-header {
        text-align: center;
        padding: 30px 0;
    }

    .tour-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .tour-info .tour-meta {
        justify-content: center;
    }

    .content-box {
        padding: 20px;
    }

    .tour-image {
        height: 200px;
    }

    .section-header h1 {
        font-size: 2rem;
    }
}

