/* Styles spécifiques pour le template "Nos Services" */
.services-template .products-section {
    margin-bottom: 40px;
}
.services-template .products-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    background-color: #4a7526; /* color can be adjusted */
    padding: 10px 0;
    border-radius: 5px;
}
.services-template .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.services-template .service-product-card {
    position: relative;
    width: calc(33.333% - 13.333px);
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}
.services-template .service-product-card img {
    width: 100%;
    display: block;
}
.services-template .service-product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transition: background 0.3s ease;
}
.services-template .service-product-card:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}
.services-template .service-product-card .overlay .title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.services-template .service-product-card .overlay .price {
    font-size: 1rem;
    font-weight: 600;
}

/* responsive */
@media(max-width:768px){
    .services-template .service-product-card { width: calc(50% - 10px); }
}
@media(max-width:480px){
    .services-template .service-product-card { width: 100%; }
}
