/* 삼진 오뎅탕 매운맛 상세 페이지 CSS - B8793-E2612-T0501 */

/* 기본 스타일 및 리셋 */
.B8793-E2612-T0501_wrapper * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.B8793-E2612-T0501_wrapper {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    font-family: 'Noto Sans KR', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* 헤더 섹션 */
.B8793-E2612-T0501_header {
    text-align: center !important;
    margin-bottom: 30px !important;
    background: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.B8793-E2612-T0501_category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    margin-bottom: 15px !important;
}

.B8793-E2612-T0501_title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 10px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.B8793-E2612-T0501_subtitle {
    font-size: 16px !important;
    color: #7f8c8d !important;
    font-weight: 400 !important;
}
/* 메인 이미지 섹션 */
.B8793-E2612-T0501_main-image-section {
    margin-bottom: 30px !important;
    text-align: center !important;
}

.B8793-E2612-T0501_main-image {
    width: 100% !important;
    max-width: 600px !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
}

.B8793-E2612-T0501_main-image:hover {
    transform: scale(1.02) !important;
}

/* 정보 카드 섹션 */
.B8793-E2612-T0501_info-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
}

.B8793-E2612-T0501_info-card {
    background: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.B8793-E2612-T0501_info-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.B8793-E2612-T0501_card-icon {
    font-size: 32px !important;
    margin-bottom: 10px !important;
}

.B8793-E2612-T0501_card-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 8px !important;
}

.B8793-E2612-T0501_card-content {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.4 !important;
}
/* 섹션 제목 공통 스타일 */
.B8793-E2612-T0501_section-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    font-family: 'Noto Serif KR', serif !important;
}

/* 특징 섹션 */
.B8793-E2612-T0501_features {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.B8793-E2612-T0501_feature-list {
    display: grid !important;
    gap: 15px !important;
}

.B8793-E2612-T0501_feature-item {
    display: flex !important;
    align-items: center !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    transition: transform 0.3s ease !important;
}

.B8793-E2612-T0501_feature-item:hover {
    transform: translateX(10px) !important;
}

.B8793-E2612-T0501_feature-icon {
    font-size: 24px !important;
    margin-right: 15px !important;
}

.B8793-E2612-T0501_feature-text {
    font-size: 16px !important;
}
/* 갤러리 섹션 */
.B8793-E2612-T0501_gallery {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.B8793-E2612-T0501_gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
}

.B8793-E2612-T0501_gallery-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.B8793-E2612-T0501_gallery-image:hover {
    transform: scale(1.05) !important;
}

/* 조리 방법 섹션 */
.B8793-E2612-T0501_cooking {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.B8793-E2612-T0501_cooking-steps {
    display: grid !important;
    gap: 20px !important;
}

.B8793-E2612-T0501_step {
    display: flex !important;
    align-items: center !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 10px !important;
}

.B8793-E2612-T0501_step-number {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
}

.B8793-E2612-T0501_step-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
}
/* 리뷰 섹션 */
.B8793-E2612-T0501_reviews {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.B8793-E2612-T0501_review-list {
    display: grid !important;
    gap: 20px !important;
}

.B8793-E2612-T0501_review-item {
    padding: 20px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    background: #f8f9fa !important;
    transition: border-color 0.3s ease !important;
}

.B8793-E2612-T0501_review-item:hover {
    border-color: #667eea !important;
}

.B8793-E2612-T0501_review-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.B8793-E2612-T0501_reviewer {
    font-weight: 600 !important;
    color: #2c3e50 !important;
}

.B8793-E2612-T0501_rating {
    font-size: 16px !important;
}

.B8793-E2612-T0501_review-text {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin-bottom: 10px !important;
}

.B8793-E2612-T0501_review-date {
    font-size: 12px !important;
    color: #999 !important;
    text-align: right !important;
}
/* 푸터 섹션 */
.B8793-E2612-T0501_footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    text-align: center !important;
}

.B8793-E2612-T0501_company-name {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #ecf0f1 !important;
}

.B8793-E2612-T0501_company-details {
    margin-bottom: 20px !important;
}

.B8793-E2612-T0501_info-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}

.B8793-E2612-T0501_info-label {
    font-weight: 600 !important;
    margin-right: 10px !important;
    color: #bdc3c7 !important;
}

.B8793-E2612-T0501_info-value {
    color: #ecf0f1 !important;
}

.B8793-E2612-T0501_footer-message {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #f39c12 !important;
}
/* 반응형 디자인 - 모바일 */
@media (max-width: 768px) {
    .B8793-E2612-T0501_wrapper {
        padding: 15px !important;
        margin: 10px !important;
    }

    .B8793-E2612-T0501_title {
        font-size: 24px !important;
    }

    .B8793-E2612-T0501_subtitle {
        font-size: 14px !important;
    }

    .B8793-E2612-T0501_info-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .B8793-E2612-T0501_gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .B8793-E2612-T0501_gallery-image {
        height: 150px !important;
    }

    .B8793-E2612-T0501_step {
        flex-direction: column !important;
        text-align: center !important;
    }

    .B8793-E2612-T0501_step-number {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    .B8793-E2612-T0501_info-item {
        flex-direction: column !important;
        margin-bottom: 12px !important;
    }

    .B8793-E2612-T0501_info-label {
        margin-right: 0 !important;
        margin-bottom: 5px !important;
    }
}

/* 태블릿 */
@media (max-width: 1024px) {
    .B8793-E2612-T0501_wrapper {
        margin: 15px !important;
    }

    .B8793-E2612-T0501_title {
        font-size: 28px !important;
    }

    .B8793-E2612-T0501_info-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}