/* Checkout button tooltip */
.checkout-tooltip {
    position: fixed;
    bottom: 100px;
    right: 50%;
    transform: translateX(50%);
    background: #dc3545;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.checkout-tooltip.show {
    opacity: 1;
}

/* Order notification */
.order-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid #28a745;
}

.order-notification.success {
    border-left-color: #28a745;
}

.order-notification.error {
    border-left-color: #dc3545;
}

.order-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.order-notification .notification-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.order-notification .notification-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.order-notification .notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .checkout-tooltip {
        bottom: 80px;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .order-notification {
        right: 15px;
        bottom: 15px;
        left: 15px;
        max-width: none;
    }
}
