/* ================================================
   FOLK Suite — Design System
   (mismo estilo que folktecnotienda.com.ar)
   ================================================ */

:root {
    --cyan: #22C55E;
    --cyan-dim: rgba(34, 197, 94, 0.15);
    --cyan-glow: rgba(34, 197, 94, 0.3);
    --orange: #FF5C2B;
    --bg: #060D08;
    --bg-card: #0E1712;
    --bg-card-hover: #151F18;
    --bg-dark: #030903;
    --text: #F0FAF2;
    --text-muted: #8A9A90;
    --text-faint: #404F48;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(34, 197, 94, 0.3);
    --gradient-brand: linear-gradient(135deg, #4ADE80, #15803D);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    font-weight: 700;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
input, select, textarea { font-family: 'Inter', sans-serif; font-size: 1rem; }

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Brand ── */
.brand,
.topbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.logo-folk { color: var(--text); }
.logo-suite {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85em;
    margin-left: 4px;
}

/* ================================================
   LOGIN PAGE
   ================================================ */

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-image:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(123, 47, 255, 0.05) 0%, transparent 60%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-card .brand {
    display: inline-flex;
    margin-bottom: 28px;
}

.login-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.login-card .subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.footer-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-faint);
}

/* ── Form ── */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--cyan);
    background: var(--cyan-dim);
}

.form-group input::placeholder { color: var(--text-faint); }

.error-msg {
    color: #ff7563;
    font-size: 0.85rem;
    margin: 8px 0 12px;
    min-height: 20px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--cyan);
    color: #000;
}

.btn-primary:hover:not(:disabled) {
    background: #34D674;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ================================================
   APP PAGE
   ================================================ */

.topbar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 28px;
}

.welcome-section {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid var(--cyan-glow);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.welcome-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.welcome-section .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
}

.welcome-section strong { color: var(--text); }

/* ── Modules ── */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
    cursor: pointer;
}

.module-card:hover:not(.module-card--disabled) {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.module-card--disabled { opacity: 0.55; cursor: not-allowed; }

.module-card--active {
    border-color: rgba(34, 197, 94, 0.2);
    display: block;
}

.module-card--active:hover {
    background: var(--bg-card-hover);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.12);
}

.badge-active {
    color: var(--cyan);
    background: var(--cyan-dim);
    border-color: var(--cyan-glow);
}

.module-icon { font-size: 1.8rem; margin-bottom: 12px; }

.module-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.badge {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-faint);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

