.gmaq-archive-wrapper { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
.gmaq-archive-container { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
.gmaq-sidebar { background: #f8f9fa; padding: 1.5rem; border-radius: 8px; height: fit-content; position: sticky; top: 1rem; }
.gmaq-sidebar h3 { margin: 0 0 1rem; font-size: 1.25rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.filter-group select, .filter-group input { width: 100%; padding: 0.5rem; border: 1px solid #ddd; border-radius: 4px; }
.price-range { display: flex; gap: 0.5rem; align-items: center; }
.price-range input { flex: 1; }
.gmaq-filter-btn { width: 100%; padding: 0.75rem; background: #2563eb; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-weight: 500; transition: background 0.2s; }
.gmaq-filter-btn:hover { background: #1d4ed8; }

.gmaq-main-content { min-width: 0; }
.gmaq-archive-title { margin: 0 0 1.5rem; font-size: 1.75rem; }
.gmaq-equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.gmaq-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.gmaq-card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.gmaq-card-link { text-decoration: none; color: inherit; display: block; }
.gmaq-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f0f0f0; }
.gmaq-card-image img { width: 100%; height: 100%; object-fit: cover; }
.gmaq-card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #999; }
.gmaq-badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: #fff; }
.gmaq-badge--nuevo { background: #10b981; }
.gmaq-badge--usado { background: #f59e0b; }
.gmaq-badge--reacondicionado { background: #3b82f6; }

.gmaq-card-content { padding: 1rem; }
.gmaq-card-title { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gmaq-card-meta { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; color: #666; font-size: 0.85rem; }
.gmaq-meta-item { display: flex; align-items: center; gap: 0.25rem; }
.gmaq-card-price { font-size: 1.25rem; font-weight: 700; color: #2563eb; margin-bottom: 0.5rem; }
.gmaq-status { display: inline-block; padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.75rem; font-weight: 500; }
.gmaq-status--reservado { background: #fef3c7; color: #d97706; }
.gmaq-status--vendido { background: #fee2e2; color: #dc2626; }

.gmaq-pagination { margin-top: 2rem; text-align: center; }
.gmaq-no-results { padding: 2rem; text-align: center; color: #666; background: #f8f9fa; border-radius: 8px; }

@media (max-width: 768px) {
    .gmaq-archive-container { grid-template-columns: 1fr; }
    .gmaq-sidebar { position: static; }
}
