.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

/* Sidebar */
.shop-sidebar {
    border-right: 1px solid #e5e5e5;
}

.shop-search {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 24px;
    border: 1px solid #ccc;
}

.shop-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.shop-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-categories li {
    margin-bottom: 8px;
}

.shop-categories label {
    cursor: pointer;
    font-size: 14px;
}

/* Products */
.shop-products {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Load more */
.shop-load-more {
    text-align: center;
    margin-top: 40px;
}

.shop-load-more button {
    padding: 10px 24px;
    background: #0d9488;
    color: #fff;
    border: none;
    cursor: pointer;
}

.shop-load-more button:hover {
    background: #0f766e;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* Remove WooCommerce list bullets */
.products,
.products li {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Product card base */
.products li.product {
    text-align: left;
}

/* Product title */
.products li.product .woocommerce-loop-product__title {
    font-size: 18px; /* change to 20px if you prefer */
    font-weight: 600;
    line-height: 1.3;
    margin: 12px 0 6px;
    color: #e11d48; /* matches your screenshot pink/red */
}

/* Price */
.products li.product .price {
    display: block;
    font-size: 14px;
    color: #e11d48;
    margin-bottom: 10px;
}

/* Add to cart button */
.products li.product .button {
    background: #e5e7eb;
    color: #111827;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: none;
}

.products li.product .button:hover {
    background: #d1d5db;
}
