/* WC Quiz Practice - Fill in the Blank Version */

/* Hide currency converter on quiz pages */
.wcqp-container~.currency-converter,
.wcqp-container~.usd-inr-converter,
.wcqp-container~[class*="currency"],
.wcqp-container~[class*="converter"],
body:has(.wcqp-container) .currency-converter,
body:has(.wcqp-container) .usd-inr-converter,
body:has(.wcqp-container) [id*="currency-converter"],
body:has(.wcqp-container) .floating-currency,
body:has(.wcqp-container) .currency-widget,
body:has(.wcqp-container) [class*="currency-switch"] {
    display: none !important;
}

/* Container */
.wcqp-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wcqp-section {
    margin-bottom: 30px;
}

/* Final Test Mode Styles */
.wcqp-final-banner {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    animation: pulse-banner 2s infinite;
}

@keyframes pulse-banner {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(243, 156, 18, 0.5);
    }
}

/* Final Test Important Notice */
.wcqp-final-notice {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.wcqp-notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.wcqp-notice-content {
    flex: 1;
}

.wcqp-notice-content strong {
    color: #856404;
    font-size: 16px;
}

.wcqp-notice-content ul {
    margin: 10px 0;
    padding-left: 5px;
    list-style: none;
}

.wcqp-notice-content li {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.wcqp-notice-content li strong {
    color: #d63384;
}

.wcqp-notice-wish {
    margin-top: 12px;
    font-size: 18px;
    text-align: center;
    color: #198754;
    font-weight: 600;
}

.wcqp-container.final-test-mode .wcqp-title {
    color: #e67e22;
}

.wcqp-container.final-test-mode .wcqp-category-card {
    border-color: #f39c12;
}

.wcqp-container.final-test-mode .wcqp-category-card:hover {
    border-color: #e67e22;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* Completed Final Test Cards (already attempted) */
.wcqp-category-card.completed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #4caf50 !important;
    cursor: not-allowed;
    opacity: 0.9;
}

.wcqp-category-card.completed:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.wcqp-category-card.completed .wcqp-category-icon {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.wcqp-completed-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wcqp-final-score {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    margin: 5px 0 2px;
}

.wcqp-final-correct {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Title */
.wcqp-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 10px;
    text-align: center;
}

.wcqp-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

/* Quiz Mode Toggle */
.wcqp-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.wcqp-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.wcqp-mode-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.wcqp-mode-btn.active[data-mode="practice"] {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    border-color: transparent;
}

.wcqp-mode-btn.active[data-mode="final_test"] {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    border-color: transparent;
}

/* Category Cards */
.wcqp-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.wcqp-category-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wcqp-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.wcqp-category-card.disabled {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    cursor: not-allowed;
    box-shadow: none;
}

.wcqp-category-card.disabled:hover {
    transform: none;
}

.wcqp-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.wcqp-category-icon span {
    font-size: 24px;
    font-weight: 700;
}

.wcqp-category-card h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.wcqp-category-card p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.wcqp-coming-soon {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

/* Quiz Header */
.wcqp-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.wcqp-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 15px;
}

.wcqp-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
    padding: 8px 16px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
}

.wcqp-timer.warning {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.wcqp-timer.danger {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Progress Bar */
.wcqp-progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.wcqp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Question */
.wcqp-question {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    text-align: center;
}

.wcqp-question-number {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.wcqp-question-text {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Answer Input */
.wcqp-answer-field {
    max-width: 200px;
    margin: 0 auto;
}

.wcqp-answer-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    border: 3px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.wcqp-answer-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Navigation */
.wcqp-quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.wcqp-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wcqp-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.wcqp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.wcqp-btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.wcqp-btn-secondary:hover {
    background: #dee2e6;
}

.wcqp-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.wcqp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Question Dots */
.wcqp-question-nav {
    text-align: center;
}

.wcqp-question-nav p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

#wcqp-question-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
}

.wcqp-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wcqp-dot:hover {
    border-color: #667eea;
    color: #667eea;
}

.wcqp-dot.current {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.wcqp-dot.answered {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

/* Results */
.wcqp-results-header {
    text-align: center;
    margin-bottom: 30px;
}

.wcqp-results-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.wcqp-results-icon.pass {
    animation: bounce 0.5s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

#wcqp-time-status {
    color: #dc3545;
    font-size: 16px;
    margin-top: 10px;
}

.wcqp-results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.wcqp-stat {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.wcqp-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.wcqp-stat-label {
    color: #666;
    font-size: 13px;
}

/* Answer Review */
.wcqp-answer-review {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.wcqp-answer-review h3 {
    margin: 0 0 20px;
    color: #1e1e1e;
}

.wcqp-review-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 4px solid #e9ecef;
}

.wcqp-review-item.correct {
    border-left-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.wcqp-review-item.incorrect {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.wcqp-review-item.unanswered {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.wcqp-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wcqp-review-number {
    font-weight: 600;
    color: #666;
}

.wcqp-review-question {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
}

.wcqp-review-status {
    font-size: 18px;
    font-weight: 700;
}

.wcqp-review-item.correct .wcqp-review-status {
    color: #28a745;
}

.wcqp-review-item.incorrect .wcqp-review-status {
    color: #dc3545;
}

.wcqp-review-item.unanswered .wcqp-review-status {
    color: #ffc107;
}

.wcqp-review-answers {
    font-size: 14px;
}

.wcqp-your-answer {
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 10px;
}

.wcqp-your-answer.correct {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.wcqp-your-answer.wrong {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    text-decoration: line-through;
}

.wcqp-your-answer.not-answered {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    font-style: italic;
}

.wcqp-correct-answer {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    color: #28a745;
}

/* Results Actions */
.wcqp-results-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Previous Results Table */
.wcqp-previous-results {
    margin-top: 40px;
}

.wcqp-previous-results h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.wcqp-results-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wcqp-results-table th,
.wcqp-results-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.wcqp-results-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 13px;
}

.wcqp-score-pass {
    color: #28a745;
}

.wcqp-score-fail {
    color: #dc3545;
}

/* Access Block Messages */
.wcqp-access-block {
    max-width: 500px;
    margin: 40px auto;
    padding: 50px 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    text-align: center;
}

.wcqp-access-block.warning {
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
}

.wcqp-access-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.wcqp-access-block h2 {
    margin: 0 0 15px;
    font-size: 28px;
    color: #1e1e1e;
}

.wcqp-access-block>p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.wcqp-access-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wcqp-purchase-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.wcqp-purchase-info h3 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
}

.wcqp-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcqp-category-list li {
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #667eea;
}

.wcqp-category-list li:nth-child(1) {
    border-left-color: #e74c3c;
}

.wcqp-category-list li:nth-child(2) {
    border-left-color: #3498db;
}

.wcqp-category-list li:nth-child(3) {
    border-left-color: #2ecc71;
}

.wcqp-category-list li:nth-child(4) {
    border-left-color: #f39c12;
}

.wcqp-category-list li:nth-child(5) {
    border-left-color: #9b59b6;
}

/* Messages (Legacy) */
.wcqp-message {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.wcqp-message-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.wcqp-message-warning {
    background: rgba(255, 193, 7, 0.1);
}

/* Loading */
.wcqp-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wcqp-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive - All Devices */

/* Tablets */
@media (max-width: 1024px) {
    .wcqp-container {
        padding: 15px;
    }

    .wcqp-title {
        font-size: 24px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .wcqp-container {
        padding: 10px;
        max-width: 100%;
    }

    .wcqp-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .wcqp-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcqp-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wcqp-category-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .wcqp-category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .wcqp-category-card h3 {
        font-size: 16px;
    }

    .wcqp-category-card p {
        font-size: 12px;
    }

    .wcqp-results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wcqp-stat {
        padding: 15px;
    }

    .wcqp-stat-value {
        font-size: 22px;
    }

    .wcqp-question {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .wcqp-question-text {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .wcqp-answer-input {
        font-size: 24px;
        padding: 12px 15px;
    }

    .wcqp-quiz-header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }

    .wcqp-quiz-navigation {
        gap: 10px;
        flex-wrap: wrap;
    }

    .wcqp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    #wcqp-question-dots {
        max-width: 100%;
    }

    .wcqp-dot {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .wcqp-review-item {
        padding: 12px;
    }

    .wcqp-review-question {
        font-size: 16px;
    }

    .wcqp-access-block {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .wcqp-access-block h2 {
        font-size: 22px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .wcqp-container {
        padding: 8px;
    }

    .wcqp-title {
        font-size: 20px;
    }

    .wcqp-subtitle {
        font-size: 13px;
    }

    .wcqp-categories {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wcqp-category-card {
        padding: 15px 10px;
    }

    .wcqp-category-icon {
        width: 40px;
        height: 40px;
    }

    .wcqp-category-icon span {
        font-size: 18px;
    }

    .wcqp-category-card h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .wcqp-category-card p {
        font-size: 11px;
    }

    .wcqp-question {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .wcqp-question-number {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .wcqp-question-text {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .wcqp-answer-field {
        max-width: 160px;
    }

    .wcqp-answer-input {
        font-size: 22px;
        padding: 12px;
        border-width: 2px;
    }

    .wcqp-quiz-header {
        padding: 10px 12px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .wcqp-badge {
        padding: 5px 10px;
        font-size: 12px;
    }

    .wcqp-timer {
        font-size: 20px;
        padding: 6px 12px;
    }

    .wcqp-progress-bar {
        margin-bottom: 20px;
    }

    .wcqp-quiz-navigation {
        margin-bottom: 20px;
    }

    .wcqp-btn {
        padding: 12px 16px;
        font-size: 13px;
        flex: 1;
        min-width: 100px;
    }

    .wcqp-question-nav {
        margin-top: 10px;
    }

    .wcqp-question-nav p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .wcqp-dot {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .wcqp-results-header h2 {
        font-size: 20px;
    }

    .wcqp-results-icon {
        font-size: 48px;
    }

    .wcqp-results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .wcqp-stat {
        padding: 12px 8px;
        border-radius: 10px;
    }

    .wcqp-stat-value {
        font-size: 20px;
    }

    .wcqp-stat-label {
        font-size: 11px;
    }

    .wcqp-answer-review {
        padding: 15px;
        margin-top: 20px;
    }

    .wcqp-answer-review h3 {
        font-size: 16px;
    }

    .wcqp-review-header {
        flex-wrap: wrap;
    }

    .wcqp-review-question {
        font-size: 14px;
        flex-basis: 100%;
        order: 2;
        margin-top: 5px;
    }

    .wcqp-results-actions {
        flex-direction: column;
        gap: 10px;
    }

    .wcqp-results-actions .wcqp-btn {
        width: 100%;
    }

    .wcqp-access-block {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .wcqp-access-icon {
        font-size: 48px;
    }

    .wcqp-access-block h2 {
        font-size: 20px;
    }

    .wcqp-access-block>p {
        font-size: 14px;
    }

    .wcqp-purchase-info {
        padding: 15px;
    }

    .wcqp-category-list li {
        padding: 8px 12px;
        font-size: 13px;
    }

    .wcqp-access-actions {
        flex-direction: column;
    }

    .wcqp-access-actions .wcqp-btn {
        width: 100%;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .wcqp-question-text {
        font-size: 20px;
    }

    .wcqp-answer-input {
        font-size: 20px;
    }

    .wcqp-categories {
        grid-template-columns: 1fr;
    }

    .wcqp-dot {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
}

/* Keyboard Open - Adjust layout when virtual keyboard is visible */
@media (max-height: 500px) and (orientation: landscape) {
    .wcqp-question {
        padding: 15px;
    }

    .wcqp-question-text {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .wcqp-quiz-navigation {
        margin-bottom: 10px;
    }

    .wcqp-question-nav {
        display: none;
    }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    .wcqp-btn {
        min-height: 44px;
    }

    .wcqp-dot {
        min-width: 32px;
        min-height: 32px;
    }

    .wcqp-category-card {
        min-height: 100px;
    }
}

/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
    .wcqp-container {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
        padding-bottom: env(safe-area-inset-bottom);
    }
}