/* ================================================================
   explorar.css — Estilos da página Explorar
   ================================================================ */

/* ── Hero (sem query) ────────────────────────────────────────── */
.exp-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 100px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.exp-hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}
.exp-hero-sub {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.exp-hero-form { width: 100%; max-width: 540px; }
.exp-hero-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 10px 10px 10px 20px;
    transition: border-color .2s, box-shadow .2s;
}
.exp-hero-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,87,87,.12);
    background: var(--surface);
}
.exp-hero-input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 1rem; font-family: inherit; color: var(--text);
    min-width: 0;
}
.exp-hero-input::placeholder { color: var(--text-muted); }
.exp-hero-input::-webkit-search-cancel-button { display: none; }
.exp-hero-btn {
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--accent); color: #fff;
    font-size: .88rem; font-weight: 700;
    border: none; cursor: pointer; font-family: inherit;
    transition: background .15s;
}
.exp-hero-btn:hover { background: var(--accent-hover); }

@media (max-width: 540px) {
    .exp-hero { padding: 60px 16px 80px; }
    .exp-hero-title { font-size: 1.5rem; }
    .exp-hero-btn { display: none; }
    .exp-hero-input { font-size: .95rem; }
}

/* ── Barra sticky (com query) ────────────────────────────────── */
.exp-filters-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: sticky;
    top: 60px;
    z-index: 50;
}
.exp-filters-inner {
    display: flex;
    align-items: center;
}
.exp-search-form { flex: 1; max-width: 600px; }
.exp-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 8px 18px;
    transition: border-color .2s;
}
.exp-search-wrap:focus-within { border-color: var(--accent); background: var(--surface); }
.exp-search-icon { width: 16px; height: 16px; flex-shrink: 0; color: #9ca3af; }
.exp-search-input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: .9rem; font-family: inherit; color: var(--text);
    min-width: 0;
}
.exp-search-input::placeholder { color: var(--text-muted); }
.exp-search-input::-webkit-search-cancel-button { display: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.exp-main { min-height: 100vh; background: var(--bg); }
.exp-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 80px;
    align-items: start;
}
@media (max-width: 860px) {
    .exp-layout { grid-template-columns: 1fr; }
    .exp-sidebar { display: none; }
}

/* ── Feed ────────────────────────────────────────────────────── */
.exp-feed { min-width: 0; }

.exp-results-meta {
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.exp-results-meta strong { color: var(--text); font-weight: 700; }

/* ── Tabs ────────────────────────────────────────────────────── */
.exp-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}
.exp-tab {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 16px;
    font-size: .84rem; font-weight: 600;
    color: var(--text-muted);
    background: none; border: none; cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    font-family: inherit;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}
