/* ==========================================================
   Practice Questions
========================================================== */

.ppq-container {
}

/* ==========================================================
   Header
========================================================== */

.ppq-header {
    background: #0B2C78;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.ppq-heading {
    margin: 0 0 10px;
    color: #fff;
}

.ppq-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================
   Question Card
========================================================== */

.ppq-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.ppq-question-number {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: #eef2ff;
    color: #1d4ed8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.ppq-question {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #111827;
}

/* ==========================================================
   Options
========================================================== */

.ppq-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .25s ease;
}

.ppq-option:hover {
    background: #f9fafb;
    border-color: #2563eb;
}

.ppq-option input {
    margin-top: 3px;
    flex-shrink: 0;
}

.ppq-option span {
    line-height: 1.6;
}

/* ==========================================================
   Buttons
========================================================== */

.ppq-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ppq-check,
.ppq-reset {
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: .25s ease;
}

.ppq-check {
    background: #2563eb;
    color: #fff;
}

.ppq-check:hover {
    background: #1d4ed8;
}

.ppq-check:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.ppq-reset {
    background: #6b7280;
    color: #fff;
}

.ppq-reset:hover {
    background: #4b5563;
}

/* ==========================================================
   Result
========================================================== */

.ppq-result {
    margin-top: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.ppq-result.correct {
    color: #15803d;
}

.ppq-result.wrong {
    color: #b91c1c;
}

.ppq-result.warning {
    color: #b45309;
}

/* ==========================================================
   Explanation
========================================================== */

.ppq-explanation {
    display: none;
    margin-top: 18px;
    padding: 16px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    line-height: 1.7;
    color: #374151;
}

/* ==========================================================
   CTA
========================================================== */

.ppq-actions {
    text-align: center;
    margin-top: 45px;
}

.ppq-primary-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ppq-buy,
.ppq-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.ppq-buy {
    background: #0b2c78;
    color: #fff;
}

.ppq-buy:hover {
    background: #081f56;
}

.ppq-buy:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.ppq-download {
    background: #111827;
    color: #fff;
}

.ppq-download:hover {
    background: #000;
}

.ppq-cart-msg {
    display: none;
    margin-top: 16px;
    font-weight: 600;
    color: #b91c1c;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 768px) {

    .ppq-container {
        padding: 15px;
        margin: 25px auto;
    }

    .ppq-heading {
        font-size: 26px;
    }

    .ppq-subtitle {
        font-size: 15px;
    }

    .ppq-question {
        font-size: 18px;
    }

    .ppq-buttons,
    .ppq-primary-actions {
        flex-direction: column;
    }

    .ppq-check,
    .ppq-reset,
    .ppq-buy,
    .ppq-download {
        width: 100%;
        justify-content: center;
    }

}