/* COOKZZANG Mall 제품 상세페이지 CSS - K1168-I2825-L3165 */
/* 무말랭이케찹소스(카톡) 전용 스타일 */

/* 전체 래퍼 초기화 */
.K1168-I2825-L3165_wrapper {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: 'Noto Sans KR', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%) !important;
}

.K1168-I2825-L3165_wrapper * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 메인 헤더 섹션 */
.K1168-I2825-L3165_header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a) !important;
    color: white !important;
    padding: 40px 20px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.K1168-I2825-L3165_header::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') !important;
    animation: float 20s linear infinite !important;
    pointer-events: none !important;
}

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

.K1168-I2825-L3165_header-content {
    position: relative !important;
    z-index: 2 !important;
}

.K1168-I2825-L3165_product-badge {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    backdrop-filter: blur(10px) !important;
}

.K1168-I2825-L3165_product-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    font-family: 'Noto Serif KR', serif !important;
}

.K1168-I2825-L3165_price-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
}

.K1168-I2825-L3165_price {
    font-size: 28px !important;
    font-weight: 700 !important;
    background: white !important;
    color: #ff6b6b !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.K1168-I2825-L3165_weight {
    font-size: 18px !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
}

/* 제품 이미지 섹션 */
.K1168-I2825-L3165_image-section {
    padding: 40px 20px !important;
    background: white !important;
}

.K1168-I2825-L3165_image-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    transform: perspective(1000px) rotateX(5deg) !important;
    transition: transform 0.3s ease !important;
}

.K1168-I2825-L3165_image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02) !important;
}

.K1168-I2825-L3165_main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 20px !important;
}

.K1168-I2825-L3165_image-overlay {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 107, 107, 0.9) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px) !important;
}

/* 제품 특징 섹션 */
.K1168-I2825-L3165_features {
    padding: 60px 20px !important;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3) !important;
}

.K1168-I2825-L3165_section-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    color: #2d3748 !important;
    font-family: 'Noto Serif KR', serif !important;
}

.K1168-I2825-L3165_feature-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.K1168-I2825-L3165_feature-card {
    background: white !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 2px solid transparent !important;
}

.K1168-I2825-L3165_feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2) !important;
    border-color: #ff6b6b !important;
}

.K1168-I2825-L3165_feature-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.K1168-I2825-L3165_feature-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #2d3748 !important;
}

.K1168-I2825-L3165_feature-desc {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

/* 제품 정보 섹션 */
.K1168-I2825-L3165_product-info {
    padding: 60px 20px !important;
    background: white !important;
}

.K1168-I2825-L3165_info-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.K1168-I2825-L3165_info-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1) !important;
}

.K1168-I2825-L3165_info-row:last-child {
    border-bottom: none !important;
}

.K1168-I2825-L3165_info-label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    flex: 1 !important;
}

.K1168-I2825-L3165_info-value {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #ff6b6b !important;
    text-align: right !important;
    flex: 1 !important;
}

/* 스토리 섹션 */
.K1168-I2825-L3165_story {
    padding: 60px 20px !important;
    background: linear-gradient(135deg, #f7fafc, #edf2f7) !important;
}

.K1168-I2825-L3165_story-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #2d3748 !important;
    font-family: 'Noto Serif KR', serif !important;
}

.K1168-I2825-L3165_story-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.K1168-I2825-L3165_story-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.K1168-I2825-L3165_story-highlights {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.K1168-I2825-L3165_highlight-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: white !important;
    padding: 20px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease !important;
}

.K1168-I2825-L3165_highlight-item:hover {
    transform: translateY(-5px) !important;
}

.K1168-I2825-L3165_highlight-emoji {
    font-size: 24px !important;
}

.K1168-I2825-L3165_highlight-text {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
}

/* 보관 및 사용법 섹션 */
.K1168-I2825-L3165_usage {
    padding: 60px 20px !important;
    background: white !important;
}

.K1168-I2825-L3165_usage-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.K1168-I2825-L3165_usage-card {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease !important;
    border: 2px solid #4fd1c7 !important;
}

.K1168-I2825-L3165_usage-card:hover {
    transform: translateY(-10px) !important;
}

.K1168-I2825-L3165_usage-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.K1168-I2825-L3165_usage-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #234e52 !important;
}

.K1168-I2825-L3165_usage-desc {
    font-size: 16px !important;
    color: #2d5a5a !important;
    line-height: 1.6 !important;
}

/* 푸터 섹션 */
.K1168-I2825-L3165_footer {
    background: linear-gradient(135deg, #2d3748, #4a5568) !important;
    color: white !important;
    padding: 40px 20px !important;
}

.K1168-I2825-L3165_footer-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    align-items: center !important;
}

.K1168-I2825-L3165_footer-logo {
    text-align: center !important;
}

.K1168-I2825-L3165_footer-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ff6b6b !important;
    margin-bottom: 10px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.K1168-I2825-L3165_footer-subtitle {
    font-size: 14px !important;
    color: #cbd5e0 !important;
}

.K1168-I2825-L3165_footer-info {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
}

.K1168-I2825-L3165_footer-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.K1168-I2825-L3165_footer-row:last-child {
    border-bottom: none !important;
}

.K1168-I2825-L3165_footer-label {
    font-size: 14px !important;
    color: #cbd5e0 !important;
    font-weight: 500 !important;
}

.K1168-I2825-L3165_footer-value {
    font-size: 14px !important;
    color: white !important;
    font-weight: 600 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .K1168-I2825-L3165_product-title {
        font-size: 24px !important;
    }
    
    .K1168-I2825-L3165_price-container {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .K1168-I2825-L3165_price {
        font-size: 24px !important;
    }
    
    .K1168-I2825-L3165_section-title {
        font-size: 24px !important;
    }
    
    .K1168-I2825-L3165_story-heading {
        font-size: 20px !important;
    }
    
    .K1168-I2825-L3165_story-text {
        font-size: 16px !important;
        padding: 20px !important;
    }
    
    .K1168-I2825-L3165_footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}