/* ============================================
   Widget : Carte produit (mini)
   Design : Figma node 22-3023
   ============================================ */

.cf-wc-product-card {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* ---- Image ---- */
.cf-wc-product-card__image-wrapper {
    flex-shrink: 0;
    width: 73.5px;
}

.cf-wc-product-card__image {
    width: 100%;
    aspect-ratio: 73.5 / 104;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

/* ---- Corps (nom + badge prix) ---- */
.cf-wc-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.cf-wc-product-card__name {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Badge prix ---- */
.cf-wc-product-card__price {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 4px;
    height: 32px;
    padding: 4px 12px;
    border-radius: 999px;
    /* couleur appliquée en inline style (configurable Elementor) */
    background-color: #ebe2f3;
    color: #161a2d;
    white-space: nowrap;
}

.cf-wc-product-card__price-prefix {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.cf-wc-product-card__price .woocommerce-Price-amount,
.cf-wc-product-card__price bdi {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 480px) {
    .cf-wc-product-card {
        gap: 16px;
    }

    .cf-wc-product-card__image-wrapper {
        width: 56px;
    }

    .cf-wc-product-card__name {
        font-size: 18px;
        white-space: normal;
    }

    .cf-wc-product-card__price,
    .cf-wc-product-card__price-prefix,
    .cf-wc-product-card__price .woocommerce-Price-amount {
        font-size: 14px;
    }
}
