.categorie {
    margin: 40px 0;
}
.categorie h2 {
    color: #420475;
    border-bottom: 2px solid #420475;
    padding-bottom: 5px;
}
.produit {
    display: inline-block;
    width: 220px;
    margin: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
    background-color: #fff;
    cursor: pointer;
}

.produit:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.produit img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.produit h3 {
    margin: 10px 0 5px 0;
}

.produit p {
    color: #666;
}

.btn-panier {
    background-color: #420475;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-panier:hover {
    background-color: #6e1bbf;
}

.stock {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: bold;
}

.stock-ok {
    color: #1aa81a;
}

.stock-faible {
    color: #d9534f;
}

.stock-rupture {
    color: #999;
    font-style: italic;
}
