.order-bump-slide-modal {
    position: fixed;
    left: -360px;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 0 16px 16px 0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 10002;
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    border: 2px solid var(--amber-600);
    border-left: none;
    visibility: hidden;
}

.order-bump-slide-modal.show {
    left: 0;
    visibility: visible;
}

.order-bump-slide-content {
    padding: 1rem 0.75rem;
    /* Reduced from 1.5rem 1.25rem */
    position: relative;
}

.order-bump-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-bump-close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.order-bump-header {
    text-align: center;
    margin-bottom: 0.5rem;
    /* Reduced */
}

.order-bump-header h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    line-height: 1.2;
}

.order-bump-body {
    text-align: center;
}

.order-bump-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 3px solid var(--color-secondary);
}

.order-bump-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.order-bump-price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.old-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    color: #fbbf24;
    font-size: 1.5rem;
    /* Reduced from 1.8rem */
    font-weight: 800;
}

.order-bump-badge {
    display: inline-block;
    background: #fbbf24;
    color: #000;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.order-bump-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-accept-bump {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 0.75rem;
    /* Reduced from 1rem */
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-accept-bump:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-decline-bump {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-decline-bump:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .order-bump-slide-modal {
        width: 290px;
        max-width: 85vw;
        border-radius: 0 12px 12px 0;
    }

    .order-bump-slide-content {
        padding: 0.8rem 0.6rem;
    }

    .order-bump-header h3 {
        font-size: 1rem;
    }
}