/* ── Diagnostic ── */
.diag-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.diag-section h2 {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.diag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.diag-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.diag-label {
    font-size: 0.72rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.diag-value { font-size: 0.95rem; font-weight: 600; }

.diag-ok .diag-value { color: #22C55E; }
.diag-error .diag-value { color: #ff7563; }

/* ================================================
   MODULE PAGES (Clientes, Reparaciones, etc.)
   ================================================ */

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.back-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 8px 0 4px;
}

.page-header .subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 220px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.search-input:focus {
    border-color: var(--cyan);
}

.search-input::placeholder { color: var(--text-faint); }

.count-badge {
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
}

/* ── Client list ── */
.clients-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.client-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(2px);
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.client-info { flex: 1; min-width: 0; }

.client-name {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-tag {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--gradient-brand);
    color: #000;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.client-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.client-date {
    font-size: 0.75rem;
    color: var(--text-faint);
    white-space: nowrap;
}

/* ── Empty state ── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

.empty-icon { font-size: 3rem; margin-bottom: 16px; }

.empty-state h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

/* ================================================
   MODAL
   ================================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all var(--transition);
}

.modal-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    resize: vertical;
    outline: none;
    transition: border-color var(--transition);
}

.form-group textarea:focus { border-color: var(--cyan); }
.form-group textarea::placeholder { color: var(--text-faint); }

.checkbox-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-group input { accent-color: var(--cyan); }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

/* ================================================
   REPARACIONES MODULE
   ================================================ */

.status-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.status-tab {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-tab:hover {
    background: var(--bg-card-hover);
    color: var(--text);
}

.status-tab.active {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    color: var(--cyan);
}

.status-tab .count {
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}

.status-tab.active .count {
    background: var(--cyan);
    color: #000;
}

/* ── Repair list ── */
.repairs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.repair-card {
    display: flex;
    align-items: stretch;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.repair-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(2px);
}

.repair-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cyan);
    align-self: center;
    min-width: 60px;
}

.repair-main { flex: 1; min-width: 0; }

.repair-device {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.repair-client {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.repair-problem {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.85;
}

.repair-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    justify-content: center;
    min-width: 130px;
}

.repair-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--cyan);
    font-size: 0.95rem;
}

.repair-amount.muted {
    color: var(--text-muted);
    font-weight: 500;
}

.repair-date {
    font-size: 0.72rem;
    color: var(--text-faint);
}

/* ── Status badges ── */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-orange       { background: rgba(255, 92, 43, 0.12); color: #FF8B5C; border: 1px solid rgba(255, 92, 43, 0.3); }
.status-yellow       { background: rgba(254, 188, 46, 0.12); color: #FEBC2E; border: 1px solid rgba(254, 188, 46, 0.3); }
.status-cyan         { background: rgba(0, 200, 232, 0.12); color: #5EE4F8; border: 1px solid rgba(0, 200, 232, 0.3); }
.status-green        { background: rgba(34, 197, 94, 0.12); color: #4ADE80; border: 1px solid rgba(34, 197, 94, 0.3); }
.status-green-bright { background: rgba(34, 197, 94, 0.25); color: #22C55E; border: 1px solid rgba(34, 197, 94, 0.5); font-weight: 700; }
.status-purple       { background: rgba(123, 47, 255, 0.12); color: #A78BFA; border: 1px solid rgba(123, 47, 255, 0.3); }
.status-grey         { background: rgba(255, 255, 255, 0.04); color: var(--text-muted); border: 1px solid var(--border); }
.status-red          { background: rgba(255, 92, 92, 0.12); color: #FF7563; border: 1px solid rgba(255, 92, 92, 0.3); }

/* ── Client selector ── */
.client-selector { position: relative; }

.client-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: 10px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
}

.client-dropdown:empty { display: none; }

.dropdown-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(34, 197, 94, 0.08); }

.dropdown-item strong { font-weight: 600; font-size: 0.9rem; }
.dropdown-item span { color: var(--text-muted); font-size: 0.82rem; }

.dropdown-empty {
    padding: 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.dropdown-empty a { color: var(--cyan); }

.selected-client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cyan-dim);
    border: 1px solid var(--cyan-glow);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.9rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: underline;
}

.form-separator {
    border: none;
    border-top: 1px solid var(--border);
    margin: 22px 0;
}

.modal-content--wide { max-width: 640px; }

/* ================================================
   STOCK MODULE
   ================================================ */

.stock-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-box--warning { border-color: rgba(254, 188, 46, 0.25); }
.stat-box--danger  { border-color: rgba(255, 92, 92, 0.25); }

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.filter-select {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    color: var(--text);
    cursor: pointer;
    outline: none;
    font-size: 0.9rem;
    min-width: 200px;
}

.filter-select:focus { border-color: var(--cyan); }

/* ── Product list ── */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition);
    align-items: center;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(2px);
}

.product-main { min-width: 0; }

.product-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
}

.product-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sale-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--cyan);
    font-size: 1rem;
}

.cost-price {
    font-size: 0.72rem;
    color: var(--text-faint);
}

.product-stock {
    padding: 8px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.stock-ok    { background: rgba(34, 197, 94, 0.12); color: #4ADE80; border: 1px solid rgba(34, 197, 94, 0.25); }
.stock-low   { background: rgba(254, 188, 46, 0.12); color: #FEBC2E; border: 1px solid rgba(254, 188, 46, 0.3); }
.stock-zero  { background: rgba(255, 92, 92, 0.12); color: #FF7563; border: 1px solid rgba(255, 92, 92, 0.3); }

/* ================================================
   VENTAS / POS MODULE
   ================================================ */

.modal-content--pos { max-width: 680px; }

.cart-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 16px 0;
    overflow: hidden;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-items { max-height: 260px; overflow-y: auto; }

.cart-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-faint);
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.cart-item:hover { background: rgba(255, 255, 255, 0.02); }
.cart-item:last-child { border-bottom: none; }

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    display: block;
    font-size: 0.72rem;
    color: var(--text-faint);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.qty-btn:hover {
    border-color: var(--cyan);
    background: var(--cyan-dim);
}

.cart-item-qty {
    min-width: 24px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-subtotal {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--cyan);
    font-size: 0.95rem;
    min-width: 70px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-faint);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}

.cart-item-remove:hover {
    color: #FF7563;
    background: rgba(255, 92, 92, 0.1);
}

.cart-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
}

.cart-discount label {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.cart-discount input {
    width: 120px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
}

.cart-discount input:focus { border-color: var(--cyan); }

.cart-totals {
    border-top: 1px solid var(--border);
    padding: 12px 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
    color: var(--text-muted);
}

.cart-total-discount { color: var(--orange); }

.cart-total-final {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

/* ── Sale detail modal ── */
.detail-body { font-size: 0.92rem; }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

.detail-items-header {
    display: grid;
    grid-template-columns: 1fr 50px 80px 80px;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.72rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.detail-item-row {
    display: grid;
    grid-template-columns: 1fr 50px 80px 80px;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.detail-item-row:last-child { border-bottom: none; }

.detail-total {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cyan);
    padding-top: 12px;
}

/* ================================================
   DASHBOARD MODULE
   ================================================ */

.dash-period-selector {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
}

.period-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.period-btn:hover { color: var(--text); }
.period-btn.active {
    background: var(--cyan);
    color: #000;
}

/* ── KPIs ── */
.dash-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.kpi-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: all var(--transition);
}

.kpi-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.08);
}

.kpi-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-dim);
    border-radius: 12px;
    flex-shrink: 0;
}

