/* ===================================================================
   RelevanceTech PR Solution — Frontend & Admin Styles  v1.0.3
   ===================================================================
   FONT SIZE QUICK CONTROL — edit these variables to resize everything:
   --rt-font-base   18px   ← master size; all rem values scale from this
   --rt-font-title  1.2rem  ← service card name
   --rt-font-body   1rem    ← feature list text
   --rt-font-price  1.8rem  ← price amount
   --rt-font-h3     1.7rem  ← group headings
   --rt-font-hero   2.6rem  ← hero banner headline
   =================================================================== */

:root {
    /* ── FONT SIZES (increase --rt-font-base to scale everything up) ── */
    --rt-font-base:   18px;
    --rt-font-title:  1.2rem;
    --rt-font-body:   1rem;
    --rt-font-sm:     0.9rem;
    --rt-font-xs:     0.82rem;
    --rt-font-price:  1.8rem;
    --rt-font-h3:     1.7rem;
    --rt-font-hero:   2.6rem;

    /* ── COLOURS ── */
    --rt-primary:   #1a237e;
    --rt-secondary: #0d47a1;
    --rt-accent:    #1565c0;
    --rt-success:   #2e7d32;
    --rt-danger:    #c62828;
    --rt-warning:   #e65100;
    --rt-purple:    #6a1b9a;
    --rt-light:     #f5f7fa;
    --rt-border:    #dde3ed;
    --rt-text:      #1a1a2e;
    --rt-muted:     #546e7a;

    /* ── SHAPES ── */
    --rt-radius:    12px;
    --rt-radius-sm: 7px;
    --rt-shadow:    0 4px 28px rgba(0,0,0,0.10);
    --rt-shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
}

/* ── Base wrapper ───────────────────────────────────────────── */
.rt-prs-services-wrap {
    font-size: var(--rt-font-base);
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: var(--rt-text);
    line-height: 1.65;
}

/* ── Hero ───────────────────────────────────────────────────── */
.rt-prs-hero {
    background: linear-gradient(135deg, var(--rt-primary) 0%, var(--rt-accent) 100%);
    color: #fff;
    padding: 60px 52px;
    border-radius: var(--rt-radius);
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.rt-prs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rt-prs-hero h2 {
    font-size: var(--rt-font-hero);
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    border: none;
    line-height: 1.2;
}
.rt-prs-hero p {
    font-size: 1.15rem;
    opacity: 0.93;
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Badges ─────────────────────────────────────────────────── */
.rt-prs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 42px;
}
.rt-prs-badges span {
    background: #fff;
    border: 1px solid var(--rt-border);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: var(--rt-font-sm);
    font-weight: 600;
    color: var(--rt-primary);
    box-shadow: var(--rt-shadow-sm);
}

/* ── Service Group ──────────────────────────────────────────── */
.rt-prs-service-group { margin-bottom: 56px; }
.rt-prs-group-header  { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 3px solid var(--rt-primary); }
.rt-prs-group-header h3 { font-size: var(--rt-font-h3); font-weight: 800; color: var(--rt-primary); margin: 0 0 6px; }
.rt-prs-group-desc    { color: var(--rt-muted); margin: 0; font-size: var(--rt-font-body); }

/* ── Grid ───────────────────────────────────────────────────── */
.rt-prs-service-grid  { display: grid; gap: 24px; }
.rt-prs-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rt-prs-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rt-prs-cols-1 { grid-template-columns: 1fr; }

@media (max-width: 960px) { .rt-prs-cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .rt-prs-cols-3, .rt-prs-cols-2 { grid-template-columns: 1fr; }
    .rt-prs-hero { padding: 36px 20px; }
    .rt-prs-hero h2 { font-size: 1.9rem; }
}

/* ── Service Card ───────────────────────────────────────────── */
.rt-prs-service-card {
    background: #fff;
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    position: relative;
}
.rt-prs-service-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--rt-primary), var(--rt-accent));
    position: absolute;
    top: 0; left: 0; right: 0;
    border-radius: var(--rt-radius) var(--rt-radius) 0 0;
}
.rt-prs-service-card:hover {
    box-shadow: var(--rt-shadow);
    transform: translateY(-3px);
    border-color: var(--rt-accent);
}

