/* Pixellize Image Optimizer - admin settings page */

.pixio-wrap { max-width: 100%; }
.pixio-wrap * { box-sizing: border-box; }

/* Header */
.pixio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 14px;
    margin: 16px 0 22px;
}
.pixio-header h1 {
    color: #000;
    font-size: 23px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
.pixio-ver {
    font-size: 12px;
    font-weight: 600;
    background: #4238ca;
    color: #FFF;
    padding: 3px 9px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 6px;
}
.pixio-tagline { margin: 9px 0 0; opacity: .92; font-size: 14px; }
.pixio-engine {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .16);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}
.pixio-engine .dot { width: 9px; height: 9px; border-radius: 50%; }
.pixio-engine--ok .dot { background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .3); }
.pixio-engine--err { background: #fee2e2; color: #991b1b; }
.pixio-engine--err .dot { background: #ef4444; }

/* Layout */
.pixio-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 22px;
    align-items: start;
}
@media (max-width: 960px) { .pixio-grid { grid-template-columns: 1fr; } }

/* Card */
.pixio-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 26px;
    margin-bottom: 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.pixio-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px;
    padding: 0;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 9px;
}
.pixio-card-title:before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 3px;
    background: linear-gradient(#4f46e5, #7c3aed);
    display: inline-block;
}

