/**
 * Bloques de productos - Estilo CDR Medios
 * Mobile-first: base = móvil, min-width para tablet/desktop
 */

/* Móvil: compacto, 3 productos visibles */
.hbe-product-block {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.hbe-product-block-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Cabecera: título centrado - móvil sin flechas */
.hbe-product-block-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hbe-product-slider-prev,
.hbe-product-slider-next {
    display: none;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 2px solid var(--hbe-accent, #2563eb);
    border-radius: 50%;
    background: #fff;
    color: var(--hbe-accent, #2563eb);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hbe-product-slider-prev:hover,
.hbe-product-slider-next:hover {
    background: var(--hbe-accent, #2563eb);
    color: #fff;
}

.hbe-product-slider-prev:active,
.hbe-product-slider-next:active {
    transform: scale(0.95);
}

.hbe-product-slider-prev:disabled,
.hbe-product-slider-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.hbe-product-slider-prev svg,
.hbe-product-slider-next svg {
    display: block;
    width: 18px;
    height: 18px;
}

.hbe-product-block-title {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
}

/* Slider - móvil: compacto */
.hbe-product-slider {
    overflow: hidden;
    margin: 0 -4px;
}

.hbe-product-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}

.hbe-product-slider-block .hbe-product-card {
    flex-shrink: 0;
    min-width: 0;
}

.hbe-product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.hbe-product-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s;
}

.hbe-product-slider-dot.active {
    background: var(--hbe-accent, #2563eb);
}

.hbe-product-slider-dot:hover {
    background: #9ca3af;
}

/* Grid (fallback sin JS) - móvil: 3 columnas compactas */
.hbe-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hbe-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hbe-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hbe-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hbe-product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: #f9fafb;
    overflow: hidden;
}

.hbe-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hbe-product-card:hover .hbe-product-card-image img {
    transform: scale(1.05);
}

.hbe-product-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 2px 6px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}

.hbe-badge-sale {
    background: #ef4444;
    color: #fff;
}

.hbe-badge-featured {
    background: var(--hbe-accent, #2563eb);
    color: #fff;
}

.hbe-badge-outofstock {
    background: #6b7280;
    color: #fff;
}

.hbe-product-card-content {
    padding: 8px;
}

.hbe-product-brand {
    display: none;
}

.hbe-product-title {
    margin: 0 0 4px 0;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1f2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hbe-product-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hbe-accent, #2563eb);
    margin-bottom: 4px;
}

.hbe-product-price del {
    color: #9ca3af;
    font-weight: 500;
}

.hbe-product-stock {
    display: none;
}

.hbe-product-stock.in-stock {
    color: #059669;
}

.hbe-product-stock.out-of-stock {
    color: #dc2626;
}

.hbe-product-add-cart {
    display: inline-block;
    align-self: center;
    margin: 0 auto 8px;
    padding: 5px 12px;
    background: transparent;
    color: #9ca3af !important;
    border: 1px solid #d1d5db;
    text-align: center;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hbe-product-add-cart:hover {
    background: #f3f4f6;
    color: #6b7280 !important;
    border-color: #9ca3af;
}

.hbe-product-add-cart.added {
    background: #059669;
    border-color: #059669;
    color: #fff !important;
    cursor: default;
}

.hbe-product-add-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Tablet: 769px+ - mostrar flechas, restaurar tamaños */
@media (min-width: 769px) {
    .hbe-product-slider-prev,
    .hbe-product-slider-next {
        display: flex;
    }
    .hbe-product-block {
        padding: 32px 0;
    }

    .hbe-product-block-inner {
        padding: 0 24px;
    }

    .hbe-product-block-header {
        margin-bottom: 20px;
    }

    .hbe-product-block-title {
        font-size: 1.375rem;
    }

    .hbe-product-slider {
        margin: 0 -12px;
    }

    .hbe-product-slider-track {
        gap: 20px;
    }

    .hbe-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hbe-product-slider-prev,
    .hbe-product-slider-next {
        width: 42px;
        height: 42px;
    }

    .hbe-product-slider-prev svg,
    .hbe-product-slider-next svg {
        width: 22px;
        height: 22px;
    }

    .hbe-product-card {
        border-radius: 10px;
    }

    .hbe-product-badge {
        top: 6px;
        left: 6px;
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .hbe-product-brand {
        display: block;
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .hbe-product-card-content {
        padding: 12px;
    }

    .hbe-product-title {
        font-size: 0.9rem;
    }

    .hbe-product-price {
        font-size: 0.95rem;
    }

    .hbe-product-stock {
        display: block;
        font-size: 0.75rem;
    }

    .hbe-product-add-cart {
        margin: 0 12px 12px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Desktop: 1201px+ - máximo detalle */
@media (min-width: 1201px) {
    .hbe-product-block {
        padding: 40px 0;
    }

    .hbe-product-block-header {
        margin-bottom: 24px;
    }

    .hbe-product-block-title {
        font-size: 1.5rem !important;
    }

    .hbe-product-slider {
        margin: 0 -12px;
    }

    .hbe-product-slider-track {
        gap: 24px;
    }

    .hbe-product-slider-prev,
    .hbe-product-slider-next {
        width: 44px;
        height: 44px;
    }

    .hbe-product-slider-prev svg,
    .hbe-product-slider-next svg {
        width: 24px;
        height: 24px;
    }

    .hbe-product-grid {
        grid-template-columns: repeat(var(--hbe-columns, 4), 1fr);
        gap: 24px;
    }

    .hbe-product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .hbe-product-card-content {
        padding: 16px;
    }

    .hbe-product-brand {
        font-size: 0.8rem;
    }

    .hbe-product-title {
        font-size: 0.95rem;
    }

    .hbe-product-price {
        font-size: 1rem;
    }

    .hbe-product-stock {
        font-size: 0.8rem;
    }

    .hbe-product-add-cart {
        margin: 0 16px 16px;
        padding: 7px 16px;
        font-size: 0.85rem;
    }
}
