#dermadose-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 2px solid #1a3a2a;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    padding: 10px 16px;
}

#dermadose-sticky-bar.dsb-visible {
    transform: translateY(0);
}

.dsb-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.dsb-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a3a2a;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.dsb-product {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.dsb-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.dsb-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dsb-btn {
    background: #FF9900;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.dsb-btn:hover {
    background: #e68900;
    color: #000;
}

.dsb-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    padding: 0 4px;
    flex-shrink: 0;
    line-height: 1;
}

.dsb-close:hover {
    color: #333;
}

/* Móvil */
@media (max-width: 600px) {
    .dsb-label {
        display: none;
    }
    .dsb-name {
        font-size: 12px;
    }
    .dsb-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
}
