.woman-products-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}
.woman-products-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.woman-products-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.woman-products-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .woman-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .woman-products-grid {
        grid-template-columns: 1fr !important;
    }
}

.woman-product-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.3s ease;
}
.woman-product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.woman-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 12px;
}
.woman-product-title {
    font-size: 16px;
    margin: 10px 0 5px;
    font-weight: 600;
}
.woman-product-price {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
}
.woman-add-to-cart-btn {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}
.woman-add-to-cart-btn:hover {
    background-color: #333;
}
