/* ═══════════════════════════════════════════════
   SHENOA — Estilos v2.4.0
   Archivo cacheable por el navegador
═══════════════════════════════════════════════ */

:root {
    /* Paleta Rexor (alineada con marketplace-custom y home-rexor-bebuilder.json) */
    --shenoa-green:        #0E3A2F;
    --shenoa-gold:         #C9A961;
    --shenoa-cream:        #F8F5F0;
    --shenoa-dark:         #1A1A1A;
    --shenoa-muted:        #6B6B6B;
    --shenoa-line:         #E5E0D6;
    --shenoa-white:        #FFFFFF;

    /* Radios consistentes (cards más grandes que botones) */
    --shenoa-radius:       16px;
    --shenoa-radius-btn:   12px;
    --shenoa-radius-pill:  999px;

    --shenoa-gap:          16px;
    --shenoa-shadow:       0 2px 16px rgba(0,0,0,0.07);
    --shenoa-shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

/* ─── CARD ─── */
.shenoa-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--shenoa-radius);
    overflow: hidden;
    text-decoration: none;
    color: #111;
    background: #fff;
    /* text-align:left explícito: la tienda Dokan (y algunos wrappers de tema)
       aplican text-align:center al contenedor del loop, lo que centraba el
       título/precio de la tarjeta. Fijarlo aquí mantiene la alineación a la
       izquierda igual que en home/shop, sin depender del contexto. */
    text-align: left;
    transition: transform 0.25s ease;
    contain: layout paint;
    /* will-change eliminado: crea una capa GPU por tarjeta → costoso en móvil con 10-20 cards */
}
.shenoa-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}
.shenoa-card__title,
.shenoa-card__price,
.shenoa-card__btn {
    text-decoration: none;
}
.shenoa-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}
.shenoa-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}
.shenoa-card:hover .shenoa-card__img-wrap img {
    transform: scale(1.04);
}

/* Badge */
.shenoa-card__badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 0 8px 0 0;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.3;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Body */
.shenoa-card__body {
    flex: 1;
    padding: 14px 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.shenoa-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.shenoa-card__title {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shenoa-card__price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}
.shenoa-card__price del {
    font-weight: 400;
    font-size: 14px;
    color: #aaa;
    margin-right: 5px;
}
.shenoa-card__price ins {
    text-decoration: none;
}

/* Botón "Ver producto" — verde Rexor fijo en TODOS los estados.
   !important + background-image:none vence la regla `.button-animation-slide button:hover`
   de BeTheme que aplicaría var(--mfn-button-bg) y un gradient encima. */
.shenoa-card__btn,
.shenoa-card:hover .shenoa-card__btn,
.shenoa-card .shenoa-card__btn:hover,
.shenoa-card .shenoa-card__btn:focus,
.shenoa-card .shenoa-card__btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background-color: var(--shenoa-green) !important;
    background-image: none !important;
    color: var(--shenoa-white) !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--shenoa-radius-btn) !important;
    transition: none;
    text-decoration: none !important;
    text-shadow: none !important;
    margin-top: auto;
    letter-spacing: 0.2px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}
.shenoa-card__btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}
.shenoa-card:hover .shenoa-card__btn svg {
    transform: translateX(3px);
}

/* Card responsive */
@media (max-width: 768px) {
    .shenoa-card__body { padding: 12px 14px 14px; gap: 5px; }
    .shenoa-card__price { font-size: 17px; }
    .shenoa-card__title { font-size: 13px; }
    .shenoa-card__btn { padding: 8px 12px; font-size: 12px; }
    .shenoa-card__badge { font-size: 10px; padding: 3px 8px; }
}
@media (max-width: 420px) {
    .shenoa-card__body { padding: 10px 10px 12px; gap: 4px; }
    .shenoa-card__price { font-size: 15px; }
    .shenoa-card__title { font-size: 12px; }
    .shenoa-card__btn { padding: 7px 10px; font-size: 11px; border-radius: var(--shenoa-radius-btn) !important; }
    .shenoa-card__badge { font-size: 9px; padding: 2px 6px; }
}

