/* Carte produit custom */
.hec-product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    list-style: none;
}
.hec-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.gpc-image-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #FAF4EE;
}
.gpc-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hec-product-card:hover .gpc-image {
    transform: scale(1.05);
}
.gpc-body {
    padding: 16px;
}
.gpc-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #222;
}
.gpc-title a {
    color: inherit;
    text-decoration: none;
}
.gpc-title a:hover {
    color: #24BBA5;
}
.gpc-desc {
    font-size: 13px;
    color: #7A7A7A;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gpc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gpc-price {
    font-size: 16px;
    font-weight: 700;
    color: #0B4A43;
}
