#branner-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#branner-sticky.visible {
    display: block !important;
    transform: translateY(0);
}

.branner-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.branner-sticky-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.branner-sticky-price {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
}

.branner-sticky-price del {
    font-size: 13px;
    font-weight: 400;
    color: #9CA3AF;
}

.branner-sticky-price ins {
    text-decoration: none;
}

#branner-sticky-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E8611A;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

#branner-sticky-btn:hover {
    background: #D4550F;
    box-shadow: 0 2px 12px rgba(232,97,26,0.3);
}

@media (max-width: 600px) {
    .branner-sticky-inner { padding: 10px 16px; gap: 12px; }
    .branner-sticky-name { font-size: 13px; }
    .branner-sticky-price { font-size: 14px; }
    #branner-sticky-btn { font-size: 13px; padding: 10px 20px; }
}
