/* COOKZZANG Mall Detail Page - H9831-A1769-V5143 (생강분말) */
/* 모든 스타일은 스코프 제한을 위해 최상위 컨테이너 클래스를 접두사로 사용 */

/* 기본 리셋 및 래퍼 설정 */
.H9831-A1769-V5143_wrapper {
    max-width: 1200px !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, #fff8dc 0%, #faf0e6 100%) !important;
}

.H9831-A1769-V5143_wrapper * {
    box-sizing: border-box !important;
}

/* 메인 헤더 스타일 */
.H9831-A1769-V5143_main-header {
    text-align: center !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%) !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3) !important;
}

.H9831-A1769-V5143_badge-container {
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.H9831-A1769-V5143_category-badge,
.H9831-A1769-V5143_quality-badge {
    background: linear-gradient(45deg, #dc143c, #b22222) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3) !important;
    transition: transform 0.3s ease !important;
}

.H9831-A1769-V5143_category-badge:hover,
.H9831-A1769-V5143_quality-badge:hover {
    transform: translateY(-2px) !important;
}

.H9831-A1769-V5143_product-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 20px 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    font-family: 'Noto Serif KR', serif !important;
}

.H9831-A1769-V5143_subtitle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.H9831-A1769-V5143_unit-info,
.H9831-A1769-V5143_origin-info {
    font-size: 18px !important;
    color: #fff !important;
    background: rgba(255,255,255,0.2) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
    font-weight: 500 !important;
}

/* 이미지 쇼케이스 스타일 */
.H9831-A1769-V5143_image-showcase {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2) !important;
}

.H9831-A1769-V5143_main-image-container {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px !important;
}

.H9831-A1769-V5143_main-image {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.H9831-A1769-V5143_main-image:hover {
    transform: scale(1.05) !important;
}

.H9831-A1769-V5143_image-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(255, 140, 0, 0.8)) !important;
    padding: 30px 20px 20px !important;
    color: white !important;
}

.H9831-A1769-V5143_highlight-text {
    font-size: 24px !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
}

.H9831-A1769-V5143_secondary-image-container {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.H9831-A1769-V5143_secondary-image {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.H9831-A1769-V5143_secondary-image:hover {
    transform: scale(1.05) !important;
}

/* 섹션 공통 스타일 */
.H9831-A1769-V5143_section-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #ff6347 !important;
    font-family: 'Noto Serif KR', serif !important;
}

/* 특징 섹션 스타일 */
.H9831-A1769-V5143_features-section {
    margin-bottom: 50px !important;
    padding: 40px 20px !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1) !important;
}

.H9831-A1769-V5143_features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 25px !important;
    margin-top: 30px !important;
}

.H9831-A1769-V5143_feature-card {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%) !important;
    padding: 30px 25px !important;
    border-radius: 15px !important;
    text-align: center !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.H9831-A1769-V5143_feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4) !important;
}

.H9831-A1769-V5143_feature-icon {
    font-size: 48px !important;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
}

.H9831-A1769-V5143_feature-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: white !important;
}

.H9831-A1769-V5143_feature-desc {
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 !important;
}

/* 제품 정보 섹션 스타일 */
.H9831-A1769-V5143_product-info {
    margin-bottom: 50px !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2) !important;
}

.H9831-A1769-V5143_info-table {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15) !important;
}

.H9831-A1769-V5143_info-row {
    display: flex !important;
    padding: 20px 25px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center !important;
    transition: background-color 0.3s ease !important;
}

.H9831-A1769-V5143_info-row:last-child {
    border-bottom: none !important;
}

.H9831-A1769-V5143_info-row:hover {
    background-color: #fff8dc !important;
}

.H9831-A1769-V5143_info-label {
    flex: 0 0 150px !important;
    font-weight: 600 !important;
    color: #ff6347 !important;
    font-size: 16px !important;
}