.exp-tab:hover { color: var(--text); }
.exp-tab.active { color: var(--accent); border-color: var(--accent); }
.exp-tab-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg); color: var(--text-muted);
    border-radius: 20px; font-size: .68rem; font-weight: 700;
    padding: 1px 7px; min-width: 22px;
    border: 1px solid var(--border);
}
.exp-tab.active .exp-tab-count { background: var(--accent-dim); color: var(--accent); border-color: transparent; }

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Grid ────────────────────────────────────────────────────── */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
@media (max-width: 480px) {
    .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Skeleton */
.exp-card-skeleton {
    border-radius: var(--radius);
    height: 220px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e8edf2 50%, #f1f5f9 75%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ── Card vitrine ────────────────────────────────────────────── */
.exp-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.exp-card-link { display: block; text-decoration: none; color: inherit; }

.exp-card-cover {
    height: 100px;
    background: var(--card-accent, var(--accent));
    position: relative;
    overflow: hidden;
}
.exp-card-cover img { width: 100%; height: 100%; object-fit: cover; }

.exp-card-body {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exp-card-avatar {
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 3px solid var(--surface);
    margin-top: -22px;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800; color: #fff;
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.exp-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.exp-card-info { margin-top: 4px; }
.exp-card-name { font-size: .88rem; font-weight: 800; color: var(--text); line-height: 1.3; }
.exp-card-seg {
    display: inline-block;
    font-size: .65rem; font-weight: 700;
    color: var(--accent); background: var(--accent-dim);
    padding: 2px 8px; border-radius: 20px; margin-top: 3px;
    text-transform: uppercase; letter-spacing: .04em;
}

/* ── Card item (produto / servico) ───────────────────────────── */
.item-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.item-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.item-card-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    background: var(--bg); display: block;
}
.item-card-img-ph {
    width: 100%; aspect-ratio: 4/3;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
}
.item-card-img-ph svg { width: 28px; height: 28px; color: #c4cdd8; }
.item-card-body { padding: 10px 12px 12px; }
.item-card-nome { font-size: .84rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.item-card-empresa { font-size: .70rem; color: var(--text-muted); margin-top: 2px; }
.item-card-preco { font-size: .88rem; font-weight: 700; color: var(--accent); margin-top: 5px; }
.item-card-tag {
    display: inline-block; font-size: .65rem; font-weight: 600;
    background: var(--bg); color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 2px 7px; border-radius: 12px; margin-top: 4px;
}

/* ── Empty state ─────────────────────────────────────────────── */
.exp-empty {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 56px 20px; color: var(--text-muted); text-align: center;
}
.exp-empty svg { width: 44px; height: 44px; opacity: .3; }
.exp-empty h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.exp-empty p  { font-size: .84rem; max-width: 280px; line-height: 1.6; }
.exp-empty-link {
    display: inline-flex; align-items: center;
    padding: 8px 20px; border-radius: 24px;
    background: var(--accent); color: #fff;
    font-size: .84rem; font-weight: 700;
    text-decoration: none; margin-top: 4px;
    transition: background .15s;
}
.exp-empty-link:hover { background: var(--accent-hover); }

/* ── Offcanvas ───────────────────────────────────────────────── */
.item-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 200;
}
.item-overlay.open { display: block; }
.item-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(400px, 100%); background: var(--surface);
    box-shadow: -4px 0 40px rgba(0,0,0,.12);
    display: flex; flex-direction: column; z-index: 201;
    transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.item-panel.open { transform: translateX(0); }
.item-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.item-panel-tipo {
    font-size: .68rem; font-weight: 700; color: var(--text-muted);
    letter-spacing: .08em; text-transform: uppercase;
}
.item-panel-close {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: var(--bg); cursor: pointer; display: flex;
    align-items: center; justify-content: center; color: var(--text-muted);
    transition: background .15s;
}
.item-panel-close:hover { background: var(--border); }
.item-panel-body { flex: 1; overflow-y: auto; padding: 20px; }
.item-panel-img {
    width: 100%; border-radius: var(--radius); object-fit: cover;
    max-height: 240px; display: block; background: var(--bg);
}
.item-panel-img-ph {
    width: 100%; height: 200px; border-radius: var(--radius);
    background: var(--bg); display: flex; align-items: center; justify-content: center;
}
.item-panel-img-ph svg { width: 48px; height: 48px; color: #c4cdd8; }
.item-panel-nome { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-top: 16px; line-height: 1.3; }
.item-panel-empresa { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.item-panel-preco { font-size: 1.4rem; font-weight: 900; color: var(--accent); margin-top: 10px; }
.item-panel-preco-de {
    font-size: .85rem; font-weight: 400; color: var(--text-muted);
    text-decoration: line-through; margin-left: 8px;
}
.item-panel-tag {
    display: inline-block; font-size: .72rem; font-weight: 600;
    background: var(--bg); color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 12px; border-radius: 20px; margin-top: 10px;
}
.item-panel-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.item-panel-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }
.item-panel-cta {
    display: flex; align-items: center; justify-content: center;
    padding: 13px 20px; border-radius: var(--radius);
    background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
    text-decoration: none; margin-top: 20px;
    transition: background .15s;
}
.item-panel-cta:hover { background: var(--accent-hover); }
.item-panel-vitrine-link {
    display: block; text-align: center; margin-top: 12px;
    font-size: .8rem; color: var(--text-muted); text-decoration: none;
    transition: color .15s;
}
.item-panel-vitrine-link:hover { color: var(--accent); }

/* ── Sidebar ─────────────────────────────────────────────────── */
.exp-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; }
.exp-sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
}
.exp-sidebar-title { font-size: .9rem; font-weight: 800; color: var(--text); }
.exp-sidebar-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }
.exp-sidebar-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 18px; border-radius: 24px;
    background: var(--accent); color: #fff;
    font-size: .82rem; font-weight: 700;
    text-decoration: none; text-align: center;
    transition: background .15s;
}
.exp-sidebar-btn:hover { background: var(--accent-hover); }
.exp-sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.exp-sidebar-links a {
    display: block; padding: 7px 10px; border-radius: 8px;
    font-size: .82rem; font-weight: 500; color: var(--text-muted);
    text-decoration: none;
    transition: background .15s, color .15s;
}
.exp-sidebar-links a:hover { background: var(--bg); color: var(--accent); }
.exp-filters-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 60px;
    z-index: 50;
}
.exp-filters-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.exp-search-form { flex-shrink: 0; }
.exp-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 8px 18px;
    transition: border-color .2s;
}
.exp-search-wrap:focus-within { border-color: var(--accent); background: var(--surface); }
.exp-search-icon { width: 16px; height: 16px; flex-shrink: 0; }
.exp-search-input {
    border: none; outline: none; background: transparent;
    font-size: .9rem; font-family: inherit; color: var(--text); width: 260px;
}
.exp-search-input::placeholder { color: var(--text-muted); }
.exp-search-input::-webkit-search-cancel-button { display: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.exp-main { min-height: 100vh; background: var(--bg); }
.exp-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 80px;
    align-items: start;
}
@media (max-width: 900px) {
    .exp-layout { grid-template-columns: 1fr; }
    .exp-sidebar { display: none; }
}

