/**
 * Catálogo Público v2 - HotMe
 * Netflix-style: Hero Slider + Cards con hover
 * Cliente: HotMe
 * Desarrollado por: Roger Soluciones Web
 * v6.6.0
 */

/* ================== VARIABLES ================== */
:root {
    --vme2-red: #D73744;
    --vme2-red-hover: #c52f3a;
    --vme2-bg: #0d0d0d;
    --vme2-card-bg: #181818;
    --vme2-text: #fff;
    --vme2-text-muted: rgba(255,255,255,0.6);
    --vme2-text-dim: rgba(255,255,255,0.4);
    --vme2-border: rgba(255,255,255,0.15);
    --vme2-border-dim: rgba(255,255,255,0.06);
    --vme2-glass: rgba(255,255,255,0.12);
    --vme2-glass-hover: rgba(255,255,255,0.25);
    --vme2-radius: 8px;
    --vme2-transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================== CATALOG WRAPPER ================== */
.vme2-catalog-wrapper {
    background: var(--vme2-bg);
    color: var(--vme2-text);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ================== HERO SLIDER ================== */
.vme2-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 75vh;
    overflow: hidden;
}

.vme2-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    overflow: hidden;
}

.vme2-hero-slide.active {
    opacity: 1;
}

.vme2-hero-slide img.vme2-hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.vme2-hero-slide video.vme2-hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.vme2-hero-slide.active video.vme2-hero-bg-video.loaded {
    opacity: 1;
}

.vme2-hero-slide.active video.vme2-hero-bg-video.loaded + img.vme2-hero-bg-image,
.vme2-hero-slide.active img.vme2-hero-bg-image.video-ready {
    opacity: 0;
}

/* Gradients */
.vme2-hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, var(--vme2-bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.vme2-hero-gradient-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.6) 30%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.vme2-hero-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    right: 50%;
    z-index: 3;
    animation: vme2SlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vme2-hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vme2-hero-badge-category {
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--vme2-red);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vme2-hero-badge-creator {
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--vme2-glass);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.vme2-hero-badge-preview {
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(215,55,68,0.25);
    border: 1px solid rgba(215,55,68,0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vme2-hero-badge-preview .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vme2-red);
    animation: vme2LivePulse 1.5s ease infinite;
    display: inline-block;
}

.vme2-hero-title {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.vme2-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.vme2-hero-meta .dot {
    color: var(--vme2-text-dim);
}

.vme2-hero-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,1);
    margin: 0 0 20px;
    max-width: 420px;
}

.vme2-hero-buttons {
    display: flex;
    gap: 12px;
}

.vme2-hero-btn-primary {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    background: var(--vme2-red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vme2-hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(215,55,68,0.5);
    color: #fff;
}

.vme2-hero-btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: var(--vme2-glass);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vme2-hero-btn-secondary:hover {
    background: var(--vme2-glass-hover);
    color: #fff;
}

/* Hero Navigation */
.vme2-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 80px;
    border: none;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    line-height: 1;
}

.vme2-hero-nav:hover {
    background: rgba(0,0,0,0.7);
}

.vme2-hero-nav.prev { left: 20px; }
.vme2-hero-nav.next { right: 20px; }

/* Hero Status Indicator */
.vme2-hero-status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
    font-size: 11px;
    color: var(--vme2-text-muted);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

/* Hero Progress Bar */
.vme2-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    gap: 4px;
    padding: 0 50px;
    height: 3px;
}

