﻿/* =========================
   ARCUS – EXPLORAR
   Extiende home-ventas.css
========================= */

.ex-page .hv-shell {
    max-width: 1380px;
}

.ex-header {
    margin-bottom: 1.35rem;
}

.ex-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ex-toolbar__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.ex-chip {
    display: inline-flex;
    align-items: center;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(46,46,46,0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-weight: 700;
    color: rgba(46,46,46,0.84);
}

.ex-toolbar__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ex-results-count {
    font-weight: 800;
    color: rgba(46,46,46,0.82);
}

.ex-clear-link {
    text-decoration: none;
    font-weight: 700;
    color: #111;
    transition: opacity .18s ease;
}

    .ex-clear-link:hover {
        opacity: .7;
    }

.ex-results-section {
    margin-bottom: 0;
}

.ex-results-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: start;
}

.ex-empty {
    padding: 2rem 0 1rem;
}

.ex-empty__card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 2.4rem 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(46,46,46,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.07);
}

.ex-empty__title {
    margin: 0 0 .5rem 0;
    font-family: var(--arcus-font-serif);
    font-size: 1.9rem;
    color: #111;
}

.ex-empty__text {
    margin: 0 0 1.3rem 0;
    color: rgba(46,46,46,0.68);
}

@media (max-width: 1100px) {
    .ex-results-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ex-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ex-toolbar__meta {
        width: 100%;
        justify-content: space-between;
    }

    .ex-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .ex-empty__card {
        padding: 2rem 1.25rem;
        border-radius: 22px;
    }

    .ex-empty__title {
        font-size: 1.55rem;
    }
}
