.tm-discount{
    font-size:20px;
    font-weight:700;
    color:#ff6b00;
    margin:10px 0 15px;
}

.tm-info{
    font-size:14px;
    color:#555;
    margin:8px 0;
    display:flex;
    align-items:center;
    gap:8px;
}

.tm-coupon-box {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #eee;
    background: #fff8ef;
    border-radius: 10px;
}

.tm-coupon {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px dashed #ff9800;
    border-radius: 8px;
}

.tm-coupon strong {
    display: block;
    font-size: 18px;
    color: #333;
}

.tm-coupon p {
    margin: 10px 0;
    color: #666;
}

.tm-coupon .button {
    background: #ff9800;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    padding: 8px 16px;
}

.tm-coupon .button:hover {
    background: #e68900;
}

.tm-toast{
    position:fixed;
    top:25px;
    right:25px;
    width:320px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    display:flex;
    gap:15px;
    padding:18px;
    z-index:999999;
    transform:translateX(420px);
    transition:.35s ease;
}

.tm-toast.show{
    transform:translateX(0);
}

.tm-toast-icon{
    font-size:24px;
}

.tm-toast.success{
    border-left:5px solid #28a745;
}

.tm-toast.error{
    border-left:5px solid #dc3545;
}

.tm-toast-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:4px;
}

.tm-toast-message{
    font-size:14px;
    color:#666;
}


.tm-mini-cart-coupons{
    margin:0 0 18px;
    padding:12px 0;
    border-bottom:1px solid #ececec;
}

.tm-mini-cart-title{
    font-weight:700;
    font-size:15px;
    margin-bottom:10px;
}

.tm-mini-cart-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 0;
}

.tm-mini-cart-code{
    font-size:14px;
    color:#333;
}

.tm-mini-cart-discount{
    font-weight:700;
    color:#28a745;
}