/* COOKZZANG Mall 상세페이지 CSS - I2181-D9581-L2414 */
/* 박스.95파이대 검정 - PP배달용기 전용 스타일 */

/* 최상위 컨테이너 스타일 - 모든 스타일의 스코프 제한 */
.I2181_wrapper {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-family: 'Noto Sans KR', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background-color: #fff !important;
}

.I2181_wrapper * {
    box-sizing: border-box !important;
}

/* 헤더 섹션 */
.I2181_header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    padding: 40px 20px !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

.I2181_product-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    font-family: 'Noto Serif KR', serif !important;
}

.I2181_product-subtitle {
    font-size: 18px !important;
    opacity: 0.9 !important;
    margin-bottom: 20px !important;
}

.I2181_category-badge {
    display: inline-block !important;
    background-color: #e74c3c !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* 특별 혜택 배너 섹션 */
.I2181_benefit-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
    padding: 25px 20px !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.I2181_benefit-banner::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"><defs><pattern id="gift" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>') !important;
    opacity: 0.3 !important;
}

.I2181_benefit-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
}

.I2181_benefit-icon {
    font-size: 48px !important;
    margin-right: 20px !important;
    animation: bounce 2s infinite !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) !important;
    }
    40% {
        transform: translateY(-10px) !important;
    }
    60% {
        transform: translateY(-5px) !important;
    }
}

.I2181_benefit-text {
    flex: 1 !important;
    text-align: center !important;
}

.I2181_benefit-main {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    font-family: 'Noto Serif KR', serif !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.I2181_benefit-sub {
    font-size: 16px !important;
    opacity: 0.9 !important;
    font-weight: 400 !important;
}

.I2181_benefit-highlight {
    background: rgba(255,255,255,0.2) !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    border: 3px solid rgba(255,255,255,0.3) !important;
    animation: pulse 2s infinite !important;
    margin-left: 20px !important;
}

@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4) !important;
    }
    70% {
        transform: scale(1.05) !important;
        box-shadow: 0 0 0 10px rgba(255,255,255,0) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 0 0 0 rgba(255,255,255,0) !important;
    }
}

/* 제품 정보 카드 섹션 */
.I2181_info-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    padding: 40px 20px !important;
    background-color: #f8f9fa !important;
}

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

.I2181_info-card:hover {
    transform: translateY(-5px) !important;
}

.I2181_card-icon {
    font-size: 48px !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.I2181_card-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 10px !important;
}

.I2181_card-content {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

/* 특징 섹션 */
.I2181_features {
    padding: 50px 20px !important;
    background: white !important;
}

.I2181_section-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    color: #2c3e50 !important;
    position: relative !important;
}

.I2181_section-title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 4px !important;
    background: #e74c3c !important;
    margin: 15px auto !important;
    border-radius: 2px !important;
}

.I2181_feature-list {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.I2181_feature-item {
    display: flex !important;
    align-items: center !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #eee !important;
}

.I2181_feature-icon {
    font-size: 24px !important;
    margin-right: 20px !important;
    min-width: 40px !important;
}

.I2181_feature-text {
    font-size: 18px !important;
    color: #333 !important;
    flex: 1 !important;
}

/* 사용자 스토리 섹션 */
.I2181_story-section {
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 50px 20px !important;
}

.I2181_story-heading {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.I2181_story-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #555 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: justify !important;
    padding: 25px !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    margin-bottom: 30px !important;
}

/* 주문 정보 섹션 */
.I2181_order-info {
    background: #2c3e50 !important;
    color: white !important;
    padding: 40px 20px !important;
    text-align: center !important;
}

.I2181_order-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
}

.I2181_order-details {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.I2181_order-item {
    background: rgba(255,255,255,0.1) !important;
    padding: 20px !important;
    border-radius: 10px !important;
}

.I2181_order-label {
    font-size: 14px !important;
    opacity: 0.8 !important;
    margin-bottom: 5px !important;
}

.I2181_order-value {
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* 푸터 섹션 - 쇼핑몰 정보 */
.I2181_footer {
    background-color: #34495e !important;
    color: white !important;
    padding: 30px 20px !important;
    text-align: center !important;
}

.I2181_footer-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #ecf0f1 !important;
}

.I2181_footer-info {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 15px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.I2181_footer-item {
    font-size: 16px !important;
    color: #bdc3c7 !important;
    line-height: 1.5 !important;
}

.I2181_footer-label {
    font-weight: 600 !important;
    color: #ecf0f1 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .I2181_product-title {
        font-size: 24px !important;
    }
    
    .I2181_benefit-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .I2181_benefit-icon {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        font-size: 40px !important;
    }
    
    .I2181_benefit-main {
        font-size: 24px !important;
    }
    
    .I2181_benefit-sub {
        font-size: 14px !important;
    }
    
    .I2181_benefit-highlight {
        margin-left: 0 !important;
        margin-top: 15px !important;
        font-size: 20px !important;
        padding: 12px 18px !important;
    }
    
    .I2181_info-cards {
        grid-template-columns: 1fr !important;
        padding: 30px 15px !important;
    }
    
    .I2181_info-card {
        padding: 20px !important;
    }
    
    .I2181_section-title {
        font-size: 22px !important;
    }
    
    .I2181_feature-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .I2181_feature-icon {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .I2181_story-text {
        font-size: 16px !important;
        padding: 20px !important;
    }
    
    .I2181_order-details {
        grid-template-columns: 1fr !important;
    }
    
    .I2181_footer-info {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .I2181_wrapper {
        padding: 0 !important;
    }
    
    .I2181_header {
        padding: 30px 15px !important;
    }
    
    .I2181_product-title {
        font-size: 20px !important;
    }
    
    .I2181_benefit-banner {
        padding: 20px 15px !important;
    }
    
    .I2181_benefit-main {
        font-size: 20px !important;
    }
    
    .I2181_benefit-sub {
        font-size: 13px !important;
    }
    
    .I2181_benefit-icon {
        font-size: 36px !important;
    }
    
    .I2181_benefit-highlight {
        font-size: 18px !important;
        padding: 10px 15px !important;
    }
    
    .I2181_features,
    .I2181_story-section,
    .I2181_order-info {
        padding: 30px 15px !important;
    }
}