/* Field */
.pixio-field { padding: 18px 0; border-top: 1px solid #f1f1f4; }
.pixio-field:first-of-type { border-top: 0; padding-top: 0; }
.pixio-label { display: block; font-weight: 600; color: #374151; margin-bottom: 11px; font-size: 14px; }
.pixio-help { color: #6b7280; font-size: 12.5px; margin: 11px 0 0; line-height: 1.65; }

/* Format chips */
.pixio-formats { display: flex; flex-wrap: wrap; gap: 10px; }
.pixio-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: #4b5563;
    background: #fff;
    transition: all .15s ease;
    user-select: none;
}
.pixio-chip:hover { border-color: #c7d2fe; }
.pixio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.pixio-chip .tick {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: 2px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: transparent;
    transition: all .15s ease;
}
.pixio-chip.is-on { border-color: #4f46e5; background: #eef2ff; color: #4338ca; }
.pixio-chip.is-on .tick { background: #4f46e5; border-color: #4f46e5; color: #fff; }

/* Quality slider */
.pixio-quality { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pixio-quality input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
    flex: 1;
    min-width: 200px;
    max-width: 340px;
    outline: none;
}
.pixio-quality input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4f46e5;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.pixio-quality input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #4f46e5;
    cursor: pointer;
}
.pixio-qnum {
    width: 72px !important;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #4338ca;
    border-radius: 8px;
}
.pixio-qnum--wide { width: 96px !important; }
.pixio-resize-fields { margin-top: 14px; }
.pixio-resize-fields[hidden] { display: none; }
.pixio-qsuffix { color: #9ca3af; font-size: 13px; }

/* Switch */
.pixio-switch { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.pixio-switch input { position: absolute; opacity: 0; pointer-events: none; }
.pixio-track {
    width: 46px;
    height: 26px;
    background: #cbd5e1;
    border-radius: 999px;
    position: relative;
    transition: background .2s ease;
    flex: none;
}
.pixio-track:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.pixio-switch.is-on .pixio-track { background: #4f46e5; }
.pixio-switch.is-on .pixio-track:after { transform: translateX(20px); }
.pixio-switch-text { font-weight: 600; color: #374151; font-size: 14px; }

/* Actions */
.pixio-actions { margin-top: 22px; }
.pixio-actions .button-primary {
    background: #4f46e5;
    border-color: #4338ca;
    height: auto;
    padding: 0px 16px !important;
    font-size: 14px;
    border-radius: 9px;
}
.pixio-actions .button-primary:hover { background: #4338ca; border-color: #3730a3; }

/* Stats */
.pixio-saved { text-align: center; padding: 4px 0 8px; }
.pixio-saved .big { font-size: 34px; font-weight: 800; color: #059669; line-height: 1; }
.pixio-saved .lbl { color: #6b7280; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-top: 7px; }
.pixio-bar { height: 10px; border-radius: 999px; background: #e5e7eb; overflow: hidden; margin: 16px 0 6px; }
.pixio-bar i { display: block; height: 100%; background: linear-gradient(90deg, #34d399, #059669); border-radius: 999px; transition: width .4s ease; }
.pixio-bar-cap { font-size: 12px; color: #6b7280; text-align: right; }
.pixio-tiles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 18px; }
.pixio-tile { background: #f9fafb; border: 1px solid #f1f1f4; border-radius: 10px; padding: 12px 8px; text-align: center; }
.pixio-tile .n { font-weight: 700; color: #111827; font-size: 14px; }
.pixio-tile .t { color: #6b7280; font-size: 11px; margin-top: 4px; }
.pixio-empty { color: #6b7280; text-align: center; padding: 24px 0; font-style: italic; }
.pixio-reset { margin-top: 18px; text-align: center; }
.pixio-reset .button { border-radius: 8px; }

/* Review CTA */
.pixio-review { text-align: center; }
.pixio-review-stars { color: #f59e0b; font-size: 20px; letter-spacing: 3px; margin-bottom: 8px; }
.pixio-review h3 { margin: 0 0 6px; font-size: 15px; color: #111827; }
.pixio-review p { margin: 0 0 14px; color: #6b7280; font-size: 13px; line-height: 1.6; }
.pixio-review .pixio-review-btn {
    background: #4f46e5;
    border-color: #4338ca;
    color: #fff;
    border-radius: 9px;
    padding: 0px 16px !important;
    height: auto;
    font-size: 13px;
}
.pixio-review .pixio-review-btn:hover { background: #4338ca; border-color: #3730a3; color: #fff; }

/* Support / donate CTA */
.pixio-support { text-align: center; }
.pixio-support-heart { color: #e0245e; font-size: 22px; margin-bottom: 6px; }
.pixio-support h3 { margin: 0 0 6px; font-size: 15px; color: #111827; }
.pixio-support p { margin: 0 0 14px; color: #6b7280; font-size: 13px; line-height: 1.6; }
.pixio-support .pixio-support-btn {
    background: #ffc439;
    border-color: #e6a500;
    color: #1f2937;
    border-radius: 9px;
    padding: 0px 18px !important;
    height: auto;
    font-size: 13px;
    font-weight: 600;
}
.pixio-support .pixio-support-btn:hover { background: #f0b429; border-color: #cc9400; color: #1f2937; }

/* Bulk optimize */
.pixio-bulk-intro { color: #4b5563; font-size: 13px; line-height: 1.65; margin: 0 0 18px; }
.pixio-bulk-progress { margin: 0 0 18px; }
.pixio-bulk-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; font-size: 12.5px; color: #6b7280; }
.pixio-bulk-status { font-weight: 600; color: #374151; }
.pixio-bulk-counts { white-space: nowrap; }
.pixio-bulk-actions { display: flex; gap: 10px; align-items: center; }
.pixio-bulk-actions .button-primary {
    background: #4f46e5;
    border-color: #4338ca;
    height: auto;
    padding: 0 16px !important;
    font-size: 14px;
    border-radius: 9px;
}
.pixio-bulk-actions .button-primary:hover { background: #4338ca; border-color: #3730a3; }
.pixio-bulk-actions .button { border-radius: 9px; }

/* Info grid */
.pixio-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .pixio-info-grid { grid-template-columns: 1fr; } }
.pixio-info-item h4 { margin: 0 0 6px; font-size: 14px; color: #111827; }
.pixio-info-item p { margin: 0; color: #4b5563; font-size: 13px; line-height: 1.65; }
