/**
 * Skeleton del catálogo: mismas proporciones que .catalog-card (CLS).
 */
.mc-skeleton-card {
    display: flex;
    flex-direction: column;
    min-height: 26rem;
    contain: layout;
    border-radius: 0.75rem;
    border: 1px solid #2a2a2a;
    background: #121212;
    overflow: hidden;
}

.mc-skeleton-card__media {
    flex-shrink: 0;
    background: linear-gradient(135deg, #252525 0%, #171717 100%);
}

.mc-skeleton-card__body {
    flex: 1;
    min-height: 11.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mc-skeleton-line {
    height: 0.875rem;
    border-radius: 0.25rem;
    background: #262626;
}

.mc-skeleton-line--lg {
    height: 1.25rem;
    width: 88%;
}

.mc-skeleton-line--md {
    width: 70%;
}

.mc-skeleton-line--sm {
    width: 45%;
    height: 0.75rem;
}

.mc-skeleton-line--price {
    height: 2.25rem;
    width: 55%;
    margin-top: 0.5rem;
    background: #2a2a2a;
}

.mc-skeleton-line--btn {
    height: 2.25rem;
    width: 100%;
    max-width: 12rem;
    border: 1px solid #333;
    background: transparent;
}

.mc-skeleton-pulse {
    animation: mc-skeleton-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes mc-skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* Footer: reserva de espacio antes de config.php */
.mc-footer-redes-slot {
    min-height: 2.5rem;
}

.mc-footer-redes-placeholder {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mc-footer-redes-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    background: #374151;
}

.mc-footer-mapa-slot--reserved {
    min-height: min(60vh, 450px);
}

.mc-footer-mapa-placeholder {
    width: 100%;
    min-height: 280px;
    max-height: min(60vh, 450px);
    border-radius: 0.5rem;
    border: 1px solid #374151;
    background: #1a1a1a;
}
