@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Montserrat:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* =========================================================
   AWBSEO Admin Styles — "AdWorks.Bid" reskin
   Navy + Teal + Burgundy · Montserrat / IBM Plex Mono
   Every selector from the original is preserved so the
   existing PHP views render unchanged — only the look moves.
   ========================================================= */

:root {
    --awb-primary:   #1e3a5f;   /* navy — brand / headings / links */
    --awb-primary-h: #152d4a;   /* navy hover */
    --awb-accent:    #00c9a7;   /* teal — CTAs, active, positive */
    --awb-accent-h:  #00b496;   /* teal hover */
    --awb-navy:      #0f172a;   /* deepest navy (sidebar, dark cards) */
    --awb-burgundy:  #dc2626;   /* danger / PRO badge */
    --awb-success:   #059669;
    --awb-warn:      #d97706;
    --awb-danger:    #dc2626;
    --awb-neutral:   #94a3b8;
    --awb-muted:     #64748b;
    --awb-bg:        #f8fafc;   /* soft cool inset */
    --awb-page:      #f1f5f9;   /* page background — light gray */
    --awb-border:    #e2e8f0;
    --awb-line:      #f1f5f9;   /* table row divider */
    --awb-field:     #cbd5e1;   /* input border */
    --awb-text:      #0f172a;
    --awb-radius:    12px;
    --awb-shadow:    0 1px 3px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.08);
    --awb-shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 2px 6px rgba(15,23,42,.06);
    --awb-font:      'Cairo', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --awb-mono:      'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ── Page canvas & base type ────────────────────────────── */
body[class*="page_awb-seo"] #wpcontent,
body.toplevel_page_awb-seo #wpcontent { background: var(--awb-page); }

.awb-seo-wrap,
.awb-meta-box {
    font-family: var(--awb-font);
    color: var(--awb-text);
    -webkit-font-smoothing: antialiased;
}
.awb-seo-wrap * , .awb-meta-box * { box-sizing: border-box; }

/* ── Layout ─────────────────────────────────────────────── */
.awb-seo-wrap { max-width: 1320px; }

.awb-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 0 14px;
    border-bottom: 1px solid var(--awb-border);
    margin-bottom: 24px;
}
.awb-logo { font-size: 26px; color: var(--awb-accent); }
.awb-header h1 {
    margin: 0; color: var(--awb-navy); font-size: 22px; font-weight: 800; letter-spacing: -.4px;
}
.awb-tagline { margin: 3px 0 0; color: var(--awb-muted); font-size: 13px; }

.awb-page-header { margin-bottom: 20px; }
.awb-page-header h1 {
    margin-bottom: 4px; font-size: 22px; font-weight: 800; letter-spacing: -.4px;
    color: var(--awb-navy); display: flex; align-items: center; gap: 10px;
}
.awb-page-header p { margin-top: 4px; color: var(--awb-muted); font-size: 13.5px; }
.awb-page-header a { color: var(--awb-primary); font-weight: 600; }
.awb-page-header__actions { margin-top: 8px; }
.awb-page-header__logo { width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; }

/* ── Branded footer credit (awb-seo admin screens only) ──────── */
#wpfooter a { color: var(--awb-primary); font-weight: 600; text-decoration: none; }
#wpfooter a:hover { text-decoration: underline; }

