/* ═══════════════════════════════════════
   Cabinet — User Panel Styles
   ═══════════════════════════════════════ */

.cab-wrap {
    min-height: calc(100vh - 70px);
    padding: 20px 0;
}

/* ─── Layout: sidebar + main ─── */
.cab-layout {
    display: flex;
    gap: 20px;
    min-height: calc(100vh - 110px);
}

/* ─── Sidebar ─── */
.cab-sidebar {
    width: 230px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.cab-sidebar-head {
    padding: 16px 14px 10px;
    border-bottom: 1px solid #eceff1;
}
.cab-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cab-user-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.cab-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #263238;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cab-sidebar-stats {
    padding: 10px 14px;
    border-bottom: 1px solid #eceff1;
}
.cab-ss-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}
.cab-ss-label { font-size: 11px; color: #90a4ae; }
.cab-ss-val { font-size: 12px; font-weight: 700; color: #263238; }
.cab-ss-bal { color: #0092f5; }
.cab-ss-warn { color: #e53935; }

.cab-sidebar-nav {
    flex: 1;
    padding: 6px 0;
}
.cab-sn-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    color: #546e7a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
    position: relative;
}
.cab-sn-item:hover {
    background: #f5f7fa;
    color: #0092f5;
    text-decoration: none;
}
.cab-sn-item.active {
    background: #e3f2fd;
    color: #0092f5;
    font-weight: 600;
    border-left: 3px solid #0092f5;
    padding-left: 11px;
}
.cab-sn-item.active svg { stroke: #0092f5; }
.cab-sn-badge {
    margin-left: auto;
    background: #ff7043; color: #fff; font-size: 10px; font-weight: 700;
    min-width: 18px; height: 18px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; padding: 0 5px;
}
.cab-sidebar-footer {
    border-top: 1px solid #eceff1;
    padding: 4px 0;
}
.cab-sn-logout { color: #e53935; }
.cab-sn-logout:hover { background: #fce4ec; color: #c62828; }

/* Mobile sidebar toggle */
.cab-sidebar-toggle {
    display: none;
    position: fixed; bottom: 20px; left: 20px; z-index: 1001;
    width: 44px; height: 44px; border-radius: 50%;
    background: #0092f5; color: #fff; border: none;
    box-shadow: 0 4px 12px rgba(0,146,245,.35);
    cursor: pointer; align-items: center; justify-content: center;
}

/* ─── Main content ─── */
.cab-main {
    flex: 1;
    min-width: 0;
}

/* ─── Centered (login/reg) ─── */
.cab-center {
    max-width: 440px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ─── Card ─── */
.cab-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    margin-bottom: 16px;
}
.cab-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #263238;
    margin: 0 0 16px;
    padding: 0;
    line-height: 1.3;
}
.cab-card-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eceff1;
    font-size: 14px;
    color: #78909c;
}
.cab-card-footer a { color: #0092f5; font-weight: 600; }

/* ─── Alerts ─── */
.cab-alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
}
.cab-alert p { margin: 0 0 4px; }
.cab-alert p:last-child { margin-bottom: 0; }
.cab-alert-error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
.cab-alert-ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.cab-alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* ─── Forms ─── */
.cab-field { margin-bottom: 14px; }
.cab-field label {
    display: block; font-size: 12px; font-weight: 600; color: #546e7a; margin-bottom: 4px;
}
.cab-field label .req { color: #e53935; }
.cab-field input[type="text"],
.cab-field input[type="email"],
.cab-field input[type="tel"],
.cab-field input[type="password"],
.cab-field input[type="number"],
.cab-field select,
.cab-field textarea {
    width: 100%; padding: 9px 11px; border: 1px solid #cfd8dc; border-radius: 8px;
    font-size: 14px; color: #263238; background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box; font-family: inherit;
}
.cab-field input:focus,
.cab-field select:focus,
.cab-field textarea:focus {
    outline: none; border-color: #0092f5; box-shadow: 0 0 0 3px rgba(0,146,245,.12);
}
.cab-field input:disabled { background: #eceff1; color: #90a4ae; }
.cab-field-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cab-field-grid { display: grid; gap: 10px; margin-bottom: 14px; }
.cab-grid-2 { grid-template-columns: 1fr 1fr; }
.cab-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.cab-checkbox {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: #546e7a; cursor: pointer;
}
.cab-link-small { font-size: 12px; color: #0092f5; }
.cab-hint { font-size: 11px; color: #90a4ae; margin: 3px 0 0; }

/* ─── Buttons ─── */
.cab-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer; transition: all .2s; font-family: inherit;
}
.cab-btn-primary { background: #0092f5; color: #fff; }
.cab-btn-primary:hover { background: #0277bd; color: #fff; }
.cab-btn-secondary { background: #eceff1; color: #546e7a; }
.cab-btn-secondary:hover { background: #cfd8dc; color: #263238; }
.cab-btn-sm { padding: 5px 12px; font-size: 11px; }
.cab-btn-danger { background: #e53935; color: #fff; }
.cab-btn-danger:hover { background: #c62828; }

/* ─── Fieldset ─── */
.cab-fieldset { border: 1px solid #eceff1; border-radius: 10px; padding: 18px; margin: 0 0 16px; }
.cab-fieldset legend { font-size: 13px; font-weight: 700; color: #0092f5; padding: 0 6px; }

/* ─── Prices table (form) ─── */
.cab-prices-table { display: grid; }
.cab-pt-header { display: grid; grid-template-columns: 100px 1fr 1fr 1fr; gap: 8px; margin-bottom: 6px; }
.cab-pt-header > div { font-size: 11px; font-weight: 700; color: #78909c; text-align: center; text-transform: uppercase; }
.cab-pt-row { display: grid; grid-template-columns: 100px 1fr 1fr 1fr; gap: 8px; margin-bottom: 6px; align-items: center; }
.cab-pt-label { font-size: 12px; font-weight: 600; color: #546e7a; }
.cab-pt-row input {
    width: 100%; padding: 7px; border: 1px solid #cfd8dc; border-radius: 6px;
    font-size: 13px; text-align: center; box-sizing: border-box;
}
.cab-pt-row input:focus { outline: none; border-color: #0092f5; box-shadow: 0 0 0 2px rgba(0,146,245,.1); }

/* ─── Services grid (form) ─── */
.cab-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 4px; }
.cab-checkbox-tag {
    display: flex; align-items: center; gap: 5px; padding: 5px 8px;
    border-radius: 6px; font-size: 12px; color: #546e7a; cursor: pointer; transition: background .15s;
}
.cab-checkbox-tag:hover { background: #f5f7fa; }
.cab-checkbox-tag input:checked + span { color: #0092f5; font-weight: 600; }

/* ─── Photo previews (form) ─── */
.cab-current-thumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 5px; border: 1px solid #eceff1; border-radius: 8px; }
.cab-current-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.cab-current-thumb span { font-size: 11px; color: #90a4ae; }
.cab-gallery-preview { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.cab-gallery-preview img { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; border: 1px solid #eceff1; }
.cab-current-video { margin-bottom: 8px; }
.cab-current-video video { border-radius: 8px; }

/* ─── Map (form) ─── */
.cab-map-field { height: 260px; border-radius: 10px; overflow: hidden; border: 1px solid #eceff1; }

/* ─── Form actions ─── */
.cab-form-actions { display: flex; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #eceff1; }

/* ─── Tariff selector ─── */
.cab-tariff-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 8px; margin-bottom: 14px;
}
.cab-tariff-option { position: relative; cursor: pointer; }
.cab-tariff-option input { position: absolute; opacity: 0; pointer-events: none; }
.cab-tariff-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 12px 8px; border: 2px solid #eceff1; border-radius: 10px;
    text-align: center; transition: all .2s;
}
.cab-tariff-option input:checked + .cab-tariff-card {
    border-color: #0092f5; background: #e3f2fd; box-shadow: 0 0 0 3px rgba(0,146,245,.15);
}
.cab-tariff-name { font-size: 12px; font-weight: 700; margin-bottom: 2px; }
.cab-tariff-price { font-size: 16px; font-weight: 800; color: #263238; }
.cab-tariff-price small { font-size: 10px; font-weight: 500; color: #90a4ae; }
.cab-tariff-desc { font-size: 10px; color: #90a4ae; margin-top: 2px; }

/* ─── Dashboard ─── */
.cab-filters { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.cab-filter-btn {
    padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
    color: #546e7a; background: #eceff1; text-decoration: none;
    transition: all .15s; display: inline-flex; align-items: center; gap: 4px;
}
.cab-filter-btn:hover { background: #cfd8dc; color: #263238; text-decoration: none; }
.cab-filter-btn.active { background: #0092f5; color: #fff; }
.cab-filter-count {
    font-size: 10px; background: rgba(0,0,0,.1); padding: 1px 5px; border-radius: 8px;
}
.cab-filter-btn.active .cab-filter-count { background: rgba(255,255,255,.25); }

.cab-posts-list { display: flex; flex-direction: column; gap: 6px; }
.cab-post-row {
    display: flex; align-items: center; gap: 12px; padding: 10px;
    border: 1px solid #eceff1; border-radius: 10px; transition: box-shadow .2s; background: #fff;
}
.cab-post-row:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.cab-post-thumb { flex-shrink: 0; width: 56px; height: 56px; }
.cab-post-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.cab-post-nophoto {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: #f5f5f5; border-radius: 8px;
}
.cab-post-info { flex: 1; min-width: 0; }
.cab-post-name { font-size: 14px; font-weight: 600; color: #263238; margin-bottom: 2px; }
.cab-post-name a { color: #263238; text-decoration: none; }
.cab-post-name a:hover { color: #0092f5; }
.cab-post-meta {
    display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: #90a4ae; margin-bottom: 3px;
}
.cab-post-meta span::before { content: "·"; margin-right: 6px; color: #cfd8dc; }
.cab-post-meta span:first-child::before { display: none; }
.cab-post-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.cab-badge { display: inline-block; padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.cab-status-ok { background: #e8f5e9; color: #2e7d32; }
.cab-status-off { background: #eceff1; color: #78909c; }
.cab-status-pending { background: #fff3e0; color: #e65100; }
.cab-badge-priority { color: #fff; }
.cab-post-actions { display: flex; gap: 5px; flex-shrink: 0; align-items: center; }
.cab-inline-form { display: flex; gap: 5px; margin: 0; padding: 0; }
.cab-act-btn {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    border: 1px solid #eceff1; background: #fff; color: #546e7a;
    cursor: pointer; transition: all .15s; text-decoration: none;
}
.cab-act-btn:hover { background: #f5f7fa; }
.cab-act-edit:hover { border-color: #0092f5; color: #0092f5; }
.cab-act-on:hover { border-color: #43a047; color: #43a047; }
.cab-act-off:hover { border-color: #f57c00; color: #f57c00; }
.cab-act-del:hover { border-color: #e53935; color: #e53935; }
.cab-act-btn svg { stroke: currentColor; }

.cab-pagination { display: flex; gap: 4px; justify-content: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid #eceff1; }
.cab-pagination a, .cab-pagination span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 30px; padding: 0 7px;
    border-radius: 6px; font-size: 12px; text-decoration: none; color: #546e7a; transition: all .15s;
}
.cab-pagination a:hover { background: #e3f2fd; color: #0092f5; }
.cab-pagination .current { background: #0092f5; color: #fff; font-weight: 700; }

.cab-empty { text-align: center; padding: 36px 16px; }
.cab-empty p { color: #90a4ae; font-size: 14px; margin: 10px 0 16px; }

/* ─── Payment page ─── */
.cab-balance-display {
    display: flex; align-items: center; gap: 10px; padding: 14px 18px;
    background: linear-gradient(135deg, #0092f5, #0277bd); border-radius: 10px; margin-bottom: 16px;
}
.cab-balance-label { font-size: 13px; color: rgba(255,255,255,.8); }
.cab-balance-amount { font-size: 26px; font-weight: 700; color: #fff; }

.cab-crypto-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-top: 14px;
}
.cab-crypto-card {
    border: 1px solid #eceff1; border-radius: 10px; padding: 14px; text-align: center; transition: all .2s;
}
.cab-crypto-card:hover { border-color: #0092f5; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.cab-crypto-icon { font-size: 26px; margin-bottom: 4px; }
.cab-crypto-name { font-size: 13px; font-weight: 700; color: #263238; }
.cab-crypto-net { font-size: 10px; color: #90a4ae; margin-top: 2px; }
.cab-crypto-soon {
    display: inline-block; padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 700;
    background: #fff3e0; color: #e65100; margin-top: 6px;
}

.cab-pay-section { border-top: 1px solid #eceff1; padding-top: 18px; margin-top: 18px; }
.cab-pay-section h3 { font-size: 15px; font-weight: 700; color: #263238; margin: 0 0 6px; }
.cab-pay-section p { font-size: 13px; color: #78909c; margin: 0 0 10px; }
.cab-field-row-inline { display: flex; gap: 8px; }
.cab-field-row-inline input {
    flex: 1; padding: 9px 11px; border: 1px solid #cfd8dc; border-radius: 8px; font-size: 14px; box-sizing: border-box;
}
.cab-field-row-inline input:focus { outline: none; border-color: #0092f5; }

/* ─── Info box ─── */
.cab-info-box {
    background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
    border-left: 4px solid #0092f5; margin-top: 16px;
}
.cab-info-box h4 { font-size: 13px; font-weight: 700; color: #263238; margin: 0 0 6px; }
.cab-info-box p { font-size: 12px; color: #546e7a; margin: 0 0 3px; line-height: 1.5; }
.cab-info-warn { color: #e53935 !important; font-weight: 600; }

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 991px) {
    .cab-sidebar {
        position: fixed; left: -260px; top: 0; height: 100vh; max-height: 100vh;
        z-index: 1100; transition: left .3s ease; box-shadow: none; border-radius: 0;
    }
    .cab-sidebar.open { left: 0; box-shadow: 4px 0 20px rgba(0,0,0,.15); }
    .cab-sidebar-toggle { display: flex; }
    .cab-wrap { padding: 12px 0; }
}

@media (max-width: 767px) {
    .cab-card { padding: 14px; border-radius: 10px; }
    .cab-card-title { font-size: 17px; }
    .cab-grid-2, .cab-grid-3 { grid-template-columns: 1fr; }
    .cab-pt-header, .cab-pt-row { grid-template-columns: 70px 1fr 1fr 1fr; }
    .cab-pt-label { font-size: 11px; }
    .cab-services-grid { grid-template-columns: 1fr 1fr; }
    .cab-post-row { flex-wrap: wrap; padding: 8px; gap: 8px; }
    .cab-post-thumb { width: 44px; height: 44px; }
    .cab-post-thumb img { width: 44px; height: 44px; }
    .cab-post-actions {
        width: 100%; justify-content: flex-end; border-top: 1px solid #eceff1; padding-top: 6px;
    }
    .cab-balance-display { flex-direction: column; text-align: center; gap: 4px; }
    .cab-balance-amount { font-size: 22px; }
    .cab-form-actions { flex-direction: column; }
    .cab-form-actions .cab-btn { width: 100%; }
    .cab-field-row-inline { flex-direction: column; }
    .cab-tariff-grid { grid-template-columns: 1fr 1fr; }
    .cab-filters { gap: 4px; }
    .cab-filter-btn { padding: 4px 8px; font-size: 11px; }
}

@media (max-width: 479px) {
    .cab-pt-header, .cab-pt-row { grid-template-columns: 56px 1fr 1fr 1fr; gap: 4px; }
    .cab-pt-row input { padding: 5px 3px; font-size: 12px; }
    .cab-tariff-grid { grid-template-columns: 1fr; }
}

/* === Services tags === */
.cab-services-grid {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.cab-svc-tag {
    display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 20px;
    background: #f0f2f5; color: #546e7a; font-size: 13px; cursor: pointer;
    border: 2px solid transparent; transition: all .15s; user-select: none;
}
.cab-svc-tag input { display: none; }
.cab-svc-tag:hover { background: #e3f2fd; color: #0092f5; }
.cab-svc-tag.active { background: #0092f5; color: #fff; border-color: #0092f5; }

/* === Upload zones === */
.cab-upload-zone { display: flex; flex-direction: column; gap: 8px; }
.cab-upload-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
    background: #f0f2f5; border: 2px dashed #cfd8dc; border-radius: 10px;
    color: #546e7a; font-size: 13px; cursor: pointer; transition: all .15s;
}
.cab-upload-btn:hover { border-color: #0092f5; color: #0092f5; background: #e3f2fd; }
.cab-upload-filename { margin-left: 8px; font-size: 12px; color: #0092f5; font-weight: 600; }
.cab-upload-preview { display: flex; align-items: center; gap: 8px; }
.cab-upload-preview img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.cab-upload-preview span { font-size: 12px; color: #90a4ae; }
.cab-gallery-preview { display: flex; flex-wrap: wrap; gap: 4px; }
.cab-gallery-preview img { width: 50px; height: 50px; object-fit: cover; border-radius: 6px; }

/* === Fieldset legend with icon === */
.cab-fieldset legend { display: flex; align-items: center; gap: 6px; }
.cab-fieldset legend svg { flex-shrink: 0; color: #0092f5; }

/* === Rejected status === */
.cab-status-rejected { background: #e53935; color: #fff; }

/* === Announcements === */
.cab-announcement {
    padding: 10px 14px; margin: 8px 14px; border-radius: 10px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); font-size: 12px; line-height: 1.45; color: #0d47a1;
}
.cab-announcement strong { display: block; margin-bottom: 3px; font-size: 13px; }
.cab-announcement img { width: 100%; border-radius: 6px; margin-bottom: 6px; display: block; }

/* Service groups */
.cab-svc-group { margin-bottom: 12px; }
.cab-svc-group-title {
    font-size: 12px; font-weight: 700; color: #78909c; text-transform: uppercase;
    letter-spacing: .5px; margin-bottom: 6px; padding-bottom: 4px; border-bottom: 1px solid #eceff1;
}

/* Metro selects */
.cab-metro-selects { display: flex; flex-direction: column; gap: 6px; }
.cab-metro-row { display: flex; align-items: center; gap: 8px; }
.cab-metro-label {
    flex-shrink: 0; width: 130px; font-size: 11px; color: #78909c; font-weight: 600;
}
.cab-metro-row select { flex: 1; }
@media (max-width: 600px) {
    .cab-metro-row { flex-direction: column; align-items: stretch; gap: 2px; }
    .cab-metro-label { width: auto; }
}

/* Dashboard mini gallery */
.cab-post-gallery {
    display: flex; gap: 4px; margin-top: 6px; align-items: center;
}
.cab-post-gallery img {
    width: 36px; height: 36px; border-radius: 4px; object-fit: cover;
}
.cab-gallery-more {
    font-size: 11px; color: #90a4ae; font-weight: 600;
}

/* Hint text */
.cab-hint {
    font-size: 11px; color: #90a4ae; margin: 2px 0 0;
}

/* Gallery item with delete */
.cab-gallery-item {
    position: relative; display: inline-block;
}
.cab-gallery-del {
    position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #e53935; color: #fff; font-size: 10px; line-height: 18px; text-align: center;
    cursor: pointer; opacity: .7; transition: opacity .2s;
}
.cab-gallery-del:hover { opacity: 1; }
.cab-gallery-item.marked-del { opacity: .3; }
.cab-gallery-item.marked-del .cab-gallery-del { background: #43a047; }

/* Payment page */
.cab-pay-balance {
    text-align: center; padding: 20px 0 16px;
}
.cab-pay-bal-amount {
    font-size: 32px; font-weight: 800; color: #0092f5;
}
.cab-pay-bal-label {
    font-size: 12px; color: #90a4ae; margin-top: 2px;
}
.cab-pay-tariffs {
    display: flex; gap: 6px; margin: 12px 0; overflow-x: auto;
}
.cab-pay-tariff {
    flex: 1; min-width: 80px; text-align: center; padding: 10px 6px;
    border-radius: 8px; border: 2px solid var(--tc); background: color-mix(in srgb, var(--tc) 6%, white);
}
.cab-pay-tariff-lvl { font-size: 22px; font-weight: 800; color: var(--tc); }
.cab-pay-tariff-name { font-size: 11px; font-weight: 700; color: #333; }
.cab-pay-tariff-price { font-size: 12px; color: var(--tc); font-weight: 600; }
.cab-pay-tariff-price small { font-weight: 400; opacity: .7; }

/* Crypto wallets */
.cab-crypto-wallets {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px;
}
.cab-crypto-wallet {
    background: #f8f9fa; border-radius: 8px; padding: 10px;
}
.cab-cw-head { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.cab-cw-coin {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    color: #fff; font-size: 11px; font-weight: 700;
}
.cab-cw-net { font-size: 12px; color: #666; }
.cab-cw-addr {
    font-size: 10px; word-break: break-all; background: #fff; padding: 6px; border-radius: 4px;
    cursor: pointer; transition: background .2s; border: 1px solid #eee; font-family: monospace;
}
.cab-cw-addr:hover { background: #e3f2fd; }
.cab-cw-addr.copied { background: #e8f5e9; }

/* Pay history */
.cab-pay-history { display: flex; flex-direction: column; gap: 4px; }
.cab-pay-hist-row {
    display: flex; align-items: center; gap: 10px; padding: 6px 8px;
    background: #f8f9fa; border-radius: 6px; font-size: 12px;
}
.cab-pay-hist-coin { font-weight: 700; min-width: 40px; }
.cab-pay-hist-amt { font-weight: 600; color: #0092f5; }
.cab-pay-hist-date { color: #90a4ae; flex: 1; }
.cab-pay-hist-st { font-weight: 600; }

/* Pay methods */
.cab-pay-methods { display: flex; flex-direction: column; gap: 8px; }
.cab-pay-method {
    display: flex; gap: 10px; align-items: center; padding: 10px;
    background: #f8f9fa; border-radius: 8px;
}
.cab-pay-method-icon { font-size: 24px; }
.cab-pay-method span { font-size: 12px; color: #78909c; }
