/* ------------ FREE DELIVERY ------------ */
.free-shipping-badge {
    color: black;
    position: absolute;
    top: 10px;
    left: -10px;
    padding-top: 10px;
    height: auto;
    padding: 5px 7px;
    background-color: #F5B42B;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 9;
    width: fit-content;
}

.free-shipping-badge::before {
    width: 10px;
    height: 10px;
    color: inherit;
    content: "";
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
    left: 0px;
    background: #7C5F1E;
    position: absolute;
    bottom: -10px;
}

.free-shipping-badge div {
    font-size: 11px;
    line-height: 1;  
    font-weight: bold; 
}

.free-shipping-badge-icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}