.rt-prs-card-badge {
    display: inline-block;
    background: var(--rt-light);
    color: var(--rt-primary);
    border: 1px solid var(--rt-border);
    font-size: var(--rt-font-xs);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}
.rt-prs-card-title {
    font-size: var(--rt-font-title);
    font-weight: 700;
    color: var(--rt-text);
    margin: 0 0 18px;
    line-height: 1.45;
    flex: 1;
}

/* ── Specs strip ────────────────────────────────────────────── */
.rt-prs-card-specs {
    background: var(--rt-light);
    border-radius: var(--rt-radius-sm);
    padding: 14px 18px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 14px;
    font-size: var(--rt-font-sm);
}
.rt-prs-card-specs .spec-label { color: var(--rt-muted); font-weight: 600; white-space: nowrap; }
.rt-prs-card-specs .spec-value { color: var(--rt-text); font-weight: 500; }

/* ── Feature list ───────────────────────────────────────────── */
.rt-prs-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: var(--rt-font-body);
    color: var(--rt-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rt-prs-card-features li { display: flex; align-items: flex-start; gap: 8px; }
.rt-prs-card-features li::before { content: '✓'; color: var(--rt-success); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Extras tags (shortcode card) ───────────────────────────── */
.rt-prs-extras-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.rt-prs-extras-tags .extra-tag {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-radius: 4px;
    padding: 3px 9px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ── Price ──────────────────────────────────────────────────── */
.rt-prs-price { margin-bottom: 22px; padding-top: 16px; border-top: 1px solid var(--rt-border); }
.rt-prs-price-from  { font-size: var(--rt-font-xs); color: var(--rt-muted); display: block; margin-bottom: 3px; }
.rt-prs-price-amount { font-size: var(--rt-font-price); font-weight: 800; color: var(--rt-primary); line-height: 1; }
.rt-prs-price-amount .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.rt-prs-price-per   { font-size: var(--rt-font-xs); color: var(--rt-muted); display: block; margin-top: 4px; }

/* ── Buttons ────────────────────────────────────────────────── */
.rt-prs-card-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.rt-prs-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: var(--rt-radius-sm);
    font-size: var(--rt-font-sm);
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
    border: 2px solid transparent;
    flex: 1;
    line-height: 1.3;
}
.rt-prs-btn-primary { background: var(--rt-primary); color: #fff !important; border-color: var(--rt-primary); }
.rt-prs-btn-primary:hover { background: var(--rt-secondary); border-color: var(--rt-secondary); color: #fff !important; }
.rt-prs-btn-secondary { background: transparent; color: var(--rt-primary) !important; border-color: var(--rt-primary); }
.rt-prs-btn-secondary:hover { background: var(--rt-primary); color: #fff !important; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.rt-prs-cta-banner {
    background: linear-gradient(135deg, var(--rt-secondary), var(--rt-accent));
    color: #fff;
    text-align: center;
    padding: 52px 44px;
    border-radius: var(--rt-radius);
    margin-top: 52px;
}
.rt-prs-cta-banner h3 { color: #fff; font-size: 2rem; font-weight: 800; margin: 0 0 12px; border: none; }
.rt-prs-cta-banner p  { opacity: .92; font-size: 1.15rem; margin: 0 0 26px; }

/* ── No services ────────────────────────────────────────────── */
.rt-prs-no-services {
    text-align: center; color: var(--rt-muted); padding: 52px;
    border: 2px dashed var(--rt-border); border-radius: var(--rt-radius);
    font-size: var(--rt-font-body);
}

/* ════════════════════════════════════════════════════════════
   CHECKOUT EXTRAS (Add-ons)
   ════════════════════════════════════════════════════════════ */
.rt-prs-checkout-fields {
    background: var(--rt-light);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
    padding: 30px;
    margin: 26px 0;
}
.rt-prs-checkout-fields h3 { margin: 0 0 8px; color: var(--rt-primary); font-size: 1.25rem; }
.rt-prs-intro { color: var(--rt-muted); margin-bottom: 24px; font-size: var(--rt-font-body); }

.rt-prs-service-fields {
    background: #fff;
    border: 1px solid var(--rt-border);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 20px;
}
.rt-prs-service-fields h4 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--rt-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rt-border);
}

/* Extras section header */
.rt-prs-extras-section { margin: 18px 0; }
.rt-prs-extras-header  { margin-bottom: 14px; }
.rt-prs-extras-label   { display: block; font-size: 1rem; font-weight: 700; color: var(--rt-text); margin-bottom: 4px; }
.rt-prs-extras-subtitle { display: block; font-size: 0.85rem; color: var(--rt-muted); }

/* Extras grid */
.rt-prs-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
@media (max-width: 600px) { .rt-prs-extras-grid { grid-template-columns: 1fr 1fr; } }

/* Extras card (each add-on is a checkbox styled as a card) */
.rt-prs-extra-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 12px 12px;
    border: 2px solid var(--rt-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s, background .18s, transform .12s;
    text-align: center;
    user-select: none;
    font-size: var(--rt-font-sm);
}
.rt-prs-extra-card:hover {
    border-color: var(--rt-accent);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-sm);
}
.rt-prs-extra-card.selected {
    border-color: var(--rt-primary);
    background: #e8eaf6;
}
.rt-prs-extra-card.loading { opacity: .6; pointer-events: none; }

.rt-prs-extra-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.rt-prs-extra-icon { font-size: 1.8rem; line-height: 1; }
.rt-prs-extra-info { display: flex; flex-direction: column; gap: 2px; }
.rt-prs-extra-name { font-weight: 700; color: var(--rt-text); font-size: var(--rt-font-sm); line-height: 1.3; }
.rt-prs-extra-code { font-size: 0.72rem; color: var(--rt-muted); background: var(--rt-light); padding: 1px 6px; border-radius: 4px; width: fit-content; margin: 0 auto; }
.rt-prs-extra-price {
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--rt-primary);
    background: var(--rt-light);
    border-radius: 20px;
    padding: 3px 10px;
}
.rt-prs-extra-free { color: var(--rt-success); }

/* Checkmark overlay */
.rt-prs-extra-check {
    position: absolute;
    top: 6px; right: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rt-primary);
    opacity: 0;
    transition: opacity .15s;
}
.rt-prs-extra-card.selected .rt-prs-extra-check { opacity: 1; }

