/*
Theme Name: Flatsome Child Upgrade
Theme URI: https://monmeunier.fr
Author: Garry.b
Author URI: https://monmeunier.fr
Description: Thème enfant de Flatsome pour les personnalisations de Mon Meunier (Garry.b)
Template: flatsome
Version: 1.0.0
*/

@import url("../flatsome/style.css");


.mm-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.mm-product {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s, box-shadow .2s;
}

.mm-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.mm-product-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mm-product-info {
  padding: 14px 16px 18px;
}

.mm-product-title {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111;
}

.mm-product-price {
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.mm-btn.small {
  background: #2563eb;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}