/* ── Cards ──────────────────────────────────────────────── */
.awb-card {
    background: #fff;
    border: 1px solid var(--awb-border);
    border-radius: var(--awb-radius);
    padding: 22px 26px;
    margin-bottom: 18px;
    box-shadow: var(--awb-shadow-sm);
}
.awb-card h2 { margin-top: 0; font-size: 15px; font-weight: 700; color: var(--awb-navy); }
.awb-card--wide { grid-column: 1 / -1; }
.awb-card--info { background: #f8fafc; border-color: #e2e8f0; box-shadow: none; }

/* ── Dashboard Grid ─────────────────────────────────────── */
.awb-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ── Stats ──────────────────────────────────────────────── */
.awb-stats-row { display: flex; gap: 12px; flex-wrap: wrap; }
.awb-stat {
    background: #fff;
    border: 1px solid var(--awb-border);
    border-radius: var(--awb-radius);
    padding: 16px 20px;
    min-width: 120px;
    text-align: center;
    box-shadow: var(--awb-shadow-sm);
}
.awb-stat--good { border-color: #a7f3d0; background: #f0fdf9; }
.awb-stat--warn { border-color: #fde68a; background: #fffbeb; }
.awb-stat--bad  { border-color: #fecaca; background: #fff1f2; }
.awb-stat__number { display: block; font-size: 30px; font-weight: 800; color: var(--awb-text); }
.awb-stat__label  { display: block; font-size: 12px; color: var(--awb-neutral); margin-top: 4px; }

/* ── Badges ─────────────────────────────────────────────── */
.awb-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
}
/* Status dot */
.awb-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.awb-badge--good {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.awb-badge--good::before  { background: #059669; }

.awb-badge--warn {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fcd34d;
}
.awb-badge--warn::before  { background: #d97706; }

.awb-badge--bad {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
.awb-badge--bad::before   { background: #dc2626; }

.awb-badge--neutral {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.awb-badge--neutral::before { background: #94a3b8; }

.awb-badge--high    { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.awb-badge--high::before   { background: #dc2626; }
.awb-badge--medium  { background: #fef9c3; color: #854d0e; border: 1px solid #fcd34d; }
.awb-badge--medium::before { background: #d97706; }
.awb-badge--low     { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.awb-badge--low::before    { background: #94a3b8; }

/* ── Tables ─────────────────────────────────────────────── */
.awb-table { border-collapse: collapse; width: 100%; font-size: 13px; }
.awb-table th, .awb-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--awb-line);
    text-align: left;
    vertical-align: middle;
}
.awb-table th {
    background: transparent;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--awb-neutral);
    border-bottom: 2px solid var(--awb-border);
}
.awb-table tbody tr:last-child td { border-bottom: none; }
.awb-table tr:hover td { background: #f8fafc; }
.awb-table a { color: var(--awb-primary); text-decoration: none; font-weight: 600; }
.awb-table a:hover { color: var(--awb-accent); text-decoration: none; }
.awb-row--issue td { background: #fffbeb; }
.awb-row--primary td { background: #f0fdf9; }

/* ── Bulk Editor ─────────────────────────────────────────── */
.awb-bulk-table .awb-bulk-input,
.awb-bulk-table .awb-bulk-textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 12.5px;
    padding: 8px 10px;
    border: 1px solid var(--awb-field);
    border-radius: 8px;
    font-family: var(--awb-font);
    background: #f8fafc;
    transition: border-color .15s, box-shadow .15s;
}
.awb-bulk-table .awb-bulk-textarea { resize: vertical; min-height: 52px; }
.awb-bulk-input:focus,
.awb-bulk-textarea:focus { border-color: var(--awb-accent); outline: none; box-shadow: 0 0 0 3px rgba(0,201,167,.18); }

.awb-char-counter { font-size: 11px; color: var(--awb-neutral); margin-top: 5px; font-weight: 600; }
.awb-char-counter.good  { color: var(--awb-success); }
.awb-char-counter.over  { color: var(--awb-danger); }
.awb-char-counter.under { color: var(--awb-warn); }
.awb-char-hint { font-weight: normal; font-size: 11px; color: var(--awb-neutral); text-transform: none; }

.awb-bulk-footer {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--awb-line);
    margin-top: 4px;
}
.awb-total-count { color: var(--awb-neutral); font-size: 13px; font-weight: 600; }

/* ── Pagination ─────────────────────────────────────────── */
.awb-pagination { display: flex; gap: 5px; }
.awb-pagination a {
    display: inline-block; padding: 5px 11px;
    border: 1px solid var(--awb-field);
    border-radius: 8px; color: var(--awb-muted);
    text-decoration: none; font-size: 12px; font-weight: 600;
}
.awb-pagination a.current { background: var(--awb-primary); color: #fff; border-color: var(--awb-primary); }

/* ── Filter Bar ─────────────────────────────────────────── */
.awb-filter-bar { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.awb-search-input { min-width: 240px; }

/* ── Redirect Form ──────────────────────────────────────── */
.awb-redirect-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.awb-redirect-form .regular-text { min-width: 220px; font-family: var(--awb-mono); }
.awb-arrow { font-size: 18px; color: var(--awb-neutral); }

/* ── Cannibalization ────────────────────────────────────── */
.awb-cannibalization-card {
    background: #fff;
    border: 1px solid var(--awb-border);
    border-radius: var(--awb-radius);
    padding: 22px 24px;
    margin-bottom: 18px;
}
.awb-cann-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.awb-cann-header h3 { margin: 0; font-size: 17px; font-weight: 700; }
.awb-cann-explanation { color: var(--awb-muted); margin-bottom: 14px; line-height: 1.55; }
.awb-cann-resolution { background: #f6f8fc; border: 1px solid #dbe3f1; border-radius: 12px; padding: 14px 18px; margin-top: 14px; }
.awb-cann-resolution h4 { margin: 0 0 8px; color: var(--awb-navy); }
.awb-conflict-count { font-size: 15px; margin-bottom: 20px; }

/* ── Reason List ────────────────────────────────────────── */
.awb-reason-list { margin: 0; padding: 0; list-style: none; font-size: 12px; color: var(--awb-muted); line-height: 1.6; }
.awb-reason-list li { margin-bottom: 2px; }
.awb-reason-list li::before { content: '• '; color: var(--awb-neutral); }

/* ── Suggestions ────────────────────────────────────────── */
.awb-suggestions { margin-top: 10px; background: #f0fdf9; border: 1px solid #a7f3d0; border-radius: 10px; padding: 12px 14px; font-size: 12px; }
.awb-suggestions ul { margin: 0; padding: 0; list-style: none; line-height: 1.7; color: #065f46; }
.awb-suggestions li { margin-bottom: 4px; }
.awb-suggestions li::before { content: '✓ '; color: var(--awb-success); font-weight: 700; }

/* ── Empty States ───────────────────────────────────────── */
.awb-empty-state { text-align: center; padding: 40px; background: #fff; border: 1px solid var(--awb-border); border-radius: var(--awb-radius); box-shadow: var(--awb-shadow-sm); }
.awb-empty { text-align: center; color: var(--awb-neutral); padding: 20px; }

/* ── Alerts ─────────────────────────────────────────────── */
.awb-alert { padding: 13px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.awb-alert--warn { background: #fff1f2; border: 1px solid #fecaca; color: #991b1b; }

/* ── Meta Box ───────────────────────────────────────────── */
.awb-meta-box { font-size: 13px; }

.awb-meta-score {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.awb-meta-score--good { background: linear-gradient(135deg, #0f2d4a 0%, #0a1f35 100%); color: #fff; }
.awb-meta-score--warn { background: #fffbeb; color: #92400e; }
.awb-meta-score--bad  { background: #fff1f2; color: #991b1b; }

.awb-score-ring {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-weight: 800;
}
.awb-meta-score--good .awb-score-ring { background: rgba(0,201,167,.2); color: #fff; }
.awb-score-number { font-size: 22px; line-height: 1; }
.awb-score-label  { font-size: 11px; opacity: .8; }
.awb-score-desc   { font-size: 14px; font-weight: 700; }

/* Tabs */
.awb-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--awb-border); margin-bottom: 18px; overflow: auto; }
.awb-tab {
    padding: 10px 4px;
    margin-right: 22px;
    background: none; border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer; font-size: 13px; font-family: var(--awb-font);
    margin-bottom: -2px;
    color: var(--awb-muted); font-weight: 500;
    transition: color .15s;
}
.awb-tab.active { color: var(--awb-navy); border-bottom-color: var(--awb-accent); font-weight: 700; }
.awb-tab:hover  { color: var(--awb-navy); }

.awb-tab-content { display: none; }
.awb-tab-content.active { display: block; }

/* Fields */
.awb-field { margin-bottom: 16px; }
.awb-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; }
.awb-inline-fields { display: flex; gap: 10px; }
.awb-seo-wrap input[type="text"],
.awb-seo-wrap input[type="url"],
.awb-seo-wrap input[type="search"],
.awb-seo-wrap input[type="number"],
.awb-seo-wrap input[type="email"],
.awb-seo-wrap textarea,
.awb-seo-wrap select,
.awb-meta-box input[type="text"],
.awb-meta-box textarea,
.awb-meta-box select {
    border: 1px solid var(--awb-field);
    border-radius: 8px;
    font-family: var(--awb-font);
    background: #f8fafc;
    transition: border-color .15s, box-shadow .15s;
}
.awb-seo-wrap input:focus,
.awb-seo-wrap textarea:focus,
.awb-seo-wrap select:focus,
.awb-meta-box input:focus,
.awb-meta-box textarea:focus { border-color: var(--awb-accent); box-shadow: 0 0 0 3px rgba(0,201,167,.18); outline: none; }

/* SERP Preview (intentionally mimics Google — kept neutral) */
.awb-serp-preview {
    background: #fcfcfe;
    border: 1px solid var(--awb-border);
    border-radius: 12px;
    padding: 15px 17px;
    margin-top: 14px;
    font-family: Arial, sans-serif;
}
.awb-serp-title { color: #1A0DAB; font-size: 18px; line-height: 1.3; margin-bottom: 2px; }
.awb-serp-url   { color: #006621; font-size: 13px; margin-bottom: 4px; }
.awb-serp-desc  { color: #545454; font-size: 13px; line-height: 1.5; }

/* Analysis Checks */
.awb-check {
    padding: 9px 13px;
    border-radius: 9px;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.5;
}
.awb-check--pass { background: #f0fdf9; border-left: 3px solid #059669; }
.awb-check--warn { background: #fffbeb; border-left: 3px solid #d97706; }
.awb-check--fail { background: #fff1f2; border-left: 3px solid #dc2626; }

/* ── Quick Links ────────────────────────────────────────── */
.awb-quick-links { list-style: none; padding: 0; margin: 0; }
.awb-quick-links li { padding: 7px 0; border-bottom: 1px solid var(--awb-line); font-size: 13px; }
.awb-quick-links li:last-child { border-bottom: none; }

/* ── Schema Grid ────────────────────────────────────────── */
.awb-schema-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.awb-schema-group { background: #fff; border: 1px solid var(--awb-border); border-radius: var(--awb-radius); padding: 16px 18px; box-shadow: var(--awb-shadow-sm); }
.awb-schema-group h3 { margin: 0 0 11px; font-size: 10.5px; text-transform: uppercase; color: var(--awb-accent); letter-spacing: 1px; font-weight: 700; }
.awb-schema-group ul { list-style: none; margin: 0; padding: 0; }
.awb-schema-group li { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 12.5px; border-bottom: 1px solid var(--awb-line); color: var(--awb-text); font-weight: 500; }
.awb-schema-group li:last-child { border-bottom: none; }
.awb-schema-link { font-size: 11px; color: var(--awb-neutral); }

/* ── GEO/AEO ────────────────────────────────────────────── */
.awb-checklist { list-style: none; padding: 0; }
.awb-checklist li { padding: 10px 0; border-bottom: 1px solid var(--awb-line); font-size: 13.5px; }
.awb-checklist li.done { opacity: .6; text-decoration: line-through; }

.awb-submission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.awb-submission-item { background: var(--awb-bg); border: 1px solid var(--awb-border); border-radius: 12px; padding: 14px 16px; }
.awb-submission-item code { display: block; margin: 6px 0; font-size: 11px; word-break: break-all; }

.awb-status-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.awb-post-selector { display: flex; gap: 10px; margin-bottom: 16px; }

details.awb-preview summary { cursor: pointer; color: var(--awb-primary); font-size: 13px; font-weight: 600; }
details.awb-preview pre { background: #0e1526; color: #9fe9d3; padding: 16px 18px; border-radius: 12px; font-size: 12px; overflow: auto; max-height: 320px; font-family: var(--awb-mono); line-height: 1.7; }

#awb-citation-result { margin-top: 16px; }
.awb-ai-preview { margin-top: 16px; background: #f6f8fc; border: 1px solid #dbe3f1; border-radius: 12px; padding: 15px 18px; }
.awb-qa-pair { margin-bottom: 10px; }
blockquote#awb-ai-summary { border-left: 3px solid var(--awb-accent); padding-left: 14px; font-style: italic; color: #384663; }

/* ── Settings ───────────────────────────────────────────── */
.awb-settings-section { background: #fff; border: 1px solid var(--awb-border); border-radius: var(--awb-radius); padding: 22px 26px; margin-bottom: 16px; box-shadow: var(--awb-shadow-sm); }
.awb-settings-section h2 { margin-top: 0; font-size: 15px; font-weight: 700; color: var(--awb-navy); padding-bottom: 12px; border-bottom: 1px solid var(--awb-line); }
.awb-hreflang-row { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }

/* ── Date range picker ────────────────────────────────────── */
.awb-date-picker { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.awb-range-pills {
    display: inline-flex; align-items: center;
    background: #fff; border: 1px solid var(--awb-border);
    border-radius: 99px; padding: 3px; gap: 2px;
    box-shadow: var(--awb-shadow-sm);
}
.awb-range-pill {
    border: none; background: transparent; padding: 6px 16px; font-size: 12.5px; font-weight: 600;
    color: var(--awb-muted); border-radius: 99px; cursor: pointer; text-decoration: none;
    font-family: var(--awb-font); line-height: 1.4; display: inline-block;
    transition: background .15s, color .15s;
}
.awb-range-pill:hover { color: var(--awb-navy); background: var(--awb-bg); }
.awb-range-pill.is-active { background: var(--awb-navy); color: #fff; }
.awb-range-pill.is-active:hover { color: #fff; }
.awb-date-picker__custom { display: flex; align-items: center; gap: 6px; }
.awb-date-picker__custom input[type="date"] {
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    border: 1px solid var(--awb-field); border-radius: 9px; padding: 6px 10px; font-size: 13px;
    font-family: var(--awb-font); color: var(--awb-text); background: #fff; box-sizing: border-box;
}
.awb-date-picker__custom input[type="date"]:hover { border-color: var(--awb-neutral); }
.awb-date-picker__custom input[type="date"]:focus { border-color: var(--awb-accent); outline: none; }
.awb-date-picker__custom input[type="date"]::-webkit-calendar-picker-indicator { border-radius: 4px; }
.awb-date-picker__custom span.awb-date-sep { color: var(--awb-neutral); font-size: 12px; }
.awb-date-picker__custom .button { padding: 2px 12px; }
.awb-date-picker__reset { font-size: 12px; color: var(--awb-neutral); text-decoration: underline; }
.awb-date-picker__reset:hover { color: var(--awb-primary); }
.awb-date-picker.awb-is-loading { opacity: .6; pointer-events: none; }

/* ── Misc ───────────────────────────────────────────────── */
.awb-see-all { font-size: 12px; font-weight: 600; margin-left: 8px; color: var(--awb-primary); text-decoration: none; }
.awb-view-link { font-size: 11px; color: var(--awb-neutral); }
.awb-hint { font-size: 12px; color: var(--awb-neutral); }
.awb-action-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.awb-notice { padding: 11px 16px; background: #d1fae5; border: 1px solid #a7f3d0; border-radius: 10px; color: #065f46; font-weight: 600; }
.awb-notice--error { background: #fee2e2; border-color: #fecaca; color: #991b1b; }
.awb-seo-wrap code, .awb-meta-box code { background: #f1f5f9; padding: 2px 6px; border-radius: 5px; font-size: 12px; font-family: var(--awb-mono); color: var(--awb-navy); }

/* ── WordPress button retheme (scoped to plugin) ─────────── */
.awb-seo-wrap .button,
.awb-meta-box .button {
    border-radius: 8px; font-weight: 600; font-family: var(--awb-font);
    border-color: var(--awb-border); color: var(--awb-navy); background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.awb-seo-wrap .button:hover,
.awb-meta-box .button:hover { border-color: var(--awb-neutral); color: var(--awb-navy); background: #fff; box-shadow: var(--awb-shadow-sm); }
.awb-seo-wrap .button-primary,
.awb-meta-box .button-primary,
.awb-seo-wrap .button-primary:focus {
    background: var(--awb-accent) !important; border-color: var(--awb-accent) !important;
    color: #0f172a !important; box-shadow: none !important; text-shadow: none !important;
    font-weight: 700;
}
.awb-seo-wrap .button-primary:hover,
.awb-meta-box .button-primary:hover { background: var(--awb-accent-h) !important; border-color: var(--awb-accent-h) !important; color: #0f172a !important; }

/* =========================================================
   Licensing & Upgrade UI
   ========================================================= */

/* ── Upgrade Banner ──────────────────────────────────────── */
.awb-upgrade-banner {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, #0f2d4a 0%, #0a1f35 100%);
    color: #fff; border-radius: var(--awb-radius);
    padding: 16px 22px; margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,201,167,.12);
}
.awb-upgrade-banner__icon { font-size: 28px; flex-shrink: 0; color: var(--awb-accent); }
.awb-upgrade-banner__body { flex: 1; }
.awb-upgrade-banner__body h3 { margin: 0 0 4px; color: #fff; font-size: 15px; font-weight: 700; }
.awb-upgrade-banner__body p  { margin: 0; font-size: 13px; opacity: .82; }
.awb-upgrade-banner__cta {
    flex-shrink: 0; white-space: nowrap;
    background: var(--awb-accent) !important; color: #0e1526 !important;
    border-color: var(--awb-accent) !important; font-weight: 700 !important;
}
.awb-upgrade-banner__cta:hover { background: var(--awb-accent-h) !important; border-color: var(--awb-accent-h) !important; }

/* ── Inline Pro Badge ────────────────────────────────────── */
.awb-pro-badge {
    display: inline-block; background: #dc2626; color: #fff;
    font-size: 8.5px; font-weight: 800; letter-spacing: .6px;
    padding: 2px 7px; border-radius: 99px; vertical-align: middle;
    text-transform: uppercase; margin-left: 5px;
}
.awb-upgrade-link { font-size: 12px; color: var(--awb-primary); margin-left: 6px; }

/* ── Locked Feature Page ──────────────────────────────────── */
.awb-locked-page {
    display: flex; align-items: center; justify-content: center;
    min-height: 380px;
    background: #fff;
    border: 1px solid var(--awb-border);
    border-radius: var(--awb-radius);
    margin-top: 20px;
}
.awb-locked-page__inner {
    text-align: center; max-width: 420px; padding: 48px 32px;
}
.awb-locked-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.awb-locked-page__inner h3 { font-size: 22px; margin: 0 0 10px; font-weight: 800; }
.awb-locked-page__inner p  { color: var(--awb-muted); margin-bottom: 20px; }
.awb-locked-sub { font-size: 12px; color: var(--awb-neutral); margin-top: 10px; }

/* ── License Page ────────────────────────────────────────── */
.awb-license-status-card {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 24px 28px; margin-bottom: 18px;
    border-radius: var(--awb-radius);
    border: 1px solid var(--awb-border);
    background: #fff;
    box-shadow: var(--awb-shadow-sm);
}
.awb-license-status-card--active  { border-color: transparent; background: linear-gradient(140deg, #0f2d4a 0%, #0a1f35 100%); color: #fff; box-shadow: 0 4px 20px rgba(0,201,167,.12); }
.awb-license-status-card--active h2,
.awb-license-status-card--active h3 { color: #fff; }
.awb-license-status-card--active p,
.awb-license-status-card--active .awb-license-details { color: rgba(200,230,225,.78); }
.awb-license-status-card--inactive { border-color: var(--awb-border); }

.awb-pro-status {
    display: inline-block; padding: 4px 14px;
    border-radius: 99px; font-size: 12px; font-weight: 800;
    letter-spacing: .5px; text-transform: uppercase;
}
.awb-pro-status--active  { background: var(--awb-accent); color: #0f172a; }
.awb-pro-status--expired { background: #fef3c7; color: #92400e; }
.awb-pro-status--free    { background: #f1f5f9; color: #475569; }

.awb-license-details { margin-top: 10px; font-size: 13px; }
.awb-license-details p { margin: 4px 0; }

.awb-license-form { display: flex; gap: 10px; align-items: center; margin: 12px 0; flex-wrap: wrap; }
.awb-license-key-field { font-family: var(--awb-mono); letter-spacing: .5px; min-width: 340px; }
.awb-license-spinner { color: var(--awb-neutral); font-size: 13px; }

.awb-license-message { padding: 10px 14px; border-radius: 9px; margin-top: 8px; font-size: 13px; }
.awb-license-message--success { background: #d4f7ee; color: #0b8f6b; border: 1px solid #93e7d0; }
.awb-license-message--error   { background: #f6e2e8; color: #871a37; border: 1px solid #e6b3c1; }

.awb-license-buy { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--awb-border); font-size: 13px; }

.awb-deactivate-btn { color: var(--awb-danger) !important; border-color: var(--awb-danger) !important; }

/* ── Pro Features Grid ───────────────────────────────────── */
.awb-pro-features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px;
    margin: 16px 0;
}
.awb-pro-feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 11px;
    background: #f2fdfa; border: 1px solid #b7f0e0;
    font-size: 13px;
}
.awb-pro-feature-item--active      { background: #f2fdfa; border-color: #b7f0e0; }
.awb-pro-feature-item--highlighted { background: #eafdf8; border-color: #01c496; font-weight: 600; }
.awb-pro-feature-icon { font-size: 16px; flex-shrink: 0; color: var(--awb-success); }

.awb-pro-cta-block { text-align: center; padding: 20px 0 8px; border-top: 1px solid var(--awb-border); margin-top: 16px; }
.awb-pro-cta-block small { display: block; margin-top: 6px; color: var(--awb-neutral); }

/* ── Simulate Mode ────────────────────────────────────────── */
.awb-simulate-options { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0 4px; }
.awb-simulate-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; padding: 12px 16px; border: 1.5px solid var(--awb-border); border-radius: 12px; }
.awb-simulate-option input { margin: 0; accent-color: var(--awb-primary); }
.awb-simulate-saved { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--awb-success); }

/* ── Feature Tiers Table ──────────────────────────────────── */
#awb-feature-tiers-table td { vertical-align: middle; }
.awb-feature-tier-select { font-size: 13px; font-family: var(--awb-font); }

/* ── Pro Landing Page ────────────────────────────────────── */
.awb-pro-landing { max-width: 860px; }
.awb-pro-landing__hero {
    text-align: center; padding: 48px 40px;
    background: linear-gradient(140deg, #0f2d4a 0%, #0a1f35 100%);
    border-radius: 16px; color: #fff; margin-bottom: 22px;
    box-shadow: 0 8px 32px rgba(0,201,167,.14);
}
.awb-pro-landing__lock  { font-size: 48px; display: block; margin-bottom: 12px; color: var(--awb-accent); }
.awb-pro-landing__hero h1 { color: #fff; font-size: 28px; margin: 0 0 8px; font-weight: 800; }
.awb-pro-landing__sub   { font-size: 15px; opacity: .82; margin-bottom: 20px; }

.awb-price         { font-size: 52px; font-weight: 800; color: #fff; }
.awb-price-period  { font-size: 18px; opacity: .65; }

.awb-pro-landing__perks { list-style: none; padding: 0; margin: 20px auto; max-width: 280px; text-align: left; }
.awb-pro-landing__perks li { padding: 5px 0; font-size: 14px; }

.button-hero {
    font-size: 15px !important; padding: 13px 30px !important;
    height: auto !important; background: var(--awb-accent) !important;
    color: #0e1526 !important; border-color: var(--awb-accent) !important;
    font-weight: 800 !important; border-radius: 12px !important;
}
.button-hero:hover { background: var(--awb-accent-h) !important; border-color: var(--awb-accent-h) !important; }

.awb-pro-landing__already { margin-top: 14px; font-size: 13px; opacity: .78; }
.awb-pro-landing__already a { color: #9fe9d3; }
.awb-pro-landing__features { background: #fff; border: 1px solid var(--awb-border); border-radius: var(--awb-radius); padding: 24px 28px; }
.awb-pro-landing__features h2 { margin-top: 0; font-weight: 700; }

/* ── Menu Pro Badge ──────────────────────────────────────── */
.awb-menu-pro-badge {
    display: inline-block; background: #dc2626; color: #fff;
    font-size: 7.5px; font-weight: 800; padding: 1px 5px;
    border-radius: 99px; vertical-align: middle; margin-left: 5px;
    text-transform: uppercase; letter-spacing: .4px;
}

/* ── Rank Tracker ────────────────────────────────────────── */
.awb-rank-position {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 34px; padding: 4px 11px; border-radius: 99px;
    font-weight: 800; font-size: 12px;
}
.awb-rank-position--top  { background: #d1fae5; color: #065f46; }
.awb-rank-position--good { background: #d1fae5; color: #065f46; }
.awb-rank-position--ok   { background: #e0f2fe; color: #075985; }
.awb-rank-position--low  { background: #fef3c7; color: #92400e; }

/* Upgrade row in table */
.awb-upgrade-row-banner {
    background: #f6f8fc; padding: 11px 14px; border-radius: 10px;
    font-size: 13px;
}
.awb-upgrade-row-banner a { font-weight: 600; margin-left: 8px; color: var(--awb-primary); }

/* ── AI Search Optimizer ─────────────────────────────────── */
.awb-ai-score-ring {
    width: 62px; height: 62px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; font-size: 20px; font-weight: 800;
    flex-shrink: 0;
}
.awb-ai-score-ring span { font-size: 10px; font-weight: 400; }
.awb-ai-score-ring--good { background: #d1fae5; color: #065f46; }
.awb-ai-score-ring--warn { background: #fef3c7; color: #92400e; }
.awb-ai-score-ring--fail { background: #fee2e2; color: #991b1b; }

.awb-ai-check-list { list-style: none; margin: 0; padding: 0; }
.awb-ai-check {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; padding: 8px 0;
    border-bottom: 1px solid var(--awb-line);
}
.awb-ai-check:last-child { border-bottom: none; }
.awb-ai-check__icon {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.awb-ai-check--pass .awb-ai-check__icon { background: #d1fae5; color: #065f46; }
.awb-ai-check--warn .awb-ai-check__icon { background: #fef3c7; color: #92400e; }
.awb-ai-check--fail .awb-ai-check__icon { background: #fee2e2; color: #991b1b; }

/* Simulated answer box */
.awb-ai-answer-box {
    border: 1px solid #cdd6ea; border-radius: 12px; overflow: hidden;
    font-family: var(--awb-font);
}
.awb-ai-answer-box__header {
    background: #21335c; color: #fff; padding: 9px 14px; font-size: 12px;
    font-weight: 500; display: flex; align-items: center; gap: 7px;
}
.awb-ai-answer-box__dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}
.awb-ai-answer-box__dot--perplexity { background: var(--awb-accent); }
.awb-ai-answer-box__body {
    padding: 15px 16px; background: #fafbfd; font-size: 13px; color: #1f2937;
    line-height: 1.6;
}
.awb-ai-summary { margin: 0 0 12px; }
.awb-ai-section { margin: 10px 0; }
.awb-ai-section strong { display: block; font-size: 11px; text-transform: uppercase;
    letter-spacing: .5px; color: #6b7280; margin-bottom: 5px; }
.awb-ai-section ul { margin: 0; padding-left: 16px; }
.awb-ai-section ul li { margin-bottom: 4px; font-size: 13px; }
.awb-ai-qa { background: #f6f8fc; border-radius: 8px; padding: 9px 11px; margin: 6px 0; }
.awb-ai-qa__q { font-weight: 600; font-size: 12px; color: #21335c; margin-bottom: 3px; }
.awb-ai-qa__a { font-size: 12px; color: #374151; }
.awb-ai-empty { font-size: 12px; color: #9CA3AF; font-style: italic; margin: 8px 0 0; }
.awb-ai-answer-box__source {
    font-size: 11px; color: var(--awb-neutral); border-top: 1px solid #eceff5;
    padding: 8px 16px; background: #fff;
}
.awb-ai-answer-box__source a { color: #21335c; font-family: var(--awb-mono); }

/* Question Gap Detector */
.awb-gap-list { list-style: none; margin: 0; padding: 0; }
.awb-gap-list li {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 0; border-bottom: 1px solid var(--awb-line);
    font-size: 13px;
}
.awb-gap-list li:last-child { border-bottom: none; }
.awb-gap-list--covered li { color: #0c5c46; }
.awb-gap-list--covered li::before { content: '✓'; color: var(--awb-success); font-weight: 700; flex-shrink: 0; }
.awb-gap-list--missing li { color: #1f2937; }
.awb-gap-list--missing li::before { content: '✗'; color: var(--awb-danger); font-weight: 700; flex-shrink: 0; }
.awb-gap-q { flex: 1; }
.awb-copy-question { margin-left: auto; flex-shrink: 0; font-size: 11px !important; }
.awb-badge--info { background: #eceff5; color: #21335c; border-radius: 99px; padding: 2px 9px; font-size: 11px; font-weight: 700; }

/* ── Analytics Dashboard ─────────────────────────────────── */
.awb-analytics-kpis {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}
.awb-kpi-card {
    background: #fff;
    border: 1px solid var(--awb-border);
    border-radius: var(--awb-radius);
    padding: 20px 22px;
    box-shadow: var(--awb-shadow-sm);
    transition: box-shadow .2s;
}
.awb-kpi-card:hover { box-shadow: var(--awb-shadow); }
.awb-kpi-card--health {
    background: linear-gradient(140deg, #0f2d4a 0%, #0a1f35 100%);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0,201,167,.15);
}
.awb-kpi-card--health .awb-kpi-card__label { color: rgba(148,210,200,.75); }
.awb-kpi-card--health .awb-kpi-card__value { color: #fff; }
.awb-kpi-card--health .awb-kpi-card__sub   { color: rgba(148,210,200,.7); }
.awb-kpi-card__label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--awb-neutral);
    margin-bottom: 10px;
    font-weight: 700;
}
.awb-kpi-card__value {
    font-size: 32px;
    font-weight: 800;
    color: var(--awb-navy);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.8px;
    font-variant-numeric: tabular-nums;
}
.awb-kpi-card__change {
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 8px; border-radius: 6px;
}
.awb-kpi-card__change--up   { color: #065f46; background: #d1fae5; }
.awb-kpi-card__change--down { color: #991b1b; background: #fee2e2; }
.awb-kpi-card__sub { font-size: 12px; color: var(--awb-neutral); }

/* Chart legend */
.awb-chart-legend { font-size: 12px; color: var(--awb-neutral); display: flex; align-items: center; }
.awb-legend-dot {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 3px; margin-right: 5px;
}
.awb-legend-dot--clicks { background: #00c9a7; }
.awb-legend-dot--impr   { background: #1e3a5f; }

/* Analytics table */
.awb-analytics-table th, .awb-analytics-table td { white-space: nowrap; }
.awb-analytics-table td strong { font-variant-numeric: tabular-nums; }

/* Position pills */
.awb-pos-pill {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 32px; padding: 3px 9px; border-radius: 99px;
    font-size: 11px; font-weight: 800;
}
.awb-pos-pill--top  { background: #d1fae5; color: #065f46; }
.awb-pos-pill--good { background: #d1fae5; color: #065f46; }
.awb-pos-pill--ok   { background: #e0f2fe; color: #075985; }
.awb-pos-pill--low  { background: #fef3c7; color: #92400e; }

/* Health rows */
.awb-health-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--awb-line);
}
.awb-health-row:last-child { border-bottom: none; }
.awb-health-row strong { font-variant-numeric: tabular-nums; }
.awb-health-row--warn strong { color: var(--awb-warn); }
.awb-health-row--bad  strong { color: var(--awb-danger); }
.awb-health-row a { text-decoration: none; color: var(--awb-primary); font-weight: 600; }
.awb-health-row a:hover { color: var(--awb-accent); text-decoration: none; }

/* ── Stat aliases (single-dash variant used by Local SEO / Client Reports /
   CWV Monitor / WooCommerce SEO views) ──────────────────────────────────── */
.awb-stat-num   { display: block; font-size: 30px; font-weight: 800; color: var(--awb-text); }
.awb-stat-label { display: block; font-size: 12px; color: var(--awb-neutral); margin-top: 4px; }

/* ── Alerts: success variant ─────────────────────────────── */
.awb-alert--good { background: #f2fdfa; border: 1px solid #b7f0e0; color: #0b8f6b; }

/* ── Local SEO: business hours table ─────────────────────── */
#awb-hours-table input[type="time"] { width: 110px; }
#awb-hours-table td, #awb-hours-table th { padding: 7px 10px; }

/* ── Client Reports: saved-report row actions & share link ── */
#awb-client-reports-table .button-small,
#awb-locations-table .button-small,
#awb-cwv-table .button-small { margin-right: 4px; }
.awb-share-url {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--awb-mono); font-size: 12px;
    background: var(--awb-bg); border: 1px solid var(--awb-border);
    border-radius: 8px; padding: 4px 10px; color: var(--awb-muted);
}

/* ── Core Web Vitals Monitor: metric badges & source tag ──── */
#awb-cwv-table td { font-family: var(--awb-mono); font-size: 12.5px; }
#awb-cwv-table td:first-child { font-family: var(--awb-font); }
.awb-badge--field { background: #eceff5; color: #21335c; }
.awb-badge--lab    { background: #eceff5; color: #64708a; }

/* ── WooCommerce SEO: gap badges reuse .awb-badge--warn ────── */
.awb-stats-row + .awb-card { margin-top: 4px; }

/* =========================================================
   Font — force Cairo on every text node inside the plugin.
   Monospace elements (code, pre, .awb-mono) are exempted.
   ========================================================= */

/* Plugin page body gets Cairo as the base */
body[class*="page_awb-seo"] #wpbody,
body[class*="page_awb-seo"] #wpcontent { font-family: var(--awb-font); }

/* Every child of the plugin wrap inherits Cairo */
.awb-seo-wrap * { font-family: var(--awb-font); }

/* Restore monospace where it belongs */
.awb-seo-wrap code,
.awb-seo-wrap pre,
.awb-seo-wrap kbd,
.awb-seo-wrap .awb-share-url,
#awb-cwv-table td,
.awb-redirect-form .regular-text,
.awb-license-key-field { font-family: var(--awb-mono); }

/* WordPress admin menu — AWBSEO items */
#adminmenu .toplevel_page_awb-seo > a,
#adminmenu li[class*="awb-seo"] > a,
#adminmenu li[class*="page_awb-seo"] > a { font-family: var(--awb-font) !important; }

/* =========================================================
   Spacing — more generous padding on cards, KPI strip, page
   ========================================================= */

/* Breathing room on all plugin admin pages */
body[class*="page_awb-seo"] #wpbody-content { padding-top: 8px; }

/* Cards — generous padding override */
.awb-card { padding: 24px 28px; }
.awb-card h2 { margin-top: 0; margin-bottom: 16px; }

/* KPI strip */
.awb-analytics-kpis { gap: 16px; margin-bottom: 20px; }
.awb-kpi-card { padding: 22px 24px; }
.awb-kpi-card__label { margin-bottom: 10px; }
.awb-kpi-card__value { font-size: 30px; margin-bottom: 10px; }

/* Section gap */
.awb-card + .awb-card { margin-top: 0; }
.awb-date-picker { margin-bottom: 28px; }

/* =========================================================
   SEO Health section — .awb-hc-* rows (new in 1.1.1)
   ========================================================= */

.awb-health-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.awb-health-section__title { margin: 0 !important; }

.awb-health-score {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.awb-health-score__ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.awb-health-score__pct {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--awb-font);
}

.awb-health-checks { margin-top: 4px; }

.awb-hc-row {
    display: grid;
    grid-template-columns: 26px 1fr 80px 80px 56px;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--awb-line);
    font-size: 13px;
}
.awb-hc-row:last-child { border-bottom: none; }

.awb-hc-icon { font-size: 15px; text-align: center; line-height: 1; }

.awb-hc-label {
    font-weight: 600;
    color: var(--awb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.awb-hc-bar-wrap {
    height: 7px;
    background: var(--awb-bg);
    border-radius: 99px;
    overflow: hidden;
}
.awb-hc-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width .5s ease;
    min-width: 0;
}

.awb-hc-count {
    font-size: 12px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.awb-hc-fix {
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
}
.awb-hc-fix a {
    color: var(--awb-primary);
    text-decoration: none;
    font-weight: 600;
}
.awb-hc-fix a:hover { text-decoration: underline; }

/* =========================================================
   "Suggest For Me" — Premium AI Button (v1.2.6)
   ========================================================= */

@keyframes awb-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.awb-suggest-desc {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 16px !important;
    background: linear-gradient(135deg, #00c9a7 0%, #0097a7 100%) !important;
    border: none !important;
    border-radius: 99px !important;
    color: #fff !important;
    font-family: var(--awb-font) !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-shadow: none !important;
    box-shadow: 0 2px 8px rgba(0,201,167,.35) !important;
    transition: transform .15s, box-shadow .15s, opacity .15s !important;
    letter-spacing: .2px !important;
    height: auto !important;
    line-height: 1.4 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Shimmer overlay */
.awb-suggest-desc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,.22) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    animation: awb-shimmer 2.4s infinite linear;
    border-radius: inherit;
    pointer-events: none;
}

.awb-suggest-desc:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,201,167,.45) !important;
    color: #fff !important;
    background: linear-gradient(135deg, #00d9b4 0%, #00a3b5 100%) !important;
}

.awb-suggest-desc:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 4px rgba(0,201,167,.3) !important;
}

.awb-suggest-desc:disabled,
.awb-suggest-desc[disabled] {
    opacity: .55 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Spinner next to the button */
.awb-suggest-spinner .spinner { float: none !important; margin: 0 !important; vertical-align: middle; }

/* =========================================================
   Cannibalization card & settings — updated visual
   ========================================================= */

.awb-cannibalization-card {
    box-shadow: var(--awb-shadow-sm);
}

.awb-cann-resolution {
    background: #f8fafc;
    border-color: var(--awb-border);
    border-radius: 10px;
}

/* =========================================================
   Pro features grid — updated colours
   ========================================================= */

.awb-pro-feature-item--active {
    background: #f0fdf9;
    border-color: #a7f3d0;
}
.awb-pro-feature-item--highlighted {
    background: #ecfdf5;
    border-color: #059669;
    font-weight: 600;
}
.awb-pro-feature-icon { color: var(--awb-success); }

/* =========================================================
   Dashboard — SEO health card dark variant update
   ========================================================= */

.awb-kpi-card--health .awb-kpi-card__value {
    color: #e2f8f4;
}
.awb-kpi-card--health .awb-kpi-card__change--up {
    background: rgba(0,201,167,.22);
    color: #7fffd4;
}

/* =========================================================
   Breathing room — page body
   ========================================================= */

body[class*="page_awb-seo"] #wpbody-content { padding-top: 10px; }