.H9831-A1769-V5143_info-value {
    flex: 1 !important;
    color: #555 !important;
    font-size: 16px !important;
}

/* 사용법 섹션 스타일 */
.H9831-A1769-V5143_usage-section {
    margin-bottom: 50px !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(255, 118, 117, 0.3) !important;
}

.H9831-A1769-V5143_usage-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    margin-top: 30px !important;
}

.H9831-A1769-V5143_usage-card {
    background: white !important;
    padding: 30px 25px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(255, 118, 117, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.H9831-A1769-V5143_usage-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 118, 117, 0.3) !important;
}

.H9831-A1769-V5143_usage-icon {
    font-size: 48px !important;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
}

.H9831-A1769-V5143_usage-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #ff6347 !important;
}

.H9831-A1769-V5143_usage-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #666 !important;
    margin: 0 !important;
}

/* 건강 효능 섹션 스타일 */
.H9831-A1769-V5143_health-section {
    margin-bottom: 50px !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #55a3ff 0%, #003d82 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(85, 163, 255, 0.3) !important;
    color: white !important;
}

.H9831-A1769-V5143_health-benefits {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.H9831-A1769-V5143_benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    transition: transform 0.3s ease !important;
}

.H9831-A1769-V5143_benefit-item:hover {
    transform: translateY(-3px) !important;
}

.H9831-A1769-V5143_benefit-icon {
    font-size: 24px !important;
    flex-shrink: 0 !important;
}

.H9831-A1769-V5143_benefit-text {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.95) !important;
}

/* 스토리 섹션 스타일 */
.H9831-A1769-V5143_story-section {
    margin-bottom: 50px !important;
    padding: 50px 30px !important;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3) !important;
    color: white !important;
    text-align: center !important;
}

.H9831-A1769-V5143_story-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-family: 'Noto Serif KR', serif !important;
}

.H9831-A1769-V5143_story-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.H9831-A1769-V5143_story-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
}

.H9831-A1769-V5143_story-text:last-child {
    margin-bottom: 0 !important;
}

/* 푸터 스타일 */
.H9831-A1769-V5143_footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.H9831-A1769-V5143_company-name {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #ff8c00 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
}

.H9831-A1769-V5143_contact-info {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

.H9831-A1769-V5143_contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    color: #ecf0f1 !important;
    margin: 0 !important;
}

.H9831-A1769-V5143_contact-icon {
    font-size: 18px !important;
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .H9831-A1769-V5143_wrapper {
        padding: 15px !important;
    }
    
    .H9831-A1769-V5143_product-title {
        font-size: 28px !important;
    }
    
    .H9831-A1769-V5143_image-showcase {
        grid-template-columns: 1fr !important;
    }
    
    .H9831-A1769-V5143_main-image,
    .H9831-A1769-V5143_secondary-image {
        height: 300px !important;
    }
    
    .H9831-A1769-V5143_features-grid,
    .H9831-A1769-V5143_usage-cards,
    .H9831-A1769-V5143_health-benefits {
        grid-template-columns: 1fr !important;
    }
    
    .H9831-A1769-V5143_info-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .H9831-A1769-V5143_info-label {
        flex: none !important;
    }
    
    .H9831-A1769-V5143_contact-info {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .H9831-A1769-V5143_section-title {
        font-size: 24px !important;
    }
    
    .H9831-A1769-V5143_story-heading {
        font-size: 20px !important;
    }
    
    .H9831-A1769-V5143_story-text {
        font-size: 16px !important;
    }
    
    .H9831-A1769-V5143_subtitle {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .H9831-A1769-V5143_benefit-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .H9831-A1769-V5143_main-header {
        padding: 30px 15px !important;
    }
    
    .H9831-A1769-V5143_product-title {
        font-size: 24px !important;
    }
    
    .H9831-A1769-V5143_badge-container {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .H9831-A1769-V5143_highlight-text {
        font-size: 18px !important;
    }
}