/* Free Shipping Notice - front office styles */
.fsb-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
width: 100%;
  margin-top: 20px;
}

.fsb-notice__icon {
    font-size: 20px;
    flex-shrink: 0;
}

.fsb-notice__text {
    flex: 1;
}

/* Customer already qualifies for free shipping */
.fsb-notice--eligible {
    background-color: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #b7e1c1;
}

/* Customer still needs to add more products */
.fsb-notice--remaining {
    background-color: #fff8e1;
    color: #8a6d00;
    border: 1px solid #ffe7a0;
}
