/* LAVUMALL category.php 拆分模組 */
.toast { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(100px); background-color: rgba(29, 29, 31, 0.95); backdrop-filter: blur(10px); color: white; padding: 12px 28px; border-radius: 30px; font-size: 14px; font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.15); opacity: 0; z-index: 1001; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

        @media (max-width: 992px) {
            .coupon-card { flex: 0 0 80%; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .product-card { padding: 12px; }
            .wishlist-btn { top: 18px; right: 18px; width: 28px; height: 28px; font-size: 14px; }
            .footer-content { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
        }
    
/* 行銷活動標籤：商品名稱與價格之間 */
.marketing-badge-strip{
    position:relative;
    display:flex;
    align-items:center;
    gap:5px;
    min-height:22px;
    margin:6px 0 5px;
    max-width:100%;
    overflow:hidden;
    white-space:nowrap;
}
.marketing-badge-link{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    max-width:118px;
    padding:3px 7px;
    border-radius:6px;
    background:#eaf4ff;
    color:#0071e3;
    font-size:13px;
    font-weight:800;
    line-height:1.2;
    text-decoration:none;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.marketing-badge-link:hover{background:#dcecff}
.marketing-badge-strip.is-overflowing{
    padding-right:18px;
    -webkit-mask-image:linear-gradient(to right,#000 0%,#000 82%,transparent 96%);
    mask-image:linear-gradient(to right,#000 0%,#000 82%,transparent 96%);
}
.marketing-badge-more{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    display:flex;
    align-items:center;
    padding-left:5px;
    background:linear-gradient(to right,transparent,#fff 45%);
    color:#86868b;
    font-weight:900;
}

.marketing-badge-static{
    cursor:default;
    pointer-events:none;
}

/* 商品卡固定版型：名稱永遠一行，活動標籤永遠佔同一列 */
.product-info .product-name{
    display:block !important;
    height:1.4em !important;
    min-height:1.4em !important;
    max-height:1.4em !important;
    line-height:1.4 !important;
    margin-bottom:6px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
    text-overflow:clip !important;
    -webkit-line-clamp:unset !important;
    -webkit-box-orient:unset !important;
    -webkit-mask-image:linear-gradient(to right,#000 0%,#000 88%,transparent 100%);
    mask-image:linear-gradient(to right,#000 0%,#000 88%,transparent 100%);
}
.product-info .marketing-badge-strip{
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:4px 0 7px !important;
    box-sizing:border-box;
}
.product-info .marketing-badge-strip.is-empty{
    visibility:hidden;
}
.product-info .marketing-badge-link{
    font-size:13px !important;
    line-height:1.25 !important;
}