

:root {
    --wfs-card-border: #dcdfe4;
}

.wfs-product-card,
.wfs-modele-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--wfs-card-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--wfs-white);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
}

.wfs-product-card:hover,
.wfs-modele-card:hover {
    box-shadow: 0 10px 24px rgba(27, 28, 28, 0.08);
    transform: translateY(-2px);
}

.wfs-product-card[hidden] {
    display: none;
}

.wfs-product-card__media,
.wfs-modele-card__media {
    position: relative;
    background: #f4f5f7;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.wfs-product-card__media img,
.wfs-modele-card__media img {
    max-width: 100%;
    height: 170px;
    width: auto;
    object-fit: contain;
}

.wfs-product-card__body,
.wfs-modele-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wfs-product-card__title,
.wfs-modele-card__name {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wfs-primary);
}

.wfs-product-card__title a {
    color: var(--wfs-primary);
    text-decoration: none;
}

.wfs-product-card__title a:hover,
.wfs-product-card__title a:focus-visible,
.wfs-modele-card__cta:hover,
.wfs-modele-card__cta:focus-visible {
    text-decoration: underline;
}

.wfs-product-card__text,
.wfs-modele-card__spec {
    margin: 0 0 20px;
    color: var(--wfs-text);
    line-height: 1.5;
    flex: 1;
    font-size: 0.95rem;
}

.wfs-product-card__title a,
.wfs-product-card__title a:hover,
.wfs-product-card__title a:focus,
.wfs-product-card__title a:visited {
    text-decoration: none;
}

.wfs-product-card__title a:hover {
    color: var(--wfs-primary);
}

.wfs-product-card__cta,
.wfs-modele-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border: 1px solid var(--wfs-primary);
    border-radius: 6px;
    color: var(--wfs-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.wfs-product-card__cta:hover,
.wfs-product-card__cta:focus-visible,
.wfs-modele-card__cta:hover,
.wfs-modele-card__cta:focus-visible {
    background: var(--wfs-primary);
    color: var(--wfs-white);
    text-decoration: none;
}

.wfs-product-card__cta svg,
.wfs-modele-card__cta svg,
.wfs-modele-card__spec svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wfs-modele-card__body {
    align-items: center;
    text-align: center;
}

.wfs-modele-card__spec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 16px;
}

.wfs-modele-card__spec svg {
    color: var(--wfs-primary);
}

@media (max-width: 576px) {
    .wfs-modele-card__body {
        padding: 16px 16px 20px;
    }

    .wfs-product-card__media,
    .wfs-modele-card__media {
        min-height: 160px;
        padding: 20px 16px;
    }

    .wfs-product-card__media img,
    .wfs-modele-card__media img {
        height: 140px;
    }
}
