/* 헌트 토마토 홀 2.89kg 상품 상세 페이지 CSS */
/* 모든 스타일은 N7456-F7798-H1066_wrapper 내에서만 적용되도록 스코프 제한 */

/* 기본 설정 및 리셋 */
.N7456-F7798-H1066_wrapper * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.N7456-F7798-H1066_wrapper {
    font-family: 'Noto Sans KR', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
}

/* 컨테이너 공통 스타일 */
.N7456-F7798-H1066_container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* 메인 헤더 섹션 */
.N7456-F7798-H1066_main-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%) !important;
    color: white !important;
    padding: 60px 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.N7456-F7798-H1066_main-header::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') !important;
    animation: float 6s ease-in-out infinite !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0) !important; }
    50% { transform: translateY(-10px) !important; }
}

.N7456-F7798-H1066_hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.N7456-F7798-H1066_product-badge {
    margin-bottom: 20px !important;
}

.N7456-F7798-H1066_category-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-right: 10px !important;
    display: inline-block !important;
    backdrop-filter: blur(10px) !important;
}

.N7456-F7798-H1066_subcategory-tag {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: inline-block !important;
    backdrop-filter: blur(10px) !important;
}
.N7456-F7798-H1066_product-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N7456-F7798-H1066_product-subtitle {
    font-size: 18px !important;
    font-weight: 400 !important;
    opacity: 0.9 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* 이미지 갤러리 섹션 */
.N7456-F7798-H1066_image-gallery {
    padding: 80px 0 !important;
    background: #ffffff !important;
}

.N7456-F7798-H1066_gallery-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 30px !important;
    align-items: start !important;
}

.N7456-F7798-H1066_main-image {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2) !important;
    transition: transform 0.3s ease !important;
}

.N7456-F7798-H1066_main-image:hover {
    transform: translateY(-5px) !important;
}

.N7456-F7798-H1066_secondary-image {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.N7456-F7798-H1066_secondary-image:hover {
    transform: scale(1.02) !important;
}
.N7456-F7798-H1066_product-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

.N7456-F7798-H1066_image-overlay {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
}

.N7456-F7798-H1066_quality-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    color: #333 !important;
    padding: 10px 16px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

/* 제품 정보 섹션 */
.N7456-F7798-H1066_product-info {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%) !important;
}

.N7456-F7798-H1066_info-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.N7456-F7798-H1066_info-card {
    background: #ffffff !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 107, 107, 0.1) !important;
}

.N7456-F7798-H1066_info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15) !important;
}
.N7456-F7798-H1066_info-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.N7456-F7798-H1066_info-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N7456-F7798-H1066_info-content {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ff6b6b !important;
    margin-bottom: 10px !important;
}

.N7456-F7798-H1066_info-desc {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 400 !important;
}

/* 제품 스토리 섹션 */
.N7456-F7798-H1066_product-story {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%) !important;
    color: white !important;
}

.N7456-F7798-H1066_story-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N7456-F7798-H1066_story-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}
.N7456-F7798-H1066_story-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    opacity: 0.95 !important;
}

.N7456-F7798-H1066_highlight-box {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    margin: 40px 0 !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.N7456-F7798-H1066_highlight-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N7456-F7798-H1066_usage-list {
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

.N7456-F7798-H1066_usage-list li {
    padding: 12px 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px !important;
    text-align: center !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.N7456-F7798-H1066_usage-list li:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}
.N7456-F7798-H1066_feature-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 40px !important;
}

.N7456-F7798-H1066_feature-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.N7456-F7798-H1066_feature-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05) !important;
}

.N7456-F7798-H1066_feature-emoji {
    font-size: 32px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.N7456-F7798-H1066_feature-text {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* 사이트 정보 푸터 */
.N7456-F7798-H1066_site-footer {
    padding: 60px 0 40px !important;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
}
.N7456-F7798-H1066_footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    margin-bottom: 30px !important;
}

.N7456-F7798-H1066_footer-logo {
    text-align: left !important;
}

.N7456-F7798-H1066_company-name {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #ff6b6b !important;
    font-family: 'Noto Serif KR', serif !important;
}

.N7456-F7798-H1066_company-info {
    font-size: 16px !important;
    opacity: 0.8 !important;
}

.N7456-F7798-H1066_footer-contact {
    text-align: right !important;
}

.N7456-F7798-H1066_contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-bottom: 15px !important;
    font-size: 16px !important;
}

.N7456-F7798-H1066_contact-icon {
    font-size: 20px !important;
    margin-right: 10px !important;
}

.N7456-F7798-H1066_contact-text {
    font-weight: 500 !important;
}
.N7456-F7798-H1066_footer-bottom {
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    text-align: center !important;
}

.N7456-F7798-H1066_footer-text {
    font-size: 14px !important;
    opacity: 0.7 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .N7456-F7798-H1066_container {
        padding: 0 15px !important;
    }
    
    .N7456-F7798-H1066_product-title {
        font-size: 32px !important;
    }
    
    .N7456-F7798-H1066_gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .N7456-F7798-H1066_info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .N7456-F7798-H1066_footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .N7456-F7798-H1066_footer-contact {
        text-align: center !important;
    }
    
    .N7456-F7798-H1066_contact-item {
        justify-content: center !important;
    }
    
    .N7456-F7798-H1066_usage-list {
        grid-template-columns: 1fr !important;
    }
    
    .N7456-F7798-H1066_feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}