.kpi-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.kpi-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.kpi-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kpi-compare {
    font-size: 0.75rem;
    font-weight: 600;
}

.kpi-up { color: #4ADE80; }
.kpi-down { color: #FF7563; }

/* ── Dashboard Grid ── */
.dash-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.dash-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dash-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    overflow: hidden;
}

.dash-panel--chart { min-height: 280px; }

.dash-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dash-panel-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.dash-panel-subtitle {
    font-size: 0.78rem;
    color: var(--text-faint);
    font-weight: 500;
}

.dash-empty {
    text-align: center;
    padding: 28px 16px;
    color: var(--text-faint);
    font-size: 0.88rem;
}

/* ── Bar Chart ── */
.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 180px;
    padding-top: 24px;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    max-width: 40px;
    background: var(--gradient-brand);
    border-radius: 6px 6px 2px 2px;
    transition: height 0.5s ease;
    min-height: 4px;
    opacity: 0.7;
}

.chart-bar--today .chart-bar {
    opacity: 1;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.chart-bar-value {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.chart-bar--today .chart-bar-value { color: var(--cyan); }

.chart-bar-label {
    font-size: 0.65rem;
    color: var(--text-faint);
    text-transform: capitalize;
    white-space: nowrap;
}

.chart-bar--today .chart-bar-label {
    color: var(--cyan);
    font-weight: 600;
}

/* ── Breakdown Bars ── */
.breakdown-list { display: flex; flex-direction: column; gap: 10px; }

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breakdown-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    min-width: 120px;
    white-space: nowrap;
}

.breakdown-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.breakdown-count {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 24px;
    text-align: right;
}

/* ── Ranking List ── */
.ranking-list { display: flex; flex-direction: column; gap: 10px; }

.ranking-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ranking-pos {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-faint);
    min-width: 20px;
}

.ranking-info { flex: 1; min-width: 0; }

.ranking-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.ranking-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.ranking-bar {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.ranking-qty {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cyan);
    white-space: nowrap;
}

/* ── Recent Sales ── */
.recent-list { display: flex; flex-direction: column; gap: 2px; }

.recent-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background var(--transition);
}

.recent-row:hover { background: rgba(255, 255, 255, 0.03); }

.recent-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cyan);
    min-width: 50px;
}

.recent-payment { font-size: 0.9rem; }

.recent-total {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

.recent-date {
    font-size: 0.72rem;
    color: var(--text-faint);
    min-width: 55px;
    text-align: right;
}

/* ── Stock Alerts ── */
.alert-list { display: flex; flex-direction: column; gap: 4px; }

.alert-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
}

.alert-row--warning { background: rgba(254, 188, 46, 0.06); }
.alert-row--danger  { background: rgba(255, 92, 92, 0.06); }

