/* v5Admin — estilos base */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f0f2f5;
    color: #222;
    line-height: 1.5;
}

a { color: #2c6cd6; text-decoration: none; }
a:hover { text-decoration: underline; }

code {
    background: #f5f5f5;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 12px;
    color: #555;
}

/* ====== LOGIN ====== */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
    width: 100%;
    max-width: 420px;
}

.login-header { text-align: center; margin-bottom: 24px; }

.logo-img {
    max-width: 70%;
    height: auto;
    margin: 0 auto 4px;
    display: block;
}

.login-title {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin: 12px 0 0;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.login-form { display: flex; flex-direction: column; gap: 12px; }

.input {
    padding: 10px 12px;
    border: 1px solid #d6dae0;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
}

.login-form .input { background: #eef3ff; padding: 12px 14px; }

.input:focus {
    outline: none;
    border-color: #2c6cd6;
    background: #fff;
}

.btn-primary {
    padding: 10px 18px;
    background: #2c6cd6;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-primary:hover { background: #2558b3; text-decoration: none; }

.btn-link {
    background: none;
    border: 0;
    color: #2c6cd6;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    font-family: inherit;
}
.btn-link:hover { text-decoration: underline; }

.alert {
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 16px;
}
.alert-error   { background: #fde7e7; color: #a8261b; border: 1px solid #f5b5b1; }
.alert-success { background: #e2f5e9; color: #1e6b3a; border: 1px solid #b0dec0; }

/* ====== TOPBAR ====== */
.topbar {
    background: #fff;
    border-bottom: 1px solid #e3e7ed;
    padding: 0 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 56px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; }

.topbar-user { margin-left: auto; display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.user-info { color: #555; font-size: 13px; }

/* === TOPNAV (header horizontal) === */
.topnav {
    display: flex;
    gap: 2px;
    align-items: stretch;
    height: 100%;
    flex: 1;
    min-width: 0;
}

.topnav-item {
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #444;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-family: inherit;
    height: 100%;
}
.topnav-item:hover {
    background: #f5f7fa;
    color: #2c6cd6;
    text-decoration: none;
}
.topnav-item.is-active,
.topnav-section.is-active > .topnav-item {
    border-bottom-color: #2c6cd6;
    color: #2c6cd6;
    font-weight: 600;
}

.topnav-section { position: relative; height: 100%; display: flex; }
.topnav-trigger .caret { margin-left: 4px; font-size: 10px; }

.topnav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e3e7ed;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 200;
    padding: 4px 0;
}
.topnav-section.is-open > .topnav-dropdown,
.topnav-section:hover > .topnav-dropdown { display: block; }

.topnav-dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #444;
    font-size: 13px;
    text-decoration: none;
    border-left: 3px solid transparent;
}
.topnav-dropdown-item:hover {
    background: #f5f7fa;
    color: #2c6cd6;
    text-decoration: none;
}
.topnav-dropdown-item.is-active {
    background: #eef3ff;
    color: #2c6cd6;
    border-left-color: #2c6cd6;
    font-weight: 600;
}

.badge {
    background: #d94c3e;
    color: #fff;
    font-style: normal;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.link { font-size: 14px; }

/* ====== LAYOUT: full-width main ====== */
.app-main {
    padding: 20px 24px;
    width: 100%;
}

/* ====== PAGE COMPONENTS ====== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.page-header h1 { margin: 0; font-size: 22px; }

.card {
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.card h1, .card h2 { margin-top: 0; }

.muted { color: #888; font-size: 13px; }

.feature-list { list-style: none; padding: 0; margin: 12px 0 0; }
.feature-list li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.feature-list li:last-child { border-bottom: 0; }
.feature-list code { color: #888; }

/* ====== FILTER BAR ====== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 14px 18px;
}
.filter-field { display: flex; flex-direction: column; min-width: 140px; }
.filter-field-grow { flex: 1; min-width: 240px; }
.filter-field-narrow { min-width: 100px; max-width: 110px; }

/* Layout de filtros en filas explicitas */
.filter-bar-rows { flex-direction: column; align-items: stretch; gap: 12px; }
.filter-bar-rows .filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px;
}
.filter-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
    margin-bottom: 4px;
}
.filter-field .input { padding: 8px 10px; font-size: 14px; }
.filter-actions { display: flex; gap: 10px; align-items: center; }

/* ====== PAGINATION ====== */
.pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 14px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}
.pagination-bar:last-child {
    border-bottom: 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 14px 0 0;
}
.pagination-range { font-size: 13px; }
.filter-count { color: #2c6cd6; font-weight: 600; margin-left: 6px; }
.pagination-controls { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.pagination-btn {
    padding: 5px 10px;
    border: 1px solid #d6dae0;
    border-radius: 4px;
    color: #2c6cd6;
    background: #fff;
    text-decoration: none;
}
.pagination-btn:hover { background: #f5f7fa; text-decoration: none; }
.pagination-btn.is-disabled {
    color: #bbb;
    border-color: #eee;
    background: #fafafa;
    cursor: default;
}
.pagination-page { color: #555; }

/* ====== TABLAS ====== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table thead th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #e3e7ed;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.data-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
}
.data-table tbody tr:hover { background: #fafbfc; }
.data-table tbody tr.is-inactive td { opacity: 0.55; }

/* Variante compacta para tablas anchas (sitios) */
.data-table-compact thead th,
.data-table-compact tbody td {
    padding: 6px 8px;
    font-size: 12px;
}
.data-table .num,
.data-table-compact .num { text-align: right; white-space: nowrap; }
.data-table thead th.num { text-align: right; }

.table-scroll {
    overflow-x: auto;
    margin: 0 -24px;
    padding: 0 24px;
}

.card-flush { padding-bottom: 16px; }

.btn-link-danger { color: #d63333; }
.btn-link-danger:hover { color: #a82020; }

.row-actions { white-space: nowrap; }
.row-actions a, .row-actions form { margin-right: 12px; }
.row-actions form:last-child, .row-actions a:last-child { margin-right: 0; }

.inline-form { display: inline; }

.pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.pill-ok  { background: #e2f5e9; color: #1e6b3a; }
.pill-off { background: #f0f0f0; color: #888; }

/* ====== FORMS ====== */
.form-card { max-width: 720px; }
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.form-row small.muted { display: block; margin-top: 4px; }

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

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

/* Form ancho organizado en secciones */
.form-card-wide { max-width: 1200px; }

.form-section {
    padding: 18px 22px 14px;
    margin-bottom: 14px;
}
.form-section-title {
    margin: 0 0 14px;
    padding: 0 0 8px;
    font-size: 12px;
    color: #2c6cd6;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #eef0f5;
}
.form-section .form-row { margin-bottom: 12px; }
.form-section .form-row:last-child { margin-bottom: 0; }
.form-section .muted { font-size: 12px; }

.form-card-wide table input.input.num,
.form-card-wide table input.input { padding: 5px 8px; font-size: 13px; }

.form-actions {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.input-with-action {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.input-with-action .input { flex: 1; }

.btn-secondary {
    padding: 8px 14px;
    background: #fff;
    color: #2c6cd6;
    border: 1px solid #2c6cd6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.btn-secondary:hover { background: #eef3ff; }

.card-info {
    padding: 10px 14px;
    background: #f7f9fc;
    border-radius: 4px;
    margin-bottom: 18px;
    font-size: 14px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px;
    margin-top: 6px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-weight: normal;
    font-size: 13px;
    cursor: pointer;
}
.checkbox-item:hover { background: #fafbfc; }
.checkbox-item input { margin: 0; }
.checkbox-item code { font-size: 11px; }

/* === Estado AJAX loading === */
.is-loading { opacity: 0.5; pointer-events: none; transition: opacity 0.1s; }

/* Iconos de acciones en la tabla */
.col-actions { width: 1%; white-space: nowrap; }
.row-actions-front, .row-actions-end { white-space: nowrap; }
.row-actions-front { padding-right: 4px !important; }
.btn-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; padding: 0; margin: 0 1px;
    background: transparent; border: 1px solid transparent; border-radius: 4px;
    color: #475569; cursor: pointer; text-decoration: none; vertical-align: middle;
}
.btn-icon:hover { background: #f1f5f9; color: #1e3a8a; border-color: #cbd5e1; }
.btn-icon svg { display: block; }
.btn-icon-danger:hover { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }

/* Columna Estado — texto activo/inactivo, comprimido */
.col-estado {
    width: 1%;
    white-space: nowrap;
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 0.78rem;
}

/* Columna Nombre — ancho medio, 1 linea con ellipsis */
.col-nombre {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Columna Categoria — ancho razonable, 1 linea con ellipsis */
.col-categoria {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Columna Patrocinado (PAT) — angosta */
.col-pat {
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* Header Precio Gambling — 2 lineas */
.col-precio-gambling { line-height: 1.1; }

/* Columna fechas (creado/actualizado) — compacta */
.col-fecha { white-space: nowrap; font-size: 0.78rem; }

/* Acciones a la derecha del header de la pagina */
.page-header-actions { display: flex; gap: 8px; align-items: center; }

/* Card de estado de Google OAuth */
.google-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.google-card-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.google-card-text { flex: 1; font-size: 0.9rem; }

/* Dashboard del home — paises prioritarios (3 por linea, todos del mismo tamaño) */
.home-prio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}
.home-pais-card { padding: 14px 16px; min-width: 0; }
.home-pais-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.home-pais-head h3 { margin: 0; font-size: 1rem; color: #0f172a; }
.home-pais-head .link { font-size: 0.78rem; text-decoration: none; }
.home-pais-table { width: 100%; table-layout: fixed; }
.home-pais-table td, .home-pais-table th { padding: 5px 8px; font-size: 0.84rem; }
.home-pais-table th { color: #64748b; font-weight: 600; font-size: 0.74rem; text-transform: uppercase; }
.home-pais-table td:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-pais-cat { font-size: 0.72rem; line-height: 1.1; }

/* Paneles inferiores: precios modificados / sitios nuevos */
.dashboard-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.dashboard-title { margin: 0 0 10px; font-size: 0.92rem; color: #0f172a; letter-spacing: 0.02em; }
.dashboard-table td { vertical-align: middle; }

@media (max-width: 1100px) {
    .home-prio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .home-prio-grid { grid-template-columns: 1fr; }
    .dashboard-row  { grid-template-columns: 1fr; }
}

/* Hub de listados — 2 columnas */
.listados-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
.listados-col h2.listados-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}
.listados-list { list-style: none; padding: 0; margin: 0; }
.listados-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 0; font-size: 0.86rem; letter-spacing: 0.04em;
    border-bottom: 1px dashed transparent;
}
.listados-item:hover { border-bottom-color: #e2e8f0; }
.listados-link { text-decoration: none; color: #1d4ed8; flex: 1; }
.listados-link:hover { text-decoration: underline; }
.listados-actions { display: flex; gap: 10px; opacity: 0.7; }
.listados-item:hover .listados-actions { opacity: 1; }
.listados-action {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; color: #64748b; text-decoration: none;
    border: 1px solid transparent; border-radius: 6px;
}
.listados-action svg { width: 18px; height: 18px; }
.listados-action:hover { background: #f1f5f9; color: #1d4ed8; border-color: #cbd5e1; }
@media (max-width: 760px) {
    .listados-hub { grid-template-columns: 1fr; }
}

/* Toggle de columnas — ocultar TH/TD marcados */
.is-hidden-col { display: none !important; }

/* Dropdown generico (reusable) */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 6px 0;
}
.dropdown-menu-cols { max-height: 70vh; overflow-y: auto; }
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.88rem;
    cursor: pointer;
    user-select: none;
}
.dropdown-menu .dropdown-item:hover { background: #f1f5f9; }
.dropdown-menu .dropdown-item input { margin: 0; }
.dropdown-menu-actions {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    padding: 2px 10px 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}
.dropdown-menu-actions .btn-link { font-size: 0.82rem; padding: 2px 6px; }
/* Columna ID al final */
.col-id { font-size: 0.82rem; }

/* Headers ordenables */
th.sortable {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
th.sortable:hover { background: #f1f5f9; }
th.sortable .sort-arrow {
    display: inline-block;
    margin-left: 4px;
    color: #cbd5e1;
    font-size: 0.85em;
}
th.sortable.is-active { color: #1d4ed8; }
th.sortable.is-active .sort-arrow { color: #1d4ed8; }

/* Columna combinada contacto / email — max 2 lineas */
.col-contact {
    max-width: 420px;
    min-width: 280px;
    font-size: 0.82rem;
    line-height: 1.3;
    vertical-align: middle;
}
.col-contact-inner {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.col-contact-email { color: #64748b; }

/* Responsive */
@media (max-width: 900px) {
    .topbar-inner { flex-wrap: wrap; height: auto; padding: 8px 0; gap: 8px; }
    .topnav { width: 100%; overflow-x: auto; }
    .topbar-user { margin-left: 0; }
    .form-row-2col, .form-row-3col { grid-template-columns: 1fr; }
}

/* ============================================================
   Modal generico (vista rapida + edicion rapida)
   ============================================================ */
.app-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.app-modal.is-open { display: block; }
.app-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); }
.app-modal-dialog {
    position: relative; max-width: 900px; width: calc(100% - 32px); max-height: calc(100vh - 48px);
    margin: 24px auto; background: #fff; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    overflow: auto;
}
.app-modal-x {
    position: absolute; top: 8px; right: 12px; border: 0; background: transparent;
    font-size: 26px; line-height: 1; cursor: pointer; color: #64748b; padding: 4px 8px;
}
.app-modal-x:hover { color: #0f172a; }
.app-modal-body { padding: 20px 24px; }
body.app-modal-open { overflow: hidden; }

/* Vista rapida (read-only) — grid 4 columnas compacto */
.quick-view .qv-title { margin: 0 0 10px; font-size: 1.05rem; }
.quick-view .qv-title a { text-decoration: none; }
.quick-view .qv-id { color: #94a3b8; font-weight: normal; margin-left: 6px; font-size: 0.85em; }
.quick-view .qv-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 16px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}
.quick-view .qv-section h4 {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    font-size: 0.74rem;
    text-transform: uppercase;
    color: #2563eb;
    letter-spacing: 0.04em;
}
.quick-view .qv-row {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 0.86rem;
    min-width: 0;
}
.quick-view .qv-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.quick-view .qv-value {
    color: #0f172a;
    word-break: break-word;
    font-weight: 500;
}
.quick-view .qv-notes { white-space: pre-wrap; font-weight: normal; }
.quick-view .qv-row:has(.qv-notes) { grid-column: 1 / -1; }
.quick-view .qv-nicho-table {
    grid-column: 1 / -1;
    width: 100%; margin-top: 4px; border-collapse: collapse; font-size: 0.85rem;
}
.quick-view .qv-nicho-table th, .quick-view .qv-nicho-table td { padding: 3px 8px; border-bottom: 1px solid #e2e8f0; text-align: left; }
.quick-view .qv-nicho-table th { color: #64748b; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; }
.quick-view .qv-nicho-table .num { text-align: right; }
.quick-view .qv-meta { font-size: 0.78rem; }
.quick-view .qv-meta .qv-value { color: #94a3b8; font-weight: normal; }

/* Quick form */
.quick-form .qf-title { margin-bottom: 14px; font-size: 1rem; }
.quick-form .qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.quick-form .qf-field { display: flex; flex-direction: column; gap: 4px; }
.quick-form .qf-field label { font-size: 0.82rem; color: #475569; }
.quick-form .qf-field .input { width: 100%; }
.quick-form .qf-col-2 { grid-column: span 2; }
.quick-form .qf-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; padding-top: 12px; border-top: 1px solid #e2e8f0; }
@media (max-width: 700px) {
    .quick-form .qf-grid { grid-template-columns: 1fr; }
    .quick-form .qf-col-2 { grid-column: span 1; }
    .quick-view .qv-row { grid-template-columns: 130px 1fr; }
}
