.gw-product-coupon-banners {
    display: grid;
    gap: 8px;
    margin: 14px 0;
}

.gw-product-coupon-banner {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    padding: 4px 12px;
    border: 1px dashed #000;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.gw-product-coupon-banner :is(.woocommerce-Price-amount, .woocommerce-Price-currencySymbol) {
    color: #000;
}

.gw-product-coupon-banner__price {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.gw-product-coupon-banner__saving {
    padding: 4px 6px;
    background: #f2f2f2;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.gw-product-coupon-banner__text {
    font-size: 14px;
}

.gw-product-coupon-banner__code {
    color: #000;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .gw-product-coupon-banner {
        width: 100%;
    }
}