 .mk-section { padding: 48px 0; }
    .mk-container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
    .mk-product-grid__wrapper { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
    @media (min-width: 640px) { .mk-product-grid__wrapper { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .mk-product-grid__wrapper { grid-template-columns: repeat(4, 1fr); } }
    .mk-product-card { display: flex; flex-direction: column; background: #ffffff; border: 1px solid rgba(190, 200, 207, 0.3); overflow: hidden; }
    .mk-product-card__media { aspect-ratio: 1/1; overflow: hidden; background: #eff4ff; }
    .mk-product-card__img { width: 100%; height: 100%; object-fit: cover; }
    .mk-product-card__content { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
    .mk-product-card__cat { font-size: 11px; text-transform: uppercase; color: #8899a6; font-weight: 600; margin-bottom: 6px; text-decoration: none; }
    .mk-product-card__title { font-size: 20px; font-weight: 600; color: #0b1c30; margin: 0 0 6px 0; line-height: 1.2; }
    .mk-product-card__details { font-size: 14px; color: #444; line-height: 1.4; margin-bottom: 20px; }
    .mt-auto { margin-top: auto; }
    .mk-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background-color: #2596be; color: #ffffff; padding: 10px; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; text-decoration: none; }
    
   .mk-whatsapp-btn:hover {
    background-color: #17477e; /* Un tono más oscuro al pasar el mouse */
    color: #ffffff;
}

    .mk-modal { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; align-items: center; justify-content: center; }
    .mk-modal.is-open { display: flex; }
    .mk-modal-backdrop { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
    .mk-modal-content { position: relative; width: 90%; max-width: 600px; padding: 10px; z-index: 10; }
    .mk-modal-close { position: absolute; top: -40px; right: 0; color: white; cursor: pointer; font-size: 30px; }
    .mk-slider-container { width: 100%; }
    
    .mk-counter { position: absolute; top: 20px; left: 20px; color: #ffffff; background: rgba(0,0,0,0.5); padding: 5px 12px; border-radius: 20px; font-size: 14px; z-index: 30; }
    
    .mk-nav { position: absolute; top: 50%; z-index: 20; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); color: #0b1c30; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .mk-nav:hover { background: #ffffff; transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
    .mk-prev { left: 16px; }
    .mk-next { right: 16px; }
    .mk-nav::before { font-size: 18px; font-weight: bold; }
    
    .swiper-slide img { width: 100%; display: block; }
    .mk-product-trigger { cursor: zoom-in; display: block; }

    /* Ocultar flechas en móviles/tablets */
    @media (max-width: 768px) {
        .mk-nav { display: none !important; }
    }

