/* 상품 상세 페이지 전용 스타일 */

/* 헤더 */
.product-header {
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
    border-bottom: 2px solid #FFD700;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.product-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.back-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
}

.header-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 상품 히어로 */
.product-detail {
    padding: 60px 20px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
    border-radius: 15px;
    padding: 60px;
    position: relative;
    border: 2px solid #FF6F0F;
}

.product-icon-large {
    font-size: 180px;
    animation: float 3s ease-in-out infinite;
}

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

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6F0F;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 111, 15, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.product-subtitle {
    font-size: 20px;
    color: #CCCCCC;
    margin-bottom: 30px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.apply-now-btn {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    font-family: 'Noto Sans KR', sans-serif;
}

.apply-now-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.apply-direct-btn {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-direct-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 24px;
    color: #888;
    text-decoration: line-through;
}

.discount-price {
    font-size: 48px;
    font-weight: 900;
    color: #FF6F0F;
    text-shadow: 0 0 20px rgba(255, 111, 15, 0.5);
}

.discount-badge {
    background: #FF0000;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
}

.apply-now-btn {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    width: 100%;
    margin-top: 20px;
}

.apply-now-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

/* 추천 섹션 */
.recommend-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recommend-card {
    background: linear-gradient(135deg, #2a0000 0%, #1a0000 100%);
    border: 3px solid #FF0000;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
    border-color: #FFD700;
}

.recommend-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.recommend-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.recommend-card p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.6;
}

/* 분석 섹션 */
.analysis-section {
    margin-bottom: 60px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.analysis-card {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.analysis-number {
    display: inline-block;
    background: #FF6F0F;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 111, 15, 0.5);
}

.analysis-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.analysis-card ul {
    list-style: none;
    padding: 0;
}

.analysis-card li {
    font-size: 15px;
    color: #CCCCCC;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.analysis-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6F0F;
    font-weight: 900;
}

/* 프리미엄 특전 */
.premium-benefits {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #2a1a00 0%, #1a1000 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
    border: 2px solid #FF6F0F;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 111, 15, 0.5);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #CCCCCC;
}

/* 신청 안내 */
.apply-guide {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.guide-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
    border: 2px solid #FF6F0F;
    border-radius: 12px;
    padding: 25px;
}

.step-number {
    background: #FF6F0F;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 900;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 111, 15, 0.5);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.6;
}

.final-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2a1a00 0%, #1a1000 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 25px 35px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
}

.price-value {
    font-size: 42px;
    font-weight: 900;
    color: #FF6F0F;
    text-shadow: 0 0 20px rgba(255, 111, 15, 0.5);
}

.apply-final-btn {
    display: block;
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.apply-final-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

/* 반응형 */
@media (max-width: 1023px) {
    .product-hero {
        grid-template-columns: 1fr;
    }
    
    .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .apply-now-btn,
    .apply-direct-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 32px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .discount-price {
        font-size: 36px;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-icon-large {
        font-size: 120px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .apply-now-btn,
    .apply-direct-btn {
        width: 100%;
        padding: 16px 25px;
        font-size: 16px;
    }
}
