/* =============================================================================
   WC Free Gift by Category — Styles front-end
   ============================================================================= */

/* --------------------------------------------------------------------------
   Barre de progression (shortcode [free_gift_progress])
   -------------------------------------------------------------------------- */

.wcfg-progress-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff8f0;
    border: 1px solid #f0e0c8;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: background .3s, border-color .3s;
}

.wcfg-progress-wrap.wcfg-reached {
    background: #f0fff4;
    border-color: #a8e6bc;
}

/* Photo du cadeau */
.wcfg-gift-thumb {
    flex-shrink: 0;
}

.wcfg-gift-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e8d5b7;
    display: block;
}

.wcfg-reached .wcfg-gift-image {
    border-color: #6fcf97;
}

/* Zone texte + barre */
.wcfg-progress-content {
    flex: 1;
    min-width: 0;
}

.wcfg-progress-message {
    margin: 0 0 10px;
    font-size: .95em;
    line-height: 1.4;
    color: #333;
}

.wcfg-reached .wcfg-progress-message {
    color: #1a7a40;
}

/* Barre de progression */
.wcfg-progress-bar-track {
    width: 100%;
    height: 12px;
    background: #e8ddd0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}

.wcfg-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f0a500 0%, #e86c00 100%);
    border-radius: 999px;
    transition: width .5s ease;
    min-width: 0;
}

.wcfg-reached .wcfg-progress-bar-fill {
    background: linear-gradient(90deg, #56ccf2 0%, #27ae60 100%);
}

/* Compteur numérique */
.wcfg-progress-count {
    margin: 0;
    font-size: .8em;
    color: #888;
    text-align: right;
}

/* =============================================================================
   Panier : label "Gratuit" et icône cadeau
   ============================================================================= */

.wcfg-free-label {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: .8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 2px 8px;
    border-radius: 4px;
}

.wcfg-gift-remove {
    font-size: 1.2em;
    cursor: default;
    display: inline-block;
    line-height: 1;
}

/* Responsive */
@media (max-width: 480px) {
    .wcfg-progress-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .wcfg-gift-image {
        width: 56px;
        height: 56px;
    }
}
