/* Google Fonts Import handled by theme usually, but we fallback safely */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Poppins:wght@300;400;600&display=swap');

#digi-skin-quiz-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
    color: #222;
}

#digi-skin-quiz-container h2, 
#digi-skin-quiz-container h3, 
.digi-question-step h3 {
    font-family: 'Oswald', sans-serif;
    color: #2560AA; /* Brand Blue */
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.digi-question-step h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

#digi-skin-quiz-container p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

/* Primary Button */
.digi-btn-primary {
    background-color: #2560AA;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.digi-btn-primary:hover {
    background-color: #1250A1;
}

.digi-btn-secondary {
    background-color: #f4f4f4;
    color: #222;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

/* Progress Bar */
.digi-progress-bar {
    height: 4px;
    background: #e0e0e0;
    margin-bottom: 20px;
    border-radius: 2px;
}

.digi-progress-fill {
    height: 100%;
    background: #2560AA;
    transition: width 0.3s ease;
}

/* Options */
.digi-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.digi-option-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #444;
}

.digi-option-btn:hover {
    border-color: #2560AA;
    background: #f9fbff;
    color: #2560AA;
}

/* Form */
.digi-form-group {
    margin-bottom: 15px;
}

.digi-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.digi-form-group input:focus {
    border-color: #2560AA;
    outline: none;
}

/* Animation */
.digi-fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