.alert-name {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.alert-stock {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.alert-row--warning .alert-stock { color: #FEBC2E; }
.alert-row--danger .alert-stock  { color: #FF7563; }

/* ── Payment Breakdown ── */
.payment-bars { display: flex; flex-direction: column; gap: 12px; }

.payment-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-label {
    font-size: 0.85rem;
    min-width: 130px;
    white-space: nowrap;
}

.payment-bar-bg {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    overflow: hidden;
}

.payment-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.payment-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: right;
}

.payment-pct {
    font-size: 0.75rem;
    color: var(--text-faint);
    min-width: 35px;
    text-align: right;
}

/* ================================================
   CONFIGURACIÓN MODULE
   ================================================ */

.config-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.config-tab {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
}

.config-tab:hover {
    background: var(--bg-card-hover);
    color: var(--text);
}

.config-tab.active {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    color: var(--cyan);
}

.config-panel {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.config-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
}

.config-section h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.config-section h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.config-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.config-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

.success-msg {
    color: #4ADE80;
    font-size: 0.85rem;
    margin: 8px 0;
    min-height: 20px;
}

.input-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Color Picker ── */
.color-picker-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.color-input {
    width: 52px;
    height: 44px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    padding: 2px;
}

.color-input::-webkit-color-swatch-wrapper { padding: 2px; }
.color-input::-webkit-color-swatch { border: none; border-radius: 6px; }

.color-hex-input {
    width: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    outline: none;
}

.color-hex-input:focus { border-color: var(--cyan); }

.color-preview {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: all var(--transition);
}

.color-presets {
    margin-top: 18px;
}

.color-presets label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.preset-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-preset {
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.color-preset:hover {
    transform: scale(1.15);
    border-color: var(--text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ── Roles Legend ── */
.roles-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.role-admin      { background: rgba(34, 197, 94, 0.15); color: #4ADE80; border: 1px solid rgba(34, 197, 94, 0.3); }
.role-technician { background: rgba(123, 47, 255, 0.12); color: #A78BFA; border: 1px solid rgba(123, 47, 255, 0.3); }
.role-seller     { background: rgba(0, 200, 232, 0.12); color: #5EE4F8; border: 1px solid rgba(0, 200, 232, 0.3); }
.role-employee   { background: rgba(254, 188, 46, 0.12); color: #FEBC2E; border: 1px solid rgba(254, 188, 46, 0.3); }
.role-reader     { background: rgba(255, 255, 255, 0.04); color: var(--text-muted); border: 1px solid var(--border); }

/* ── Users List ── */
.users-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.user-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.user-card--me {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.03);
}

.user-card--inactive { opacity: 0.5; }

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.user-info { flex: 1; min-width: 0; }

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.me-tag {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--cyan-dim);
    color: var(--cyan);
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid var(--cyan-glow);
}

.inactive-tag {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255, 92, 92, 0.1);
    color: #FF7563;
    padding: 2px 8px;
    border-radius: 50px;
}

.user-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .login-card { padding: 28px 24px; }
    .topbar { padding: 12px 16px; }
    .main-container { padding: 32px 16px; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { align-items: flex-start; flex-direction: column; gap: 16px; }
    .repair-card { flex-direction: column; gap: 8px; }
    .repair-side { align-items: flex-start; min-width: 0; }
    .repair-number { align-self: flex-start; }
    .product-card { grid-template-columns: 1fr; gap: 8px; }
    .product-prices { flex-direction: row; gap: 12px; align-items: center; }
    .filter-select { min-width: 0; flex: 1; }
    .modal-content--pos { max-width: 100%; max-height: 95vh; }
    .cart-item { flex-wrap: wrap; }
    .cart-item-subtotal { min-width: auto; }
    .detail-items-header,
    .detail-item-row { grid-template-columns: 1fr 40px 65px 65px; font-size: 0.8rem; }
    .dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .dash-grid { grid-template-columns: 1fr; }
    .dash-grid--3 { grid-template-columns: 1fr; }
    .chart-container { height: 140px; }
    .breakdown-label { min-width: 100px; font-size: 0.78rem; }
    .payment-label { min-width: 100px; font-size: 0.78rem; }
    .payment-amount { min-width: 60px; }
    .config-section { padding: 20px 16px; }
    .color-picker-row { flex-direction: column; align-items: stretch; }
    .color-hex-input { width: 100%; }
    .user-card { flex-wrap: wrap; }
    .roles-legend { font-size: 0.75rem; }
    .ia-feature-card { flex-direction: column; align-items: flex-start; gap: 14px; }
    .toggle-switch { align-self: flex-end; }
}

/* ================================================
   WHATSAPP BUTTON
   ================================================ */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25D366;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* ================================================
   AI / IA FEATURES
   ================================================ */

.ia-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.badge-ia {
    background: linear-gradient(135deg, #7C3AED, #22C55E);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}

.ia-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ia-feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.ia-feature-card:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.ia-feature-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.ia-feature-icon {
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.ia-feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.ia-feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── Toggle Switch (iOS style) ── */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(34, 197, 94, 0.2);
    border-color: var(--cyan);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translate(24px, -50%);
    background: var(--cyan);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.toggle-switch:hover .toggle-slider {
    border-color: var(--border-hover);
}
