.im-sws-slider-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.im-sws-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.im-sws-product-card--slider {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

/* Botones slider */
.im-sws-slider-prev,
.im-sws-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
}
.im-sws-slider-prev { left: 10px; }
.im-sws-slider-next { right: 10px; }

/* Galería - Grid responsive 2-5 columnas (basado en gallery.css) */
.im-sws-gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr); /* Mínimo 2 columnas */
}

@media (min-width: 640px) {
    .im-sws-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .im-sws-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .im-sws-gallery-grid {
        grid-template-columns: repeat(5, 1fr); /* Máximo 5 columnas */
    }
}

.im-sws-product-card {
    border: 1px solid #e5e5e5;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.im-sws-product-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.im-sws-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* celda cuadrada fija */
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.im-sws-product-image img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

.im-sws-product-title {
    font-size: 14px;
    margin: 8px 0;
}

.im-sws-product-price {
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 8px;
}

.im-sws-add-to-cart {
    display: inline-block;
    padding: 6px 12px;
    background-color: #333;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    margin-top: 0;
}

.im-sws-add-to-cart:hover {
    background-color: #000;
    color: #fff;
}

/* Carrusel: varias fichas visibles */
.im-sws-carousel-wrapper {
    position: relative;
}

.im-sws-carousel {
    display: flex;
}

.im-sws-product-card--carousel {
    min-width: 25%;
    box-sizing: border-box;
}

/* Admin sortable */
.im-sws-sortable-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 600px;
}
.im-sws-sortable-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #ddd;
    margin-bottom: 4px;
    background: #fafafa;
    cursor: move;
}
.im-sws-handle {
    margin-right: 10px;
    font-weight: bold;
}