/* Contenedor principal */
.shop-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Filtros a la izquierda */
.shop-filters {
    width: 25%;
    min-width: 220px;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Cards de producto */
.shop-products .product {
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Imagen del producto */
.shop-products .product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Información del producto */
.shop-products .product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0.5rem 1rem;
    font-weight: 600;
    color: #333;
}

.shop-products .product .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #111;
}

/* Botón añadir al carrito */
.shop-products .product .button {
    margin: 0 1rem 1rem 1rem;
    background-color: #007bff;
    color: #fff !important;
    text-align: center;
    padding: 0.6rem;
    border-radius: 6px;
    display: block;
    transition: background 0.3s ease;
}

.shop-products .product .button:hover {
    background-color: #0056b3;
}

/* Hover sobre la card */
.shop-products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Banner de categoría */
.archive-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background: url('https://ferreteriaeyh.cl/wp-content/uploads/2025/03/shop-bg.jpg') no-repeat center center;
    background-size: cover;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Título dinámico sobre el banner */
.archive-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    text-align: center;
}

.shop-products ul.products li.product a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.shop-products ul.products li.product .astra-shop-summary-wrap {
    padding: 1rem 1rem 1rem 1rem;
    align-self: center !important;
}

.shop-products ul.products li.product .astra-shop-thumbnail-wrap {
    height: 200px;
}
.shop-products ul.products li.product .astra-shop-thumbnail-wrap a{
    height: 100%;
}
.shop-products ul.products li.product .astra-shop-thumbnail-wrap a img{
    padding: 10px;
}
.shop-products ul.products li.product.desktop-align-left .star-rating, .shop-products ul.products li.product.desktop-align-left .button, .woocommerce-page ul.products li.product.desktop-align-left .star-rating, .woocommerce-page ul.products li.product.desktop-align-left .button {
    margin-left: 0;
    margin-right: 0;
    display: none;
}

.shop-products ul.products li.product .price, .shop-products div.product p.price, .shop-products div.product span.price, .widget_layered_nav_filters ul li.chosen a, .woocommerce-page ul.products li.product .ast-woo-product-category, .wc-layered-nav-rating a {
    color: #444444;
}