/* ========================================
   CART NOTIFICATION - VIEW CART SNACKBAR
   ======================================== */

.cart_notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #2c3e50;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 9999998;
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 90%;
    z-index: 9999999;
}

.cart_notification.show {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart_notification_content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cart_notification_icon {
    width: 40px;
    height: 40px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cart_notification_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart_notification_title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.cart_notification_subtitle {
    font-size: 12px;
    color: #bdc3c7;
    margin: 0;
}

.cart_notification_btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cart_notification_btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.cart_notification_close {
    background: transparent;
    border: none;
    color: #95a5a6;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.cart_notification_close:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cart_notification {
        bottom: 70px;
        min-width: auto;
        width: calc(100% - 32px);
        padding: 14px 20px;
    }

    .cart_notification_icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .cart_notification_title {
        font-size: 13px;
    }

    .cart_notification_subtitle {
        font-size: 11px;
    }

    .cart_notification_btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .cart_notification {
        bottom: 40px;
        right: 40px;
        left: auto;
        transform: translateX(400px);
    }

    .cart_notification.show {
        transform: translateX(0);
    }
}