/* K-뷰티 퀴즈 전용 스타일 */
.quiz-section {
    padding: var(--spacing-xxl, 48px) 0;
    background: var(--neutral-200, #f7f7f9);
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.quiz-header {
    background: linear-gradient(135deg, #ff6b9d 0%, #a855f7 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.quiz-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.quiz-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.quiz-content {
    padding: 30px;
}

.start-screen {
    text-align: center;
}

.start-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: linear-gradient(135deg, #ff6b9d15, #a855f715);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.start-btn {
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.question-number {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #333;
}

.option-btn:hover {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #ff6b9d05, #a855f705);
}

.option-btn.selected {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #ff6b9d15, #a855f715);
}

.next-btn {
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    float: right;
    transition: all 0.3s ease;
    opacity: 0.5;
    pointer-events: none;
}

.next-btn.enabled {
    opacity: 1;
    pointer-events: auto;
}

.next-btn:hover.enabled {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.result-screen {
    text-align: center;
}

.result-type {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.result-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.skincare-routine {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: left;
}

.routine-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.routine-steps {
    display: grid;
    gap: 10px;
}

.routine-step {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #ff6b9d;
}

.step-number {
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 15px;
}

.step-text {
    font-size: 0.95rem;
    color: #333;
}

.riman-products {
    background: linear-gradient(135deg, #ff6b9d10, #a855f710);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.products-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.product-list {
    display: grid;
    gap: 12px;
}

.product-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #a855f7;
}

.product-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.product-benefit {
    font-size: 0.9rem;
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.shop-btn {
    background: linear-gradient(135deg, #ff6b9d, #a855f7);
    color: white;
    border: none;
}

.share-btn {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.retry-btn {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.disclaimer {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.disclaimer-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .quiz-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .quiz-header {
        padding: 20px;
    }
    
    .quiz-title {
        font-size: 1.5rem;
    }
    
    .quiz-content {
        padding: 20px;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .option-btn {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        text-align: center;
    }
    
    .next-btn {
        float: none;
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .quiz-header {
        padding: 15px;
    }
    
    .quiz-title {
        font-size: 1.3rem;
    }
    
    .quiz-content {
        padding: 15px;
    }
    
    .start-description {
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .skincare-routine,
    .riman-products {
        padding: 20px;
    }
    
    .disclaimer {
        padding: 15px;
        font-size: 0.8rem;
    }
}