.vme2-hero-progress-track {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.vme2-hero-progress-bar {
    height: 100%;
    border-radius: 2px;
    width: 0%;
    background: transparent;
}

.vme2-hero-progress-track.active .vme2-hero-progress-bar {
    background: var(--vme2-red);
    animation: vme2ProgressFill 7s linear forwards;
}

.vme2-hero-progress-track.completed .vme2-hero-progress-bar {
    width: 100%;
    background: rgba(255,255,255,0.3);
}

.vme2-hero.paused .vme2-hero-progress-track.active .vme2-hero-progress-bar {
    animation-play-state: paused;
}

/* Hero Counter */
.vme2-hero-counter {
    position: absolute;
    bottom: 16px;
    right: 50px;
    z-index: 5;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* ================== FILTER BAR ================== */
.vme2-filters {
    padding: 28px 50px 10px;
    border-bottom: 1px solid var(--vme2-border-dim);
}

.vme2-filters-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.vme2-search-box {
    display: flex;
    flex: 1;
    max-width: 480px;
}

.vme2-search-input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 6px 0 0 6px;
    border: 1px solid var(--vme2-border);
    border-right: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.vme2-search-btn {
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    border: none;
    background: var(--vme2-red);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 16px;
}

.vme2-search-btn:hover {
    background: var(--vme2-red-hover);
}

.vme2-filter-dropdowns {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.vme2-filter-select {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--vme2-border);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    min-width: 160px;
}

.vme2-filter-select option {
    background: #1a1a1a;
    color: #fff;
}

.vme2-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.vme2-filter-tab {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid var(--vme2-border);
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vme2-filter-tab:hover {
    border-color: rgba(215,55,68,0.4);
    color: var(--vme2-red);
}

.vme2-filter-tab.active {
    background: var(--vme2-red);
    border-color: var(--vme2-red);
    color: #fff;
    font-weight: 600;
}

/* ================== VIDEO ROWS ================== */
.vme2-rows {
    padding: 20px 0 40px;
}

.vme2-row {
    margin-bottom: 10px;
    overflow: visible;
}

.vme2-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin-bottom: 14px;
}

.vme2-row-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vme2-row-viewall {
    background: none;
    border: none;
    color: var(--vme2-text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 500;
    text-decoration: none;
}

.vme2-row-viewall:hover {
    color: var(--vme2-red);
}

.vme2-row-container {
    position: relative;
    padding: 0 20px;
}

.vme2-row-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 0 50px;
}

.vme2-row-scroll::-webkit-scrollbar {
    display: none;
}

/* ================== NETFLIX CARDS ================== */
.vme2-card {
    position: relative;
    animation: vme2FadeInCard 0.4s ease forwards;
    opacity: 0;
}

.vme2-card:nth-child(1) { animation-delay: 0s; }
.vme2-card:nth-child(2) { animation-delay: 0.05s; }
.vme2-card:nth-child(3) { animation-delay: 0.1s; }
.vme2-card:nth-child(4) { animation-delay: 0.15s; }
.vme2-card:nth-child(5) { animation-delay: 0.2s; }
.vme2-card:nth-child(6) { animation-delay: 0.25s; }
.vme2-card:nth-child(7) { animation-delay: 0.3s; }
.vme2-card:nth-child(8) { animation-delay: 0.35s; }

.vme2-card-inner {
    border-radius: var(--vme2-radius);
    overflow: hidden;
    background: var(--vme2-card-bg);
    transition: all var(--vme2-transition);
    transform-origin: center bottom;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* StreamVid-style hover: card pops above all others */
.vme2-card {
    transition: z-index 0s 0.3s;
    z-index: 1;
}

.vme2-card:hover {
    z-index: 50;
    transition: z-index 0s 0s;
}

.vme2-card:hover .vme2-card-inner {
    transform: scale(1.15);
    z-index: 50;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(215,55,68,0.3);
    border-radius: var(--vme2-radius);
}

/* Expanded section with rounded bottom corners */
.vme2-card:hover .vme2-card-expanded {
    border-radius: 0 0 var(--vme2-radius) var(--vme2-radius);
    background: var(--vme2-card-bg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.vme2-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card Media */
.vme2-card-media {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

.vme2-card-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.vme2-card:hover .vme2-card-thumbnail.has-preview {
    opacity: 0.3;
}

/* Card Video Preview */
.vme2-card-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vme2-card:hover .vme2-card-preview {
    opacity: 1;
}

/* Card Preview Overlay (when no video preview, show animated bars) */
.vme2-card-preview-overlay {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
}

.vme2-card:hover .vme2-card-preview-overlay {
    display: flex;
}

.vme2-preview-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    margin-bottom: 8px;
}

.vme2-preview-bar {
    width: 4px;
    border-radius: 2px;
    background: var(--vme2-red);
    animation: vme2BarPulse 0.6s ease infinite;
}

.vme2-preview-bar:nth-child(1) { animation-delay: 0s; height: 12px; }
.vme2-preview-bar:nth-child(2) { animation-delay: 0.1s; height: 20px; }
.vme2-preview-bar:nth-child(3) { animation-delay: 0.2s; height: 15px; }
.vme2-preview-bar:nth-child(4) { animation-delay: 0.3s; height: 25px; }
.vme2-preview-bar:nth-child(5) { animation-delay: 0.4s; height: 18px; }

.vme2-preview-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Card Price Badge - Hidden by default, visible on hover */
.vme2-card-price {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    background: var(--vme2-red);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.vme2-card-price.free {
    background: #2ecc71;
}

.vme2-card:hover .vme2-card-price {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile price (inside info section, hidden on desktop) */
.vme2-card-price-mobile {
    display: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--vme2-red);
    margin-top: 4px;
}

.vme2-card-price-mobile.free {
    color: #2ecc71;
}

/* Card Play Button */
.vme2-card-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vme2-card:hover .vme2-card-play-overlay {
    opacity: 1;
}

.vme2-card-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(215,55,68,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(215,55,68,0.4);
}

/* Card Info */
.vme2-card-info {
    padding: 10px 14px 8px;
}

.vme2-card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.vme2-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 12px;
    color: var(--vme2-text-dim);
}

.vme2-card-sales {
    color: var(--vme2-red);
    font-weight: 600;
}

/* Card Expanded Section */
.vme2-card-expanded {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 14px;
    transition: all var(--vme2-transition);
    border-top: 1px solid transparent;
}

.vme2-card:hover .vme2-card-expanded {
    max-height: 120px;
    opacity: 1;
    padding: 10px 14px 14px;
    border-top-color: var(--vme2-border-dim);
}

.vme2-card-category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vme2-card-category-badge {
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(215,55,68,0.2);
    color: var(--vme2-red);
    font-size: 11px;
    font-weight: 600;
}

.vme2-card-alt-price {
    font-size: 11px;
    color: var(--vme2-text-dim);
}

/* Price in expanded hover section */
.vme2-card-expand-price {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    background: var(--vme2-red);
    padding: 2px 10px;
    border-radius: 4px;
}

.vme2-card-expand-price.free {
    background: #2ecc71;
}

.vme2-card-actions {
    display: flex;
    gap: 6px;
}

.vme2-card-buy-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    background: var(--vme2-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
    animation: vme2BtnPulse 2s ease-in-out infinite;
}

@keyframes vme2BtnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(215,55,68,0.6); }
    50% { box-shadow: 0 0 12px 4px rgba(215,55,68,0.3); }
}
    text-decoration: none;
    display: block;
}

.vme2-card-buy-btn:hover {
    background: var(--vme2-red-hover);
    color: #fff;
    transform: translateY(-1px);
}

.vme2-card .vme2-card-buy-btn,
.vme2-card .vme2-card-buy-btn:link,
.vme2-card .vme2-card-buy-btn:visited,
.vme2-card .vme2-card-buy-btn:active {
    color: #fff;
}

.vme2-card-detail-btn {
    width: 34px;
    border-radius: 4px;
    border: 1px solid var(--vme2-border);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.vme2-card-detail-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ================== ANIMATIONS ================== */
@keyframes vme2SlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes vme2BarPulse {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

@keyframes vme2ProgressFill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes vme2LivePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px) {
    .vme2-row-scroll { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .vme2-hero { max-height: 60vh; }
    .vme2-hero-title { font-size: 34px; }
    .vme2-hero-content { left: 30px; right: 40%; }
    .vme2-filters { padding: 20px 30px 10px; }
    .vme2-row-header { padding: 0 30px; }
    .vme2-row-container { padding: 0 22px; }
    .vme2-hero-progress { padding: 0 30px; }
    .vme2-row-scroll { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .vme2-hero { max-height: 50vh; }
    .vme2-hero-title { font-size: 26px; }
    .vme2-hero-content { left: 20px; right: 20px; bottom: 60px; }
    .vme2-hero-description { display: none; }
    .vme2-hero-gradient-left {
        background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.4) 60%, transparent 100%);
    }
    .vme2-hero-nav { display: none; }
    .vme2-hero-counter { display: none; }
    .vme2-hero-progress { padding: 0 20px; }
    .vme2-hero-btn-primary { padding: 10px 20px; font-size: 13px; }
    .vme2-hero-btn-secondary { padding: 10px 16px; font-size: 13px; }

    .vme2-filters { padding: 16px 20px 8px; }
    .vme2-filters-row { flex-wrap: wrap; }
    .vme2-search-box { max-width: 100%; flex: 1 1 100%; }
    .vme2-filter-dropdowns { margin-left: 0; flex: 1 1 100%; }
    .vme2-filter-select { min-width: 0; flex: 1; }

    .vme2-row-header { padding: 0 20px; }
    .vme2-row-container { padding: 0 12px; }
    .vme2-row-title { font-size: 18px; }
    .vme2-row-scroll { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 12px 0 30px; }
    .vme2-card-title { font-size: 13px; }

    /* Mobile: show price below title */
    .vme2-card-price-mobile { display: block; }

    /* Disable hover scale on touch */
    .vme2-card:hover .vme2-card-inner { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
    .vme2-card:hover .vme2-card-expanded { max-height: 0; opacity: 0; padding: 0 14px; }
}

@media (max-width: 480px) {
    .vme2-hero { max-height: 45vh; }
    .vme2-hero-title { font-size: 1.25rem; font-weight: 500; }
    .vme2-hero-badges { gap: 4px; }
    .vme2-hero-buttons { gap: 8px; }
    .vme2-hero-btn-secondary { display: none; }
    .vme2-hero-btn-primary { background: none; padding: 0px; }
    .vme2-hero-badge-category { display: none; }
    .vme2-hero-badge-creator { background: rgba(215, 55, 68, 0.25); border: 1px solid rgba(215, 55, 68, 0.5); }
    .vme2-hero-badge-preview { display: none; }
    .vme2-search-box { display: none; }
    .vme2-row-scroll { grid-template-columns: repeat(2, 1fr); }
    .vme2-filter-tabs { gap: 6px; }
    .vme2-filter-tab { padding: 5px 12px; font-size: 12px; }
}