/* Card video */
.shenoa-card--video {
    position: relative;
    display: block;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: unset;
}
.shenoa-card--video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ─── GRID ─── */
.shenoa-grid {
    display: grid;
    gap: var(--shenoa-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}
.shenoa-grid--2 { grid-template-columns: repeat(2, 1fr); }
.shenoa-grid--3 { grid-template-columns: repeat(3, 1fr); }
.shenoa-grid--4 { grid-template-columns: repeat(4, 1fr); }
.shenoa-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
    .shenoa-grid--4,
    .shenoa-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .shenoa-grid--3,
    .shenoa-grid--4,
    .shenoa-grid--5 { grid-template-columns: repeat(2, 1fr); }
    :root { --shenoa-gap: 12px; }
}
@media (max-width: 420px) {
    .shenoa-grid--2,
    .shenoa-grid--3,
    .shenoa-grid--4,
    .shenoa-grid--5 { grid-template-columns: repeat(2, 1fr); }
    :root { --shenoa-gap: 8px; }
}

/* ─── SLIDER ─── */
.shenoa-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 4px;
}
.shenoa-slider {
    display: flex;
    gap: var(--shenoa-gap);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.shenoa-slider__item {
    flex: 0 0 calc(20% - 13px);
    min-width: 0;
}
@media (max-width: 1024px) {
    .shenoa-slider__item { flex: 0 0 calc(33.33% - 11px); }
}
@media (max-width: 768px) {
    .shenoa-slider__item { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 420px) {
    .shenoa-slider__item { flex: 0 0 calc(50% - 5px); }
    .shenoa-slider { gap: 8px; }
}
.shenoa-slider-btn {
    position: absolute;
    top: 36%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.shenoa-slider-btn:hover {
    background: #f0f0f0;
}
.shenoa-slider-btn--prev { left: -6px; }
.shenoa-slider-btn--next { right: -6px; }
.shenoa-slider-btn svg { width: 16px; height: 16px; }
.shenoa-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.shenoa-slider-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.shenoa-slider-dots button.active {
    background: #333;
    transform: scale(1.35);
}

/* ─── VIDEO GRID ─── */
.shenoa-video-grid {
    display: grid;
    gap: var(--shenoa-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}
.shenoa-video-grid--1 { grid-template-columns: repeat(1, 1fr); }
.shenoa-video-grid--2 { grid-template-columns: repeat(2, 1fr); }
.shenoa-video-grid--3 { grid-template-columns: repeat(3, 1fr); }
.shenoa-video-grid--4 { grid-template-columns: repeat(4, 1fr); }
.shenoa-video-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
    .shenoa-video-grid--4,
    .shenoa-video-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .shenoa-video-grid--3,
    .shenoa-video-grid--4,
    .shenoa-video-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .shenoa-video-grid--2,
    .shenoa-video-grid--3,
    .shenoa-video-grid--4,
    .shenoa-video-grid--5 { grid-template-columns: repeat(1, 1fr); }
}
.shenoa-video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--shenoa-radius);
    overflow: hidden;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Video nativo mp4 — autoplay confiable en todos los móviles */
.shenoa-video-item--native video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.shenoa-video-item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
/* Móvil: habilitar toque sobre el iframe de Vimeo */
.shenoa-video-item--mobile iframe {
    pointer-events: auto !important;
}

/* Video lazy / loading placeholder */
.shenoa-video-item--lazy,
.shenoa-video-item--loading {
    display: flex;
    align-items: center;
    justify-content: center;
}
.shenoa-video-item--lazy::after,
.shenoa-video-item--loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: shenoa-spin 0.8s linear infinite;
    position: relative;
    z-index: 4;
    flex-shrink: 0;
}
@keyframes shenoa-spin {
    to { transform: rotate(360deg); }
}

/* ─── VIDEO SLIDER ─── */
.shenoa-video-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 4px;
}
.shenoa-video-slider {
    display: flex;
    gap: var(--shenoa-gap);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.shenoa-video-slider__item {
    flex: 0 0 calc(25% - 12px);
    min-width: 0;
}
@media (max-width: 1024px) {
    .shenoa-video-slider__item { flex: 0 0 calc(33.33% - 11px); }
}
@media (max-width: 768px) {
    .shenoa-video-slider__item { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 420px) {
    .shenoa-video-slider__item { flex: 0 0 calc(100% - 5px); }
}

/* ─── CATÁLOGO ([shenoa_tienda] sobre el loop nativo) ─── */
.shenoa-tienda-empty {
    text-align: center; padding: 40px 20px;
    color: #888; font-size: 15px; grid-column: 1 / -1;
}
.shenoa-tienda-pagination { margin-top: 32px; display: flex; justify-content: center; }
.shenoa-tienda-pagination ul {
    list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0;
}
.shenoa-tienda-pagination a,
.shenoa-tienda-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    border: 1.5px solid var(--shenoa-line); border-radius: var(--shenoa-radius-btn);
    text-decoration: none !important; color: var(--shenoa-dark);
    font-weight: 600; font-size: 14px;
}
.shenoa-tienda-pagination .current {
    background: var(--shenoa-green) !important; color: #fff !important; border-color: var(--shenoa-green) !important;
}
.shenoa-tienda-pagination a:hover { border-color: var(--shenoa-green); color: var(--shenoa-green); }

/* Móvil: desactivar backdrop-filter del botón de sonido — blur() en GPU es costoso */
@media (max-width: 768px) {
    .shenoa-sound-btn {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ─── SOUND BUTTON (click to toggle) ─── */
.shenoa-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: rgba(14,58,47,0.80);
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    transition: width 0.35s cubic-bezier(.4,0,.2,1),
                height 0.35s cubic-bezier(.4,0,.2,1),
                top 0.35s cubic-bezier(.4,0,.2,1),
                left 0.35s cubic-bezier(.4,0,.2,1),
                bottom 0.35s cubic-bezier(.4,0,.2,1),
                right 0.35s cubic-bezier(.4,0,.2,1),
                transform 0.35s cubic-bezier(.4,0,.2,1),
                background 0.2s ease;
}
.shenoa-sound-btn:hover,
.shenoa-sound-btn:focus,
.shenoa-sound-btn:active {
    background: #0e3a2f !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    outline: none;
}
.shenoa-sound-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
    pointer-events: none;
    flex-shrink: 0;
    transition: width 0.3s ease, height 0.3s ease;
}
.shenoa-sound-btn--on {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
    transform: none;
    width: 32px;
    height: 32px;
    background: rgba(14,58,47,0.70);
    border-color: rgba(255,255,255,0.25);
}
.shenoa-sound-btn--on svg {
    width: 14px;
    height: 14px;
}

/* ─── VIDEO SINGLE ─── */
.shenoa-video-single {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.shenoa-video-single .shenoa-video-item {
    width: 100%;
}

/* ─── CATEGORY SLIDER ─── */
.shenoa-cat-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 4px;
}
.shenoa-cat-slider {
    display: flex;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.shenoa-cat-slider__item {
    flex: 0 0 calc((100% - (var(--cat-cols) - 1) * 10px) / var(--cat-cols));
    min-width: 0;
}
.shenoa-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #111;
}
.shenoa-cat-card__img {
    width: clamp(90px, 80%, 150px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.shenoa-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.shenoa-cat-card__title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    padding: 6px 14px;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
@media (max-width: 768px) {
    .shenoa-cat-card__title { font-size: 12px; padding: 5px 10px; }
}
@media (max-width: 420px) {
    .shenoa-cat-slider { gap: 6px; }
    .shenoa-cat-slider__item { flex: 0 0 calc((100% - (var(--cat-cols) - 1) * 6px) / var(--cat-cols)); }
    .shenoa-cat-card__title { font-size: 11px; padding: 4px 8px; }
}

/* ─── CARD: overlays de vendedor (avatar + nombre hover + check + estrellas) ─── */
/* La tarjeta conserva su aspect-ratio 9/16 original; los datos de la tienda van
   como overlays sobre la imagen, no en el cuerpo, para no romper las grillas. */
.shenoa-card__img-wrap { display: block; text-decoration: none !important; }
.shenoa-card__title-link,
.shenoa-card__title-link:hover { text-decoration: none !important; color: inherit; }
.shenoa-card__title-link:hover .shenoa-card__title { color: var(--shenoa-green); }

/* Chip de vendedor (arriba-izquierda): por defecto SOLO la foto redonda;
   al pasar el mouse se despliega el pill con el nombre. Sin subrayado nunca. */
.shenoa-card__vendor-chip {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    display: inline-flex; align-items: center;
    max-width: calc(100% - 78px); padding: 0;
    background: transparent; border-radius: 999px; box-shadow: none;
    text-decoration: none !important;
    transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.shenoa-card__vendor-chip:hover { text-decoration: none !important; }
/* Hover: el chip se expande a una BARRA a ancho completo (de margen a margen)
   con el nombre completo de la tienda. Las estrellas se ocultan para no solaparse. */
.shenoa-card:hover .shenoa-card__vendor-chip {
    left: 10px; right: 10px; max-width: none;
    background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
    padding: 4px; box-shadow: 0 2px 10px rgba(0,0,0,.16);
}
.shenoa-card__avatar { position: relative; width: 32px; height: 32px; flex: 0 0 auto; }
.shenoa-card__avatar img {
    width: 32px; height: 32px; border-radius: 50%; object-fit: cover; display: block;
    border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.28);
}
.shenoa-card__check {
    position: absolute; bottom: -3px; right: -3px;
    width: 15px; height: 15px; border-radius: 50%;
    background: var(--shenoa-green); color: #fff; border: 2px solid #fff;
    display: inline-flex; align-items: center; justify-content: center;
}
.shenoa-card__check svg { width: 8px; height: 8px; }
.shenoa-card__vendor-name {
    font-family: 'Inter', system-ui, sans-serif; font-size: 12px; font-weight: 600;
    color: var(--shenoa-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    text-decoration: none !important;
    flex: 1 1 auto; min-width: 0;
    max-width: 0; opacity: 0; padding: 0;
    transition: max-width .35s ease, opacity .25s ease, padding .35s ease;
}
.shenoa-card:hover .shenoa-card__vendor-name { max-width: 100%; opacity: 1; padding: 0 10px 0 7px; }

/* Chip de estrellas (arriba-derecha) — verticales (apiladas) */
.shenoa-card__stars-chip {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 1px;
    padding: 7px 6px; background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
    border-radius: 999px; box-shadow: 0 2px 10px rgba(0,0,0,.14);
    font-size: 10px; line-height: 1; font-family: Arial, sans-serif;
    transition: opacity .2s ease, visibility .2s ease;
}
/* Al hover la barra de nombre ocupa todo el ancho → ocultar estrellas para no solapar. */
.shenoa-card:hover .shenoa-card__stars-chip { opacity: 0; visibility: hidden; }
.shenoa-card__stars-chip .shenoa-star { color: #dcd3c4; }
.shenoa-card__stars-chip .shenoa-star.is-on { color: var(--shenoa-gold); }

/* Overlay de acciones (favoritos / comparador, vía hook shenoa_card_overlay).
   Se superpone a la imagen cuadrada y alinea los botones abajo-derecha, sin
   chocar con el chip de vendedor (arriba-izq), estrellas (arriba-der) ni el
   badge de categoría (abajo-izq). */
.shenoa-card__actions {
    position: absolute; top: 0; left: 0;
    width: 100%; aspect-ratio: 1 / 1;
    display: flex; align-items: flex-end; justify-content: flex-end; gap: 6px;
    padding: 10px; z-index: 3; pointer-events: none;
}
.shenoa-card__actions > * { pointer-events: auto; }
.shenoa-card__actions .mktc-wish-btn,
.shenoa-card__actions .mktc-compare-btn {
    width: 34px; height: 34px; min-width: 0; padding: 0; margin: 0;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,.95);
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--shenoa-dark); cursor: pointer;
}
.shenoa-card__actions .mktc-compare-btn span { display: none; }
.shenoa-card__actions .mktc-wish-btn svg,
.shenoa-card__actions .mktc-compare-btn svg { width: 16px; height: 16px; }
.shenoa-card__actions .mktc-wish-btn.is-active svg { fill: var(--shenoa-gold); color: var(--shenoa-gold); }
.shenoa-card__actions .mktc-compare-btn.is-active { color: var(--shenoa-gold); }

/* Tarjeta Shenoa dentro de las grillas nativas de WooCommerce/BeTheme/Dokan.
   Doble selector: (1) :has() para páginas sueltas con la tarjeta global y
   (2) body.shenoa-cards (tienda/categoría/búsqueda/tienda Dokan) que NO depende
   de :has() y vence los floats/anchos del tema que dejaban las tarjetas a ancho
   completo en la tienda del vendedor. */
ul.products:has(li.product.shenoa-li),
body.shenoa-cards ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
    gap: var(--shenoa-gap) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    float: none !important;
}
ul.products li.product.shenoa-li,
body.shenoa-cards ul.products > li.product {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    list-style: none !important;
}
ul.products li.product.shenoa-li::before,
ul.products li.product.shenoa-li::after,
body.shenoa-cards ul.products > li.product::before,
body.shenoa-cards ul.products > li.product::after { display: none !important; content: none !important; }
ul.products li.product.shenoa-li > .shenoa-card,
body.shenoa-cards ul.products > li.product > .shenoa-card { margin: 0; }

/* Móvil: 2 columnas */
@media (max-width: 600px) {
    ul.products:has(li.product.shenoa-li),
    body.shenoa-cards ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
