/* Cart Add Notification Effect */
.cart-add-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 10002;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    pointer-events: none;
}

.cart-add-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cart-add-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    animation: cartAddPulse 0.5s ease;
}

.cart-add-content svg {
    flex-shrink: 0;
    animation: cartAddCheck 0.5s ease;
}

@keyframes cartAddPulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cartAddCheck {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .cart-add-notification {
        top: 70px;
        left: 16px;
        right: 16px;
        transform: translateY(-100px);
    }
    
    .cart-add-notification.show {
        transform: translateY(0);
    }
    
    .cart-add-content {
        padding: 14px 20px;
        font-size: 15px;
        justify-content: center;
    }
}

.cart-add-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 10002;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    pointer-events: none;
}

.cart-add-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cart-add-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    animation: cartAddPulse 0.5s ease;
}

.cart-add-content svg {
    flex-shrink: 0;
    animation: cartAddCheck 0.5s ease;
}

@keyframes cartAddPulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cartAddCheck {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .cart-add-notification {
        top: 70px;
        left: 16px;
        right: 16px;
        transform: translateY(-100px);
    }
    
    .cart-add-notification.show {
        transform: translateY(0);
    }
    
    .cart-add-content {
        padding: 14px 20px;
        font-size: 15px;
        justify-content: center;
    }
}