/* ── Feed ────────────────────────────────────────────────────── */
.exp-feed { min-width: 0; }

.exp-results-meta {
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.exp-results-meta strong { color: var(--text); font-weight: 700; }

/* ── Tabs ────────────────────────────────────────────────────── */
.exp-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}
.exp-tab {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px;
    font-size: .84rem; font-weight: 600;
    color: var(--text-muted);
    background: none; border: none; cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    font-family: inherit;
    transition: color .15s, border-color .15s;
}
.exp-tab:hover { color: var(--text); }
.exp-tab.active { color: var(--accent); border-color: var(--accent); }
.exp-tab-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg); color: var(--text-muted);
    border-radius: 20px; font-size: .68rem; font-weight: 700;
    padding: 1px 7px; min-width: 22px;
    border: 1px solid var(--border);
}
.exp-tab.active .exp-tab-count { background: var(--accent-dim); color: var(--accent); border-color: transparent; }

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Grid ────────────────────────────────────────────────────── */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}

/* Skeleton */
.exp-card-skeleton {
    border-radius: var(--radius);
    height: 230px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e8edf2 50%, #f1f5f9 75%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ── Card vitrine ────────────────────────────────────────────── */
.exp-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.exp-card-link { display: block; text-decoration: none; color: inherit; }

.exp-card-cover {
    height: 110px;
    background: var(--card-accent, var(--accent));
    position: relative;
    overflow: hidden;
}
.exp-card-cover img { width: 100%; height: 100%; object-fit: cover; }

.exp-card-body {
    padding: 0 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exp-card-avatar {
    width: 48px; height: 48px;
    border-radius: 10px;
    border: 3px solid var(--surface);
    margin-top: -24px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 800; color: #fff;
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.exp-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.exp-card-info { margin-top: 6px; }
.exp-card-name { font-size: .9rem; font-weight: 800; color: var(--text); line-height: 1.3; }
.exp-card-seg {
    display: inline-block;
    font-size: .68rem; font-weight: 700;
    color: var(--accent); background: var(--accent-dim);
    padding: 2px 8px; border-radius: 20px; margin-top: 4px;
    text-transform: uppercase; letter-spacing: .04em;
}

/* ── Card item (produto / servico) ───────────────────────────── */
.item-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.item-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.item-card-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    background: var(--bg); display: block;
}
.item-card-img-ph {
    width: 100%; aspect-ratio: 4/3;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
}
.item-card-img-ph svg { width: 28px; height: 28px; color: #c4cdd8; }
.item-card-body { padding: 12px; }
.item-card-nome { font-size: .875rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.item-card-empresa { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }
.item-card-preco { font-size: .9rem; font-weight: 700; color: var(--accent); margin-top: 6px; }
.item-card-tag {
    display: inline-block; font-size: .67rem; font-weight: 600;
    background: var(--bg); color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 2px 8px; border-radius: 12px; margin-top: 5px;
}

/* ── Empty state ─────────────────────────────────────────────── */
.exp-empty {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 56px 20px; color: var(--text-muted); text-align: center;
}
.exp-empty svg { width: 44px; height: 44px; opacity: .3; }
.exp-empty h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.exp-empty p  { font-size: .84rem; max-width: 280px; line-height: 1.6; }
.exp-empty-link {
    display: inline-flex; align-items: center;
    padding: 8px 20px; border-radius: 24px;
    background: var(--accent); color: #fff;
    font-size: .84rem; font-weight: 700;
    text-decoration: none; margin-top: 4px;
    transition: background .15s;
}
.exp-empty-link:hover { background: var(--accent-hover); }

/* ── Offcanvas ───────────────────────────────────────────────── */
.item-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 200;
}
.item-overlay.open { display: block; }
.item-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(400px, 100%); background: var(--surface);
    box-shadow: -4px 0 40px rgba(0,0,0,.12);
    display: flex; flex-direction: column; z-index: 201;
    transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.item-panel.open { transform: translateX(0); }
.item-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.item-panel-tipo {
    font-size: .68rem; font-weight: 700; color: var(--text-muted);
    letter-spacing: .08em; text-transform: uppercase;
}
.item-panel-close {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: var(--bg); cursor: pointer; display: flex;
    align-items: center; justify-content: center; color: var(--text-muted);
    transition: background .15s;
}
.item-panel-close:hover { background: var(--border); }
.item-panel-body { flex: 1; overflow-y: auto; padding: 20px; }
.item-panel-img {
    width: 100%; border-radius: var(--radius); object-fit: cover;
    max-height: 240px; display: block; background: var(--bg);
}
.item-panel-img-ph {
    width: 100%; height: 200px; border-radius: var(--radius);
    background: var(--bg); display: flex; align-items: center; justify-content: center;
}
.item-panel-img-ph svg { width: 48px; height: 48px; color: #c4cdd8; }
.item-panel-nome { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-top: 16px; line-height: 1.3; }
.item-panel-empresa { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.item-panel-preco { font-size: 1.4rem; font-weight: 900; color: var(--accent); margin-top: 10px; }
.item-panel-preco-de {
    font-size: .85rem; font-weight: 400; color: var(--text-muted);
    text-decoration: line-through; margin-left: 8px;
}
.item-panel-tag {
    display: inline-block; font-size: .72rem; font-weight: 600;
    background: var(--bg); color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 12px; border-radius: 20px; margin-top: 10px;
}
.item-panel-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.item-panel-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }
.item-panel-cta {
    display: flex; align-items: center; justify-content: center;
    padding: 13px 20px; border-radius: var(--radius);
    background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
    text-decoration: none; margin-top: 20px;
    transition: background .15s;
}
.item-panel-cta:hover { background: var(--accent-hover); }
.item-panel-vitrine-link {
    display: block; text-align: center; margin-top: 12px;
    font-size: .8rem; color: var(--text-muted); text-decoration: none;
    transition: color .15s;
}
.item-panel-vitrine-link:hover { color: var(--accent); }

/* ── Sidebar ─────────────────────────────────────────────────── */
.exp-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; }
.exp-sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
}
.exp-sidebar-title { font-size: .9rem; font-weight: 800; color: var(--text); }
.exp-sidebar-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }
.exp-sidebar-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 18px; border-radius: 24px;
    background: var(--accent); color: #fff;
    font-size: .82rem; font-weight: 700;
    text-decoration: none; text-align: center;
    transition: background .15s;
}
.exp-sidebar-btn:hover { background: var(--accent-hover); }
.exp-sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.exp-sidebar-links a {
    display: block; padding: 7px 10px; border-radius: 8px;
    font-size: .82rem; font-weight: 500; color: var(--text-muted);
    text-decoration: none;
    transition: background .15s, color .15s;
}
.exp-sidebar-links a:hover { background: var(--bg); color: var(--accent); }

@media (max-width: 600px) {
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-search-input { width: 160px; }
}