
/* TradeNow Product Promotions v1.4.0 - catalog/product-card promotion display */

.tn-card-promotion-wrap {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.tn-card-promotion-badge {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 8px;
    padding: 7px 9px;
    border-radius: 6px;
    background: #d92d20;
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .25px;
    text-transform: uppercase;
}

.tn-card-free-item {
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
    border: 1px solid #b9e4d8;
    border-radius: 8px;
    background: #effaf7;
}

.tn-card-free-heading {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
    color: #087f6b;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.tn-card-gift {
    font-size: 13px;
    line-height: 1;
}

.tn-card-free-content {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.tn-card-free-image-wrap {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 6px;
    background: #ffffff;
}

.tn-card-free-image-wrap img.tn-card-free-image,
.tn-card-free-image-wrap img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    margin: 0 !important;
}

.tn-card-free-info {
    min-width: 0;
    flex: 1 1 auto;
}

.tn-card-free-name {
    overflow: hidden;
    margin: 0 0 3px;
    color: #202124;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tn-card-free-price {
    color: #087f6b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.tn-card-free-price span {
    margin-left: 4px;
    color: #737373;
    font-weight: 600;
    text-decoration: line-through;
}

@media (max-width: 767px) {
    .tn-card-promotion-wrap {
        margin-top: 7px;
        margin-bottom: 10px;
    }

    .tn-card-promotion-badge {
        padding: 6px 7px;
        font-size: 9px;
    }

    .tn-card-free-item {
        padding: 8px;
    }

    .tn-card-free-image-wrap {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .tn-card-free-name {
        font-size: 11px;
    }
}
