/* COOKZZANG Mall 상세페이지 CSS - N9270-C6222-W4792 */
/* 모든 스타일은 상품별로 스코프가 제한되어 다른 페이지에 영향을 주지 않습니다 */

/* 기본 리셋 및 컨테이너 */
.N9270-C6222-W4792_wrapper * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.N9270-C6222-W4792_wrapper {
    font-family: 'Noto Sans KR', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: #fff !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.N9270-C6222-W4792_container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* 메인 히어로 섹션 */
.N9270-C6222-W4792_hero-section {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4) !important;
    color: white !important;
    padding: 60px 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.N9270-C6222-W4792_hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.1) !important;
    z-index: 1 !important;
}

.N9270-C6222-W4792_hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.N9270-C6222-W4792_badge {
    display: inline-block !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(10px) !important;
}

.N9270-C6222-W4792_title {
    font-family: 'Noto Serif KR', serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.N9270-C6222-W4792_subtitle {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    opacity: 0.9 !important;
}

.N9270-C6222-W4792_price-box {
    background: rgba(255,255,255,0.15) !important;
    padding: 20px 30px !important;
    border-radius: 15px !important;
    display: inline-block !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.N9270-C6222-W4792_price {
    font-size: 32px !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.N9270-C6222-W4792_price-desc {
    font-size: 14px !important;
    opacity: 0.8 !important;
}
/* 섹션 공통 스타일 */
.N9270-C6222-W4792_features-section,
.N9270-C6222-W4792_usage-section,
.N9270-C6222-W4792_info-section,
.N9270-C6222-W4792_tips-section,
.N9270-C6222-W4792_story-section {
    padding: 60px 0 !important;
}

.N9270-C6222-W4792_section-title {
    font-family: 'Noto Serif KR', serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    color: #2c3e50 !important;
    position: relative !important;
}

.N9270-C6222-W4792_section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4) !important;
    border-radius: 2px !important;
}

/* 특징 카드 그리드 */
.N9270-C6222-W4792_features-section {
    background: #f8f9fa !important;
}

.N9270-C6222-W4792_features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
}

.N9270-C6222-W4792_feature-card {
    background: white !important;
    padding: 30px 25px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid #e8ecef !important;
}

.N9270-C6222-W4792_feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.N9270-C6222-W4792_feature-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.N9270-C6222-W4792_feature-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #2c3e50 !important;
}

.N9270-C6222-W4792_feature-desc {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}
/* 활용법 섹션 */
.N9270-C6222-W4792_usage-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
}

.N9270-C6222-W4792_usage-item {
    display: flex !important;
    align-items: center !important;
    background: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease !important;
}

.N9270-C6222-W4792_usage-item:hover {
    transform: translateY(-3px) !important;
}

.N9270-C6222-W4792_usage-emoji {
    font-size: 40px !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
}

.N9270-C6222-W4792_usage-text h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    color: #2c3e50 !important;
}

.N9270-C6222-W4792_usage-text p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.4 !important;
}

/* 제품 정보 테이블 */
.N9270-C6222-W4792_info-section {
    background: #f8f9fa !important;
}

.N9270-C6222-W4792_info-table {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.N9270-C6222-W4792_info-row {
    display: flex !important;
    border-bottom: 1px solid #e8ecef !important;
}

.N9270-C6222-W4792_info-row:last-child {
    border-bottom: none !important;
}

.N9270-C6222-W4792_info-label {
    background: #f8f9fa !important;
    padding: 20px 25px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    width: 200px !important;
    flex-shrink: 0 !important;
    border-right: 1px solid #e8ecef !important;
}

.N9270-C6222-W4792_info-value {
    padding: 20px 25px !important;
    color: #555 !important;
    flex: 1 !important;
}
/* 사용법 팁 섹션 */
.N9270-C6222-W4792_tips-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 25px !important;
}

.N9270-C6222-W4792_tip-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 25px !important;
    border-radius: 15px !important;
    position: relative !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3) !important;
}

.N9270-C6222-W4792_tip-number {
    position: absolute !important;
    top: -15px !important;
    left: 25px !important;
    background: #ff6b6b !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.N9270-C6222-W4792_tip-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-top: 10px !important;
}

/* 스토리 섹션 */
.N9270-C6222-W4792_story-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

.N9270-C6222-W4792_story-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.N9270-C6222-W4792_story-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 30px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N9270-C6222-W4792_story-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin-bottom: 25px !important;
    text-align: left !important;
}

.N9270-C6222-W4792_story-text:last-child {
    margin-bottom: 0 !important;
}
/* 푸터 섹션 */
.N9270-C6222-W4792_footer {
    background: #2c3e50 !important;
    color: white !important;
    padding: 50px 0 30px !important;
}

.N9270-C6222-W4792_footer-content {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 40px !important;
    margin-bottom: 30px !important;
}

.N9270-C6222-W4792_footer-logo h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #4ecdc4 !important;
}

.N9270-C6222-W4792_footer-logo p {
    font-size: 16px !important;
    opacity: 0.8 !important;
}

.N9270-C6222-W4792_footer-info {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
}

.N9270-C6222-W4792_footer-section h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #4ecdc4 !important;
}

.N9270-C6222-W4792_footer-section p {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    opacity: 0.9 !important;
}

.N9270-C6222-W4792_footer-bottom {
    text-align: center !important;
    padding-top: 30px !important;
    border-top: 1px solid #34495e !important;
}

.N9270-C6222-W4792_footer-bottom p {
    font-size: 14px !important;
    opacity: 0.7 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .N9270-C6222-W4792_container {
        padding: 0 15px !important;
    }
    
    .N9270-C6222-W4792_title {
        font-size: 28px !important;
    }
    
    .N9270-C6222-W4792_subtitle {
        font-size: 16px !important;
    }
    
    .N9270-C6222-W4792_price {
        font-size: 24px !important;
    }
    
    .N9270-C6222-W4792_section-title {
        font-size: 24px !important;
    }
    
    .N9270-C6222-W4792_features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .N9270-C6222-W4792_usage-grid {
        grid-template-columns: 1fr !important;
    }
    
    .N9270-C6222-W4792_info-row {
        flex-direction: column !important;
    }
    
    .N9270-C6222-W4792_info-label {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #e8ecef !important;
    }
    
    .N9270-C6222-W4792_tips-grid {
        grid-template-columns: 1fr !important;
    }
    
    .N9270-C6222-W4792_footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .N9270-C6222-W4792_footer-info {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .N9270-C6222-W4792_story-heading {
        font-size: 20px !important;
    }
    
    .N9270-C6222-W4792_story-text {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .N9270-C6222-W4792_hero-section {
        padding: 40px 0 !important;
    }
    
    .N9270-C6222-W4792_title {
        font-size: 24px !important;
    }
    
    .N9270-C6222-W4792_features-section,
    .N9270-C6222-W4792_usage-section,
    .N9270-C6222-W4792_info-section,
    .N9270-C6222-W4792_tips-section,
    .N9270-C6222-W4792_story-section {
        padding: 40px 0 !important;
    }
}