.custom-shop-container-86e43541 {
    width: 100%;
    margin: 2rem auto;
    font-family: inherit;
    color: #333;
}

/* Barra de filtros clara y limpia */
.custom-shop-filters-86e43541 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    background-color: #fcfcfc;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.custom-shop-filters-86e43541 .filter-group {
    flex: 1 1 200px;
}

.custom-shop-filters-86e43541 input,
.custom-shop-filters-86e43541 select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #fff;
    color: #334155;
    transition: border-color 0.2s;
}

.custom-shop-filters-86e43541 input:focus,
.custom-shop-filters-86e43541 select:focus {
    border-color: #37BF91; /* Verde GLP */
    outline: none;
}

.products-grid-86e43541 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .products-grid-86e43541 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tarjeta elegante de productos clara estilo GLP */
.product-card-86e43541 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-86e43541:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #37BF91;
}

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

.product-image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
}

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

.product-card-86e43541:hover .product-image-wrapper img {
    transform: scale(1.03);
}

.product-title-86e43541 {
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-86e43541 {
    font-size: 1.15rem;
    color: #37BF91; /* Verde GLP */
    font-weight: 700;
    display: block;
    margin-bottom: 1.25rem;
}

/* Envoltura del botón de carrito y WhatsApp */
.product-actions-wrapper-86e43541 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

/* Estilo unificado para botones de WooCommerce y WhatsApp */
.product-actions-wrapper-86e43541 .button {
    width: 100% !important;
    text-align: center !important;
    background-color: #111 !important;
    color: #fff !important;
    padding: 0.8rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: inline-block !important;
    transition: background-color 0.2s !important;
    border: none !important;
}

.product-actions-wrapper-86e43541 .button:hover {
    background-color: #333 !important;
}

/* Si el botón de WhatsApp viene inyectado por plugin, le damos prioridad para no romper grilla */
.product-actions-wrapper-86e43541 a[href*="whatsapp"],
.product-actions-wrapper-86e43541 .whatsapp-btn {
    background-color: #37BF91 !important;
    color: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.product-actions-wrapper-86e43541 a[href*="whatsapp"]:hover {
    background-color: #2da17b !important;
}

/* Paginación limpia */
.shop-pagination-86e43541 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.shop-pagination-86e43541 .page-numbers {
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    text-decoration: none;
    color: #475569;
    transition: background-color 0.2s;
}

.shop-pagination-86e43541 .page-numbers:hover {
    background-color: #f1f5f9;
}

.shop-pagination-86e43541 .page-numbers.current {
    background-color: #37BF91;
    color: #fff;
    border-color: #37BF91;
}

.no-products-86e43541 {
    text-align: center;
    font-size: 1.1rem;
    padding: 4rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