/* Extras subtotal */
.rt-prs-extras-subtotal {
    margin-top: 12px;
    padding: 10px 16px;
    background: #e8eaf6;
    border-radius: 8px;
    font-size: var(--rt-font-sm);
    color: var(--rt-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rt-prs-min-qty-warning {
    background: #fff3e0;
    border-left: 4px solid var(--rt-warning);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: var(--rt-font-sm);
    color: var(--rt-warning);
    margin-bottom: 16px;
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ════════════════════════════════════════════════════════════ */
.rt-prs-product-meta {
    background: var(--rt-light);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
    padding: 24px 28px;
    margin: 24px 0;
    font-size: var(--rt-font-body);
}
.rt-prs-product-meta h4 { font-size: 1.05rem; font-weight: 700; color: var(--rt-primary); margin: 0 0 14px; border-bottom: 2px solid var(--rt-border); padding-bottom: 8px; }
.rt-prs-product-meta table { width: 100%; border-collapse: collapse; }
.rt-prs-product-meta td   { padding: 8px 10px; border-bottom: 1px solid var(--rt-border); font-size: var(--rt-font-body); }
.rt-prs-product-meta td:first-child { font-weight: 600; color: var(--rt-muted); width: 40%; white-space: nowrap; }

/* Extras list (product page) */
.rt-prs-extras-list { margin: 20px 0; }
.rt-prs-extras-list h4 { font-size: 1.05rem; font-weight: 700; color: var(--rt-primary); margin: 0 0 12px; }
.rt-prs-extra-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px; border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-sm); margin-bottom: 8px;
    background: #fff; font-size: var(--rt-font-body);
}
.rt-prs-extra-item .extra-name  { flex: 1; font-weight: 600; }
.rt-prs-extra-item .extra-price { color: var(--rt-primary); font-weight: 700; }
.rt-prs-extra-item .extra-code  { font-size: var(--rt-font-xs); color: var(--rt-muted); background: var(--rt-light); padding: 2px 8px; border-radius: 4px; }

/* Product page desc sections */
.rt-prs-product-page { font-size: var(--rt-font-body); }
.rt-prs-product-intro { font-size: 1.05rem; line-height: 1.75; color: var(--rt-muted); margin-bottom: 22px; }
.rt-prs-product-features h4,
.rt-prs-product-deliverables h4,
.rt-prs-product-ideal h4 { font-size: 1.05rem; font-weight: 700; color: var(--rt-primary); margin: 20px 0 10px; }
.rt-prs-product-features ul,
.rt-prs-product-deliverables ul,
.rt-prs-product-ideal ul { list-style: none; padding: 0; margin: 0 0 10px; }
.rt-prs-product-features li,
.rt-prs-product-deliverables li,
.rt-prs-product-ideal li { padding: 4px 0 4px 22px; position: relative; font-size: var(--rt-font-body); line-height: 1.55; }
.rt-prs-product-features li::before,
.rt-prs-product-deliverables li::before,
.rt-prs-product-ideal li::before { content:'✓'; position:absolute; left:0; color:var(--rt-success); font-weight:700; }

.rt-prs-min-qty-callout {
    margin: 18px 0; padding: 14px 20px;
    background: #fff3e0; border-left: 4px solid var(--rt-warning);
    border-radius: 4px; font-size: var(--rt-font-body); font-weight: 500; color: #4a2500;
}

/* ════════════════════════════════════════════════════════════
   MY ACCOUNT
   ════════════════════════════════════════════════════════════ */
.rt-prs-my-account-order {
    border-left: 4px solid var(--rt-primary);
    padding: 16px 22px;
    margin: 22px 0;
    font-size: var(--rt-font-body);
}

/* ════════════════════════════════════════════════════════════
   ADMIN
   ════════════════════════════════════════════════════════════ */
.rt-prs-admin-wrap { max-width: 1100px; font-size: 14px; }

.rt-prs-card {
    background: #fff; border: 1px solid #ddd; border-radius: 8px;
    padding: 22px 26px; margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.rt-prs-card h2 {
    margin: 0 0 14px; font-size: 1rem; font-weight: 700;
    border-bottom: 2px solid #eee; padding-bottom: 10px; color: #1a237e;
}

/* Admin nav tabs */
.rt-prs-nav-tabs { display: flex; gap: 0; border-bottom: 1px solid #c3c4c7; margin-bottom: 20px; flex-wrap: wrap; }
.rt-prs-nav-tab {
    display: inline-block; padding: 9px 20px; font-size: 14px; font-weight: 500;
    color: #646970; text-decoration: none; border: 1px solid transparent;
    border-bottom: none; margin-bottom: -1px; background: transparent; cursor: pointer;
    transition: color .15s; white-space: nowrap;
}
.rt-prs-nav-tab:hover { color: #1a237e; }
.rt-prs-nav-tab.nav-tab-active { border-color: #c3c4c7 #c3c4c7 #fff; background: #fff; color: #1a237e; font-weight: 700; }
.rt-prs-tab-panel { display: none; }
.rt-prs-tab-panel.active { display: block; }

/* Toggle switch */
.rt-prs-toggle-wrap { position:relative; display:inline-block; width:44px; height:22px; }
.rt-prs-toggle-wrap input { opacity:0; width:0; height:0; }
.rt-prs-toggle-slider { position:absolute; cursor:pointer; inset:0; background:#ccc; border-radius:22px; transition:.3s; }
.rt-prs-toggle-slider:before { position:absolute; content:''; height:16px; width:16px; left:3px; bottom:3px; background:white; border-radius:50%; transition:.3s; }
.rt-prs-toggle-wrap input:checked + .rt-prs-toggle-slider { background:#2e7d32; }
.rt-prs-toggle-wrap input:checked + .rt-prs-toggle-slider:before { transform:translateX(22px); }

/* Admin tables */
.rt-prs-services-table th,.rt-prs-services-table td,
.rt-prs-orders-table th,.rt-prs-orders-table td { vertical-align:middle; font-size:13px; }

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE — ADD-ON EXTRAS SELECTOR
   (shown above Add to Cart on single product page)
   ════════════════════════════════════════════════════════════ */

.rt-prs-product-extras {
    margin: 22px 0;
    padding: 22px;
    background: var(--rt-light);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
}

.rt-prs-product-extras-header {
    margin-bottom: 16px;
}
.rt-prs-product-extras-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rt-text);
    margin-bottom: 4px;
}
.rt-prs-product-extras-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--rt-muted);
    line-height: 1.4;
}

/* Grid of extra cards */
.rt-prs-product-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
@media (max-width: 480px) {
    .rt-prs-product-extras-grid { grid-template-columns: 1fr 1fr; }
}

/* Each add-on card */
.rt-prs-extra-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px 12px;
    border: 2px solid var(--rt-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s, background .15s, box-shadow .15s, transform .12s;
    text-align: center;
    user-select: none;
    font-size: var(--rt-font-sm);
}
.rt-prs-extra-card:hover {
    border-color: var(--rt-accent);
    box-shadow: var(--rt-shadow-sm);
    transform: translateY(-2px);
}
.rt-prs-extra-card.selected {
    border-color: var(--rt-primary);
    background: #e8eaf6;
    box-shadow: 0 0 0 3px rgba(26,35,126,0.12);
}

/* Hide the real checkbox visually — card itself is the click target */
.rt-prs-extra-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.rt-prs-extra-icon  { font-size: 1.9rem; line-height: 1; }
.rt-prs-extra-info  { display: flex; flex-direction: column; align-items: center; gap: 2px; width: 100%; }
.rt-prs-extra-name  { font-weight: 700; color: var(--rt-text); font-size: var(--rt-font-sm); line-height: 1.3; }
.rt-prs-extra-code  {
    font-size: 0.7rem; color: var(--rt-muted);
    background: var(--rt-light); border: 1px solid var(--rt-border);
    padding: 1px 6px; border-radius: 4px;
}
.rt-prs-extra-price {
    margin-top: 5px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--rt-primary);
    background: var(--rt-light);
    border: 1px solid var(--rt-border);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}
.rt-prs-extra-free { color: var(--rt-success) !important; border-color: #a5d6a7 !important; background: #e8f5e9 !important; }

/* Checkmark badge (top-right corner when selected) */
.rt-prs-extra-check {
    position: absolute;
    top: 5px; right: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--rt-primary);
    opacity: 0;
    transition: opacity .15s;
}
.rt-prs-extra-card.selected .rt-prs-extra-check { opacity: 1; }

/* Running subtotal below the grid */
.rt-prs-product-extras-total {
    margin-top: 14px;
    padding: 10px 16px;
    background: #e8eaf6;
    border-radius: 8px;
    font-size: var(--rt-font-sm);
    color: var(--rt-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rt-prs-product-extras-total strong { font-size: 1.05rem; }

/* Checkout — extras read-only summary strip */
.rt-prs-checkout-extras-summary {
    background: #e8f5e9;
    border-left: 4px solid var(--rt-success);
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: var(--rt-font-sm);
    color: #1b5e20;
    line-height: 1.6;
}
.rt-prs-checkout-extras-label {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* ════════════════════════════════════════════════════════════
   EXTRAS — CATEGORY LABELS & BADGES
   ════════════════════════════════════════════════════════════ */

.rt-prs-extras-category {
    margin-bottom: 18px;
}
.rt-prs-extras-cat-label {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rt-primary);
    background: linear-gradient(90deg, #e8eaf6 0%, #f5f7ff 100%);
    border-left: 3px solid var(--rt-primary);
    padding: 5px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 10px;
}
.rt-prs-extras-count {
    font-size: 0.78rem;
    background: #e8eaf6;
    color: var(--rt-primary);
    border-radius: 10px;
    padding: 2px 8px;
    margin-left: 6px;
    font-weight: 600;
}
.rt-prs-extra-badge {
    font-size: 0.68rem;
    background: #fff3e0;
    color: var(--rt-warning);
    border-radius: 8px;
    padding: 1px 6px;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 2px;
    display: inline-block;
}

/* Max-width support via CSS variable */
.rt-prs-services-wrap {
    max-width: var(--rt-services-max-width, 1200px);
}

/* ════════════════════════════════════════════════════════════
   ADMIN CUSTOMISER — colour picker alignment
   ════════════════════════════════════════════════════════════ */
.rt-prs-admin-wrap .form-table td {
    vertical-align: middle;
}
#rt-prs-customiser-card .form-table td {
    padding: 5px 0;
}
