/* ==========================================================================
   ESTILOS COMPONENTE: MK FEATURED PRODUCTS
   ========================================================================== */

.mk-featured-products {
    --mk-accent: #ba1010;
    --mk-text-base: #504e4e;
    --mk-text-title: #111827;
    --mk-white: #ffffff;
    --mk-card-line: #eeeeee;
    
    padding: clamp(3rem, 6vh, 5.5rem) 0;
    background-color: var(--mk-white);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.mk-featured-products .mk-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

/* Header Flex */
.mk-featured-products__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(1.75rem, 3.5vh, 3rem);
}

/* Título con estilo Inter regular/semifino (Title Case, sin mayúsculas forzadas ni grosor extra) */
.mk-featured-products__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: var(--mk-text-title);
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.25;
}

/* Enlace a Catálogo sobrio en tono grafito */
.mk-btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.90rem;
    font-weight: 500;
    color: #334155; /* Negro grafito suave, sutilmente diferenciado del título #111827 */
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mk-btn-catalog svg {
    transition: transform 0.2s ease;
}

.mk-btn-catalog:hover {
    color: var(--mk-accent); /* Rojo de acento */
}

.mk-btn-catalog:hover svg {
    transform: translateX(3px);
}

/* Grid de 2 Columnas */
.mk-featured-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .mk-featured-products__grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Tarjeta Editorial */
.mk-featured-card {
    display: flex;
    flex-direction: column;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Foto Apaisada (16:10) */
.mk-featured-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background-color: #f8fafc;
}

.mk-featured-card__link-overlay {
    display: block;
    width: 100%;
    height: 100%;
}

.mk-featured-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mk-featured-card:hover .mk-featured-card__img {
    transform: scale(1.04);
}

/* Contenido con Línea Izquierda */
.mk-featured-card__content {
    border-left: 1px solid var(--mk-card-line);
    padding-left: clamp(1rem, 3vw, 1.25rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.3s ease;
}

.mk-featured-card:hover .mk-featured-card__content {
    border-left-color: var(--mk-accent);
}

.mk-featured-card__name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: var(--mk-text-title);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

/* Acciones */
.mk-featured-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.mk-btn {
    font-weight: 500;
    font-size: 0.88rem;
    background: transparent !important;
    color: var(--mk-text-base);
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mk-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: inherit;
    transition: transform 0.25s ease;
}

.mk-btn:hover {
    color: var(--mk-accent) !important;
    transform: translateX(4px);
}

.mk-btn:hover .mk-btn__icon {
    transform: translateX(2px);
}

.mk-featured-card__placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
}

/* Mobile */
@media (max-width: 640px) {
    .mk-featured-products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}