.free-shipping-progress.block {
    margin: 15px 0 !important;
    border: 1px solid #e1e1e1;
}

.free-shipping-progress .block-title {
    background-color: #f4f4f4;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
    font-size: 1.2rem;
}

.free-shipping-progress .shipping-icon {
    display: inline-block;
    background: #f8c63d;
    color: #1a1a1a;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-right: 8px;
    border-radius: 50%;
}

.free-shipping-progress .block-content {
    padding: 10px 15px;
    background-color: #fff;
}

/* Highlight the "Add X more" amount in the top text */
.free-shipping-progress .amount-remaining {
    background-color: #f8c63d;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

/* The progress bar container */
.free-shipping-progress .progress-bar-container {
    height: 6px;
    background: #ddd;
    margin: 10px 0 4px 0;
    border-radius: 3px;
}

/* Default (yellow) bar */
.free-shipping-progress .progress-bar {
    height: 100%;
    background: #f8c63d;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Red when < 30% */
.free-shipping-progress .low-progress {
    background: #dc3545 !important;
}

/* Green when 100% reached */
.free-shipping-progress .free-shipping-reached {
    background: #28a745 !important;
}

/* Bottom label layout */
.free-shipping-progress .progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Each label-value pair */
.free-shipping-progress .label-value {
    display: flex;
    gap: 5px;
    align-items: baseline;
}

/* "Subtotal:" and "Goal:" text */
.free-shipping-progress .label {
    font-weight: 600;
    color: #666;
    font-size: 13px;
}

/* The actual numeric value (e.g. €68.90, €100.00) */
.free-shipping-progress .value {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
