.fdb-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 292px;
    background: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 12px 34px 12px 12px;
    display: flex;
    align-items: center;
    z-index: 9999;
    animation: fdb-slide-up 0.4s ease;
    font-family: sans-serif;
}
@media (max-width: 450px) {
    .fdb-banner {
        right: 10px;
        left: 10px;
        max-width: 100%;
    }
}
.fdb-title-wrap{
    display: flex;
    align-items: center;
    gap: 5px;
}
.fdb-close {
    position: absolute;
    top: calc(50% - 13px);
    right: 10px;
    background: transparent;
    border: none;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    color: #c2c6d5;
}

.fdb-content {
    display: flex;
    align-items: center;
    gap: 7px;
}

.fdb-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.fdb-title {
    font-weight: bold;
    color: #3E3F45;
    font-size: 12px;
}

.fdb-desc {
    font-size: 12px;
    color: #848796;
}
.fdb-discount{
    display: flex;
}
.fdb-discount strong {
    color: #ED2759;
    font-size: 12px;
    background-color: #F2F3F8;
    padding: 1px 4px 0 4px;
    border-radius: 2px;
    font-weight: 900;
}

@keyframes fdb-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}