/* === FreGifts Progress Bar - Frontend 2.1.7 === */

.fg-gift-progress-wrap {
    background:#f9f9f9;
    border:1px solid #254d9c;
    border-radius:8px;
    padding:15px 35px 0px 15px;
    margin-bottom:12px;
}

.fg-gift-reached {
    background:#f0fff4;
    border-color:#4caf50;
}

.fg-gift-message {
    margin:0 0 10px 0;
    font-size:14px;
    color:#333;
    line-height:1.5;
}

.fg-gift-message-only {
    padding-bottom:15px;
}

.fg-gift-message-only .fg-gift-message {
    margin-bottom:0;
}

.fg-step-next {
    display:block;
    margin-top:4px;
    font-size:13px;
    color:#555;
}

/* Barra base */
.fg-gift-bar-bg {
    background:#e0e0e0;
    border-radius:50px;
    height:10px;
    overflow:visible;
    position:relative;
}

.fg-gift-bar-fill {
    background:linear-gradient(90deg,#f7971e,#ffd200);
    height:100%;
    border-radius:50px;
    transition:width .4s ease;
    position:relative;
    z-index:1;
}

.fg-gift-reached .fg-gift-bar-fill {
    background:linear-gradient(90deg,#56ab2f,#a8e063);
}

.fg-gift-bar-standard {
    margin-bottom:22px;
}

.fg-standard-threshold-marker .fg-marker-dot {
    background:#f7971e;
    box-shadow:0 0 0 1px #f7971e;
}

.fg-standard-threshold-marker .fg-marker-label {
    left:auto;
    right:-7px;
    transform:none;
    color:#254d9c;
    font-weight:600;
}

/* Barra a step — marcatori */
.fg-gift-bar-has-markers {
    margin-bottom:22px; /* spazio per le label sotto */
}

.fg-marker {
    position:absolute;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.fg-marker-dot {
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ccc;
    border:2px solid #fff;
    box-shadow:0 0 0 1px #bbb;
    display:block;
    transition:background .3s;
}

.fg-marker-reached .fg-marker-dot {
    background:#4caf50;
    box-shadow:0 0 0 1px #4caf50;
}

.fg-marker-label {
    position:absolute;
    top:14px;
    font-size:10px;
    color:#666;
    white-space:nowrap;
    transform:translateX(-50%);
    left:50%;
}

.fg-marker-reached .fg-marker-label {
    color:#2e7d32;
    font-weight:600;
}
