.skin-quiz-wrapper {
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.quiz-intro h2, .quiz-results h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 28px;
}

.quiz-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.quiz-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.quiz-btn:hover {
    background: #2980b9;
}

.progress-bar {
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    width: 0%;
    transition: width 0.3s;
}

.question-container h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.question-text {
    color: #34495e;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-option {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.answer-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.answer-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.answer-option span {
    color: #2c3e50;
    font-size: 16px;
}

.quiz-navigation {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.prev-btn {
    background: #95a5a6;
}

.prev-btn:hover {
    background: #7f8c8d;
}

.skin-type {
    color: #3498db;
    font-weight: bold;
}

.skin-description {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #2c3e50;
    line-height: 1.6;
}

.routine-steps, .products-list {
    margin-top: 15px;
}

.routine-step {
    margin-bottom: 20px;
}

.routine-step h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.routine-step ul {
    list-style: none;
    padding: 0;
}

.routine-step li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.routine-step li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 6px;
}

.product-name {
    font-weight: 500;
    color: #2c3e50;
}

.product-price {
    color: #3498db;
    font-weight: 600;
}

.retake-btn {
    margin-top: 30px;
    background: #95a5a6;
}

.retake-btn:hover {
    background: #7f8c8d;
}

@media (max-width: 600px) {
    .skin-quiz-wrapper {
        padding: 20px;
        margin: 20px;
    }

    .quiz-navigation {
        flex-direction: column;
    }
}