/* Order Bump Slide-in Modal */
.order-bump-slide-modal {
    position: fixed;
    left: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    max-width: 90vw;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--color-secondary);
    border-left: none;
}

.order-bump-slide-modal.show {
    left: 0;
}

.order-bump-slide-content {
    padding: 2rem 1.5rem;
    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: 1.5rem;
}

.order-bump-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.order-bump-body {
    text-align: center;
}

.order-bump-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 3px solid var(--color-secondary);
}

.order-bump-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.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: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 800;
}

.order-bump-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.order-bump-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-accept-bump {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    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: 320px;
    }

    .order-bump-slide-content {
        padding: 1.5rem 1rem;
    }

    .order-bump-header h3 {
        font-size: 1.1rem;
    }
}